2010-06-21 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blobbe9a390c62c9132230848c8a1682fcc20444d810
1 2010-06-21 Rodrigo Kumpera  <rkumpera@novell.com>
3         * object-internals.h: Map new PropertyBuilder fields.
5         * reflection.c (property_encode_signature): Emit an instance
6         signature if property's callconv is hasthis.
8         * appdomain.c: Bump corlib version.
10 2010-06-20  Jb Evain  <jbevain@novell.com>
12         * metadata-verify.c: do not consider the assembly invalid if it
13         doesn't have a #Blob stream as resource assemblies don't
14         necessarily have one.
16 2010-06-17  Geoff Norton  <gnorton@novell.com>
18         * sgen-archdep.h: sgen support for arm linux and darwin.
20 2010-06-17  Zoltan Varga  <vargaz@gmail.com>
22         * loader.c (mono_method_get_header): Avoid a crash if the declaring method
23         has a faulty header.
25 2010-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
27         * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
28         way to mono_gc_wbarrier_value_copy but takes a bitmap that
29         indicates which slots need a write barrier.
31 2010-06-14  Jonathan Pryor <jpryor@novell.com>
33         * Makefile.am (EXTRA_DIST): Add runtime.h.
35 2010-06-14  Zoltan Varga  <vargaz@gmail.com>
37         * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
39 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
41         * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
42         IMT slot which is passed to callbacks.get_imt_trampoline.
44 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
46         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
47         imt trampoline per imt slot when using LLVM.
49 2010-06-10  Jonathan Pryor <jpryor@novell.com>
51         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
52           runtime.c:mono_runtime_shutdown().
53         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
54           AppDomain.ProcessExit event in all AppDomains.
56 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
58         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
59         done by the caller.
61 2010-06-05  Mark Probst  <mark.probst@gmail.com>
63         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
64         up freeing.
66 2010-06-05  Mark Probst  <mark.probst@gmail.com>
68         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
69         segments of memory at once, to reduce the number of mmap/munmap
70         calls.
72 2010-06-05  Mark Probst  <mark.probst@gmail.com>
74         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
75         allocations and distinguish between normal, degraded and pinned
76         allocations.
78 2010-06-05  Mark Probst  <mark.probst@gmail.com>
80         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
81         allocations count toward major collections and trigger major
82         collections from degraded allocations if appropriate.
84 2010-06-05  Mark Probst  <mark.probst@gmail.com>
86         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
88 2010-06-05  Mark Probst  <mark.probst@gmail.com>
90         * sgen-gc.c: Enable mark&sweep again.
92 2010-06-05  Mark Probst  <mark.probst@gmail.com>
94         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
96 2010-06-05  Mark Probst  <mark.probst@gmail.com>
98         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
99         major heap allowance for minor collections, instead of two
100         separate ones for small and large objects.  This reduces the
101         number of major collections.
103 2010-06-04  Marek Habersack  <mhabersack@novell.com>
105         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
106         the BFLAGS_IgnoreCase is raised
108 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
110         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
111         all information in a single structure. Return information about scopes as well.
113         * mono-debug.c (mono_debug_lookup_locals): Ditto.
115 2010-06-02  Geoff Norton  <gnorton@novell.com>
117         * appdomain.c: If we are running with IOMAP we might
118         have been provided a string that isn't case-aware for our file-
119         system, so we need to use io-portability to check if the file 
120         exists, rather than a simple glib test.
122         Fixes #608849
124 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
126         * verify.c (verify_generic_parameters): Verify if
127         there are not loops in constraints.
129 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
131         * verify.c (is_compatible_boxed_valuetype): Constaints
132         must be recursively checked if one generic argument
133         has a constraint on another.
135         Fixes #610625.
137 2010-05-31  Miguel de Icaza  <miguel@novell.com>
139         * console-unix.c (terminal_get_dimensions): Fix my previous
140         botched commit and return the actual value obtained from the ioctl.
142 2010-05-29  Mark Probst  <mark.probst@gmail.com>
144         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
145         references so that we don't have to do the cache-cold fetch of the
146         class in copy_object_no_checks().
148 2010-05-29  Robert Jordan  <robertj@gmx.net>
150         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
151         mono_marshal_string_to_utf16_copy () to avoid memory allocation
152         mismatches under Windows. Fixes pinvoke2:test_0_asany.
154 2010-05-28  Mark Probst  <mark.probst@gmail.com>
156         * sgen-gc.c: Change default nursery size to 4MB, because it
157         improves performance on many applications and benchmarks.
159 2010-05-28  Mark Probst  <mark.probst@gmail.com>
161         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
162         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
163         the GC descriptor by one bit, and don't encode the size for value
164         types not containing references.  Also get rid of
165         DESC_TYPE_STRING.
167 2010-05-28  Mark Probst  <mark.probst@gmail.com>
169         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
170         other than for remset processing.
172 2010-05-28  Mark Probst  <mark.probst@gmail.com>
174         * sgen-gc.c: More and better remset consistency checks.
176 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
178         * sgen-gc.c: Add a note about the int[] trick to avoid some
179         memset.
181 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
183         * sgen-gc.c (sort_addresses): Use heap sort since it has better
184         performance.
186         This helps programs with lots of threads or thread with big stacks
187         since the bottleneck the pin queue can get quite big.
189 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
191         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
192         a separate function called setup_fragment.
194         * sgen-gc.c (search_fragment_for_size_range): Variant of
195         search_fragment_for_size that does search for a secondary smaller
196         size.
198         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
199         for tlab allocation so small fragments are used.
201         This patch uses small fragments for tlab allocation when possible in order
202         to improve nursery utilization. With a fixed size tlab this patch is not very
203         usefull but once size gets dynamically adjusted, this will be invaluable.
205         Performance under pystone 500k is unchanged. Nursery utilization improves by
206         3.5% and 18 more fragments are used per minor GC.
208         Performance under modified binary-tree is unchanged. Nursery utilization
209         improves by 0.5% and 3 more fragments are used per minor GC.
211         These numbers make sense since as more pinning happens, more fragments are
212         created and so are the chances of having a bunch of small ones.
214 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
215         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
216         the current fragment when allocating a TLAB.
218         Reduces number of pystone 500k minor collections by 7%.
220 2010-05-25  Martin Baulig  <martin@ximian.com>
222         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
224         * debug-mono-symfile.c: Release memory from symfiles that were
225         loaded from memory.
227 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
229         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
230         during shutdown.
232 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
234         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
235         target class and remove some dead code.
237 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
239         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
240         the MonoTypes inside method headers can be freed when the header is freed.
242 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
244         * threadpool.c: Fix the DISABLE_SOCKETS build.
246 2010-05-19 Martin Baulig  <martin@novell.com>
248         Fix #604911.
250         * threads.c (wait_for_tids_or_state_change): Use an
251         alertable WaitForMultipleObjectsEx().
252         (wait_for_tids): Likewise.
254 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
256         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
257         icall.
259         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
260         gc tracked memory.
262         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
263         argument from a gchandle.
265         * marshal.c: Get rid of the delegate_target_locations hash table.
267         Fixes #605295.
269 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
271         * sgen-gc.c: Use _fast variants for string and array length.
273 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
275         * sgen-gc.c: Fix counters to be 64 bits.
277         * sgen-gc.c (dump_heap): Fix formating strings.
279 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
281         * sgen-gc.c (global_remset_location_was_not_added): New
282         function that implements a 2 element LRU cache for just
283         added remsets. It is used to avoid adding duplicate ones.
285         * sgen-gc.c (add_to_global_remset): Check cache before
286         adding new entry.
288         * sgen-gc.c (scan_from_remsets): Don't process global remsets
289         that fail the cache test.
291         * sgen-gc.c (scan_from_remsets): Simplify the global remset
292         loop removing one condtion that is not possible.
294         A 2 element LRU cache was chosen by profiling IronPython 2.6
295         pytones with 1M passes and corlib compilation.
297         For the ipy test duplication was originally 940.92, measured
298         by "Store remsets" divided by "Unique store remsets".
300         With a 2-element LRU, duplication went to 1.007. Without the
301         check in scan_from_remsets 1.438.
303         With a 16-elements LRU, duplication reduction was negligibe.
304         A single element cache was basically of no use.
306         With corlib compilation duplication went from  1.4 to 1.02.
308         Performance results is a 20% time decrease for ipy and 2%
309         with corlib.
310 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
312         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
314 2010-05-15  Geoff Norton  <gnorton@novell.com>
316         * mono-debug.c: Fix a leak of the global table on shutdown.
318 2010-05-15  Geoff Norton  <gnorton@novell.com>
320         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
321         to clean up MonoDebugSourceLocation's.
323 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
325         * class.c (mono_class_create_from_typedef): Fail a class
326         if there is a loop with its parent.
328         Fixes #598239.
330 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
332         * loader.c (mono_loader_set_error_type_load): Convert
333         a g_warninig to mono_trace_warning.
335 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
337         * class.c (mono_class_get_full): Release strings on failure
338         to avoid leaking them.
340 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
342         * class.c (mono_class_create_from_typedef): Only return
343         the class if no exceptions were detected.
345         * class.c (mono_class_create_from_typedef): Don't remove
346         broken classes from class_cache. Just set failure and
347         bail out.
349         This fixes a memory a memory leak where resolving the same
350         broken class multiple times resulted in a memory leak.
352         The right behavior would be to actually return the class
353         a let the caller figure it out.
355 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
357         * mono-ptr-array.h: Add mono_ptr_array_sort.
359         * reflection.c (mono_image_build_metadata): Replace that ugly
360         qsort call with mono_ptr_array_sort.
362 2010-05-13  Mark Probst  <mark.probst@gmail.com>
364         * sgen-gc.c: Switch to the copying major collector, because
365         Mark&Sweep is still buggy.
367 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
369         * reflection.c (mono_image_build_metadata): Don't put managed
370         references on non-tracked memory.
372 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
374         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
376 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
378         * icall.c: Switch to mono-ptr-array.h.
380 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
382         * Makefile.am: Add mono-ptr-array.h.
384         * mono-ptr-array.h: New header that implements
385         a GC tracked equivalent of g_ptr_array. 
387 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
389         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
390         method to avoid initializing the class.
392         Fixes #605115.
394 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
396         * icall.c (ves_icall_System_MonoType_getFullName): It
397         doesn't require to init the class.
399 2010-05-11  Miguel de Icaza  <miguel@novell.com>
401         * console-unix.c: Signal handlers now save and restore errno.   We
402         have never had a bug report about this, ioctl does change errno. 
404         Hide the unused method.   
406         Remove internal declarations from public headers.
408         Document what the signal handler is doing
410 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
412         * sgen-gc.c (clear_unreachable_ephemerons): Clear
413         unreachable keys with a tombstone.
415         * sgen-gc.c (mark_ephemerons_in_range): Ignore
416         tombstone keys.
418 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
420         * icall-def.h:
421         * gc-internals.h:
422         * gc.c: New GC:get_ephemeron_tombstone.
424 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
426         * appdomain.c (create_exceptions): Rename to
427         create_domain_objects. Create the ephemeron tombstone object.
429         * domains-internals.h (MonoDomain): Add new field for the
430         ephemeron tombstone.
432         * domain.c (mono_domain_free): Set ephemeron_tombstone to
433         NULL.
435 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
437         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
438         and dislinks must be processed before LOS since they
439         could end up with pointers to memory returned to the
440         OS.
442 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
444         * class.c (mono_class_alloc): New helper function to centralize memory allocation
445         for classes, allocates either from the image mempool or from the heap.
447         * class.c: Use mono_class_alloc to allocate memory owned by classes.
449         * metadata.c (free_generic_class_dependents): Free more items belonging to
450         generic classes.
452 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
454         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
455         as well. Fixes #604054.
457 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
459         * metadata-verify.c: MS doesn't mind duplicates in the
460         typeref table. Move it to full verification.
462         Fixes #600508.
464 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
466         * image.c (do_mono_image_load): Report verification
467         errors when loading an image fails.
469 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
471         * reflection.c (mono_type_get_object): Remove chunk of code
472         no longer in use.
474 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
476         * icall-def.h
477         * icall.c: Delete some unused icalls.
479 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
481         * appdomain.c (mono_domain_has_type_resolve): Check for
482         NULL domain objects to make pedump happy.
484         * object.c (mono_field_get_value): Assert on NULL object.
485         It's the caller resposibility to check for this.
487         * object.c (mono_field_get_value_object): Ditto.
489         Fixes #601384.
491 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
493         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
494         checks can avoid doing a mono_class_init.
496         * icall.c: Remove mono_class_init from a bunch of icalls that
497         don't need it.
499         Hopefully we're now lazy enough to fix most victims of #601431.
501 2010-05-07  Mark Probst  <mark.probst@gmail.com>
503         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
505 2010-05-07  Mark Probst  <mark.probst@gmail.com>
507         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
509 2010-05-07  Marek Habersack  <mhabersack@novell.com>
511         * culture-info-tables.h: updated to include en-TT culture. Fixes
512         bug #594035
514 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
516         Move mono_class_init from mono_type_get_object to icalls.
517         This causes massive memory savings for Assembly::GetTypes () and
518         make it fail a lot less due to missing dependencies.
520         This is a conservative, naive change as it doesn't remove some
521         mono_class_init from places that might not need them. Carefull
522         review of those should follow.
524         * reflection.c (mono_type_get_object): Don't mono_class_init the
525         returning type.
527         * reflection.c:
528         * cominterop.c:
529         * icall.c:
530         * marshal.c: Call mono_class_init in functions receiving a MonoType
531         object.
533         First step into fixing #601431.
535 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
537         * gc-internal.h: Add new functions required for ephemeron support.
539         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
541         * icall-def.h: Add GC::register_ephemeron_array.
543         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
544         under sgen. Its fields must not be marked.
546         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
548         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
549         handling finalizable objects. Clean dead ones after all finalizable
550         handling.
552         * sgen-gc.c (dump_heap): Add new kind of internal memory.
554         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
555         arrays from the dead domain.
557         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
559         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
560         whose keys are reachable.
562         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
563         list of live ephemeron arrays.
565 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
567         * class.c (mono_class_layout_fields): Don't perform alignment
568         if align is zero.
570         * class.c (mono_class_layout_fields): Init field related information
571         to sane defaults.
573 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
575         * verify.c (mono_verifier_verify_class): Verify the constraint
576         of generic type definitions.
578 2010-05-04  Mark Probst  <mark.probst@gmail.com>
580         * sgen-marksweep.c: Simplify free list maintenance in sweep.
582 2010-05-02  Mark Probst  <mark.probst@gmail.com>
584         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
585         major_do_collection() across the two major collectors.
587 2010-05-02  Mark Probst  <mark.probst@gmail.com>
589         * sgen-gc.c: Add heavy statistics counter for re-added global
590         remsets.
592 2010-05-02  Mark Probst  <mark.probst@gmail.com>
594         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
595         get rid of a division in critical code.
597 2010-04-29  Mark Probst  <mark.probst@gmail.com>
599         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
600         blocks for objects without references in mark&sweep, to improve
601         performance.
603 2010-04-28  Mark Probst  <mark.probst@gmail.com>
605         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
606         statistics up-to-date.
608 2010-04-27  Mark Probst  <mark.probst@gmail.com>
610         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
611         heap-dump for mark&sweep.
613 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
615         * loader.c (mono_method_get_header): Move the is_inflated case before the
616         wrapper case, as a method can be both.
618 2010-04-27  Mark Probst  <mark.probst@gmail.com>
620         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
621         separate pass to scan pinned and large object but use the gray
622         queue like for regular objects.
624 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
626         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
627         string.h for memmove.
629         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
630         ipaddress_to_struct_in6_addr() is only needed when
631         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
633 2010-04-25  Mark Probst  <mark.probst@gmail.com>
635         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
636         separate copy_object functions for major vs nursery.  Allows us to
637         get rid of a few checks and the start and end parameters for many
638         functions.
640 2010-04-25  Mark Probst  <mark.probst@gmail.com>
642         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
643         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
644         collector.
646 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
648         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
649         calling setup_mono_type () since the nested parent could recursively reference
650         the nested class using generic constraints. Fixes #599469.
652 2010-04-24  Mark Probst  <mark.probst@gmail.com>
654         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
655         abstraction.
657 2010-04-24  Mark Probst  <mark.probst@gmail.com>
659         * sgen-gc.c: Remove more unneeded code.
661 2010-04-24  Mark Probst  <mark.probst@gmail.com>
663         * sgen-gc.c: Disable managed allocator and wbarrier when the
664         binary protocol is enabled.
666 2010-04-24  Mark Probst  <mark.probst@gmail.com>
668         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
670 2010-04-24  Mark Probst  <mark.probst@gmail.com>
672         * sgen-gc.c: Remove a few commented out and unneeded bits.
674 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
676         * threadpool.c: patch from Robert Nagy that fixes a nullref and
677         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
679 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
681         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
682         types.
684         Fixes #331126
686 2010-04-21  Mark Probst  <mark.probst@gmail.com>
688         * sgen-gc.c: Turn off semi-precise stack mark.
690 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
692         * reflection.c (mono_custom_attrs_from_index): Use right function
693         to free 'list' (i.e. g_list_free) if the verifier fails.
695 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
697                 * verify.c: Handle the case where mono_type_get_underlying_type_any
698                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
699                 and MONO_TYPE_VALUETYPE in those case.
701                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
703                 Hopefully Fixes #564253.
705 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
707         * domain-internals.h: made threadpool_jobs volatile.
708         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
709         all local jobs.
710         * threadpool.c:
711                 -When two threads try to initialize the socket IO pool,
712                 the second one waits until the intialization is finished
713                 instead of continuing right away.
714                 -Add checks for domain unload: no items added in this case.
715                 -Only measure the time every 10 elements added to the queue.
716                 This is an experiment since linux x86 gettimeofday() sucks.
717                 -Create new thread if there are none waiting for work items.
718                 -There was a missing decrement of the busy threads.
719                 -Make sure the local queue is cleaned up before exiting the
720                 thread when the program ends.
722 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
724         * reflection.c (mono_type_get_object): Normalize generics types
725         as to how managed code expect them to be. A generic instance over
726         the GTD arguments must have the same mirror as the GTD itself.
728         Fixes #473289.
730 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
732         * locales.c: Implement support for DISABLE_NORMALIZATION.
734 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
736         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
737         since it is not a MonoMethod.
739 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
741         * icall-def.h: Add get_RequiresElevatedPermissions icall to
742         System.Security.SecurityManager - used only by Moonlight
743         * security-core-clr.c|h: Add Elevated Trust/Permission support
744         for CoreCLR / Moonlight
746 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
748         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
749         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
751 2010-04-16  Marek Habersack  <mhabersack@novell.com>
753         * mono-perfcounters.c: added code for the "Mono
754         Memory/Total Physical Memory" performance counter.
756         * mono-perfcounters-def.h: added definition of the "Mono
757         Memory/Total Physical Memory" performance counter.
759 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
761         * class.c (mono_class_get_method_by_index): Return NULL
762         on type load failures.
764 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
766         * class.c (mono_class_from_typeref): Check if the supplied
767         image has an assembly bound to it.
769         Fixes #567884.
771 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
773         * loader.c (mono_method_get_signature_full): Use new function
774         inflate_generic_signature_checked to check for errors.
776         Fixes #560839.
778 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
780         * loader.c (inflate_generic_signature): Add _checked variant
781         and move this function to use it.
783 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
785         * class.c (mono_class_setup_vtable_general): Use error checking
786         version of mono_class_inflate_generic_method_full.
788         Fixes #596975.
790 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
792         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
793         error handling passing MonoError around.
795         Fixes #560336.
797 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
799         * socket-io.c: make GetHostByName ("") work on windows.
800         Fixes bug #456723.
802 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
804         * object-internals.h:
805         * threads.c: use a spin lock when accesing the per-thread appdomain
806         list.
808 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
810         * threads.c: no need to take the threads lock in push/pop appdomain.
812 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
814         * reflection.c (_mono_reflection_parse_type): MS supports
815         non-assembly-qualified types in a generic type parameter list
816         when enclosed in '[]' (which signals that they should be a fqn).
818         This breaks ECMA specs for how type names are encoded in cattr
819         blobs but F# does it.
821         Fixes #576342.
823 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
825         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
826         for instance methods/ctors.
828         Fixes #422113.
830 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
832         * reflection.c: Use the new verifier support for checking
833         custom attributes.
835         Fixes #595306.
837 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
839         * metadata-verify.c: Implement structural verification
840         of custom attributes. This check requires access to the
841         loader since to resolve the size of an enum we have to
842         look it up.
843         We don't check if named argumenments are encoded in a
844         compatible fashion to their underlying field/prop.
845         Maybe we should?
847         * verify-internals.h: Add two new cattr verification API.
849 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
851         * metadata-verify.c (decode_signature_header): Fix signature.
853 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
855         * verify.c (mono_verifier_is_enabled_for_method): Handle
856         assembly less images.
858         * verify.c (mono_verifier_is_class_full_trust): Ditto.
860 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
862         * loader.c (mono_method_signature_checked): Properly
863         init MonoError.
865         * loader.c (mono_method_signature): It's the calee
866         resposibility to init the error object.
868 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
870         * metadata-verify.c (decode_signature_header): Do proper
871         overflow checking.
873 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
875         * reflection.c: maintain the invariants required by
876         mono_class_layout_fields() also in typebuilder_setup_fields ().
878 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
880         * security-core-clr.c: Call mono_class_setup_methods in 
881         get_default_ctor before checking klass->methods. Fix typo in
882         comment
884 2010-04-10  Jb Evain  <jbevain@novell.com>
886         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
887         add .net 4.0 RTM version.
889 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
891         * reflection.c (resolve_object): Properly inflate generic
892         methods when a context is supplied.
894         Fixes #591226.
896 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
898         * verify.c (mono_method_verify): A switch op don't empty
899         the stack for the next one. Fixes a bug when running fsi
900         under --verify-all.
902 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
904         * metadata-verify.c (is_valid_standalonesig_blob): Accept
905         fields as valid standalone sig too. F# does generate them.
907         * metadata-verify.c (verify_typedef_table_full): Ignore
908         what <module> extends.
910 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
912         * verify.c (do_invoke_method): It's ok to do use call with
913         virtual, non-final methods if their class is sealed.
915 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
917         * icall.c (ves_icall_MonoField_GetValueInternal): This function
918         is a near identical copy of mono_field_get_value_object. So simply
919         call it.
921         * object.c (mono_field_get_value_object): Handle literal fields
922         on open generic classes.
924         Fixes #594942.
926 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
928         * reflection.c (mono_reflection_create_runtime_class): Setup
929         parent/supertype information again since it can be changed
930         without notice.
932 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
934         * verify.c (verify_type_compatibility_full): Properly handle
935         stores between arrays of primitives.
937         Fixes the verifier side of #555950.
939 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
941         class.c (mono_bounded_array_class_get): Properly init
942         cast_class to take the fact that uint[] and int[] can be
943         casted between each other.
945         Fixes #555950.
947 2010-04-07  Geoff Norton  <gnorton@novell.com>
949         * domain.c: Avoid a deadlock on osx.  Fixes #565765
951 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
953         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
954         builders. Fixes #594464.
956 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
958         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
959         waiting for all threads to suspend, as those threads can't be suspended.
961 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
963         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
964         to avoid crashes on newly created threads.
966 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
968         * file-io.c: reset the MonoIOStat structure in case of error.
969         Fixes bug #582667.
971 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
973         * class.c (print_implemented_interfaces): Print proper type name.
975         * class.c (mono_class_setup_vtable): Don't try that hard to produce
976         the override map for generic instances since it later ignored.
978         * class.c (mono_class_implement_interface_slow): Don't break for
979         dynamic generic instances.
981         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
983         * reflection.c (mono_reflection_method_get_handle): New method that
984         resolves a method handle.
986         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
987         case when we override methods from a dynamic generic instance interface.
989         Fixes #575941.
991 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
993         * threadpool.c: don't attempt to close the pipe when it has not been
994         created.
996 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
998         * threadpool.c: if there are no waiting threads, try to start a new
999         one. This fixes the not-so-random hangs in System.ServiceModel tests.
1000         No need to use InterlockedCompareExchange to read volatile variables.
1002 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1004         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
1005         and reference types that point to the same class.
1007         Fixes #565598.
1009 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
1011         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1012         when verifying compatibility between a generic instance and a generic
1013         parameter.
1015         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1017         * verify.c (stack_slot_stack_type_full_name): Improve verification type
1018         name.
1020         Fixes #587849.
1022 2010-04-04  Mark Probst  <mark.probst@gmail.com>
1024         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1026 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
1028         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1030 2010-04-03  Marek Habersack  <mhabersack@novell.com>
1032         * process.c: when cross-compiling with MinGW, force GetProcessId
1033         lookup using GetProcAddress.
1035 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1037         * sgen-gc.c: parse_environment_string_extract_number() must be
1038         static.
1040 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1042         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1043         gray_object_dequeue(), to make sure they're inlined.
1045 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1047         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1048         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1050 2010-04-02  Jb Evain  <jbevain@novell.com>
1052         * exception.c: remove dead code.
1054 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1056         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1057         with mono-gc.h.
1059 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1061         * sgen-gc.c: Make the nursery size adjustable by the
1062         MONO_GC_PARAMS environment variable.
1064         Code is contributed under MIT/X11 license.
1066 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1068         * threadpool.c: threadpool threads wait is alertable.
1069         Fixes bug #592964.
1070         Reduced the stack size of the *poll_wait thread.
1072 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1074         * exception.c|metadata-internals.h: Add new mono_get_exception_
1075         field_access_msg and mono_get_exception_method_access_msg 
1076         functions that accept a const char* parameter to provide more 
1077         details when the exception is thrown.
1078         * security-core-clr.c|h: Rework code to allow logging exceptions
1079         (export MONO_LOG_MASK="security") and to supply more details in
1080         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1081         mono_security_core_clr_is_field_access_allowed and 
1082         mono_security_core_clr_is_call_allowed to return an exception,
1083         with messages and logging, that can be emitted by method-to-ir.c
1085 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1087         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1088         pinned object.
1090 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1092         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1093         the assembly name is not well formed utf8. Fixes #567882.
1095 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1097         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1098         the generic parameters from the builder. Fixes #473298.
1100 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1102         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1104         * marshal.c (emit_marshal_boolean): Eliminate possible
1105         uninitialized local warning. 
1107 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1109         * class.c (mono_class_init): Postpone coreclr inheritance check
1110         until the end of the initialization (so we can check up the 
1111         default ctor manually for the core-clr inheritance rules).
1112         * security-core-clr.c: Add the missing (undocumented) checks on
1113         default constructors when verifying inheritance rules.
1115 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1117         * domain-internals.h (MonoJitExceptionInfo): Add new field
1118         handler_end to the data union. To be used to point the end
1119         of a finally block.
1121 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1123         * reflection.c: Add support for new v4 type
1124         System.Reflection.MonoModule that is the concrete version
1125         of Module which is abstract unver v4.
1127 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1129         * class.c (mono_class_init): Don't set class failure after
1130         inited = 1 is set. It must be done before.
1132 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1134         * mono-config.c: Add support for OS "haiku"
1135         * ChangeLog: Fix UTF-8 encoding
1137         Code is contributed under MIT/X11 license.
1139 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1141         * console-unix.c: fixed include logic for sys/ioctl.h.
1143 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1145         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1146         systems.
1148 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1150         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1151         unfinished/broken typebuilders.
1153 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1155         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1156         for the minor section allowance.
1158 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1160         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1161         "NoOptimization".
1163 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1165         * sgen-gc.c: Count bytes allocated with heavy statistics.
1167 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1169         * sgen-gc.c: More detailed time statistics.
1171 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1173         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1174         fix the user defined mark interface to pass a pointer
1175         to the object location and not the object itself.
1177 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1179         * reflection.c (mono_method_body_get_object): Release
1180         the method header before the call to CACHE_OBJECT since
1181         this is a macro that returns.
1183 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1185         * class.c (inflate_generic_type): mono_metadata_type_dup
1186         already dupes array information, the g_memdup was just
1187         leaking memory.
1189 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1191         * verify.c: Add stack_peek function. Fix CEE_DUP
1192         to not read from invalid memory if push did expand
1193         the stack.
1195 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1197         * verify.c: Remove old table verification code that has
1198         been superseeded by the new metadata verifier.
1200         * verify.h: Remove mono_image_verify_tables from the public
1201         API.
1203         * pedump.c: Fix for removed bits.
1205 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1207         * verify.c: Allocate stack slows lazily to reduce stack usage
1208         in case of methods with huge stacks. Reduces memory consumption
1209         for mcs yyparse from 459Mb to 1.8Mb.
1211 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1213         * threadpool.c: don't try executing items from domains being
1214         unloaded. Fixes appdomain-async-invoke test.
1216 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1218         * threadpool.c: spin while the threadpool initializes.
1219         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1220         down, don't do anything.
1222 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1224         * threads.c (mono_thread_create_internal): Set the GC type of the
1225         threads_starting_up hash table.
1227 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1229         * threadpool.c: reset 'state' to avoid returning non-null when the
1230         event type is not found.
1232 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1234         * sgen-gc.c: make copy_object () take the address of the
1235         slot holding the reference. This allows saving memory stores
1236         when not needed and it allows keeping track of oldspace->nursery
1237         references for the card table code.
1239 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1241         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1243         Code is contributed under MIT/X11 license.
1245 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1247         * object.c, threads.c, threads-types.h, threads.h: make the
1248         managed thread local storage references precisely tracked.
1250 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1252         * threadpool.[ch]: reworked the threadpool:
1253                 -Threadpool threads use a work-stealing queue. Adding a work
1254                 item from a threadpool thread will queue it in the thread
1255                 local queue without locking (in most cases).
1256                 -epoll events are coalesced before being added to the IO
1257                 queue.
1258                 -Dynamically change the number of active threads
1259                 -Changed the global queue to be more GC friendly
1261         * class-internals.h: add 2 new performance counters for the number of
1262         threads in the threadpool and the IO threadpool.
1264         * object-internals.h: new field in MonoAsyncResult.
1265         * icall-def.h: new internal call for queueing work items.
1267         * Makefile.am: add 2 new files.
1269         * appdomain.c: bump up corlib version.
1271         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1273         * mono-perfcounters-def.h:
1274         * mono-perfcounters.c: added 2 new performance counters.
1276 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1278         * sgen-gc.c: More FIXME/TODO updates.
1280 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1282         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1283         function mono_gc_invoke_with_gc_lock() which invokes a function
1284         with the guarantee that no collection will occur during its execution.
1286 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1288         * sgen-gc.c: Update a few comments.
1290 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1292         * reflection.c: Add support for new v4 type
1293         System.Reflection.MonoAssembly that is the concrete version
1294         of Assembly which is abstract unver v4.
1296 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1298         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1299         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1301         Expose a few macros that are needed for SR but not SRE to the
1302         world (previous inside the SRE ifdef)
1304 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1306         * sgen-gc.c (gc_register_current_thread): We need
1307         stack_start_limit as well in the non-attribute pthread case.
1309 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1311         * threads.c: Fix windows build.
1313 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1315         * thread-types.h: Add mono_thread_resume_interruption.
1317         * threads.c: Add mono_thread_resume_interruption, this
1318         function should be called after the last protected handler
1319         found at interruption time has finished.
1321 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1323         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1324         Check MonoInternalThread's ::state instead of ::abort_exc
1325         since the later can be lazily created.
1327         This is specially problematic when running a finally block
1328         under AbortRequested state. ResetAbort must work, but the
1329         abort_exc object has not been created because interruption
1330         has not began.
1332 2010-03-22  Geoff Norton  <gnorton@novell.com>
1334         * locales.c: Its possible for CFStringGetCStringPtr
1335         to return null and not convert encodings.  Use
1336         CFStringGetCString instead.
1338 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1340         * class-internals.h, class.c, object.c: introduce compressed
1341         interface bitmaps (for now only under small config): this saves
1342         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1343         startups.
1345 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1347         * mono-debug.c: don't try to get the method header, it causes a
1348         deadlock and it is not used for anything anymore.
1350 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1352         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1353         broken by the last change.
1355 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1357         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1358         SOCK_RDM.
1359         
1360         Code is contributed under MIT/X11 license.
1362 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1364         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1365         nursery.
1367         Code is contributed under MIT/X11 license.
1369 2010-03-19  Martin Baulig  <martin@ximian.com>
1371         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1372         dummy field, containing an empty string.
1373         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1376 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1378         * class.c: setup_interface_offsets() refactor to not call
1379         mono_class_get_implemented_interfaces () more times than needed and
1380         to reduce the runtime memory requirements to be O(num_interfaces)
1381         instead of O(max_interface_id).
1383 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1385         * mono-mlist.[ch]: add mono_mlist_set_next ().
1387 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1389         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1390         associated changes to support holes in the protected range of a
1391         try block.
1393         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1394         retrieves the holes table from a given MonoJitInfo.
1396 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1398         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1399         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1400         hide the contents of the MonoString and MonoArray structs from the
1401         public API. Change the accessor macros to accessors functions where
1402         needed. Adjusted the array API to allow for pointer-sized lengths and
1403         starting positions, so 64 bit arrays can be optionally provided in an
1404         API compatible way if needed on 64 bit systems.
1406 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1408         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1409         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1411 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1413         * class-internals.h: remove the method header from MonoMethod since
1414         from now on it will be transient. We have a header pointer for method
1415         wrappers, since in that case we need to keep track of it. For this
1416         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1417         structs now. The same happens with MonoMethodInflated.
1418         * class.c: reset the sre_method flag for inflated method structures:
1419         this makes the code that cares look at the header in the MonoMethodInflated
1420         structure.
1421         * loader.c: lookup the method header in the appropriate field now that
1422         it is removed from MonoMethod.
1423         * metadata-internals.h: add a flag to the method header to know if it
1424         can be freed inside mono_metadata_free_mh ().
1425         * method-builder.c: updates after moving the header field from
1426         MonoMethod to MonoMethodWrapper.
1427         * reflection.c: MonoMethods generated from Reflection.Emit use
1428         MonoMethodWrapper structs if they need a method header now (later take
1429         advantage of this and remove all the current unsafe uses of method_aux_hash).
1430         * metadata.c: make method header parsing not leak when verification
1431         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1432         These changes save a few hundred KB of runtime memory in a mcs
1433         bootstrap or a monodevelop startup.
1435 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1437         * verify.c: Improve error message.
1439 2010-03-12  Jb Evain  <jbevain@novell.com>
1441         * reflection.c (add_exported_type): populate the exported
1442         table with the type's nested type.
1444 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1446         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1447         can't read parentheses.
1449 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1451         * threads.c (thread_cleanup): Add a guard to dereferencing
1452         "thread" to avoid an unlikely race condition.
1454 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1456         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1457         instead of an empty string.
1459 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1461         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1462         convert to a boolean, recent gcc versions compile this differently.
1464 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1466        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1467        inlined.
1469 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1471         * sgen-gc.c (STRING_SIZE): Off by one.
1473 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1475         * sgen-archdep.h: Fix the signal context register access for
1476         AMD64.
1478 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1480         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1482 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1484         * verify.c: Store the initial basic block returned by mono_basic_block_split
1485         so we can release the whole list and not just the first one.
1487 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1489         * verify.c, debug-helpers.c, profiler.c, loader.c,
1490         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1491         MonoMethodHeader a transient entity.
1493 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1495         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1496         uncontrolled growth of the gray stack.
1498         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1499         added items are removed first, improving cache locality. Avoid freeing queue
1500         segments in the fast path, use the list of segments as the free list, truncate
1501         it to its max size at the start of collection.
1503 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1505         * metadata-internals.h: more memory savings, both with small config and without.
1508 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1510         * appdomain.c, domain-internals.h, domain.c, object.c:
1511         make class_vtable_hash into an array to reduce memory usage.
1513 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1515         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1516         object-internals.h, object.c, reflection.c, threadpool.c:
1517         reduce resource usage when the small config is selected.
1518         In particular, up to 64K of methods/fields/properties/events
1519         are allowed and "other" methods in events are ignored.
1521 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1523         * threads.c: reduce resource usage when compiled for a small config.
1525 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1527         * sgen-gc.c: Also collect number of degraded-alloced objects with
1528         heavy statistics.
1530 2010-03-04  Geoff Norton  <gnorton@novell.com>
1532         * assembly.c: Only support OSX bundling if the bundle is 
1533         actually detectable.
1535 2010-03-04  Geoff Norton  <gnorton@novell.com>
1537         * loader.c: The marshal specs are freed at the end of the call
1538         but it explicitly frees the strings as well as the container,
1539         so we need to dup them too to avoid referencing free'd memory.
1541 2010-03-04  Geoff Norton  <gnorton@novell.com>
1543         * icall-def.h:
1544         * icall.c: Add a new private internal icall to construct
1545         an object from its type without running the ctor.
1547 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1549         * profiler.c: allow multiple profiler engines to be loaded
1550         at the same time.
1552 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1554         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1555         profiler event to track object moves.
1557 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1559         * object.c, profiler.c, profiler.h, string-icalls.c:
1560         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1562 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1564         * decimal.c (mono_double2decimal): Add support for reducing the
1565         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1566         expected.
1568 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1570         * icall-def.h:
1571         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1573 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1575         * mono-config.c (mono_config_parse_assembly_bindings): added -
1576         parses assembly binding redirections from appdomain's config
1577         file.
1579         * metadata-internals.h: added definition of a new function -
1580         mono_config_parse_assembly_bindings - to support parsing assembly
1581         binding redirections defined in appdomain's config file.
1583         * domain-internals.h: added two new fields to _MonoDomain - a list
1584         of assembly bindings and a flag to parse the config file only
1585         once.
1587         * assembly.c (assembly_binding_maps_name): empty culture name and
1588         NULL culture name are considered equal.
1589         (mono_assembly_apply_binding): added support for domain specific
1590         assembly binding redirections, read from the appdomain's
1591         configuration file. Fixes bug #580185
1593 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1595         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1596         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1597         support.
1599 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1601         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1602         from this function. The new function receive the parent token instead of a type.
1604         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1605         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1606         typebuilders. This make it possible to properly encode generic type builders since
1607         their unmanaged type don't have generics data while unfinished.
1609         Fixes #583655.
1611 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1613         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1614         writing binary log files (can be enabled by #define'ing
1615         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1616         bugs in longer running programs.
1618 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1620         * metadata.c: added some API documentation.
1622 2010-03-01  Robert Jordan  <robertj@gmx.net>
1624         * filewatcher.h: Include glib.h to fix the MSVC build.
1626 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1628         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1629         a GC handle instead. This is a bit slower to access, but avoids burdening the
1630         GC with 100s of individual roots.
1632         * reflection.c (mono_class_get_ref_info):
1633         (mono_class_set_ref_info):
1634         (mono_class_free_ref_info): New internal helper fuctions.
1636         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1637         of accessing klass->reflection_info directly.
1639         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1640         words.
1642         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1643         the previous array.
1645 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1647         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1648         needs an indirection.
1650 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1652         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1653         so all generic sharing code is in one place.
1655         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1656         we don't call setup_interface_offsets () for unfinished types.
1658 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1660         * class.c (mono_class_generic_sharing_enabled): Move this to
1661         generic-sharing.c.
1663         * image.c: Add an unload hook which is called before an image is unloaded.
1665         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1666         metadata.c having to depend on generic sharing.
1668 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1670         * class.c: reduce size of ridiculously large cache.
1672 2010-02-26  Martin Baulig  <martin@ximian.com>
1674         * mono-debug.h
1675         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1677         * threads.c (mono_thread_internal_reset_abort): New method; resets
1678         the abort, but doesn't throw any exception if no abort was requested.
1680 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1682         * class.c (get_implicit_generic_array_interfaces): Call
1683         mono_class_setup_interface_offsets () before accessing
1684         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1685         some reason.
1687 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1689         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1690         icall internal.
1692 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1694         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1695         direct access to the MonoType fields.
1697 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1699         * threads.h: Move some internal functions which were added to this header by
1700         mistake to threads-types.h.
1702         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1704 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1706         * class-internals.h, class.h, object.h: make MonoRemoteClass
1707         and mono_remote_class() internal.
1709 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1711         * metadata-internals.h, class-internals.h, metadata.h: make the
1712         MonoType guts internal as well.
1714 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1716         * reflection.h: the MonoTypeNameParse guts are internal now.
1717         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1718         are internal now, provide accessors as needed.
1719         * metadata.h, metadata-internals.h: the MonoMethodSignature
1720         guts are internal now.
1721         * Makefile.am: mempool.h is an internal header now.
1722         * *.h, *.c: remove glib.h usage from the public headers.
1724 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1726         * culture-info-table.h : regenerated.
1728 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1730         * metadata.c: Add mono_method_get_header_summary which returns minimal
1731         information about the header of a method. This is the information used
1732         by the inline oracle to reject methods.
1734         This method doesn't decode local variables and doesn't cache it's result,
1735         so it should cause a minimal reduction in memory usage.
1737         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1738         mono_method_get_header_summary.
1740 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1742         * threads.c (mono_thread_exit): Make sure that the main thread is
1743         non-null before dereferencing it.
1745 2010-02-21  Geoff Norton  <gnorton@novell.com>
1747         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1748         locale.
1749         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1750         before falling back to the posix lookup.
1752 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1754         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1755         the DONT_MANAGE flag set.
1757 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1759         * domain.c: Remove old v1 version strings. Let the runtime
1760         default to 2.0 instead of failing because it can't find a
1761         working 1.0 instalation.
1763 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1765         * domain.c: Add v4 RC version string.
1767 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1769         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1770         of overflow checking function.
1772 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1774         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1775         generic methods.
1777         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1778         cases for ParameterInfo.
1780         Fixes #579493.
1782 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1784         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1785         have has_cctor set. Fixes #575946.
1787 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1789         * appdomain.c: display a warning if the parsing the config file
1790         produces any error.
1791         Skip the BOM in UTF-8 files.
1792         Copy the AppDomainSetup before setting the privateBinPath so that the
1793         correct configuration file is read.
1795 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1797         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1798         vtable trampoline per vtable slot index. Not used yet.
1800 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1802         * icall-def.h:
1803         * icall.c: add internal call that returns the system page size.
1805 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1807         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1808         'int' for system classes.
1810 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1812         * icall.c, icall-def.h: new icall to check for sufficient
1813         stack space.
1815 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1817         * reflection.c (ensure_complete_type): Check that reflection_info
1818         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1820 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1822         * attrdefs.h:
1823         * tabledefs.h: Add NoOptimization flag.
1825 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1827         * sgen-gc.c: Don't consider it a missing remset if the target
1828         object is pinned - we might have done the store but not added the
1829         remset yet.
1831 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1833         * sgen-gc.c: When checking for missing remsets, don't assert on
1834         the first one, but print them all and then assert.
1836 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1838         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1840 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1842         * console-unix.c: On OSX Control-Y is assigned to
1843         VDSUSP (non-Posix), the
1844         suspend-program-next-time-it-tries-to-read-input command (this is
1845         different than C-z, which suspends immediately).
1847         Do the same thing that bash does and ignore this setting,
1848         making our repl/getline support pasting.
1850 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1852         * sgen-gc.c: Simple plausibility check for scan_starts.
1854 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1856         * sgen-gc.c: Round up when calculating the number of scan starts.
1858 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1860         * reflection.c: Export mono_get_object_from_blob.
1862         * object-internals.h: Ditto.
1864         * icall.c: New icall property_info_get_default_value to get the default
1865         value of a property. Since using this is not common, no caching is done.
1867         * icall-def.h: Add new icall.
1869 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1871         * class.c: Add mono_class_get_property_default_value.
1873         * class-internal.h: Export mono_class_get_property_default_value.
1875 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1877         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1879 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1881         * sgen-gc.c: introduced critical regions to allow some lockless
1882         operations and increase scalability.
1884 2010-02-10  Geoff Norton  <gnorton@novell.com>
1886         * reflection.c: Support building with DISABLE_REFLECTION
1888 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1890         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1891         Closes bug #566057.
1893         * exception.c: fix typo in comment.
1895 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1897         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1898         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1900         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1902         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1903         the internal API.
1905         Fixes #574434.
1907 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1909         * threads.c: Removed two assertions that were too strict.  Added a
1910         clarifying comment.  Fixes #577090.
1912 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1914         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1915         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1917         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1919         * verify.c (mono_type_get_stack_name): Fix a warning.
1921 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1923         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1924         mono_marshal_wrapper_info_from_wrapper.
1926         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1927         mono_marshal_method_set_wrapper_data, and export.
1929         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1930         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1931         by calling mono_marshal_get_wrapper_info ().
1933         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1934         small objects which does no size checks.
1936 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1938         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1940 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1942         * verify.c (mono_method_verify): Use the new basic block formation pass
1943         to avoid verifying dead basic blocks. This is the same behavior as the
1944         runtime MS verifier.
1946 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1948         * mono-basic-block.c:
1949         * mono-basic-block.h: New implementation of a basic block formation pass.
1950         The formation pass does static liveness analysis as well to detect dead
1951         basic blocks.
1953 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1955         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1956         'this' argument in icalls.
1958 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1960         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1962 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1964         * object.c, domain.c: When using SGen, we must register
1965         vtable->type as a root if it's not a MonoType, because then it
1966         wasn't pin-alloced.
1968 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1970         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1971         at the start of nursery collections, because we might have had
1972         degraded allocations which changed next_data.
1974 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1976         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1977         custom attr so this function works in cross-compiling mode.
1979 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1981         * class.c (make_generic_param_class): Initialize interface offsets since we
1982         set klass->inited. Fixes #574819.
1984 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1986         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1987         calling the JIT domain cleanup hook.
1989 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1991         * pedump.c (main): Properly set the verifier mode when running the metadata
1992         verifier.
1994 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1996         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1997         overlapping fields now that we're called before has_references is set.
1999         * pedump.c (dump_verify_info): Clear any loader error before verifying another
2000         method. Otherwise all sort of weird stuff happens.
2002 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
2004         * object.c (mono_field_get_value_object): Handle nullable types correctly.
2005         Fixes #572874.
2007 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
2009         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2010         Fixes #573322.
2012 2010-01-23  Mark Probst  <mark.probst@gmail.com>
2014         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2015         pin_staging_area_index is greater than 0.
2017 2010-01-22 Miguel de Icaza (miguel@novell.com)
2019         * loader.c: Since we do nothing with the error returned, pass NULL
2020         to ignore the error.
2022 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2024         * reflection.c (typebuilder_setup_fields): Pretend field setup already
2025         happened before starting to encode the actual fields. This avoid ciclic
2026         dependencies and eventual crashes.
2028         Fixes #572660.
2030 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2032         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2033         atomic and remove the half-constructed hack in SGen.
2035 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2037         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
2038         has a recursive reference to itself.
2040         Fixes #571863.
2042 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2044         * loader.c (mono_method_signature): Fix error message.
2046 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2048         * sgen-gc.c: Reuse to-space sections between nursery collections.
2050 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2052         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2053         from the current assembly or mscorlib. Fixes bug #322957.
2055 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2057         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2058         get_wrapper_target_class.
2060 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2062         * sgen-gc.c: Fix warnings.
2064 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2066         * verify.c (store_local): Better error message.
2068 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2070         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2071         arguments.
2073 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2075         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2076         function is generics variance aware.
2078 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2080         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2081         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2083 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2085         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2086           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2088         Code is contributed under MIT/X11 license.
2090 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2092         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2093         on a GTD.
2095 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2097         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2098         return a point to a wrapper specific info structure describing the wrapper.
2099         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2101 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2103         * sgen-gc.c: Make minor collection section allowance adaptive,
2104         depending on the amount of memory reclaimed in the last major
2105         collection.  If more memory was reclaimed (i.e. more garbage
2106         produced), do the next collection earlier.
2108 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2110         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2111         to itself.
2113         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2114         the token as parameter.
2116         * verify-internals.h: Ditto.
2118         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2120         Fixes #571460.
2122 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2124         * sgen-gc.c: Make store_remset_buffer_index long.
2126 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2128         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2130         Fixes #569579.
2132 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2134         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2135         off precise marking if it is available.
2136         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2138 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2140         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2142         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2143         pinned objects.
2145         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2146         to the array allocator.
2148 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2150         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2151         result of mono_compile_method (), it already includes an ftnptr.
2153 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2155         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2157 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2159         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2160         hash value which doesn't depend on glib/eglib versions.
2161         (mono_metadata_type_hash): Use it.
2163         * object.c (mono_method_get_imt_slot): Ditto.
2165 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2167         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2168         independently of the GTD.
2170         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2172         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2173         to the upper limit since instance_size includes this amount.
2175         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2177         Fixes #569544.
2179 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2181         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2182         with static methods.
2184         * object.c (build_imt_slots): Avoid asserting when static methods are
2185         encountered in an interface.
2187 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2189         * sgen-gc.c (to_space_expand): Fix assertion.
2191 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2193         * string-icalls.c: missing declaration fixes.
2194         * sgen-gc.c: portability fixes.
2196 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2198         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2200         * class.c:
2201         * cominterop.c:
2202         * icall.c:
2203         * object.c: 
2204         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2206 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2208         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2209         it can fail loading the type.
2211         * class.c: Add mono_class_inflate_generic_class_checked.
2213         * class.c:
2214         * verify.c:
2215         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2217 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2219         * loader.c (mono_method_signature_checked): New internal function taking an
2220         MonoError argument.
2222         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2223         Fixes build on rh 7.3.
2225 2010-01-10  Aaron Bockover  <abockover@novell.com>
2227         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2228         at runtime in the same way as on Windows, which yields a relocatable
2229         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2230         of the running mono process.
2232         On TARGET_ARM, fallback () will always be executed.
2234 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2236         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2238 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2240         * class.c (mono_class_is_assignable_from_slow): Support variant
2241         generic delegates.
2243         * class.c (mono_class_implement_interface_slow): Support types with
2244         variant generic arguments.
2246 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2248         * verify.c: Remove some code duplication.
2250 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2252         * object.c: Update docs.
2254 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2256         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2258         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2259         fallback trampoline as well.
2261         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2262         out argument that is set to TRUE if the match was direct. 
2264         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2266         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2268 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2270         * class.c: Add mono_class_interface_offset_with_variance function that does same
2271         as mono_class_interface_offset but takes variance into account.
2273         * class-internal.h: Export mono_class_interface_offset_with_variance.
2275         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2277 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2279         * object.c:
2280         * icall.c:
2281         * class.c: Add some FIXME for due to variant generic arguments.
2283         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2284         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2285         the bitfield check fails.
2287 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2289         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2290         to be easier to read and fix bugs in the case a non generic type implements a variant
2291         interface.
2293         * class.c (mono_class_has_variant_generic_params): Make non static.
2295         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2296         the private API.
2298 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2300         * assembly.c: fix MONO_PATH debug output.
2302 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2304         * culture-info-table.h : regenerated.
2306 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2308         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2309         types that are meant to not have a parent.
2311 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2313         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2314         from the image mempool, so it is not leaked.
2316 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2318         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2320 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2322         * verify.c (verify_valuetype_layout_with_target): Fix case
2323         that can lead to infinite recursion. Fix bug #567861
2325 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2327         * pedump.c: Run code verifier even if image verification fails
2328         due to a failed type we. This allows more errors to be shown.
2330 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2332         * class.c (count_virtual_methods): Remove the assert and now
2333         fail properly.
2334         
2335         * class.c (setup_interface_offsets): This can fail now.
2337         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2338         errors. Check setup_interface_offsets errors.
2340         * class.c (setup_interface_offsets): Simplify the return error logic
2341         and remove class_init_ok.
2343         Fixes #560327.
2345 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2347         * class.c (mono_class_init): Do class verification at the beginning. Add
2348         some asserts to avoid tripping into invalid memory.
2350         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2351         g_error and a decent message.
2353         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2355         Fixes #567548.
2357 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2359         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2360         as inline functions instead of defining them in mempool.c.
2362         * metadata-internals.h (MonoImageSet): New structure representing a set of
2363         MonoImages, which own a collection of generic instances.
2365         * metadata.c: Get rid of the global generic caches, instead assign each generic
2366         instance to the image set which consists of all the images referenced by the
2367         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2368         the memory used by generic instances to be allocated from a per image-set mempool
2369         later.
2371 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2373         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2375 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2377         * appdomain.c (zero_static_data): Fix a warning.
2379         * locales.c (construct_culture_from_specific_name): Applied patch from
2380         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2381         not found. Fixes #567900.
2383 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2385         * loader.c (mono_method_get_signature_full): Remove two asserts.
2386         Return NULL instead so that the verifier can handle both cases 
2387         gracefully.
2389 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2391         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2392         so we can properly fail types instead of crashing.
2394         Fixes #567676.
2396 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2398         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2399         generic method.
2401 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2403         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2405 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2407         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2408         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2409         we can't remove it from it since we don't hold the lock.
2410         (mon_new): Free the orphaned events here when a mon structure is added to the
2411         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2412         this down.
2414 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2416         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2417         as max stack might be zero.
2419         Fixes #562320.
2421 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2423         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2425         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2426         instances if the GTD did.
2428         * class.c (mono_class_setup_properties): Ditto.
2430         * class.c (mono_class_setup_events): Ditto.
2432         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2434         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2435         error setting.
2437         * class.c (mono_class_init): Fail if GTD did.
2439         * cominterop.c:
2440         * generic-sharing.c:
2441         * icall.c:
2442         * loader.c:
2443         * object.c:
2444         * verify.c: Properly handle failure of mono_class_setup_methods.
2446 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2448         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2449         mono_class_inflate_generic_method_full internal.
2451         * class.c (inflate_generic_context): Now takes a MonoError argument.
2453         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2454         errors.
2456 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2458         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2459         they cannot be patched. Partly fixes #564408.
2461 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2463         * metadata-internals.h, reflection.c: Use the
2464         MonoDynamicImage.handleref hash table only with unmanaged keys,
2465         and add a managed hash table handleref_managed for managed keys.
2467 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2469         * sgen-gc.c: Unset to-space bumper between collections.  It might
2470         become invalid due to degraded allocations.
2472 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2474         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2475         with the one from the original method.
2477         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2478         compatibility.
2480         * verify-internals.h: Add new function to the internal API.
2482 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2484         * culture-info-tables.h: regenerated it to include the Georgian culture.
2486 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2488         * sgen-gc.c: Include mono/utils/memcheck.h.
2490         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2491         instead of the current domain, since the two might not match if this is called
2492         from the debugger.
2494         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2495         domain which created this assembly.
2497 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2499         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2501 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2503         * sgen-gc.c: Managed implementation of the specialized generic
2504         store write barrier.
2506 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2508         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2509         A private virtual newslot method is used to implement an interface method without exposing
2510         it to users. When querying for public instance methods, such method would hide a public one
2511         on a parent type.
2513         Fixes #564379.
2515 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2517         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2518         conventions.
2520 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2522         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2524 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2526         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2527         as they are no longer used.
2528         
2529          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2531         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2533 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2535         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2536         if the owner class has not been finished before returning reflection_info.      
2538         Fixes #565127.
2540 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2542         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2543         param doesn't have custom attributes. Fixes #565117.
2545         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2546         #565120.
2548 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2550         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2552 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2554         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2555         same amount done by a core-clr enabled runtime.
2557 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2559         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2560         the target files is reset to writable by owner and readable by
2561         everyone else to prevent problems when updating shadow copies of
2562         files whose source is read-only. Fixes bug #556884
2564 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2566         * class.c (mono_generic_class_get_class): Allocate the generic
2567         class via malloc again, so that it can be freed when any one of
2568         the images of its constituent types is closed.
2570         * metadata.c: When closing an image, don't free generic insts and
2571         generic classes right away, but put them into a list for later
2572         freeing.
2574         * image.c, metadata-internals.h: Store the free list and in the
2575         second pass of closing an image, free it.
2577 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2579         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2581         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2582         types in type_hash.
2584         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2586 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2588         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2589         user type.
2591         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2592         is used.
2594 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2596         * verify.c (mono_method_verify): The Unused opcodes produce an
2597         InvalidProgramException on .NET
2599 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2601         * loader.c (mono_method_get_header): Move assert after the verifier
2602         has been called on the method header.
2604 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2606         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2608         * appdomain.c: Bump corlib version.
2610 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2612         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2613         types as well since otherwise generic instances would not return UT as arguments but
2614         their undelying system type.
2616         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2617         to reflect the fact that they can have now multiple different types.
2619         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2621         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2623         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2625         * reflection.c (mono_reflection_register_with_runtime): Init super types
2626         if the image is not dynamic.
2628         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2629         check if the generic type definition is a TypeBuilder.
2631         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2632         doesn't belong to a dynamic image, skip initialization.
2634         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2635         base definition is not a dynamic type.
2637 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2639         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2640         mono_profiler_string_allocation
2642         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2643         if string profiling is enabled, call
2644         mono_profiler_string_allocation
2646         * profiler.h: added two MonoProfileFlags -
2647         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2648         installation functions for the hooks below.
2650         * profiler-private.h, profiler.c: added two hooks:
2651         mono_profiler_string_allocation called whenever a string is
2652         allocated by InternalAllocateStr and mono_profiler_iomap called
2653         whenever IOMAP code performs an adjustement on a file path.
2655 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2657         * boehm-gc.c: fixed race condition while getting the target of a
2658         disappearing link (bug #522233).
2660 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2662         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2663         the error.
2665 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2667         * reflection.c: Add mono_reflection_register_with_runtime icall to
2668         allow a MonoGenericClass to register itself as the managed mirror of
2669         a given generic instance.
2670         This is a temporary workaround until all MGC instantiation happens in
2671         managed code.
2673         * object-internals.h: Ditto.
2675         * icall-def.h: Ditto.
2677 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2679         * sgen-gc.c (find_in_remsets): Also search the generic store
2680         remsets.
2682 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2684         * sgen-gc.c: Don't access class names in debugging code when
2685         unloading a domain, because they might not be valid anymore.
2687 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2689         * domain.c, domain-internals.h: New function mono_domain_unset().
2691         * appdomain.c (unload_thread_main): Detach the thread again at the
2692         end.
2694         * threads.c: When a thread exists or is detached, unset its domain
2695         so that it's NULL when, for example, a pthread destructor runs.
2697         * sgen-gc.c: Assert that there is no domain set after a thread is
2698         done.
2700 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2702         * class.c (mono_generic_class_get_class),
2703         metadata.c (free_generic_class): Allocate generic MonoClass's from
2704         the image mempool, not via malloc.  The problem with malloc is
2705         that when unloading a domain those classes are freed before
2706         clearing the heap and SGen needs the classes.  Rewriting the
2707         unloading code to do the free later would be more work and there's
2708         no point in using malloc anyway.
2710 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2712         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2713         before returning.
2715 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2717         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2718         user string blobs.
2720         * verify-internals.h: Add new function to the internal API.
2722         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2723         check if it's a valid string.
2725         * object.c (mono_ldstr): Ditto.
2727         Fixes #561943.
2729 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2731         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2732         from a method before returning it. This is the expected behavior.
2734 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2736         * reflection.c (inflate_method): Handle the case of a regular system type.
2738 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2740         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2741         gathering code.
2743         * mempool.c, mempool-internals.h: New function
2744         mono_mempool_get_bytes_allocated().
2746         * Makefile.am: sgen-pinning-stats.c added.
2748 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2750         * sgen-gc.c (create_allocator): Only use the fast path if the
2751         object size is within the small object size limit.
2753 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2755         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2756         possibly adding padding to sizeof (GCMemSection).
2758 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2760         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2761         reference is not in the nursery.
2763 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2765         * class.c (mono_class_from_typeref): Bounds check idx against the 
2766         assemblyref table.
2768 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2770         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2771         through the potential roots, then sort the results and find the
2772         pinned objects from there.
2774         * Makefile.am: sgen-pinning.c added.
2776 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2778         * sgen-gc.c: Record generic stores in specialized remset buffers.
2780 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2782         * sgen-gc.c: Make pinned chunks the same size as major heap
2783         sections, and align them as well, so that we can check whether an
2784         object is in a pinned chunk or a major section in constant time.
2786 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2788         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2790 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2792         * sgen-gc.c: Make all major heap sections the same size (currently
2793         128k) and allocate them on aligned addresses.  Small heap sections
2794         give us better granularity with pinned objects - we can free up
2795         much more memory.
2797 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2799         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2800         output removed.
2802 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2804         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2806         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2807         names in addition to the runtime generated one.
2809         * mono/metadata/image.h: Add a function to take the real name of the assembly
2810         image.
2812         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2813         use it instead of the runtime generated one.
2815         Code is contributed under MIT/X11 license.
2817 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2819         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2820         before the other checks to prevent problems if the DateTime class is blittable.
2821         Hopefully fixes #559600.
2823 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2825         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2826         returns the largest string length that will not be put into the
2827         LOS.
2829         * sgen-gc.c, gc-internal.h: New function that returns the largest
2830         object size that will not be put into the LOS.
2832         * appdomain.c: Bump corlib version.
2834 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2836         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2838         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2840 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2842         * reflection.c (inflate_method): Fix signature.
2844         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2845         in managed code.
2847 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2849         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2851 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2853         * sgen-gc.c: Abstract to-space handling.
2855 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2857         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2859         Fixes #559906.
2861 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2863         * sgen-gc.c: Only add references from outside the nursery to
2864         within the nursery to the global remset list.
2866 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2868         * appdomain.c (create_exceptions): Set the domain temporarily if
2869         necessary to avoid cross-domain references.
2871 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2873         * verify.c (get_stack_type): Return that the type is invalid instead of
2874         asserting.
2876         * verify.c (mono_method_verify): Verify that all locals and arguments
2877         have valid stack types.
2879         Fixes #559913.
2881 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2883         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2884         bounds checking overflow aware.
2886         Fixes #559910.
2888 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2890         * verify.c (do_invoke_method): Check for invalid method signatures.
2892         Fixes #553450.
2894 2009-12-02  Jb Evain  <jbevain@novell.com>
2896         * appdomain.c (MONO_CORLIB_VERSION): bump.
2897         * icall-def.h (get_base_definition): renamed to get_base_method
2898         and add a boolean argument indicating we want the original
2899         method definition, or the immediate base method.
2900         * icall.c: apply the get_base_definition to get_base_method change.
2902 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2904         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2906         Fixes #558042.
2908 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2910         * class.c: remove asserts for invalid type token in
2911         mono_class_name_from_token(), mono_assembly_name_from_token() and
2912         mono_class_create_from_typedef () (fixes bug #553318).
2914 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2916         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2917         incorrect assemblies (bug #553322).
2919 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2921         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2923         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2925         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2927         * class.c (inflate_generic_context): Ditto.
2929         * loader.c (method_from_methodspec): Ditto.
2931         Fixes #558230.
2933 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2935         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2937         * class.c (mono_class_create_from_typespec): Ditto.
2939         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2941         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2943         Fixes #558184.
2945 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2947         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2949         * verify.c (verify_delegate_compatibility): Ditto.
2951         * verify.c (do_newobj): Ditto.
2953         Fixes #558046.
2955 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2957         * sgen-gc.c: Use a gray queue instead of requiring that gray
2958         objects are in a contiguous region.
2960         * sgen-gray.c: The gray queue implementation.
2962         * Makefile.am: sgen-gray.c added.
2964 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2966         * appdomain.c: When unloading a domain, zero its static data and
2967         perform a minor collection when using SGen.  That will get rid of
2968         all the remsets pointing into that domain's static data.
2970         * sgen-gc.c: Allow remsets into static data.  By doing this we
2971         need less checks so we're more efficient.
2973 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2975         * verify.c (mono_method_verify): Check for catch clauses with broken
2976         types.
2978         Fixes #558465.
2980 2009-12-01  Jb Evain  <jbevain@novell.com>
2982         * class.c (make_generic_param_class): set the namespace of
2983         the generic parameter class from its owner, if available.
2985 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2987         * verify.c (code_bounds_check): Do proper overflow checking.
2989         * verify.c (mono_method_verify): The number of switch entries is
2990         an unsigned int. Properly bounds check it.
2992         Fixes #558594.
2994 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2996         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2997         mono_metadata_method_has_param_attrs which only checks if a given param
2998         list has a non zero flags entry.
3000         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
3001         to inform how many params should we expect to decode.
3003         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
3004         as it's faster than mono_metadata_get_param_attrs.
3006         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
3007         add mono_metadata_method_has_param_attrs.
3009 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3011         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3012         failures.
3014         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3015         is -1 but its class is broken.
3017         Fixes #558522.
3019 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3021         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3022         for parameter overflow.
3024         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3025         of mono_metadata_get_param_attrs.
3027         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3028         API.
3030         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3032 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
3034         * class.c (mono_class_setup_fields): Check for fields with broken types.
3036         Fixes #558741.
3038 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
3040         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3041         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3042         its TypeBuilder::CreateType ().
3044         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3045         if not needed.
3047         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3048         to make setup_interface_offsets happy.
3050         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3051         compilation now works.
3053 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3055         * appdomain.c (create_exceptions): New helper function extracted from
3056         mono_runtime_init () to precreate objects used during exception handling.
3057         (mono_runtime_init): Call it.
3058         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3060 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3062         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3063         compilation until the proper one is found.
3065 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3067         * class.c (mono_class_setup_vtable_general): Cache the result of
3068         get_virtual_methods () since it can be slow because of the metadata
3069         optimization.
3071         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3072         from a MonoValueHashTable for now, since the later is based on an earlier
3073         version of hpj's internal probing code and seems to have serious collision
3074         issues.
3076         * loader.c (mono_get_method_full): Update after the change above.
3078 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3080         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3082 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3084         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3085         the GTD instead of the DGC instead of crashing.
3087         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3088         required. Inflate fields if needed.
3090         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3091         finished. Renamed.
3093 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3095         * class.c (check_interface_method_override): Check for NULL signatures and fail
3096         the type.
3098         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3100         Fixes #553428.
3102 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3104         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3105         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3107 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3109         * loader.c (field_from_memberref): Resolve the class first then the field
3110         signature. Remove a lot of duplicated code and make sure we don't pass valid
3111         values to mono_loader_set_error_field_load.
3113         Fixes #553306.
3115 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3117         * class.c (inflate_generic_type): Change code to use new signature of
3118         mono_error_set_bad_image.
3120         Fixes #558124.
3122 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3124         * verify.c (mono_method_verify): Don't free ctx.params items if 
3125         we aborted while inflating the ctx.locals. Complete previous fix
3127 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3129         * verify.c (mono_method_verify): Use the uninflated type name, 
3130         when the inflated is null, to report errors. Also take care when
3131         freeing, not to free everything since, in case of an error, some
3132         stuff would be copies (i.e. not allocated by the function itself)
3133         Fix bug #558145
3135 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3137         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3138         or overflow. The caller must have done this check explicitly. This guard us
3139         from accessing invalid memory.
3141         * verify.c (do_push_static_field): Check for stack overflow.
3143         Fixes #553333.
3145 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3147         * loader.c (find_method_in_class): Don't crash if the signature cannot
3148         be resolved.
3150         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3151         of asserting for the case of invalid params.
3153         Fixes #553304.
3155 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3157         * image.c (mono_image_load_module): Fix crash when a bad assembly
3158         has no module at all (fix bug #553412) and also replace the 
3159         g_assert with a return NULL (documented return value for failure)
3161 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3163         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3165 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3167         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3168         file attribute to managed code and avoid doing the mask/attribute
3169         checks here. 
3171 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3173         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3174         the managed world.
3176         * icall-def.h: New entry points.
3177         
3178 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3180         * process.c: Don't put references to managed objects into a
3181         g_ptr_array.
3183 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3185         * class.c (can_access_internals): Allow CoreCLR to participate in
3186         allowing (or not) [InternalsVisibleTo] between assemblies.
3187         * security-core-clr.c|h: Make sure that only trusted code (a 
3188         superset of platform code) can access the internals of platform
3189         code.
3191 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3193         * reflection.c: use the correct base class to get the virtual method
3194         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3196 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3198         * security-core-clr.c (get_caller_no_reflection_related): 
3199         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3200         it's still reflection and must be filtered correctly.
3202 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3204         * object.c (compute_class_bitmap): Fix for large bitmaps.
3206 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3208         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3210         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3211         koush@koushikdutta.com). Disable GC_no_dls on android.
3213 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3215         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3216         tlab_next points outside the TLAB because the allocator was
3217         interrupted.
3219 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3221         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3223 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3225         * object-internals.h: Change signature for mono_string_to_utf8_image.
3227         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3228         argument.
3230         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3231         exceptions due to mono_string_to_utf8.
3233 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3235         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3237         * object.c (mono_remote_class): Make sure all resources are released before
3238         raising an exception.
3240         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3242 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3244         * mono-perfcounters.c (network_get_impl): Change variable initialization
3245         ordering to fix potential memory leak in case of exceptions.
3247         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3248         encoded strings.
3249         
3250 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3252         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3253         variable initialization ordering to fix potential memory leak in case
3254         of exceptions.
3256 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3258         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3259         needed.
3261 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3263         * appdomain.c: Fix shadow path code to better deal with exceptions.
3265 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3267         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3268         exception in the middle of the runtime code.
3270 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3272         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3273         leak memory with broken envvar value.
3275 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3277         * reflection.c (mono_reflection_setup_internal_class): Because
3278         nested classes are not added to the name cache, we must put them
3279         in the reflection_info_unregister_classes list.
3281 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3283         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3284         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3285         platform (trusted) code. Instead we return a TypeLoadException to
3286         be thrown later. This is the exception thrown by Silverlight 2 if
3287         a type, inside application (user) code is marked with [ComImport]
3289 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3291         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3292         mono_is_debugger_attached () too.
3294         * mono-debug.c (mono_is_debugger_attached): New helper function.
3295         (mono_set_is_debugger_attached): Ditto.
3297 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3299         * object-internals.h: Add mono_string_to_utf8_checked.
3301         * object.c: Implement mono_string_to_utf8_checked.
3303 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3305         * class.c: Add missing check for load errors after every
3306         call to mono_class_setup_fields
3308         Fixes #552282.
3310 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3312         metadata-verify.c (verify_tables_schema): Fix the error message.
3314 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3316         * metadata.c: Change event table schema to use TDOR for event type
3317         as this is what it's meant to be.
3319         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3320         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3321         entry.
3323         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3324         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3325         rows in MONO_TABLE_GENERICPARAM.
3327         Fixes #552289.
3329 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3331         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3332         insertion.
3334         * reflection.c (mono_reflection_setup_internal_class): Avoid
3335         registering a gc root the same MonoClass multiple times.
3336         Don't register nested types on the global scope as they should
3337         not be available there.
3339 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3341         * culture-info-tables.h: regenerated.
3343 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3345         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3347 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3349         * string-icalls.c|h: Remove string internal calls that are not 
3350         used anymore by the class libraries.
3351         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3352         which is not used in the class librairies.
3353         * icall-def.h: Update tables.
3355 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3357         * class.h: Move mono_class_inflate_generic_type_checked...
3359         * class-internals.h: to here and make it internal. We don't want to
3360         further expose MonoGenericContext. 
3362 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3364         * verify.c (mono_method_verify): Improve error message.
3366 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3368         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3369         the token is already properly encoded. Fixs 4.0 build.
3371 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3373         * locales.c (construct_number_format): Check if the number index is
3374         valid before trying to use it, if not, just return.
3375         
3376 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3378         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3379         since that loses the abort state. Fixes #539394.
3381 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3383         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3384         explicit this argument to the call signature.
3385         (mono_marshal_get_icall_wrapper): Ditto.
3387 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3389         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3390         to indicate which assembly to use when resolving a custom-mod.
3392         Fixes handling of volatile fields used across assemblies as reported in #551513.
3394 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3396         * loader.c: Improve error messages.
3398 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3400         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3401         of interfaces. Fixes IKVM.
3403         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3405 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3407         * verify.c (verifier_inflate_type): Return the inflated type on success.
3409 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3411         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3413         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3415         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3417         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3418         flag set.
3420         * profiler.c: Add new profiler callbacks for runtime invoke.
3422         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3424 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3426         * sgen-gc.c: Keep track of the reason for a major collection and
3427         write it to the heap-dump file.
3429 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3431         * threads.c: refactor the code that initializes the
3432         thread_start_args into a reusable function and use this in the two
3433         methods that start up threads.
3435 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3437         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3438         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3440 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3442         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3443         Until now, we only had the per-cpu(core) counters.
3445 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3447         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3448         mono_gc_get_suspend_signal(), which returns the suspend signal
3449         number used by the GC.
3451 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3453         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3455         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3456         signalling start_notify.
3458 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3460         * appdomain.c: do not test the st_mode field for shadow-copies.
3461         Fixes bug #545276.
3463 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3465         * threadpool.[ch]: added hooks for thread start/finish and item
3466         processing begin/end. For monotouch use only.
3468 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3470         * threads.c (mono_thread_get_name): New helper function.
3472         * reflection.c (resolve_object): Set handle_class for strings too.
3473         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3474         a cattr blob into a set of arrays and structures without creating the custom
3475         attributes themselves.
3476         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3478         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3480         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3481         function.
3483 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3485         * verify.c: Replace calls to mono_class_inflate_generic_type with
3486         mono_class_inflate_generic_type_checked. Fixes #480005.
3488 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3490         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3491         object since not all paths lead to callees initing it.
3493 2009-10-23  Alp Toker  <alp@nuanti.com>
3495         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3496         header and should not be shipped:
3498         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3499         which is specific to the mono build. Not going to work.
3501 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3503         * security-manager.c: Report if core-clr is active from
3504         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3505         to allow Moonlight BCL to behave appropriately (both in browser
3506         and outside, e.g. smcs)
3508 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3510         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3511         Fixes bug #549108.
3513 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3515         * class.c: fix typo.
3517 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3519         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3520         a MonoError parameter.
3522         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3523         version that can does proper error handling.
3525         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3527         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3529         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3531 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3533         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3534         NO_UNALIGNED_ACCESS is defined.
3536 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3538         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3539         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3540         Fixes #549173.
3542 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3544         * sgen-gc.c: Shorten sections whenever possible.
3546 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3548         * sgen-gc.c: Use our portable semaphore #defines.
3550 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3552         * sgen-gc.c: A debug option for dumping the heap layout to a file
3553         after each collection.
3555 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3557         * sgen-gc.c: Make managed write barriers atomic via
3558         thread-restarts.
3560 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3562         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3563         methods. Fixes #543021.
3565 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3567         * socket-io.[ch]: fix VS build.
3569 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3571         * icall-def.h:
3572         * socket-io.[ch]: implemented SendFile.
3574 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3576         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3577         before the interfaces to avoid crashes later if class initialization fails.
3578         Fixes #548417.
3580         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3581         Fixes #548276.
3583 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3585         * domain.c: Bump 4.0 version.
3587 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3589         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3590         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3591         check since 'pubkey' can't be NULL at this stage
3592         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3593         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3594         initialization of 'iter'
3596 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3598         * cominterop.c : Search the interface parts of vtable to find 
3599           method matches.  Fixes 547030.
3601         Code is contributed under MIT/X11 license.
3603 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3605         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3606         multiple targets. Fixes bug #574426.
3608 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3610         * profiler.h: Put here the definition of
3611         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3612         (and fix the build...).
3614 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3616         * profiler.c, profiler.h, profiler-private.h:
3617         Added support for different ways of getting call chains in stat mode.
3619 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3621         * object.c, object-internals.h: New function for computing the
3622         size of an array, factored out of mono_array_new_full().  Use
3623         SGen's functions for allocating arrays and vectors.
3625         * sgen-gc.c, gc-internal.h: Special functions for allocating
3626         arrays and vectors without race conditions.  A managed array
3627         allocator method.
3629         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3631 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3633         * object.c, object.h, icall.c: Write barriers do the copying now,
3634         as well, so no need for an additional memcpy.
3636         * sgen-gc.c: Lock when storing remsets.  Do the memory
3637         copying/moving in the write barriers.
3639         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3641         * reflection.c: Added an assert.
3643 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3645         * threads.c, process.c: A few missing write barriers.
3647 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3649         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3650         network performance counters for bytes sent per second, bytes
3651         received per second, and bytes total per second.
3653         Code is contributed under MIT/X11 license.
3655 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3657         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3658         Fix warning.
3660 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3662         * threads.c, object-internals.h, object.c: Move code for
3663         transferring an object to a different domain (via
3664         serialization/remoting) to object.c.
3666         * object.c (call_unhandled_exception_delegate): If the exception
3667         is in a different domain than the delegate, transfer the exception
3668         to that domain.
3670 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3672         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3673         Fixes #322934.
3675 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3677         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3679 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3681         * object.c (mono_method_return_message_restore): Handle the case
3682         where the argument is an instance of a generic type.  Fixes
3683         #544446.
3685 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3687         * object.c (set_value): Write barrier fix - we must pass the
3688         count, not the size.
3690 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3692         * domain.c (mono_init_internal): Print a useful error message when encountering
3693         an old mscorlib, instead of crashing. Fixes #544307.
3695 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3697         * appdomain.c (copy_app_domain_setup): Fix a warning.
3699         * debug-helpers.c (dis_one): Ditto.
3701 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3703         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3704         into the new domain, instead of referencing the original one.
3706         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3707         non-static.
3709         * appdomain.c: Corlib version bump.
3711 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3713         * threadpool.c: one more...
3715 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3717         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3718         threads to die because we're shutting down. delgate5.exe works again.
3720 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3722         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3723           ccw_interface_hash table when a ccw is finalized.
3725         Code is contributed under MIT/X11 license.
3727 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3729         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3730         domain and image unloading into two steps.  We must do this
3731         because clearing the domain in SGen requires the class metadata to
3732         be intact, but we need to free the mono_g_hash_tables in case a
3733         collection occurs during domain unloading and the roots would trip
3734         up the GC.
3736 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3738         * object-internals.h: Remove serialized culture fields from
3739         MonoInternalThread.
3741         * icall-def.h, thread-types.h, threads.c: Remove serialized
3742         culture icalls.
3744         * appdomain.c: Corlib version bump.
3746 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3748         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3749         Fixes #543133.
3751 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3753         * sgen-gc.c: Try to shorten the new section after a major
3754         allocation to avoid ever-growing sections.
3756 2009-10-13  Martin Baulig  <martin@ximian.com>
3758         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3759         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3760         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3761         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3763         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3765 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3767         * threadpool.c: fixed the order in which 'completed' and the wait
3768         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3769         No need to use the wait_handle field of ASyncCall. Make sure the
3770         threadpool is active when adding a job or queueing an idle thread.
3772 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3774         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3776         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3777         when using --compile-all.
3779 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3781         * metadata.c (free_generic_class): Unregister the field_objects
3782         roots if we're using SGen.
3784 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3786         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3787         for GenericParamTableEntry.gparam.
3789 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3791         * marshal.c: don't create the handle when calling. It is created later
3792         if needed.
3794 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3796         * sgen-gc.c: Warning fixes.
3798 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3800         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3801         whole heap for cross-domain references before each collection.
3803         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3804         object.
3806         * threadpool-internals.h, threadpool.c: New function
3807         mono_thread_pool_is_queue_array() for checking whether a given
3808         array is used as a (cross-domain) queue by the thread pool code.
3810 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3812         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3813         searches the whole heap for objects containing a specific
3814         reference.  Only for debugging.
3816 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3818         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3820         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3821         byte arrays between domains.
3823 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3825         * threadpool.c:
3826         * class-internals.h:
3827         * mono-perfcounters-def.h:
3828         * mono-perfcounters.c:
3829         -There is a list of idle threads
3830         -Each of those idle threads wait on their own WaitHandle instead
3831         of all of them using the same semaphore. When a new work item is
3832         added, the job is assigned directly to an idle thread or a newly
3833         created one if possible and then the handle for that thread is
3834         signaled. Compare that to the current approach where all the
3835         threads in the pool compete to dequeue a job from the same
3836         queue.
3837         -New struct ThreadPool that brings together the bunch of static
3838         variable for each threadpool (IO and regular).
3839         -New performance counters: # of items added and its rate per
3840         threadpool. The rate will be used later, perhaps together with
3841         other perf. counters, to decide when idle threads should exit.
3843 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3845         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3846         Fix typo on Windows build.      
3847         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3848         
3849         Code is contributed under MIT/X11 license.
3851 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3853         * object-internals.h: The Thread class is split up into Thread and
3854         InternalThread now.  We have exactly one InternalThread per
3855         thread, and at most one Thread per appdomain per thread.  Most
3856         data is stored in InternalThread.  All InternalThread objects live
3857         in the root domain.
3859         * class-internals.h: Add internal_thread_class to MonoDefaults.
3861         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3862         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3863         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3864         resulting from the split of the Thread class.
3866         * gc-internal.h: Prototype for new function for checking whether a
3867         thread is the finalizer thread.
3869         * appdomain.c: Corlib version bump.
3871 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3873         * appdomain.c|h: Add a mono_domain_try_unload method which is
3874         equivalent to mono_domain_unload, except that it returns an exception
3875         instead of throwing it. Make mono_domain_unload use the
3876         mono_domain_try_unload method to avoid code-duplication.
3878 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3880         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3881         a problem.
3883 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3885         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3886         aborting when a conversion is not implemented.
3888 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3890         * verify.c: when comparing culture strings, use g_ascii_strcmp
3892         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3893         when comparing public key tokens to use memcmp on 16 bytes.   I do
3894         not believe this ever worked as advertised in the past.
3896         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3897         which would have always failed earlier.
3899 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3901         * gc.c: Raise a NullArgumentException if the object passed is
3902         null.
3904 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3906         * image.c (mono_image_close): Atomically decrement the reference count and
3907         remove the image from the hash tables, to prevent another thread from seeing a
3908         dying MonoImage. Fixes #541194.
3910 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3912         * threadpool.c: actually use the minimum number of 'completion ports'
3913         (for us is just a potential worker thread).
3915 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3917         * threadpool.c: remove ares_htable. It does not make sense any more
3918         since the same objects are now stored in GC-tracked arrays while they are
3919         in the queue.
3921 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3923         * threadpool.c: increase the minimum length of the queues to 128.
3924         Remove warning.
3926 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3928         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3929         return the modified signature used by string ctors.
3931 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3933         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3934         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3935         method, to be used by full-aot.
3937 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3939         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3940         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3941         be known to be good.
3943         * class.c (mono_class_init): Fail array types if their element type fails initialization
3944         as well.
3946         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3947         initialization, additionally we request the element_type vtable to be initialized as well.
3949         This is fine and should not increase the working set in any meaningful way since it's reasonable
3950         to assume       that most code will create an array and eventually populate it, which will require the
3951         type's vtable to be initialized.
3953         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3955 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3957         * normalization-tables.h : regenerated.
3959 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3961         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3962         a leb128 encoding can take up to 5 bytes.
3964 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3966         * class.c (verify_class_overrides): Remove useless argument.
3968         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3969         before interface enumeration as this is no longer required.
3971 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3973         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3974         used under mono_class_init context. This functions avoid any code path that
3975         calls mono_class_init, which leads it to be slow as some things like the interface
3976         bitmap are not available.
3978         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3979         of it's own broken version. Fixes the verifier part of #538588.
3981         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3982         API.
3984 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3986         * class.c (mono_class_init): Always set an exception in a class if
3987         vtable setup fails.  Fixes #538577.
3989         * generic-sharing.c: Raise an exception if mono_class_vtable()
3990         returns NULL.
3992 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3994         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3995         methods of vtypes, as they could be incorrectly shared with static methods
3996         taking an IntPtr argument.
3998 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4000         * domain.c:
4001         * object.c:
4002         * class-internals.h: renamed waithandle_class to
4003         manualresetevent_class.
4004         * marshal.c: propagate the exception if a remoting BeginInvoke call
4005         fails.
4007 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4009         * object.c: Properly handle vtable failures.
4011 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4013         * socket-io.c: Assert on vtable failure.
4015         * mono-mlist.c: Assert on vtable failure.
4017 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4019         * marshal.c: Assert on vtable failure.
4021 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4023         * icall.c: Properly handle vtable failures.
4025 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4027         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4029 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4031         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4033         * console-unix.c (do_console_cancel_event): Same.
4035 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4037         * class-internals.h: Add mono_class_vtable_full function that allows control
4038         if an exception should be raised or not.
4040         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4041         to do what its documentation say, that is to return NULL and set exception_type on
4042         failure.
4044         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4045         and change the code to honor it.
4047 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4049         * verify.c: Fix typo in error message.
4051 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4053         * security-core-clr.c: Fix default_platform_check so it can run
4054         the runtime coreclr tests (without an infinite recursion when
4055         throwing an exception).
4057 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4059         object.c (mono_delegate_ctor_with_method): Guard against null method.
4061 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4063         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4064         that should be replaced with error handling later.
4066 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4068         * marshal.c (mono_delegate_end_invoke): Fix warning.
4070 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4072         * loader.c (mono_field_from_token): Properly handle invalid
4073         dynamic tokens.
4075 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4077         * pedump.c (verify_image_file): Skip types that can't be
4078         decoded.
4080 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4082         * verify.c: Look for recursive valuetypes only against the
4083         type been initialized as this is a lot simpler and works.
4085 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4087         * verify.c: Ensure that fields are properly loaded before
4088         checking them.
4090 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4092         * object.c (mono_object_get_virtual_method) : Call 
4093           mono_cominterop_get_invoke if the object is a COM object.
4095         Code is contributed under MIT/X11 license.
4097 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4099         * verify.c: Check for recursive valuetype definitions.
4101 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4103         Use inheritance-aware interface offsets. Inherited types use the same offsets
4104         of their parents. This reduce offset duplication in case more than one type in
4105         the inheritance tree explicitly implements the same interface.
4107         This also removes a source of vtable bubbles found in #532409. An abstract type
4108         isn't required to provide abstract methods to all interfaces it implements, which
4109         resulted in a bubble with the previous scheme as the child would get a non-full
4110         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4111         should be fixed.
4113         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4114         it's expected to not cause any significant increase beyond that.
4116         * class.c (setup_interface_offsets): Compute super class iface offsets
4117         first to force sharing.
4119         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4120         dumping only the relevant ones.
4122         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4123         methods a new slot regardless if they belong to an interface or not. This allows
4124         an inherited type to override the iface method separately from the class one.
4126 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4128         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4129         applications that take less than 2s to execute.
4130         Bug #524984 fixed.
4132 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4134         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4136         * object.c (mono_get_runtime_callbacks): New helper function to return
4137         the runtime callbacks.
4139         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4140         mono_get_runtime_build_info () as the display name.
4141         
4142 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4144         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4145         argument, since NEWARR expects a native int. Fixes #481559.
4147 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4149         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4150         against broken SRE methods.
4152 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4154         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4155         a NULL variable. Abort early on failure.
4157 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4159         * class.c (can_access_type): Fail visibility test for non nested
4160         types with nested visibility.
4162 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4164         * assembly.c (parse_public_key): Avoid allocating (and not 
4165         freeing) the public key array when it's not requested by the 
4166         caller.
4167         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4168         ves_icall_System_Threading_Thread_Thread_internal): Free 
4169         allocated memory on error.
4171 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4173         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4175 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4177         * class.c (mono_class_setup_fields): Remove duplicated local variable
4178         named gklass.
4179         Rename gklass to gtd to reflect the fact that it points to the generic
4180         type definition.
4181         Remove the duplicated call to mono_class_setup_fields on gtd and move
4182         the error check to the beginning.
4184 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4186         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4187         Remove cruft of the previous patch.
4189 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4191         * metadata-verify.c (verify_method_table): Check for abstract + final.
4192         Fixes #534175.
4194 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4196         * verify.c (verify_class_fields): Check for duplicate fields.
4198 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4200         * metadata-verify.c: Verify the typeref table for duplicates.
4202 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4204         This reverts r140936 and properly handles interfaces with static methods. The
4205         right fix is to ensure vtables without bubles which is an easier to verify
4206         constraint. We should avoid such special cases as of the reverted patch as those
4207         only make the runtime more brittle.
4209         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4210         static methods on interfaces.
4212         * class.c (setup_interface_offsets): Use the number of virtual methods when
4213         calculating interface offsets instead of the number of methods. This way we
4214         avoid bubles on the layout.
4216 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4218         * metadata-verify.c (verify_metadata_header): Some very smart
4219         obfuscators like to add extra stream headers. Ignore them.
4221 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4223         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4224         methods correctly.
4226 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4228         * metadata-verify.c: Verify for duplicated types.
4230 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4232         * metadata-verify.c (verify_typedef_table): Verify for nested types
4233         without an entry on the nested class table.
4235 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4237         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4238         <tom_hindle@sil.org>. Add locking around hash table accesses.
4240 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4242         * verify.c (mono_verifier_verify_class): Verify all interface if
4243         really are interfaces. Fixes #534184.
4245 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4247         * pedump.c: Initialize all types during metadata validation so we report
4248         errors only detected as part of class initialization.
4250 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4252         * metadata-verify.c (verify_method_table): PInvoke requires method to
4253         be static. Fixes #534189
4255 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4257         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4258         being NULL.
4260 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4262         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4263         for holes or bad methods. Fixes #525314.
4265 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4267         * class.c (setup_interface_offsets): Don't allocate slot
4268         for the same interface multiple times. This creates bubbles
4269         that waster space and make vtable verification harder.
4271         The same interface get a slot multiple times since we need
4272         to get the closure of all implemented interfaces, which means
4273         the same interface is reported multiple times.
4275 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4277         * verify.c (mono_verifier_verify_class): Don't check the fields
4278         of generic instances since the context on which they got expanded
4279         might lead to false positives.
4281         Such thing happens when a generic type is inflated in the context
4282         of a generic method and the inflated type of a field turns into a
4283         generic method argument, which causes the checking code to think
4284         it's an invalid class when it's not.
4286 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4288         * verify.c (mono_type_is_valid_in_context): Verify if type
4289         is NULL and remove duplicate test.
4291 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4293         * verify.c (mono_verifier_verify_class): Check fields for
4294         invalid generic arguments.
4296 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4298         * class.c (verify_class_overrides): Verify if for static
4299         and non virtual methods.
4301 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4303         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4304         Check for errors after retrieving the vtable.
4306 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4308         * class.c (mono_class_setup_vtable_general): Verify
4309         if method overrides are valid before processing them.
4311 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4313         * marshal.c (mono_array_to_lparray): Fix minimal build with
4314         cominterop disabled.
4316         * marshal.c (mono_free_lparray): Same.
4318 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4320         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4321         the hash function for the ares_htable.
4323 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4325         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4326         bit for assembly flags. MS is ok with it but there is no spec anywhere
4327         on its mean
4329 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4331         * class.c (mono_class_create_from_typedef): Emit profiler events
4332         in all cases.
4334 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4336         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4337         Release memory on failure.
4339 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4341         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4342         to the internal API.
4344         * metadata.c (get_constraints): Use a single-linked table as we don't
4345         traverse it backward. Fail and return FALSE if only of the contraint types
4346         is not found.
4348         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4349         to mono_metadata_load_generic_param_constraints except for having a return value.
4350         This has to be done since the later is part of the public API.
4352         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4353         and fail the type.
4355         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4356         and fail the method.
4358 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4360         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4361         with MS broken behavior of emmitting EH section sizes without the
4362         header size added.
4364 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4366         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4367         memory until we're sure that we'll need it. This avoids leaking for
4368         broken types or duplicated instantiation.
4370 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4372         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4373         mistake.
4375 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4377         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4378         and expected size calculation.
4380 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4382         * class.c (mono_class_get_field_idx): Add fixme for broken
4383         behavior for types with multiple fields with the same name.
4384         I would rather fix it, but have no idea on how to generate
4385         such artifact for testing.
4387 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4389         * verify.c (verifier_load_field): We should allow references to
4390         fields to be made using the generic type definition. It's up to
4391         the loader system to fail invalid ops.
4393         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4394         are invalid.
4396 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4398         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4400         * metadata-internals.h: Fix declaration of 
4401         mono_metadata_interfaces_from_typedef_full.
4403         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4404         heap_alloc_result parameter that controls if the result should be
4405         g_malloc'd.
4407         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4408         array be g_malloc'd and properly document this public API function.
4410 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4412         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4413         remove METHOD_HEADER_TINY_FORMAT1.
4415         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4417         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4419         Both spec and MS uses only 2 bits to enumerate the kind of header.
4420         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4421         is superfluous, only used for tiny headers with odd code lengths.
4423         This change also make sure that mono doesn't wronly interpret bit 2
4424         of fat header flags, which is currently reserved.
4426 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4428         * metadata.c (do_mono_metadata_parse_type): Do error
4429         checking for element types. Don't abort if presented
4430         with a broken type kind.
4432 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4434         * metadata.c (mono_metadata_parse_method_signature_full):
4435         Gracefully fail bad vararg signatures.
4437 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4439         * profiler.c:
4440         * class.c: Fix warnings for uninitialized variables.
4442 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4444         * icall.c: Fix _NSGetEnviron method declaration warning.
4446 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4448         * icall.c:
4449         * reflection.c: Make bitwise checks explicit.
4451 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4453         * debug-helpers.c:
4454         * marshal.c: Fix printf warnings.
4456 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4458         * reflection.c (encode_cattr_value): Fix a warning.
4460 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4462         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4463         of array bounds.
4465 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4467         * loader.c (mono_method_signature): Don't assert on broken
4468         signature. Print a more useful error message.
4470 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4472         * loader.c (mono_method_get_marshal_info): Assert if
4473         signature is invalid. Bounds check stores to the
4474         mspecs array;
4476 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4478         * loader.c (field_from_memberref): Fix warning.
4480 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4482         * loader.c (mono_method_get_param_names): Check if signature
4483         is null. Don't store beyond the size of the name array.
4485 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4487         * loader.c (mono_get_method_constrained): Check if signature
4488         is null.
4490 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4492         * loader.c (mono_loader_set_error_bad_image): Improve
4493         error messages.
4495 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4497         * loader.c (mono_get_method_full): Convert an assertion
4498         into a loader error.
4500 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4502         * class-internals.h, class.c: Better naming and documentation.
4504 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4506         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4507         obj is NULL.
4509 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4511         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4512         parsing fails.
4514 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4516         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4517         errors with no class set.
4519         * loader.c (field_from_memberref): If the field signature is of the wrong
4520         type fail with a MissingFieldException instead of a BadImageException as
4521         this is the behavior observed on MS. 
4523 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4525         * loader.c (field_from_memberref): Don't crash if either the field
4526         signature or the typespec class are invalid.
4528 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4530         * verify.c (verifier_load_field): Don't allow field related
4531         ops to reference fields on generic type definition.
4533 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4535         * metadata-verify.c: Add new warning level for errors specified
4536         by ECMA 335 but that MS ignores.
4538         * metadata-verify.c (verify_method_table): Make compiler controled
4539         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4540         this check is safe because the end result will only be some visibility
4541         exceptions been thrown.
4543 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4545         * verify.c (get_boxable_mono_type): Don't allow the
4546         use of the generic type definition on boxed type positions.
4548         Fixes #531237.
4550 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4552         * threadpool.c: Make sure no cross-domain references remain in
4553         ares_htable or the arrays that are thrown away when resizing.
4555 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4557         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4558         list of classes for which we have to unregister reflection_info
4559         with the GC and which are not in the namespace cache.
4561         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4562         the class to the list.
4564 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4566         * domain.c (mono_domain_free): Unregister the GC roots in
4567         MonoDomain.
4569 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4571         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4573 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4575         * class.c: Add mono_class_get_field_from_name_full which does
4576         the same as mono_class_get_field_from_name but does check field
4577         signature as well.
4579         * class-internals.h: Export mono_class_get_field_from_name_full as
4580         part of the internal API.
4582         * loader.c (field_from_memberref): Search fields by name and signature
4583         as it's valid to have two fields with same name but different types.
4585         Fixes #528055.
4587 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4589         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4591         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4593         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4594         System.Type.
4596 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4598         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4600         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4602 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4604         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4605         to sgen-scan-object.h, which can be included and parameterized via
4606         macros.
4608         * Makefile.am: sgen-scan-object.h added.
4610 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4612         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4614 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4616         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4617         before clearing a domain in the GC.
4619 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4621         * exception.c (mono_exception_from_name_domain): Actually create
4622         the exception in the specified domain.
4624         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4625         OutOfMemoryException a bit later so that the domain is inialized
4626         "enough" that it works.
4628 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4630         * threads.c (thread_cleanup): Clean up the cached_culture_info
4631         array to prevent cross-domain references.
4633 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4635         * metadata.c: more documentation for MonoType accessors.
4637 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4639         Fix incorrect size definitions where the tail array isn't a list
4640         of pointers
4641         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4642         define size.
4643         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4644         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4645         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4647 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4649         * reflection.h:
4650         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4652 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4654         * metadata.c:
4655         * loader.c:
4656         * metadata-internals.h:
4657         * method-builder.c:
4658         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4660 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4662         * cominterop.c:
4663         * metadata.c:
4664         * metadata.h:
4665         * loader.c:
4666         * marshal.c:
4667         * reflection.c: #define for sizeof in MonoType and
4668         MonoMethodSignature.
4670 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4672         * domain.c:
4673         * domain-internals.h: add and use #define's instead of sizeof()
4674         for MonoJitInfo and MonoJitInfoTable.
4676 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4678         * object.c:
4679         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4681 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4683         * metadata.c:
4684         * metadata.h:
4685         * object.c:
4686         * class-internals.h:
4687         * generic-sharing.c:
4688         * marshal.c: use a #define instead of sizeof() for a few
4689         structures that use a zero-length array.
4691 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4693         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4694         to handle inflated generic methods.
4696         * appdomain.c: Bump corlib version.
4698         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4699         instances.
4701         * reflection.c (fixup_method): Same
4703         * reflection.c (resolve_object): Same.
4705         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4706         g_error and a decent message.
4708 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4710         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4711         from the object because it could not yet be available globally
4712         (it happens if the profiler tries to create a gchandle on the
4713         MonoThread object of a thread that is still registering itself
4714         with the runtime).
4716 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4718         * reflection.c (mono_generic_class_get_object): Initialized the
4719         managed type arguments array.
4721         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4723         * appdomain.c: Bump corlib version.
4725 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4727         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4728         #527902.
4730 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4732         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4733         Avoid a crash if synch_cs is not set.
4734         
4735         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4736         Handle the case when the handle is 0.
4738         * appdomain.c: Bump corlib version.
4740 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4742         * reflection.c (mono_type_get_object): Fix a warning.
4744 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4746         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4747         descriptor here.  We assume it's already been computed.
4749         * generic-sharing.c (instantiate_other_info): Compute the GC
4750         descriptor for info type MONO_RGCTX_INFO_KLASS.
4752 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4754         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4755         type, so don't use MONO_OBJECT_SETREF to set a field.
4757 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4759         * gc.c: We were missing one case where invoking a finalizer would
4760         not reset the domain.  Also, in the finalizer thread loop, assert
4761         that we're in the root domain.
4763 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4765         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4766         if the type is not an array.
4768 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4770         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4771         method bound to the declaring type of the method. Raise an exception
4772         if the type is not a generic param.
4774 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4776         * class.c (print_unimplemented_interface_method_info): Print the
4777         full type name.
4779         * class.c (mono_class_setup_vtable_general): When dealing with a
4780         generic instance first check if the generic type definition is
4781         not broken.
4783 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4785         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4787         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4789         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4791         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4793         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4795         Code is contributed under MIT/X11 license
4797 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4799         * verify.c: Fix naming of stelem and ldelem.
4801 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4803         * generic-sharing.c: Replace the templates lock with the loader
4804         lock because of very hard to resolve deadlock issues.
4806 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4808         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4809         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4810         directly. Fixes #525338.
4812         * class.c (mono_class_get_vtable_size): New helper function.
4814         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4815         the field belongs to the type. Fixes #525733.
4817 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4819         * sgen-gc.c: When we stop a thread and its stack top is not within
4820         its allocated stack (because it's in an altstack signal handler),
4821         restart it and stop it again, until it is.
4823 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4825         * sgen-gc.c: Take a thread's stack top and registers from the
4826         sigcontext in the suspend signal handler.
4828         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4829         stuff to sgen-archdep.h.
4831         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4832         caller, because have code in sgen-archdep.h to acquire that data.
4834 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4836         * profiler.c, profiler.h, profiler-private.h:
4837         Added support for keeping track of code chunks and buffers.
4839 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4841         * metadata-verify.c: Fix endianness problems on decoding functions.
4842         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4844 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4846         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4847         schema for vectors and one dimension SZARRAY.
4849 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4851         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4852         schema for vectors and one dimension SZARRAY.
4854 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4856         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4857         Interlocked.(Compare)Exchange with object arguments, which invoke
4858         write barriers.
4860 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4862         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4863         passed invalid arguments.   Fixes another crasher in the
4864         Silverlight test suite.
4866         * class.c (mono_class_array_element_size): Return 0 for the size
4867         of the class;  This fixes the crasher exposed by :
4869         typeof (void).MakeArrayType ();
4871         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4872         if there is no method to dereference.    Put all the code that
4873         depends on this inside the if (method) block.
4875         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4876         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4878         With this change, we pass the test.
4879         
4880         * reflection.c (mono_reflection_sighelper_get_signature_local):
4881         Only dereference the assembly if it has been set.    Fixes a
4882         crasher exposed by #525328
4884 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4886         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4887         don't perform the store in mono_gc_wbarrier_generic_nostore().
4888         Remove the second argument (value), which is not needed.
4890 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4892         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4893         the build.
4895         * boehm-gc.c: Ditto.
4896         
4897 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4899         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4900         not perform the store itself.  Introduce
4901         mono_gc_wbarrier_generic_nostore(), which is the same as
4902         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4903         store.
4905 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4907         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4908         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4909         we still need the memcpy().
4911 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4913         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4914         so that big arrays are handled correctly.  Always use
4915         safe_object_get_size() to calculate array object sizes, which
4916         takes bounds into account.
4918 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4920         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4921         GC descriptor is computed before we use it.
4923 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4925         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4926         write barrier if necessary.
4928 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4930         * icall-def.h, icall.c, thread-types.h: New separate icall for
4931         VolatileWrite(object&,object) that uses a write barrier.
4933         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4934         barriers in icalls which write to "ref" or "out" arguments.
4936 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4938         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4939         handler in a separate icall, to reduce the size of the wrappers.
4941 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4943         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4945 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4947         * metadata-verify.c (parse_field): Allow byref field.
4949         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4951         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4953 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4955         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4956         Fixes #522784.
4958 2009-07-20  Robert Jordan  <robertj@gmx.net>
4960         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4961         Fix invalid IL in valuetype handling (STOBJ must push the
4962         corresponding class). Fixes bug #523149.
4964         Code is contributed under MIT/X11 license.
4966 2009-07-20  Geoff Norton  <gnorton@novell.com>
4968         * gc.c: Use proper semaphores where available on posix and darwin.
4970 2009-07-19  Geoff Norton  <gnorton@novell.com>
4972         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4974 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4976         * refletion.c (is_sre_usertype): Change name to is_usertype and
4977         invert it's result so it returns true if the type is an user type
4978         and not the opposite.
4980         * reflection.c (is_*_type): Change all of those to use new macro
4981         check_corlib_type_cached that cached the type lookup so we don't
4982         need to do string comparisons all the type. Changed the signature
4983         to take a MonoClass instead.
4985         * reflection.c: Change mono_image_create_token and resolve_object
4986         to use is_sre_* functions.
4988 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4990         * sgen-gc.c: Check for writes to the stack in the managed
4991         wbarrier as well.
4993 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4995         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4996         but put them on a list which is processed with the other thread's
4997         remsets.
4999 2009-07-18  Mark Probst  <mark.probst@gmail.com>
5001         * sgen-gc.c: Fix and enable the internal allocator instead of
5002         using malloc/free (which causes deadlocks).
5004 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
5006         * refletion.c: Fix builds with SRE disabled by adding a minimal
5007         implementation of mono_reflection_type_get_handle.
5009 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5011         * refletion.c: Make mono_reflection_type_get_handle non static.
5013         * object-internals.h: Export mono_reflection_type_get_handle.
5015         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5016         unmanaged handle using mono_reflection_type_get_handle.
5018 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
5020         * refletion.c: Replace all reads of MonoReflectionType::type with
5021         calls to mono_reflection_type_get_handle. Only the functions that
5022         deal with constructing TypeBuilder::type have not been changed
5023         because they have to deal with NULL values.
5025         This is a first step into supporting reflection types that don't
5026         map directly into their unmanaged counterpart.
5028 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5030         * metadata-verify.c (parse_locals_signature): Don't complain
5031         on signature with zero locals since MS generates it and doesn't
5032         bother with.
5034 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
5036         * reflection.c (mono_image_get_array_token): Resolve return
5037         type using mono_reflection_type_get_handle.
5039         * reflection.c (mono_image_get_array_token): Resolve array method
5040         parent type using mono_reflection_type_get_handle.
5042 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5044         * reflection.c (mono_image_basic_init): Applied patch from
5045         <Dax@daxxfiles.net>. Set the public key token from the assembly
5046         builder. Fixes #518909.
5048         * appdomain.c: Bump corlib version.
5050 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5052         * class.c (mono_class_needs_cctor_run): Make this return false if
5053         the class has no cctor.
5055 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5057         * sgen-gc.c: When the minor GC needs to allocate a new section,
5058         invoke the major GC afterwards.
5060 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5062         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5063           Applying the window_style field to the SHELLEXECUTEINFO struct.
5065         Code is contributed under MIT/X11 license.
5067 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5069         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5070         locking earlier.  Fix it in the managed allocator by making sure
5071         that no thread is stopped there before the GC runs.  If we do stop
5072         a thread there, we restart it and let it run a but, until it stops
5073         somewhere else.
5075         * gc-internal.h, gc.c: Function for getting the IP from a signal
5076         context via a function registered by mini.
5078 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5080         * object-internals.h (MonoIntPtr): New structure describing a boxed
5081         IntPtr.
5083         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5084         returns. Fixes #519953.
5086         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5088 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5090         * class-internals.h, generic-sharing.c: New RGCTX info type for
5091         getting a remoting invoke with check wrapper.
5093 2009-07-07  Geoff Norton  <gnorton@novell.com>
5095         * icall-def.h: Fix the enable-minimal build.
5097 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5099         * object-internals.h: Add MonoReflectionDerivedType.
5101         * reflection.c: Implement support for PointerType.
5102         Fixed tons of warnings.
5104 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5106         * object-internals.h: Add MonoReflectionByRefType.
5108         * reflection.c: Implement support for ByRefType.
5110 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5112         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5114         * object-internals.h: Add MonoReflectionArrayType and
5115         mono_reflection_create_unmanaged_type.
5117         * reflection.c: Implement support for ArrayType.
5119 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5121         * metadata-verify.c (is_valid_method_header): Parse EH block
5122         flags correctly.
5124 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5126         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5127         processing the disappearing links, and process disappearing links
5128         in a loop until no new objects are copied.
5130 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5132         * object.c (handle_enum): Invoke the write barrier when copying
5133         value type instances.
5135         * sgen-gc.c: Register remsets for unmanaged write barriers only
5136         when the address written to is actually on the heap.  This makes
5137         set_value() in object.c work without requiring that the result be
5138         on the heap.
5140 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5142         The runtime wrappers are all bound to a given type that must
5143         exist in the same image. For regular images we use the <Module>
5144         type, which is required to exist for all images.
5146         The <Module> type can't be used for dynamic images because it
5147         might not exist at the time the wrapper is required, so we create
5148         a synthetic type to use instead.
5150         The current code works because of the 2 stage setup of MonoClass,
5151         but once this is gone it will no longer work.
5153         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5155         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5157         * object-internals.h: Export mono_image_set_wrappers_type icall
5158         as part of the internal API.
5160         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5161         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5163         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5164         image wrappers_type to the provided value.
5166 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5168         * appdomain.c (deregister_reflection_info_roots): No need
5169         to use the image lock here.
5171 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5173         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5175 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5177         * threads.c: Store the thread start argument in a hash table instead of
5178         registering it as a root, as libgc doesn't support unregistering roots
5179         under windows, leading to 'too many root sets' errors when many threads
5180         are created.
5182         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5183         shutdown, they can still be referenced by the other dying objects.
5184         Fixes #514506.
5186 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5188         * socket-io.c: DontLinger does not allow LingerOptions.
5190 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5192         * metadata-verify.c: The spec doesn't mention that it's possible to add
5193         custom attribute to a generic parameter. Fixed.
5195 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5197         * class.c (inflate_generic_type): Don't crash while trying to output a message
5198         on why we're aborting.
5200 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5202         * socket-io.c: DontLinger can take an int or a boolean too.
5204 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5206         * gc.c: check for a null argument to SuppressFinalize () and
5207         ReRegisterForFinalize ().
5209 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5211         * loader.c (method_from_methodspec): Call into the verifier to check
5212         the signature.
5214         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5216         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5217         part of the internal API.
5219 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5221         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5222         the signature.
5224         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5226         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5227         part of the internal API.
5229 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5231         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5232         the signature.
5234         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5235         blob verification.
5237         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5238         part of the internal API.
5240 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5242         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5243         when doing basic verification. 
5245         This check must be done since the runtime peeks into signatures in much
5246         more places than it does decoding so it makes sense to ensure that all
5247         pointers to blob objects are well formed.
5249 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5251         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5252         Use proper overflow dectection. Fix usage of it.
5254 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5256         * loader.c (field_from_memberref): Call into the verifier to check
5257         the signature.
5259         * loader.c (mono_method_get_signature_full): Same.
5261         * loader.c (method_from_memberref): Same.
5263         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5265         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5266         part of the internal API.
5268 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5270         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5271         or unloaded, still return an AsyncResult, but don't add it to the
5272         threadpool.
5274 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5276         * threads.c: fix missing colon when DEBUG is defined.
5278 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5280         * threadpool.c: Don't add new calls to a threadpool if the domain
5281         of the call is unloading or unloaded.  When dequeuing a job, null
5282         the reference in the queue.
5284 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5286         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5287         generation if an object was moved.
5289 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5291         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5292           parameters of type SAFEARRAY[VARIANT].
5294         * reflection.c (encode_marshal_blob): Properly generate element type
5295           (SafeArraySubType marshal attribute option).
5297         Code is contributed under MIT/X11 license.
5299 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5301         * reflection.c: in mono_method_clear_object () really ensure all the
5302         objects are removed.
5304 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5306         * loader.c (mono_method_signature): Call into the verifier to check
5307         the method signature.
5309         * metadata-verify.c (verify_method_table): Move signature verification
5310         to verify_method_table_full.
5312         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5314         * verify-internals.h: Export mono_verifier_verify_method_signature as
5315         part of the internal API.
5317 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5319         * loader.c (mono_method_get_header): Call into the verifier to
5320         check the method header.
5322         * metadata-verify.c: Add mono_verifier_verify_method_header.
5324         * verify-internals.h: Export mono_verifier_verify_method_header as
5325         part of the internal API.
5327 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5329         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5330         check the field signature. Replace an assert with an explicit check.
5332         * class.c (mono_class_setup_fields): Call into the verifier to check
5333         the field signature.
5335         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5337         * verify-internals.h: Export mono_verifier_verify_field_signature as
5338         part of the internal API.
5340 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5342         * class.c (mono_class_find_enum_basetype): Simplify this function
5343         by moving code outside of the loop and not decoding static fields.
5345 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5347         * metadata-verify.c (verify_typedef_table): Check the extends
5348         token here. Move to here a flags check from verify_typedef_table_full.
5350 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5352         * metadata-verify.c (is_valid_method_header): Fix a warning.
5354         * metadata-internals.h (MonoImage): Remove the unused 
5355         static_rgctx_invoke_wrapper_cache.
5357         * image.c marshal.c: Ditto.
5359 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5361         * image.c (do_mono_image_load): Enable table data verification.
5363 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5365         * metadata-verify.c (is_valid_constant): Fix nullref check.
5367 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5369         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5371 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5373         * sgen-gc.c: Managed allocation with pthreads TLS.
5375         * threads.c, threads-types.h: Functions for the JIT to tell the
5376         runtime whether it supports the MONO_TLS opcode.
5378 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5380         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5381         without methods.
5383 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5385         * metadata-verify.c (is_valid_constant): Fix the string length check.
5386         Use safe overflow checking. Add decent error messages.
5388 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5390         * metadata-verify.c: Move remaininh blob checks to the offline
5391         verification path.
5393 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5395         * metadata-verify.c: Move more blob checks to the offline verification
5396         path.
5398 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5400         * object-internals.h : Adding interrupt_on_stop field.
5402         * threads.c (mono_thread_request_interruption) : On Windows exit the
5403           thread if interrupt_on_stop is set.
5405         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5406          Removing old interrupt logic and setting the interrupt_on_stop for the
5407          thread when calling accept.
5409         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5410          setting the interrupt_on_stop for the thread when calling accept.
5412         Contributed under MIT/X11 license.
5414 2009-06-20  Martin Baulig  <martin@ximian.com>
5416         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5418 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5420         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5421         running in no-exec mode.
5423 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5425         * metadata-verify.c (verify_method_table): Move header
5426         checking to verify_method_table_full.
5428         * metata-verify.c (mono_verifier_verify_full_table_data):
5429         Call verify_method_table_full.
5431 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5433         * metadata-verify.c (verify_field_table): Move signature
5434         checking to verify_field_table_full.
5436         * metata-verify.c (mono_verifier_verify_full_table_data):
5437         Call verify_field_table_full.
5439 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5441         * metadata-verify.c (verify_typedef_table): Move remaining
5442         stuff to verify_typedef_table_full.
5444 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5446         * metadata-verify.c: Kill is_corlib from VerifyContext.
5447         It is only used by the offline mode.
5448         So we better remove it from the runtime path.
5450 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5452         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5453         function that perform the offline metadata verification steps.
5455         * metadata-verify.c (verify_typedef_table): Move some checks to
5456         verify_typedef_table_full and make it been called by new function
5457         mono_verifier_verify_full_table_data.
5459         * pedump.c: Call mono_verifier_verify_full_table_data.
5461         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5462         part of the internal API.
5464 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5466         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5467         check.
5469         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5470         flags bits. SupportLastError was confused as bit 7 instead of 6.
5472         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5473         to check against the module ref table instead of module.
5475         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5477         * pedump.c: Call mono_image_load_names.
5479 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5481         * image.c: Extract mono_image_load_names from do_mono_image_load.
5483         * metadata-internals.h: Export mono_image_load_names as part of
5484         the internal API.
5485         
5486 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5488         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5489         first, as it could reference data in the other caches.
5491 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5493         * metadata-verify.c: Finished with method header verification.
5495 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5497         * metadata-verify.c: Added more header verification code.
5498         Now only EH clauses are missing.
5500 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5502         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5503         for return values.
5505 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5507         * metadata-verify.c: Initial method header verification.
5509 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5511         * metadata-verify.c (verify_import_table): The IAT contents
5512         might end been patched by the windows DL when running with
5513         coree enabled.
5515 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5517         * class.c (mono_class_from_typeref): If the enclosing type is not
5518         found return null instead of crashing. Fixes #508487.
5520 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5522         * normalization-tables.h : updated to the latest unicode charcter
5523           data.
5524         * appdomain.c : bump corlib version.
5526 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5528         * class.c (mono_class_from_name): Fix support for assembly references
5529         in the EXPORTEDTYPE table. Fixes #511704.
5531 2009-06-13  Geoff Norton  <gnorton@novell.com>
5533         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5534         assembly in the target domain.
5536 2009-06-12  Robert Jordan  <robertj@gmx.net>
5538         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5539         because "this" of the managed signature has become an
5540         ordinary parameter in the unmanaged signature.
5542 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5544         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5545         field for owner-less generic containers.
5547         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5548         image field of the owner-less generic containers created here.
5550         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5551         contain is ownerless until the caller sets its owner.
5553         * metadata.c (type_in_image): Handle owner-less generic containers
5554         correctly.
5555         
5556 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5558         * image.c (mono_image_close): Support debug_assembly_unload for
5559         dynamic images too.
5561 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5563         * class.c: Fix some typos in comments.
5565 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5567         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5569         * threads.c (mono_thread_execute_interruption): Avoid creating the
5570         abort exception object while holding the synch_cs lock.
5572 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5574         * metadata-verify.c: Verify basic cattr content.
5576 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5578         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5579         nested types.
5580         
5581         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5582         support for nested types. Fixes #511704.
5584 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5586         * metadata-verify.c: Verify methodspec signatures.
5588 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5590         * metadata-verify.c: Verify typespec signatures.
5592 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5594         * metadata.c (free_inflated_method): Call 
5595         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5597 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5599         * mono-config.c: Small change to report the PPC64/ILP32 model.
5601 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5603         * metadata-verify.c (parse_type): Check szarray.
5605 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5607         * metadata-verify.c (parse_type): Check fnptr.
5609 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5611         * metadata-verify.c (parse_type): Check generic instances.
5613 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5615         * metadata-verify.c (parse_type): Check array shape.
5617 2009-06-05  Robert Jordan  <robertj@gmx.net>
5619         * class.c (mono_class_create_from_typedef): Check only for
5620         mscorlib's System.Array.
5622 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5624         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5625         and generic params. 
5627         * metadata-verify.c (parse_field): Check the signature.
5629 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5631         * metadata-verify.c: Implement locals signature check.
5633 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5635         * domain.c: Add .NET 4.0 Beta 1 version.
5637 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5639         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5640           For QueryInterface on CCWs consider the base class
5641           interfaces as well.
5643         Code is contributed under MIT/X11 license.
5645 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5647         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5649         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5650         used.
5652         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5653         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5655         * generic-sharing.c (inflate_other_data): Ditto.
5656         
5657 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5659         * metadata-verify.c: Implement property signature check.
5661 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5663         * sgen-gc.h: Register saving support for PPC.
5665 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5667         * sgen-gc.c: Fixed a pthread TLS screwup.
5669 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5671         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5672         supported.
5674 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5676         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5677         keyword is not supported.
5679 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5681         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5682         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5683         the inflated method is freed. Fixes #508389.
5685         The code is contributed under the MIT/X11 license.
5686         
5687 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5689         * marshal.c (get_wrapper_target_class): New helper function.
5690         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5691         the <Module> class of the image. Fixes #509049.
5693 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5695         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5696         Check if the thread was interrupted and proccess it straight away.
5697         Makes abortion much more responsive.
5699 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5701         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5702         MonoThread::interruption_requested to match it's counterpart.
5704         Fixes a hang in abort-stress-1 on a 2 core x86.
5706         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5707         Fix warning.
5709 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5711         Change MonoImage::name_cache to be protected by the image lock
5712         instead of the loader lock.
5714         * appdomain.c (deregister_reflection_info_roots): Protect access
5715         to name_cache.
5717         * class.c (mono_image_init_name_cache): Change from the loader lock
5718         to the image lock. Check if the cache wasn't already created.
5720         * class.c: Change from the loader to the image lock.
5722         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5723         the code to hold the image lock while iterating over name_cache and
5724         not go into mono_array_new holding it.
5726         * metadata-internals.h: Add a comment about this change.
5728 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5730         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5731         Under the 2.0 profile raise the loader error.
5733         Fixes #508532.
5735 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5737         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5738         of ldind opcode for generic instances so we don't fail for direct wrappers.
5739         This only affect direct calls.
5741 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5743         * reflection.c (create_dynamic_mono_image): Fix warnings.
5745         * generic-sharing.c (other_info_equal): Ditto.
5746         
5747 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5749         * metadata-verify.c: Implement field signature check.
5751 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5753         * metadata-verify.c: Implement standalone signature check.
5755 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5757         * metadata-verify.c: Implement methodref signature check.
5759 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5761         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5762         callbacks supplied by the runtime.
5764         * object.c (mono_install_callbacks): New internal function to install
5765         the callbacks.
5767         * object.c (mono_create_ftnptr): Move the implementation of this to
5768         mini/.
5770         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5772 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5774         * metadata-verify.c (parse_return_type): Proper byref check.
5775         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5776         generic signatures and method params.
5778 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5780         * metadata-verify.c (decode_signature_header): Fix bounds check.
5782         * metadata-verify.c (parse_custom_mods): Check custom mods.
5784         * metadata-verify.c (parse_type): Do initial basic verification
5785         of valid values.
5786         
5787         * metadata-verify.c (is_valid_method_signature): Parse the generic
5788         param count.
5790 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5792         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5793         discarded based on their most specific definition so we set the method_slots
5794         array before checking if the method is acceptable or not.
5796         Fixes #506757.
5798 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5800         * icall.c: Free the old array when resizing a mono_ptr_array.
5802 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5804         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5805         for the hashes whose keys are managed objects.
5807 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5809         * object-internals.h, threads.c: Set the execution context on
5810         thread start here, not in corlib.
5812         * appdomain.c: Bump corlib version.
5814 2009-05-27  Martin Baulig  <martin@ximian.com>
5816         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5817         if `_mono_debug_using_mono_debugger' is set to make things work
5818         properly when embedding Mono.
5820 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5822         * class.c (mono_class_setup_fields): Don't mark simd types as having
5823         16 bytes alignment as the whole runtime doesn't support.
5825 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5827         * metadata-verify.c (safe_read): Use endian safe read macros.
5829 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5831         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5832         it is read-only when using full aot.
5834 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5836         * metadata-verify.c (is_valid_method_signature): Verify parts
5837         of the return type. Provide an error message in case of failure.
5839 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5841         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5843 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5845         * metadata-verify.c: Include the size prefix in the bounds check.
5847 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5849         * icall.c: Remove warnings.
5851         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5852         prevent auto-detection based on GCC defines.
5854         Add PS3
5856         * metadata-verify.c: Do not include signal.h
5858         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5859         messages.  Not sure why the g_assert_not_reached is not enough to
5860         quiet the compiler.
5861         
5863         * appdomain.c: Remove code that is not used when
5864         DISABLE_SHADOW_COPY is set.
5866         * image.c: use g_getenv
5868 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5870         * reflection.c: Remove code that it not used with
5871         DISABLE_REFLECTION_EMIT is defined.
5873 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5875         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5876         invoke wrappers.
5878 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5880         * socket-io.c
5881         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5882         the ifdef here and instead put that on io-layer
5884 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5886         * metadata-verify.c: Verify the generic param constraint table.
5888 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5890         * metadata-verify.c (verify_generic_param_table): Fix
5891         thinko on the valid flags bits for generic params.
5893 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5895         * metadata-verify.c: Verify the methodspec table.
5897 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5899         * metadata-verify.c: Verify the generic param table.
5901 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5903         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5905 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5907         * sgen-gc.c: Use generation enum more consistently and use the
5908         correct generation in mono_gc_register_for_finalization().
5910 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5912         * metadata-verify.c: Verify the nested class table.
5914 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5916         * metadata-verify.c: Verify the manifest resource table.
5918 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5920         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5922 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5924         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5925         wrappers, this is now done in the JIT.
5926         
5927         * class.c (mono_set_generic_sharing_supported): New internal function.
5928         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5930 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5932         * metadata-verify.c: Verify the exported type table.
5934 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5936         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5938 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5940         * metadata-verify.c: Verify the file table.
5942 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5944         * metadata-verify.c (verify_assembly_table): Fix an error message.
5946         * metadata-verify.c: Verify the assemblyref table.
5948 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5950         * metadata-verify.c (verify_assembly_table): Fix the valid
5951         bits mask for flags.
5953 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5955         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5956         generic methods as well.
5958 2009-05-15  Geoff Norton  <gnorton@novell.com>
5960         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5961         use-case and is significantly more performant than the wapi layer.
5963 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5965         * metadata-verify.c: Verify the assembly table.
5967 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5969         * metadata-verify.c: Fix rows limit check.
5971 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5973         * metadata-verify.c: Verify the fieldrva table.
5975 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5977         * sgen.c: Speed up weak links and finalizers by grouping them by
5978         generation.
5980 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5982         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5983         free the old GCHandle (only applies to SGen).
5985 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5987         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5988         mono_metadata_load_generic_params () for non-generic methods.
5990 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5992         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5993         New function for returning a monitor's weak link if it has one.
5995         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5996         one) when clearing a domain.  These can still be around because
5997         the object might not have been collected.
5999 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
6001         * gc.c: Fix a warning.
6003 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
6005         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
6006         prevous wait that resulted in a deadlock on Windows when initializing
6007         the runtime form DllMain. Also results in improved startup time.
6008         (finalizer_thread): Get rid of thread_started_event.
6009         * threads.c, threads-types.h (mono_thread_create_internal): Return the
6010         resulting MonoThread.
6012         Contributed under MIT/X11 license.
6014 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
6016         * metadata-verify.c: Verify the implmap table.
6017         Don't require that #US and #Strings be present.
6019 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
6021         * security-core-clr.c: Delegate checks are done at creation time,
6022         not a invocation time. Fix exception for Telerik Silverlight demo
6024 2009-05-11  Mark Probst  <mark.probst@gmail.com>
6026         * sgen-gc.c (need_remove_object_for_domain): Remove the special
6027         case for the Thread class.
6029         * threads.c: Do clean-up of abort exception/state in
6030         thread_cleanup() instead of Thread.free_internal().  Also clean up
6031         current_appcontext.  The reason we have to do that is because
6032         those references might point into another domain and if that
6033         domain is unloaded before the thread is finalized, they point to
6034         invalid data.
6036 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
6038         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6039         stub signatures.
6040         
6041         Contributed unter MIT/X11 license.
6043 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6045         * verify.c, metadata-verifier.c: Add support for disabling the
6046         verifier in some builds.
6048         [ Sorry, my previous commit accidentally commited some work in
6049         progress ]
6051 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6053         * class.c (mono_class_setup_fields): Set class->field.first for
6054         generic instances.
6056 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6058         * metadata-verify.c: Verify the typespec table.
6060 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6062         * metadata-verify.c: Verify the module table.
6064 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6066         * metadata-verify.c: Verify the methodimpl table.
6068 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6070         * metadata-verify.c: Verify the property table.
6072 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6074         * debug-helpers.c (mono_method_desc_match): Add support for generic
6075         glob patterns.
6077 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6079         * metadata-verify.c: Verify the propertymap table.
6081 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6083         * metadata-verify.c: Verify the event table.
6085         * metadata-verify.c (search_sorted_table): Fix offset
6086         calculation.
6088 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6090         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6092 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6094         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6095         because mono_delegate_free_ftnptr() needs it.
6097 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6099         * metadata-verify.c: Verify the eventmap table.
6101 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6103         * metadata-verify.c: Verify the standalonesig table.
6105 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6107         * metadata-verify.c: Verify the field layout table.
6109 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6111         * class.c (mono_type_get_name_recurse): Don't crash
6112         for ownerless generic params.
6114         * debug-helpers.c (mono_type_get_desc): Correct the format
6115         for ownerless generic params.
6117 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6119         * metadata-verify.c: Verify the class layout table.
6121 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6123         * metadata-verify.c: Verify the decl security table.
6125 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6127         * domain.c (mono_domain_set_internal_with_options): Don't do
6128         anything if the old domain is the same as the old one.  Fixes
6129         #499326.
6131 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6133         * appdomain.c: Deregister the reflection_info roots when unloading
6134         a domain.
6136         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6137         memory allocated by a domain and frees its disappearing links.
6139         * boehm-gc.c, null-gc.c: Empty implementation of
6140         mono_gc_clear_domain().
6142 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6144         * appdomain.c (clear_cached_vtable): Free the static fields memory
6145         block.
6147 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6149         * gc.c: Set the correct domain when invoking finalizers.
6151         * appdomain.c: Set the correct domain when creating threads.
6153 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6155         * sgen-gc.c: Fix skip size for vectors.
6157 2009-05-03  Martin Baulig  <martin@ximian.com>
6159         * mono-debug-debugger.c
6160         (mono_debugger_check_breakpoints): Check class init handlers even
6161         if we don't have any method load handers.
6163 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6165         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6166         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6168 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6170         * metadata-verify.c: Verify the field marshal table.
6172 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6174         * metadata-verify.c: Verify the custom attribute table.
6176 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6178         * metadata-verify.c: Verify the constant table.
6180 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6182         * metadata-verify.c: Verify the memberef table.
6184 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6186         * metadata-verify.c (get_coded_index_token): Remove
6187         dead argument.
6189 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6191         * metadata-verify.c: Verify the interfaceimpl table.
6193 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6195         * verify.c: Improve error message.
6197         * debug-helpers.c (mono_type_get_desc): Harden the code that
6198         deals with VAR and MVAR.
6200 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6202         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6203         part of #498692.
6205 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6207         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6208         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6210 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6212         * security-core-clr.c: Avoid redundant checks for platform code, 
6213         e.g. check for method and for class (very common) and check
6214         for class and outer class (less common)...
6216 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6218         * reflection.c: Avoid returning random cattrs for synthetic methods.
6219         Fixes #498545.
6221 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6223         * assembly.c: assemblies in the GAC should never be shadow-copied.
6225 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6227         * domain.c, domain-internals.h: Disable
6228         track_resurrection_{objects,handles}_hash in MonoDomain if using
6229         SGen.
6231 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6233         * metadata-verify.c: Verify the param table.
6235 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6237         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6238         MethodList.
6240         * metadata-verify.c (verify_method_table): Proper check the ParamList
6241         field.
6243 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6245         * metadata-verify.c (verify_method_table): Check for runtime
6246         implemented functions such as delegate .ctors. Remove spurious
6247         printf.
6248         
6249 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6251         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6253 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6255         Don't allocate MonoGenericInfo for ownerless generic params.
6256         * class-internals.h (MonoGenericParam::info): Move field to ...
6257         (MonoGenericParamFull): ... this.  New struct.
6258         (MonoGenericContainer::type_params): Change type to
6259         MonoGenericParamFull.
6260         (MonoGenericParam, MonoGenericContainer): Update accessors.
6261         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6262         'info' field for ownerless generic param.
6263         (mono_metadata_load_generic_params): Update to changes.
6264         * reflection.c (mono_reflection_create_generic_class): Likewise.
6265         (reflection_methodbuilder_to_mono_method): Likewise.
6266         (mono_reflection_initialize_generic_parameter): Likewise.
6268 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6270         Don't use MonoGenericParamInfo for ownerless generic params.
6271         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6272         use ParamInfo class at all.
6273         (mono_class_from_generic_parameter): Use them.
6274         (make_generic_param_class): Fix a couple of instances where 'pinfo
6275         == NULL' wasn't handle.
6277 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6279         * class.c (make_generic_param_class): Carve out of ...
6280         (mono_class_from_generic_parameter): ... here.
6282 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6284         Simplify mono_class_from_generic_parameter
6285         * class-internals.h (MonoGenericParamInfo::token): New field.
6286         * metadata.c (mono_metadata_load_generic_params): Initialize it
6287         from metadata.
6288         * class.c (mono_class_from_generic_parameter): Use it instead of
6289         searching through metadata.
6291 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6293         * metadata-verify.c: Add verification of the method table.
6295 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6297         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6298         Delegate::Invoke optimization.
6300 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6302         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6303         string returned by get_shadow_assembly_location_base.
6305         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6306         about caller's ownership.
6308 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6310         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6311         reflection memory on domain unload.
6313         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6314         reflection cleanup code do it.
6316         * domain-internals.h: Add mono_reflection_cleanup_domain.
6318         This fixes a memory leak for managed mirrors of reflection objects
6319         on domain unload. 
6321 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6323         * metadata-verify.c: Implement more verification of the field table.
6325 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6327         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6328         doesn't try to parse the input assembly, which can be broken.
6330 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6332         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6333         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6334         by using the lowest bit in the link to store whether the link is
6335         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6337 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6339         * Makefile.am: Split the console support in platform specific code
6340         and put together a framework for making this easy in the future so
6341         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6343 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6345         * pedump.c: Fix a warning.
6347 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6349         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6350         mono_class_from_mono_type to avoid bad interactions with the dual representation
6351         of the generic type definition.
6353 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6355         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6356         get the MonoClass for the call context type as it might be a generic
6357         instance.
6359         Fixes #491483.
6361 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6363         * object-internals.h: The Thread object has no execution_context
6364         member anymore.
6366         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6367         the execution context.
6369         * appdomain.c: Bump corlib version.
6371 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6373         * verify.c (do_newobj): Improve error message.
6375 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6377         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6378         is nested in the filter block.
6380         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6381         block is not fully nested.
6383         Fixes #495656.
6385 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6387         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6388         not MonoType to check for equality of valuetypes as the generic type
6389         definition allows for two different encodings: the generic type definition
6390         class or a generic instance over the GTD arguments.
6392         Fixes #496175.
6394 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6396         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6398         * verify.c (do_initobj): Improve error message.
6400 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6402         * metadata-verify.c: Enable pe verification as the issue with #496453
6403         is that the authenticode data directory have a different unspecified
6404         format. Ignore it for now.
6406         * pedump.c: Run the metadata verifier together with the IL verifier.
6408         Fixes ##496453.
6410 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6412         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6414 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6416         * class.c (can_access_type): Check visibility against
6417         the element type for pointers and arrays.
6419         Fixes #496150.
6421 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6423         * metadata-verify.c: Fix cli and table verification to use information
6424         from the MonoImage. A lot of duplicated code got killed.
6426 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6429         This patch starts to integrate the metadata verifier with the runtime code.
6431         This patch causes major regression in functionality for the metadata verifier
6432         as cli and table verification are disabled since they require to be ported to
6433         use MonoImage information.
6435         * image.c (do_mono_image_load): Split the code in this function
6436         into mono_image_load_pe_data and mono_image_load_cli_data.
6437         Add     care_about_pecoff parameter to not load pecoff data.
6438         Call into the metadata verifier for pecoff and cli verification.
6440         * image.c (mono_image_open_raw): New function that doesn't perform
6441         any parsing of the image contents.
6442         
6443         The reason for the 3 new functions is to give pedump better control
6444         into the interaction with the verifier.
6446         * metadata-internals.h: Add new functions from image.c as part of the
6447         internal mono API.
6449         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6450         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6451         to make those functions work together with the runtime.
6453         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6454         true if the image needs to be verified.
6456         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6458         * pedump.c: Use new metadata verifier API.
6460 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6462         * object.c (mono_install_vtable_trampoline): Make this receive a
6463         trampoline creation function instead of trampoline, allowing the JIT
6464         to use a different trampoline for each vtable.
6466 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6468         * object.c (mono_raise_exception): Don't reset the thread abort
6469         exception state here.
6471 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6473         * icall-def.h: New icall for getting the thread abort exception
6474         state for a thread.
6476         * object.c, thread.c, object-internals.h: A thread's abort
6477         exception state is now a GC handle.  To get the object it stands
6478         for, we must move it into the current app domain, if it's
6479         different than the one where it originated from.
6481         * appdomain.c: Bump corlib version.
6483         * domain.c, domain-internals.h: New function for setting the
6484         domain and migrate the thread abort exception or not.
6486 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6488         * metadata-verify.c: Add initial verification of the
6489         field table.
6491 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6493         * metadata-verify.c: Add a macro to conditionally enable
6494         dumping of verification information. Add  make_coded_token
6495         and search_sorted_table to enable search sorted tables
6496         by a given coded token.
6498 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6500         * metadata-verify.c: Add array mapping from table index
6501         to description offset. Add get_col_offset and get_col_size
6502         functions.
6504 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6506         * metadata-verify.c: Add remaining table descriptions offsets.
6507         Add remaining coded index descriptions.
6509 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6511         * metadata-verify.c: Fixed constant table description.
6512         Fixed calculation of HasCustomAttribute coded index size.
6513         Fixed calculation of size for many table indexes. 
6515 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6517         * pedump.c (dump_metadata): Dump table offset instead
6518         of useless pointer in memory.
6520 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6522         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6524 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6526         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6527         a missing of for interface types.
6529 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6531         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6532         the code is commented.
6534         * metadata-verify.c (verify_resources_table): Remove spurious printf
6535         and don't fail if there are unmanaged resources. Gmcs generates a useless
6536         one     for all assemblies - I bet it's some MS compatibility junk.
6538 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6540         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6542         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6544         * verify-internals.h: Same.
6546         * pedump.c: Fix for mono_image_verify new signature.
6548 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6550         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6551         flags combinations.
6553 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6555         * metadata-verify.c (verify_module_table): Ignore the generation field.
6557 2009-04-15  Martin Baulig  <martin@ximian.com>
6559         * debug-mono-symfile.c
6560         (mono_debug_symfile_lookup_location): Don't print a warning for
6561         unknown extended opcodes if they're within 0x40 and 0x7f.
6563 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6565         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6566         invoke signatures returning an enum. Fixes #494847.
6568 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6570         * metadata-verify.c: Initial code to verify the typedef table.
6572 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6574         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6575         with non empty stack happens before the beginning of a try block.
6577         Fixes #494812.
6579 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6581         * metadata-verify.c: Verify typename and typenamespace fields of
6582         the typeref table.
6584 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6586         * metadata-verify.c: Initial code to verify the typeref table.
6588 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6590         * verify.c (verify_delegate_compatibility): Fix error message.
6592 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6594         * security-core-clr.c: Fix typo
6596 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6598         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6599         a MonoGHashTable to keep its values alive.
6600         (emit_marshal_boolean): Fix a warning.
6602 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6604         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6605         not have any interface configured for IPv4/IPv6.
6607 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6609         * assembly.c: fix typo in error message.
6611 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6613         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6614         allocating the location holding the this argument to prevent
6615         'too many root sets' errors.
6617         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6618         to mark fields as special static.
6619         (mono_field_static_get_value): Handle special static fields.
6620         (mono_field_static_set_value): Ditto.
6622         * class-internals.h (struct _MonoClassField): Document this.
6624 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6626         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6627           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6628           case.  This will handle when managed code returns null to native code.
6630         Code is contributed under MIT/X11 license.
6632 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6634         * object.c (build_imt_slots): Changing a free to a g_free to match
6635           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6637         Code is contributed under MIT/X11 license.
6639 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6641         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6642           the correct TRUE value is passed through the marshaling layer.
6644         Code is contributed under MIT/X11 license.
6646 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6648         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6649         correctly. Fixes #492330.
6650         
6651         * marshal.c: Fix the embedding of object pointers into JITted code in
6652         the native-to-managed wrappers by allocating some GC tracked memory, and
6653         embedding the address of that.
6655 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6657         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6658         pointers into the vtable.
6660 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6662         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6664         * verify.c (verify_ldftn_delegate): Improve error message.
6666 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6668         * reflection.c (my_mono_class_from_mono_type): Remove.
6670 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6672         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6673         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6674         and constraints fields into ...
6675         (MonoGenericParamInfo): ... this.
6676         (mono_generic_param_info, mono_generic_container_get_param_info):
6677         New accessors.
6678         * class.c, debug-helpers.c, icall.c: Update to changes.
6679         * metadata.c, reflection.c, verify.c: Likewise.
6681 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6683         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6685         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6686         
6687         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6688         booleans with sbytes.
6690 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6692         * class.c (can_access_instantiation): Verify accesibility of element types
6693         for arrays and pointers.
6695         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6697         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6699         Fixes #493068.
6701 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6703         * verify.c (do_invoke_method): Improve error messages.
6705 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6707         * verify.c:  Fixing the MSVC build.
6709         Code is contributed under MIT/X11 license.
6711 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6713         * security-core-clr.c: Simplify get_reflection_caller not to call
6714         mono_method_get_last_managed (another stack walk) and adjust the
6715         callers to handle a (should not happen) NULL return value.
6717 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6719         Add accessors to some MonoGenericParam fields
6720         * class-internals.h (mono_generic_param_owner): New accessor.
6721         (mono_generic_param_num): Likewise.
6722         (mono_type_get_generic_param_owner): New helper.
6723         (mono_type_get_generic_param_num): New helper.
6724         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6726 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6728         * class-internals.h (mono_generic_container_get_param): New wrapper.
6729         * class.c, icall.c, metadata.c, verify.c: Use it.
6731 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6733         Fix gtest-252.cs
6734         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6735         the standard case/loop.  In particular, don't complain about
6736         references to generic type definitions.
6738 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6740         * debug-helpers.c (dis_one): Decode string arguments.
6742 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6744         * pedump.c (dump_verify_info): Dump type name correctly.
6746 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6748         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6749         are larger than code size.
6751         This can happen in valid code if the try/catch block is not followed by any instruction
6752         and do a backward branch on the leave instruction.
6754         Fixes #492494.
6756 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6758         * security-core-clr.c: Fix typo while comparing second method names
6759         in can_avoid_corlib_reflection_delegate_optimization
6761 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6763         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6765         Fixes #487738.
6767 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6769         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6770         a MVAR using a class context.
6772         Fixes #490335.
6774 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6776         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6778         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6780         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6781         functions supplied by the JIT for the SGEN GC.
6783         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6784         
6785 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6787         monitor.c (mono_monitor_try_enter_internal):
6788         Added calls to profile monitor contentions.
6789         Also duplicated a small piece of code (the "get the monitor" logic)
6790         from the fast path to the slow path, and changed the relevant goto
6791         statements, so that monitor acquisition events can be emitted from the
6792         slow path (this is by Paolo Molaro).
6794 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6796         * profiler.c, profiler.h, profiler-private.h:
6797         Added support for profiling monitor contentions.
6799 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6801         * metadata-verify.c: Verify the modules table.
6803 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6805         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6806         using the context of the method been verifier and not of the method been called.
6808         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6809         safely inflate generic types. 
6811 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6813         * security-core-clr.c: Change the strategy for checking the 
6814         "reflection using delegates optimization" to avoid unneeded 
6815         attributes in multiple class libraries.
6817 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6819         * sgen-gc.c: Remove object element in the disappearing link struct
6820         by storing the object pointer in the link.
6822 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6824         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6826 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6828         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6830         * verify.c (mono_method_verify): Do proper bounds checking of exception
6831         clause ranges.
6833 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6835         * loader.c (mono_field_from_token): Don't crash if the field parent could
6836         not be decoded.
6838 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6840         * sgen-gc.c: Execute critical finalizers after ordinary
6841         finalizers.
6843         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6844         mono_defaults.
6846 2009-03-31 Jb Evain <jbevain@novell.com>
6848         * verify.c (do_ldstr): don't check if a string is in the user strings
6849         heap if the current image is dynamic.
6851 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6853         * sgen-gc.c: Wait until the last finalizer has executed when
6854         returning from WaitForPendingFinalizers.
6856 2009-03-31  Martin Baulig  <martin@ximian.com>
6858         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6859         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6860         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6861         (mono_debugger_event_create_appdomain): New function.
6862         (mono_debugger_event_unload_appdomain): New function.
6864         * appdomain.c (mono_domain_create_appdomain_internal): Call
6865         mono_debugger_event_create_appdomain().
6867 2009-03-31  Martin Baulig  <martin@ximian.com>
6869         * mono-debug-debugger.c
6870         (mono_debugger_register_class_init_callback): Also register the
6871         class init callback if the class is already initialized to make
6872         things work with shadow copied assemblies.
6874 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6876         * security-core-clr.c
6877         (mono_security_core_clr_ensure_reflection_access_field): Let 
6878         critical code access the field (just like we do for methods). Use
6879         check_field_access helper.
6880         (mono_security_core_clr_ensure_reflection_access_method): Use 
6881         check_field_access helper.
6883 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6885         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6886         call the run-finalize function directly.
6888         * gc.c, gc-internal.h: Make run_finalize() non-static.
6890 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6892         * sgen-gc.c: Use a separate struct for disappearing links.
6894 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6896         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6897         * MaxIOVectorLength enabled, just ignore them.
6898         Fixes bug #349688.
6900 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6902         * metadata-verify.c: Fix eglib build.
6904 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6906         * threads-types.h: Fix the win32 build.
6908 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6910         * class.c: move coreclr inheritance/override checks to 
6911         security-core.clr.c
6912         * security-core.clr.c|h: add code from class.c with additional
6913         documentation. Fix override check when the method is not critical.
6915 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6917         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6918         (match_class): Ditto.
6920 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6922         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6924         * metadata-verify.c: Implement table layout row size calculation. Verify
6925         the total size of the tables.
6927 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6929         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6931 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6933         * appdomain.c:
6934         * console-io.[ch]: added new mono_console_init() to make sure that
6935         file descriptors 0, 1 and 2 are opened.
6936         Bug #489019 fixed.
6938 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6940         * appdomain.h: Export a new callback type and a new function to
6941         set this callback. This allow a mono host to provide it's own
6942         definition for "platform code".
6943         * metadata-internals.h: Add a core_clr_platform_code flag on 
6944         _MonoImage to (cache and) know if it is representing platform 
6945         code.
6946         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6947         on platform code images.
6948         * security-core-clr.c|h 
6949         (mono_security_set_core_clr_platform_callback): Allow the host
6950         to provide it's own platform check definition.
6951         (mono_security_core_clr_determine_platform_image): Detect if an 
6952         image is platform code (using the specified callback).
6953         (mono_security_core_clr_is_platform_image): Return cached value 
6954         for platform code.
6956 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6958         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6959         which has different parameter types for the 'tid' argument in windows and
6960         the io-layer.
6962         * appdomain.c attach.c threads.c: Use the new helper.
6964 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6966         * metadata-verify.c: Verify valid table bits.
6968 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6970         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6972         * metadata-verify.c: Add initial table schema verification.
6974 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6976         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6977         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6978         #488383.
6980         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6982         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6984 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6986         * security-core-clr.c: Add/update documentation
6988 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6990         * marshal.c (emit_marshal_object): Generate code to throw an exception
6991         instead of throwing it. Fixes #488670.
6993 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6995         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6996         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6997         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6998         and add a call to mono_security_core_clr_ensure_delegate_creation
6999         to do the extra checks required by CoreCLR.
7000         * security-core-clr.c|h: Add function to check delegate creation,
7001         both in the binding and accessibility, under CoreCLR.
7003 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
7005         * reflection.c (mono_reflection_create_dynamic_method): when 
7006         coreclr is enabled make sure that every resolved object are
7007         checked (e.g. field and method access).
7008         * security-core-clr.c|h: Add function to check objects resolved
7009         when a dynamic method is created.
7011 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7013         * metadata-verify.c: Cache directory rva translations.
7015         * metadata-verify.c: Add cli-header and streams verification.
7017 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
7019         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7020         the wrong offset (8 instead of 6).
7022 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
7024         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7025         methods, return the native function address itself. Fixes
7026         #487758.
7028 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7030         * console-io.c: some of the values for control characters might not be
7031         present.
7033 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
7035         * exception.c|h: Add helpers to create [Field|Method]AccessException
7036         * icall.c: Add required coreclr check calls for field reflection.
7037         Move the existing (method) check logic into security-core-clr.c
7038         * security-core-clr.c: Add functions to check if the access of a
7039         field or method is allowed when reflecting under coreclr. This is
7040         mostly done using a stack walk to find the "real" caller: i.e. the
7041         code that is calling the reflection
7043 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7045         * gc-internal.h: Change location of gc_wrapper.h
7047 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7049         * class.c: Simplification to coreclr checks for overrides that
7050         makes it easier to set breakpoints.
7052 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7054         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7055         mono_security_core_clr_method_level): Avoid potential 
7056         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7057         user/application code) and make it easier to set breakpoints
7059 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7061         * metadata-verify.c: Reject cli header tables that mono don't handle.
7063 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7065         * pedump.c: Fix CLI header dumping.
7067 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7069         * metadata-verify.c: More CLI header verification.
7071 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7073         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7075 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7077         * metadata-verify.c: Initial verification of the CLI header.
7079 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7081         * metadata-verify.c (verify_resources_table): Fix verification of zero
7082         sized resource section and id entries count.
7084 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7086         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7088 2009-03-17  Jb Evain  <jbevain@novell.com>
7090         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7092 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7094         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7095         (mono_gc_make_descr_for_array): Ditto.
7097 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7099         * verify.c (mono_verifier_is_class_full_trust): Add support for
7100         CoreCLR security mode where trusted assemblies are defined as
7101         "platform code".
7103 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7105         * metadata-verify.c: Add minimal PECOFF resource verification.
7107 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7109         * metadata-verify.c: Be less restrictive with some coff fields.
7111 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7113         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7114         params as boxed values on stack. Fixes #485706.
7116 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7118         * console-io.c: the termios values may vary in different flavors of unix.
7120 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7122         * console-io.[ch]: return the entire set of control characters when
7123         initializing the terminal.
7124         * appdomain.c: bump corlib version.
7126 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7128         * mono-perfcounters.c: added support for in-process custom
7129         performance counters.
7131 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7133         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7135 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7137         * metadata-verify.c: Verify the data pointed by the import table. 
7139 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7141         * metadata-verify.c (load_data_directories): Store data
7142         directory contents.
7144         * metadata-verify.c: Verify the import table. 
7146 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7148         * metadata-verify.c: Verify data directories.
7150 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7152         * metadata-verify.c: Check section header flags.
7154 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7156         * appdomain.c: if the assembly name is a shadow-copied file, return
7157         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7158         in mono_make_shadow_copy.
7159         * icall.c: if the assembly name is a shadow-copied file, replace it
7160         with the original assembly path.
7162         Bug #484244 fixed. NUnit tests for corlib can be run without
7163         --noshadow now.
7165 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7167         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7168         entries when the table is reallocated.
7170         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7171         mono_gc_alloc_fixed () since it contains GC refs.
7173 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7175         * reflection.c (ensure_complete_type): New helper function to call
7176         type resolve handlers for unfinished dynamic types.
7177         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7179 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7181         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7182         #483247.
7184 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7186         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7188 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7190         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7191         between GCHandles of type WeakTrackResurrection and the objects they
7192         point to.
7194         * gc.c: Partly implement the sematics of GCHandles of type 
7195         WeakTrackResurrection: these handles should only be cleared after the
7196         finalizer of the object they are pointing to has ran.
7198 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7200         * icall.c: Partially revert r126631 because using the jump
7201         trampolines for generic shared methods makes it superfluous.
7203 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7205         * threads.c (handle_store): Create the 'threads' hash table with the proper
7206         MONO_HASH_VALUE_GC type.
7208 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7210         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7211         FIRST_GC_TRACKED.
7213         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7214         and LAST_GC_TRACKED as a GC root.
7216         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7218         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7219         the static data even if it consists of 1 reference.
7221         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7222         if there is a GC descriptor.
7224         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7225         instead of through the GC since they contain no object references.
7227 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7229         * generic-sharing.c (instantiate_other_info): Always return a jump
7230         trampoline for method code.
7232 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7234         * culture-info-tables.h: generated to include the en-tt culture.
7236 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7238         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7239         capture the thread context.
7241         * object.c (mono_async_result_new): Cache the invoke wrappers to
7242         ExecutionContext::Capture.
7244 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7246         * marshal.h: Add a prototype for what mono_compile_method returns
7247         for invoke wrappers.
7249         * gc.c: Use the new prototype declaration.
7251 2009-03-04  Geoff Norton  <gnorton@novell.com>
7253         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7254         * gc-internal.h:
7255         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7257 2009-03-04  Martin Baulig  <martin@ximian.com>
7259         * mono-debug.h
7260         (mono_debugger_runtime_invoke): Removed.
7262         * mono-debug-debugger.c
7263         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7265 2009-03-02  Martin Baulig  <martin@ximian.com>
7267         * mono-debug.h
7268         (mono_debugger_unhandled_exception): Removed.
7269         (mono_debugger_handle_exception): Removed.
7270         (mono_debugger_throw_exception): Removed.
7272         * mono-debug.c
7273         (mono_debug_debugger_version): Bump to 5.
7275         * mono-debug-debugger.c: Moved the exception handling code to
7276         ../mini/debug-mini.c
7278 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7280         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7281         finalize_objects_hash.
7283         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7284         
7285         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7286         field.
7288         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7289         cache.
7291         * image.c (mono_image_close): Free it.
7292         
7293         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7294         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7295         on the this argument.
7297         * gc.c (run_finalize): Optimize the calling of the finalizers.
7299 2009-03-03  Martin Baulig  <martin@ximian.com>
7301         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7302         of the `MonoGenericInst' changes.
7304 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7306         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7307         mono_array_class_get_cached to reduce locking contention. Extract
7308         a domain var.
7310         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7311         intermediary managed arrays. Use caching version of mono_array_new
7312         to allocate the result array.
7314         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7316         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7318         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7319         to reduce locking contention.
7321 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7322                 
7323         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7324         thunk builder code for the non-interface case.
7326 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7328         * object.c (get_generic_virtual_entries): New helper function to collect
7329         the virtual generic method instances which need to be added to an IMT
7330         thunk.
7331         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7332         Instead of creating a new IMT thunk, reset the vtable slot to the
7333         trampoline, the thunk will be created the next time the trampoline is called.
7334         (build_imt_slots): Add support for virtual generic methods in interfaces by
7335         adding to the IMT thunk all the methods registered using 
7336         mono_method_add_generic_virtual_invocation ().
7338         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7339         (struct _MonoIMTCheckItem): Ditto.
7341         * object.c (mono_method_add_generic_virtual_invocation): Take a
7342         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7343         the IMT thunk to include all items.
7344         
7345         * object.c (mono_class_create_runtime_vtable): Add a missing
7346         mono_loader_unlock ().
7348 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7350         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7352         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7354 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7356         * object-internals.h: Rename _MonoReflectionEvent to
7357         MonoReflectionMonoEvent so it reflects the right managed type.
7358         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7360         * icall.c:
7361         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7362         type.
7364 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7366         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7367         intermediary managed arrays. Use caching version of mono_array_new
7368         to allocate the result array.
7370 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7372         * reflection.c: Use cached version of mono_array_new alongside
7373         the mono_reflection_get_custom_attrs_by_type call path.
7375 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7377         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7378         intermediary managed arrays. Use caching version of mono_array_new
7379         to allocate the result array.
7381         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7383 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7385         * icall.c: Add small implementation of a growable stack bound array.
7387         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7389         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7390         intermediary managed arrays. Use caching version of mono_array_new
7391         to allocate the result array.
7393 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7395         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7396         helps Enum::CompareTo to be implemented without reboxing all enums
7397         to their underlying type.
7398 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7400         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7401         since it acquires a global lock leading to scalability problems.
7403         * profiler.c: Make the stat profiler work with multiple appdomains, this
7404         currently only works when no appdomains are unloaded.
7406 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7408         * appdomain.c: make the check to avoid copying when the assembly is
7409         already shadow copied actually work.
7411 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7413         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7415         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7416         changes to the managed side.
7418 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7420         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7421         classes + a separate lock for it, as it is used frequently at runtime, not
7422         just during metadata loading/JIT compilation.
7424         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7425         for szarrays.
7426         
7427         * object-internals.h (mono_class_from_name_cached): New macro to cache
7428         the results of the lookup locally without having to declare a static
7429         variable to hold it.
7430         (mono_class_get_field_from_name_cached): Ditto.
7431         (mono_array_class_get_cached): Ditto.
7433         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7434         the new macros.
7435         
7436         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7437         slower search in metadata.
7439         * pedump.c: Fix a warning.
7441 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7443         * reflection.c (encode_locals): Add checks for user types.
7444         (method_encode_clauses): Ditto.
7445         (method_encode_code): Ditto.
7446         (mono_image_create_token): Ditto.
7448         * object-internals.h: Change the type of more fields from MonoReflectionType*
7449         to MonoObject*.
7451 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7453         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7454         the a thread does not suspend within 100ms.
7456         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7457         in addition to StopRequested as well.
7459         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7461         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7462         search the method_hash before inserting a new entry, to avoid crashes when
7463         the same method is inserted multiple times, causing the old 
7464         MonoDebugMethodInfo structure to be freed by the value dtor function.
7466 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7468         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7469         SO_EXLUSIVEADDRUSE where available.
7471 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7473         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7474         runtime invoke wrappers, this time it is string ctor wrappers, which
7475         pass a dummy string as 'this' instead of their obj argument. Fixes
7476         #478473.
7478 2009-02-21  Jb Evain  <jbevain@novell.com>
7480         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7481         only get create_culture once.
7483 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7485         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7486         check before the locking.
7487         
7488         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7489         (mono_reflection_create_runtime_class): Ditto.
7490         (mono_reflection_sighelper_get_signature_local): Ditto.
7491         (mono_reflection_sighelper_get_signature_field): Ditto.
7493         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7494         is a System.MonoType object or similar.
7495         (monotype_cast): New helper function to cast a MonoObject to a 
7496         MonoReflectionType object.
7498         * object-internals.h: Change MonoReflectionType* members in structures to
7499         MonoObject* members to force the usage of the monotype_cast () function.
7501         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7502         structures/arrays. This causes us to assert instead of crashing when 
7503         instances of user defined subclasses of System.Type are encountered.
7505 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7507         * cil-coff.h:
7508         * icall-def.h:
7509         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7510         win32 resource loaded from a PE file.
7512         * image.c: fix mono_image_lookup_resource.
7514 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7516         * icall-def.h:
7517         * threads-types.h:
7518         * threads.c: added internal call for WaitHandle.SignalAndWait.
7520 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7522         * cominterop.c : Adding cominterop_type_from_handle and 
7523           registering it as an icall.  Replacing all references
7524           to type_from_handle.
7526         Code is contributed under MIT/X11 license.
7528 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7530         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7532         * appdomain.c: Call the tracer init function.
7534         * domain-internals.h: Enable the tracer for the domain locks.
7536         * image.c: Enable the tracer for image locks.
7538         * loader.c: Enable the trace for the loader lock.
7540         * lock-tracer.h:
7541         * lock-tracer.c: Initial implementation of the lock trace utility.
7542         The tracer requires a compile time define to be enabled and a env var
7543         to be enabled at runtime.
7545 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7547         * domain.c (mono_domain_code_foreach): Improve documentation.
7549 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7551         * appdomain.c:
7552         * generic-sharing.c:
7553         * object.c:
7554         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7555         comes first.
7557 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7559         * domain.c: Add mono_domain_code_* functions that perform locking
7560         around the domain codeman.
7562         * domain-internals.h: Export those functions.
7564         * object.c: Use new functions instead of acquiring the domain lock.
7566 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7568         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7569         delegate. Fixes #477396.
7571 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7573         * reflection.c (create_custom_attr): Get rid of alloca.
7575 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7577         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7578           Adding exception handling for all CCW calls.
7580         Code is contributed under MIT/X11 license.
7582 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7584         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7586         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7587         native->managed marshalling code. Fixes #476247.
7589 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7591         * class.c (mono_class_get_vtable_entry): Move the addition of
7592         static rgctx invoke wrappers for vtable methods here, this simplifies
7593         a lot of code and causes fewer rgctx wrappers to be created.
7595         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7596         name of the statistics to begin with an uppercase.
7598 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7600         * reflection.c: Revert previous change as it breaks the build.
7601         
7602 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7604         * verify.c: Properly handle SZARRAY element type.
7606         Fixes #474271.
7608 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7610         * reflection.c (mono_image_create_method_token): Correctly encode
7611         MethodDef MemberRefParent token.
7613         Fixes #472845.
7615 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7617         * image.c (mono_image_close): Delete the critical section before
7618         freeing the memory holding it.
7620 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7622         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7623         Fixes #476257.
7625 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7627         * pedump.c (main): Call mono_marshal_init so pedump
7628         doesn't crash.
7630 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7632         * loader.c (method_from_memberref): Properly fix #474271 and
7633         don't break the runtime bad.
7635 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7637         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7638         (mono_domain_alloc0): Ditto.
7640 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7642         * loader.c (method_from_memberref): Don't abort if the array
7643         method is not found. A regular loader failure is more informative
7644         and correct.
7646         Fixes #474271.
7648 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7650         *loader.c: Guard MonoImage::method_cache/methodref_cache
7651         using the image lock instead of the loader lock.
7653         * metadata.h: Add comments about which fields are protected by
7654         the image lock.
7656 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7658         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7660         * generic-sharing.c (mono_method_construct_object_context): Remove the
7661         wrapper_type == NONE assert, it is not needed.
7663 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7665         * reflection.c (clear_cached_object): New helper function.
7666         (mono_method_clear_object): New function to clear the cached reflection
7667         objects for a dynamic method.
7669         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7670         Partly fixes # 463323.
7671         
7672 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7674         * class.c:
7675         * loader.c:
7676         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7678 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7680         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7681         take the image lock instead of the loader lock.
7683         * metadata-internals.h: Export new functions.
7685 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7687         * domain.c (app_config_parse): Remove another use of stat that is
7688         not necessary as g_file_get_contents already does the presence
7689         check. 
7691 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7693         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7695         * marshal.c: Move the bstr handling code to cominterop.c.
7697         * marshal.c: Remove some COM interop code missed previously.
7699 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7701         More Paolo patches from the Wii port:
7702         
7703         * security.c: Remove ves_icall_System_Environment_get_UserName
7704         from here.
7706         * icall.c: And put ves_icall_System_Environment_get_UserName
7707         here. 
7709         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7710         redundant call to stat that was only used to test for the file
7711         existence.   Patch from Paolo.
7713         * gc.c (run_finalize): If COM is disabled, do not link in
7714         mono_marshal_free_ccw.
7716         * generic-sharing.c: Use alloca.h here as well.
7718 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7720         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7722 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7724         * cominterop.c cominterop.h: New files.
7726         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7727         function/typedefs which are needed by cominterop.c global.
7729 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7731         * generic-sharing.c: Don't take the loader lock to guard image
7732         mempool allocs.
7734 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7736         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7737         called without the loader lock which is required to guard MonoImage:tokens.
7739 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7741         * class.c:
7742         * metadata.c:
7743         * method-builder.c:
7744         * marshal.c:
7745         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7747 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7749         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7750         Rework the code to use regular mono_image_alloc/0.
7752         * loader.c: Rework the code to use regular mono_image_alloc/0.
7754         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7756 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7758         * object-internals.h : Fixing a typo in the 
7759           MonoReflectionComVisibleAttribute struct.
7761         * marshal.c (cominterop_com_visible): Check the implemented 
7762           interfaces for ComImport.
7764         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7765           assume that bools should be treated as VARIANTBOOLs.
7767         * marshal.c (emit_marshal_boolean): Adding cases for 
7768           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7770         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7771           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7773         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7774           should be treated as VARIANTBOOLs.    
7776         Code is contributed under MIT/X11 license.
7778 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7780         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7781         allocation with the image lock.
7783 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7785         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7786         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7788         * object.c: Add mono_string_to_utf8_image.
7790         * object-internals.h: Export mono_string_to_utf8_image.
7792         * reflection.c: Rework all explicit references to the the image mempool to go thought
7793         the mono_image_alloc set of functions.
7795 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7797         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7798         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7799         and generics-sharing.c.
7801         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7802         as first argument. Note that this function remains broken as it doesn't perform locking around the
7803         mempool allocation.
7805         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7807         * image.c: Add g_slist_append_image.
7809         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7810         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7812         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7813         Fix all related code to do the same.
7815         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7817         * metadata-internals.h: Fix the signatures.
7819 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7821         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7822         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7823         and similar to work using MonoImage.
7825         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7826         MonoMemPool.
7828         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7830         * class.c (mono_metadata_signature_deep_dup): Same.
7832         * class.c (inflate_generic_type): Same.
7834         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7836         * metadata.c (mono_metadata_signature_dup_full): Same.
7838         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7839         mono_metadata_signature_dup_full.
7841         * metadata.c (mono_metadata_type_dup): Same.
7843         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7845         * reflection.c: Same.
7847         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7849         * metadata-internals.h: Fix the signatures.
7851         * class-internals.h: Same.
7853 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7855         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7856         and use mono_image_alloc set of functions instead. 
7858         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7859         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7860         of a MonoMemPool.
7862         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7864         * class.c (g_list_prepend_mempool): Removed.
7866         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7868         * image.c: Add g_list_prepend_image.
7870         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7872         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7875 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7877         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7878         mono_image_unlock.
7880         * image.c (mono_image_init): Init the lock field.
7882         * image.c (mono_image_init): Cleanup the lock field.
7884         * image.c: Add mono_image_(un)lock functions.
7886 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7888         * class.c, class-internals.h: mono_method_get_context_general()
7889         combines the functionality of mono_method_get_context() and
7890         mini_method_get_context().
7892         * generic-sharing.c, domain-internals.h:
7893         mono_method_construct_object_context() and
7894         mono_domain_lookup_shared_generic() moved from mini.
7896         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7897         method doesn't have the correct instantiation because it's shared
7898         generic code.  Fixes #473999.
7900 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7902         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7904         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7905         
7906 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7908         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7910         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7912         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7913         and recheck the cache for dups after it.
7915         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7917         Fixes one of the deadlocks found in #473150.
7919 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7921         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7922           For Win32, add additional break conditions for accept.
7924         Code is contributed under MIT/X11 license.
7926 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7928         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7929         lazily initialize the native wrapper cache.
7930         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7931         cache, since they are different from the normal wrappers.
7933         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7935         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7936         AOT compiled native wrappers.
7938 2009-02-09  Geoff Norton  <gnorton@novell.com>
7940         * appdomain.h:
7941         * security-core-clr.c: Allow enabling core-clr from the embedding
7942         API.
7944 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7946         * socket-io.c: when requesting all the local ips, if there are no
7947         interfaces up and running, MS returns 127.0.0.1.
7949 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7951         * mono-perfcounters-def.h: processor time is an inverse time.
7952         Fixes bug #468625.
7954 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7956         * socket-io.c: an empty host name returns the list of local IPs.
7957         Fixes bug #386637 part 1/2.
7959 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7961         * verify.c (mono_class_interface_implements_interface): Call
7962         mono_class_setup_interfaces ().
7963         (merge_stacks): Ditto.
7965 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7967         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7968         klass->interfaces.
7969         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7970         (mono_generic_class_get_class): Ditto.
7972 2009-02-06  U-QUACK\miguel  <miguel@quack>
7974         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7975         they live in security.c
7977         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7978         another bit from Paolo's code.
7980 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7982         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7983         methods which will be discarded by add_imt_builder_entry ().
7985         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7986         need to be boxed.
7988         * loader.c: Add a statistics for the size of the memberref signature cache.
7989         
7990         * loader.c (find_cached_memberref_sig): New helper function.
7991         (cache_memberref_sig): Ditto.
7993         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7994         they will be parsed again for every generic instantiation, leading to unbounded
7995         memory growth.
7997 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7999         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
8000         parameters of generic methods.
8002         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
8003         after the original method is copied to the inflated method.
8004         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
8006         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
8007         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8009         * class.c metadata.c: Update after the changes above.
8011 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8013         * metadata-verify.c: Simplified error handling and added
8014         section table validation.
8016 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8018         * class-internals.h (MonoClassExt): New structure containing rarely used
8019         fields of MonoClass.
8020         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8021         through a new 'ext' field.
8023         * class.c (mono_class_alloc_ext): New helper function to allocate 
8024         class->ext.
8026         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8028 2009-02-05  Mark Probst  <mark.probst@gmail.com>
8030         * object.c (mono_object_get_virtual_method): Properly inflate
8031         generic methods.  Fixes #472692.
8033 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
8035         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8036         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8037         for the parent type, the created type must be ready to be used on a generic
8038         instantiation.
8039         We fill this_arg/byval_arg if the parent is a generic instance to make sure
8040         we won't have duplicated entries in generic_inst_cache.
8042         Fixes #469553.
8044 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8046         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8047         replace with plain BSD per the comments on the bug MONO77637.
8049 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8051         * class.c (mono_class_get_generic_class): New accessor function.
8052         (mono_class_get_generic_container): Ditto.
8054         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8055         fields, similar to the ones in MonoMethod.
8057         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8058         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8060         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8061         
8062         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8063         the same information as element_class->byval_arg.
8065         * class.c reflection.c: Remove references to class->byval_arg.
8067         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8068         klass->enum_basetype directly.
8070         * verify.c metadata.c object.c icall.c reflection.c: Use 
8071         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8072         directly.
8074 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8076         * icall-def.h: Remove internal calls for sockets when
8077         DISABLE_SOCKET is defined, file system writing features when the
8078         OS only support reading and not writing data and Policy support if
8079         the Policy is disabled.
8080         
8081         * image.c (do_mono_image_open): Apply Paolo's patches for using
8082         mono_file_map_ APIs here.
8084         * assembly.c: Add support for platforms to avoid prefix
8085         auto-detection. 
8087 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8089         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8090         warning.
8092         * class.c (mono_class_inflate_generic_class): New helper function.
8094         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8095         statistics for inflated methods/classes.
8097         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8099         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8100         the call is made from Delegate.CreateDelegate () for the invoke method of
8101         a delegate.
8103         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8105         * metadata.c (mono_metadata_signature_size): New helper function.
8107         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8108         generic instances.
8110         * metadata.c (inflated_method_in_image): Avoid calling 
8111         mono_method_signature () if the method does not already have a signature.
8113 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8115         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8116         valuetype is compatible with target type, check by inheritance as a
8117         VT is not really compatible with System.ValueType, for example.
8119         * verify.c (do_invoke_method): Improve error message.
8121         * verify.c (do_box_value): If boxing a nullable, use the type argument
8122         on stack instead.
8124         * verify.c (do_newobj): Improve error message.  
8126         Fixes #469549.
8128 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8130         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8132 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8134         * generic-sharing.c: Don't hold domain lock when calling
8135         instantiate_other_info().  Fixes #471958.
8137         * domain-internals.h, loader.c: Describe locking policy of domain
8138         lock vs loader lock.
8140 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8142         * verify.c (mono_delegate_signature_equal): Make it possible to check
8143         first-arg-bound delegates to static method.
8145         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8146         static methods with the first arg bound.
8148         Fixes #469529.
8150 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8152         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8153         errors.
8155         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8156         under strict mode. Any type, when boxed can be seen as a reference type.
8158         Fixes #469528.
8160 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8162         * object.h: The lower bound of an array is a signed integer value.
8163         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8164         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8166         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8167         calculate the upper bound.
8168         
8169         Fixes #471252.
8171 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8173         From Paolo's work, refactored, cleared up:
8174         
8175         * threadpool.c, icall.c: ifdef code that requires a working socket
8176         stack.
8178         * metadata.c (mono_metadata_field_info): Do not attempt to return
8179         a value from a function declared as void.
8181         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8182         from the console stack.
8184         * assembly.c: use strrchr instead of rindex.
8186         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8187         alloca.h on systems that have it.
8189         * environment.c: Avoid code that uses stuff from
8190         HAVE_SYS_UTSNAME_H
8191         
8192         * appdomain.c: Include sys/time.h.
8194         * console-io.c: include sys/ioctl.h if it is available.
8196 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8198         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8200         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8201         the method builder.
8203         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8204         after it was created and cached, as the later is not thread safe.
8205         
8206 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8208         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8209         called while the debugging module is not initialized. Fixes #471669.
8211 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8213         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8215         Fixes #471255.
8217 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8219         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8220         loader lock is not taken while the templates lock is held.  Fixes
8221         #471089.
8223 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8225         * metadata.c (type_in_image): Added a check to fix a monodis
8226         crash.
8228 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8230         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8231         nullable arguments.
8233         * object.c (mono_runtime_invoke_array): Ditto.
8234         
8235         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8236         freeing wrappers of dynamic methods.
8238         * loader.c (mono_free_method): Call it. Fixes #463323.
8239         
8240         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8241         methods taking vtype/byref arguments, to fix yet another bug caused by
8242         the sharing of runtime invoke wrappers. Partly fixes #471259.
8244 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8246         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8247         <first file in file table>:1 when the IL offset does not have an associated
8248         line number.
8250 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8252         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8253         variable info for a method.
8255         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8256         
8257 2009-01-30  Jb Evain  <jbevain@novell.com>
8259         * pedump.c: reuse code from monodis to make sure pedump honors
8260         MONO_PATH, which is needed to verify net_2_1 assemblies.
8262 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8264         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8265         there is no line number info.
8267 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8269         Avoid some MonoType allocations
8270         * reflection.c (mono_reflection_initialize_generic_parameter):
8271         Reuse MonoType from param->pklass rather than allocating one.
8272         (mono_dynamic_image_free): Update to changes.
8274 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8276         Rearrange some code to improve consistency
8277         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8278         (mono_reflection_initialize_generic_parameter): ... here.
8280 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8282         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8283         with type constraints as an experiment.
8285         * boehm-gc.c (on_gc_notification): Update mono_stats.
8287 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8289         Avoid some allocations
8290         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8291         pointer to tail array to avoid extra allocation.
8292         * metadata.c (free_generic_inst): Update to changes.
8293         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8294         on-stack struct.
8296 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8298         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8299         return TRUE if the two type objects are the same.
8301 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8303         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8304         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8305         klass->min_align, since klass->min_align contains the managed alignment,
8306         while the native alignment can be different, like for longs on x86.
8307         Fixes #469135.
8309         * class-internals.h (MonoMarshalType): Add a min_align field.
8311 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8313         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8314         the 1.0 format.
8316 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8318         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8319         some comments about the usage of the used_regs field.
8321         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8322         Fixes #469217.
8324 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8326         * appdomain.c: return NULL instead of throwing FileNotFoundException
8327         when LoadAssembly() fails.
8329 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8331         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8332         image if the owner is NULL.  Fixes the AOT failures.
8334 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8336         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8337         MonoGenericParam structure using memset so the image field is initialized
8338         as well.
8340 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8342         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8343         a plain store.
8345 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8347         * class.c (mono_class_setup_vtable_general): In the generic instance
8348         optimization, set method->slot for abstract virtual methods. Fixes part of
8349         #467834.
8351 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8353         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8354         which signals that the unloading has started but all appdomain services must
8355         remain operational.
8357         * appdomain.c (mono_domain_unload): The initial state for unloading now
8358         is unloading_start and we switch to unloading after the managed call to
8359         AppDomain::DomainUnload has finished.
8361         The new unloading state has to be created because managed code in the
8362         DomainUnload event can depend on things like the threadpool still working.
8363         The domain must remain fully functional while the event executes.
8365         This shown as an issue due to Process::WaitForExit, which waits for
8366         async reads of stdout and stderr to complete. Since those are processed
8367         in the threadpool the code deadlocks because the DomainUnload callback 
8368         waits for the async read finished event, which should have been set by a
8369         threadpool job but has been discarded due to the domain been in unload
8370         state.
8372 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8374         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8375         image must match.
8377 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8379         * reflection.c (resolve_object): For fields, inflate the class and
8380         then get the field in the inflated class.
8382 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8384         * object-internals.h (struct _MonoException): Added a comment
8385         explaining the new use of trace_ips.
8387 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8389         * generic-sharing.c (inflate_other_data): Inflate array methods
8390         correctly.
8392         * loader.c, class-internals.h: Rename search_in_array_class() to
8393         mono_method_search_in_array_class() and make it non-static.
8395 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8397         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8398         Hopefully fixes #458168.
8400 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8402         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8403         as it is performed elsewhere.
8405         Code is contributed under MIT/X11 license
8407 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8409         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8410         requests queued.
8411         * object.c (mono_raise_exception): Increment the exceptions total
8412         counter when an exception is thrown.
8413         * class-internals.h: Add a location for storing the total number of
8414         asp.net requests served.
8415         * mono-perfcounters.c: Implement update support for asp.net counters
8416         from the class libraries. Implement read support for asp.net counters
8417         and exceptions total counter.
8419 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8421         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8422         accessing klass->methods. Fixes #467385.
8424 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8426         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8427         for byval arguments without an [Out] attribute. Fixes #467212.
8429         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8430         Fix compilation under android.
8431         
8432         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8433         processed, scan them directly after they are copied, to achieve better locality
8434         and cache usage.
8436         * socket-io.c: Applied patch from Koushik Dutta
8437         (koush@koushikdutta.com). Disable IPV6 when running under android.
8439 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8441         * icall.c (ves_icall_InternalExecute): Add write barriers.
8443         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8444         the GC code.
8446         * sgen-gc.c: Implement write barriers in IL code.
8448 2009-01-17  Geoff Norton  <gnorton@novell.com>
8450         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8452 2009-01-17  Geoff Norton  <gnorton@novell.com>
8454         * image.c: When unloading the image->references table, there can be gaps
8455         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8456         when unloading an appdomain.
8458 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8460         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8461         speed up ptr-in-nursery checks.
8463         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8464         threads_lock () to prevent deadlocks.
8466         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8467         does not need to be scanned during minor collections, since writes to it
8468         must use write barriers.
8470 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8472         * metadata-verify.c: Add pe nt header verification.
8473         
8474 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8476         * gc.c: Fix a few warnings when using SGEN.
8478 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8480         * metadata-verify.c: Add pe optional header verification.
8482 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8484         * sgen-gc.c: Add support for user defined marker functions, used by
8485         MonoGHashTable to avoid registering a GC root for every hash node.
8487 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8489         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8490         non-pinned roots into separate hashes to avoid having to traverse them
8491         in functions which are only interested in one kind.
8493 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8495         * metadata-verify.c: Add pe header machine field verification.
8496         
8497 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8499         * metadata-verify.c: Add pe header size verification.
8501 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8503         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8504         using the GC, they don't contain references.
8506         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8508 2009-01-13  Geoff Norton  <gnorton@novell.com>
8510         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8511         AppDomains created on the native side can be cleaned up on the native side.
8513 2009-01-13  Geoff Norton  <gnorton@novell.com>
8515         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8516         as well as the managed api.
8518 2009-01-13  Geoff Norton  <gnorton@novell.com>
8520         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8521         with a MonoAppDomain initialized against it.
8523 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8525         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8526         
8527         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8529         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8530         into the wrapper caches. Fixes #465700.
8532         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8533         method builder.
8534         (mono_mb_create_method): Set the clauses from the method builder.
8536 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8538         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8539         Patch from Makoto Kishimoto.
8541 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8543         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8544         encoding them as ROOT_DESC_COMPLEX.
8545         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8547 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8549         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8550         no longer point to the nursery.
8552         * sgen-gc.c: Add a few comments/FIXMEs.
8553         
8554         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8556         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8557         initialization of the various _method variables thread safe. Fixes
8558         #465377.
8560 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8562         * domain.c, domain-internals.h: Remove the shared_generics_hash
8563         and its lookup functions.
8565 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8567         * socket-io.c:  Fixing the MSVC build. 
8569         Code is contributed under MIT/X11 license.
8571 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8573         * metadata-verify.c: Add pe header watermark verification.
8575 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8577         * metadata-verify.c: Add lfanew verification.
8579 2009-01-12  Jb Evain  <jbevain@novell.com>
8581         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8582         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8584 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8586         * socket-io.c: Fix the build.
8588         * environment.c: Fix an #ifdef.
8590 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8592         * threadpool.c (async_invoke_thread): Handle the wait function returning
8593         WAIT_IO_COMPLETION as well.
8594         (async_invoke_io_thread): Ditto.
8596 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8598         * threads.c: Fixing the Windows build.
8600         Code is contributed under MIT/X11 license.
8602 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8604         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8605         interrupt a wait.
8606         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8607         the thread to wait again.
8609 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8611         * metadata-verify.c: Initial skeleton of the metadata verifier.
8613         * pedump.c: Add support for the metadata verifier.
8615         * verify-internal.h: Export the whole assembly metadata verifier function.
8617 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8619         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8621 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8623         * Makefile.am: Upgrade dtrace-prelink.sh location.
8625 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8627         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8628         well. Otherwise the shutdown deadlock that happens on unix will can happen
8629         as well.
8630         If the main thread code finishes too fast it's possible that the finalizer
8631         thread won't have executed yet, won't record itself as the finalizer thread
8632         and the shutdown sequence will wait on it forever.
8634 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8636         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8637         with MSVC.
8639 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8641         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8642         Robert Jordan for pointing this out.
8644 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8646         * icall.c
8647         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8648         ves_icall_System_IO_DriveInfo_GetDriveType.
8650 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8652         * icall.c: Wrap calls to mono_strtod in CriticalSection
8653         invocations when using eglib, to work around #464316.
8655 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8657         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8658         return value of GetCurrentDirectory to never access unitialized memory.
8660 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8662         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8663         return value of GetCurrentDirectory and expand the buffer if needed.
8665         Fixes #459094.
8667 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8669         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8670           Adding a call to mono_init_com_types.
8672         Code is contributed under MIT/X11 license.
8674 2009-01-07  Geoff Norton  <gnorton@novell.com>
8676         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8677         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8678         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8679         be the value of the ip buffer.
8681 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8683         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8684         interfaces_packed here.
8686         Fixes part of #463294.
8688 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8690         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8692         Fixes part of #463294.
8694 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8696         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8697         is a boxed complex as well.
8699         Fixes part of #463294.
8701 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8703         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8704         control if a methodspec should be created for the generic method definition from external assemblies.
8705         Caching of methodspec is done using the handleref hash table.
8707         Fixes #462592.
8709 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8711         * loader.c (find_method): When searching the interfaces of a class
8712         check the transitive closure of implemented interfaces.
8714         Fixes #463303.
8716 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8718         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8719         
8720 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8722         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8723         interfaces calculation to fill_valuetype_array_derived_types.
8725         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8726         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8727         for example.
8729         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8730         interfaces for valuetypes if needed.    
8732         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8733         for their basetype as well. Types are array expanded if rank is > 0.
8735         Fixes #400716.
8737 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8739         * socket-io.h : Changing the signature of
8740           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8741           the blocking state.
8743         * icall-def.h :  Changing the signature of
8744           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8746         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8747           For Windows only.  Avoid blocking when calling accept by
8748           querying for a connection via select.  The loop also queries
8749           the thread state every 1000 micro seconds for the thread
8750           stop state.  This will avoid the process hanging on shutdown
8751           when using a TcpChannel that is never connected to.
8753         Code is contributed under MIT/X11 license.
8755 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8757         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8759 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8761         * class.c (get_implicit_generic_array_interfaces): Extract common
8762         code to a helper function making it a lot easier on the eyes.
8764 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8766         * class.c (get_implicit_generic_array_interfaces): If the internal
8767         enumerator is an interface inflate System.Object instead of itself.
8769         Fixes #461261.
8771 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8773         * object.c (mono_runtime_invoke_array): Don't assert with
8774         byref nullable types.
8776         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8777         byref nullables we unbox the object and store it on the
8778         stack. 
8779         We can't use the boxed object since it is the T of Nullable<T>
8780         and the boxed representation of a nullable it's underlying type
8781         or null.
8782         We could cheat and create a boxed nullable and use the same
8783         machinery of other byref VTs but this feels like a hack and
8784         using the stack has the bonus of reducing heap pressure.
8786         Fixes #461941.
8788 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8790         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8791         return value.
8793         Fixes #461867.
8795 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8797         * icall-def.h : Adding an internal call definition for 
8798           System.Environment.internalBroadcastSettingChange.
8800         * icall.c : Adding a Windows only implementation to broadcast a 
8801           WM_SETTINGCHANGE when an environment variable has changed.
8803         Code is contributed under MIT/X11 license.
8805 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8807         * class.c, class-internals.h: Made
8808         mono_class_has_parent_and_ignore_generics() non-static.
8810 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8812         * image.c: deal with the mmap failing when loading an image.
8814 2008-12-17  Geoff Norton  <gnorton@novell.com>
8816         * threadpool.c: Ensure that the io_queue_lock is initialized
8817         in all circumstances, as we always attempt to cleanup against it.
8819 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8821         * icall.c (ves_icall_System_Environment_get_Platform): For
8822         compatibility reasons for existing client code we will keep
8823         returning 4 for a while.   
8825         For how long will depend on the documentation being updated, and
8826         for us to give client code a chance to be updated.
8828         This reverts the original decison on #433108 since we did not
8829         catch roughly 33 instances of the broken code in our own source
8830         code base, we did not catch failures on the buildbots, and QA did
8831         not bring this as a problem.
8833         Only today I found some customer's code breaking due to our own
8834         class libraries not being fully updated and tracked it down to
8835         this change.  I am reverting it because if we could not even get
8836         our story straight in our own code base, how can we hope that our
8837         end user code be fixed?
8839         As of this morning, our Wiki page that documents how to detect
8840         Unix had not been fixed.    
8842 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8844         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8846         * class.c (mono_class_get_fields): Handle loading errors.
8848 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8850         * 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.
8851         
8852 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8854         * mono-perfcounters.c: avoid warning.
8856 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8858         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8859         make sure all interfaces have MonoClass::interface_id set.
8861         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8862         method table is property set.
8864 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8866         * class.c: New function mono_class_setup_interface_id that setup
8867         MonoClass::interface_id if needed.
8869         * class-internals.h: Export new function.
8871 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8873         * class.c: Add code to sanity check the vtable after setup_vtable_general
8874         has done it's work.
8876 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8878         * icall.c: make Assembly.GetExecutingAssembly work properly when
8879         reflection is used to invoke the method.
8880         Bug #321781 fixed.
8882 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8884         * metadata/generic-sharing.c: Look for constraints in all type
8885         arguments, not just the first one.
8887 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8889         * appdomain.c: return the correct CodeBase for an Assembly instance
8890         that was loaded from the shadow-copy directories.
8891         Bug #458190 fixed.
8893 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8895         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8897         * sgen-gc.c (check_object): New debugging helper function.
8899         * object.c: Fix calls to mono_value_copy_array ().
8901 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8903         * class.c (mono_class_setup_fields): If working on an inflated class
8904         first check if the generic definition did init with success.
8906         Fixes #445361.
8908 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8910         pedump.c (main): Fix a warning.
8912 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8914         * object-internals.h : Adding a definition for 
8915           MonoReflectionComVisibleAttribute.
8917         * marshal.c (cominterop_com_visible) :  Method added to check the 
8918           ComVisible attribute of a class.
8920         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8921           cominterop_raise_hr_exception added to consolidate common code 
8922           to raise hr exceptions.
8924         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8925           if a managed class should support IDispatch.
8927         * marshal.c 
8928           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8929           Added additional checks for managed object when getting 
8930           an IDispatch interface.
8932         Code is contributed under MIT/X11 license.
8934 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8936         pedump.c (main): Handle mono_get_method () returning NULL. 
8938 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8940         * marshal.h: Fix a warning.
8942 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8944         * marshal.c : Adding cominterop_release_all_rcws to release all
8945           runtime callable wrappers held by the runtime.
8947         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8948           
8949         Code is contributed under MIT/X11 license.
8951 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8953         * metadata.c (mono_image_alloc_lock): New helper function.
8954         (mono_image_alloc0_lock): Ditto.
8956         * metadata.c: Use the alloc_lock () helper functions for allocating
8957         memory from the image mempool.
8959 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8961         * class.c (mono_class_from_generic_parameter): Document it's
8962         locking behavior. Fix double checked locking here, we stored in
8963         param->pklass a partially initialized MonoClass and no membar was used.
8965 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8967         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8968         (3) functions are present in the C library use them to do the
8969         job. If they are absent, make sure that the sum of int_part and
8970         dec_part is rounded before returning. This is necessary due to the
8971         division of dec_part by the power of 10 before the final addition
8972         is performed - if the result is not rounded in some cases it will
8973         yield invalid results.
8975 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8977         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8978         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8979         instruction instead of a pointer constant.
8981 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8983         * loader.c (mono_method_get_header): Do most of the work outside the
8984         loader lock, to avoid assembly load hook deadlocks.
8986         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8987         (mono_metadata_parse_type_full): Ditto.
8989 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8991         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8992         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8993         funtions. Finally, use a lock to produce well ordered output.
8995         The lock looks silly, as all calls to the corlib mempool should be guarded
8996         with the loader lock, but for some reason this fact doesn't help. 
8998         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
9000 2008-12-02  Mark Probst  <mark.probst@gmail.com>
9002         * socket-io.c: 64 bit big-endian fixes.
9004 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
9006         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
9007         targets that require strict compatibility between the types.
9009         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9010         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9011         Kill the strict argument and create a new one valuetype_must_be_boxed.
9013         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9014         state that all valuetypes must be boxed.
9016         Fixes #448560.
9018 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
9020         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9021         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9023         Contributed under MIT/X11 license.
9025 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
9027         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9028         the inflate_generic_type machinery should handle it.
9030         This avoids a crash when the field's flags is zero and it's type is
9031         a primitive.
9032         What happens is that mono_metadata_parse_type_full will see that opt_attrs
9033         is zero and will return one of the cached built-in primitive types. Since
9034         those types live in read-only memory, the code that copies it crashes.  
9036 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9038         * object.c: Don't put function descriptors into generalized IMT
9039         thunks.
9041 2008-11-28  Mark Probst  <mark.probst@gmail.com>
9043         * class.c: Enable generic code sharing on PPC64.
9045 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9047         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9048         from mini/mini.c.
9050         * generic-sharing.c: Allocate the method template slists from the
9051         image mempool so it doesn't leak.
9053 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9055         * class.c (generic_array_methods): Release the linked list.
9057 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9059         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9060         invocation to g_utf16_to_utf8().
9062 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9064         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9065         arguments on big endian archs.
9067 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9069         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9070         the type name (test added in corlib).
9072 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9074         * pedump.c: initialize perf. counters. Fixes a segv.
9076 2008-11-25  Martin Baulig  <martin@ximian.com>
9078         * mono-debug-debugger.c
9079         (mono_debugger_runtime_invoke): Return the exception object if an
9080         exception was thrown.  Visual Studio displays the exception object
9081         in the locals window.
9083 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9085         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9086         ftnptr.
9088 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9090         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9091         MONO_TYPE_U are sizeof (gpointer), too.
9093 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9095         * marshal.c (mono_type_native_stack_size): Fixed size and
9096         alignment for reference types.
9098 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9100         * class.c (mono_class_generic_sharing_enabled): Disable generic
9101         code sharing for PPC64.
9103 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9105         * icall.c (mono_method_get_equivalent_method): Make sure
9106         method->klass->methods is inited before looping over it.
9108 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9110         * object.c: when calling ExecuteAssembly in a newly created domain,
9111         the configuration file and application base are already set up.
9112         Bug #446353 take 2 fixed.
9114 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9116         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9117         Fixes #444715. Fix a warning.
9119 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9121         * appdomain.c: write the full path of the assembly to the .ini file
9122         created when "shadow-copying"
9123         Bug #446353 fixed.
9125 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9127         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9128         if signature==FALSE.
9130 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9132         * marshal.h : Fix the cygwin build.
9133            marshal.c:12442: undefined reference to `_IID_IMarshal'
9134           
9135         Code is contributed under MIT/X11 license.
9137 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9139         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9140           free threaded marshaler when QueryInterface is called on a COM callable
9141           wrapper requesting the IMarshal interface.
9142           
9143         Code is contributed under MIT/X11 license.
9145 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9147         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9149         * reflection.c (mono_type_get_object): Special case the very common
9150         void type.
9152         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9153         hold typeof(void).
9155 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9157         * process.h : Adding method declaration for
9158           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9159           
9160         * process.c : Adding implementation for
9161           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9162           
9163         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9164           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9166         Code is contributed under MIT/X11 license.
9168 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9170         * appdomain.c (unload_thread_main): Clean up threadpool by
9171         calling mono_thread_pool_remove_domain_jobs.
9173         * domain-internals.h (struct _MonoDomain): Add new fields to
9174         help coordinate the cleanup of the threadpool.
9176         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9177         that cleans up the threadpool of all jobs associated with an appdomain.
9178         It does that by cleaning up the queues and making sure all active
9179         threads are accounted.
9181         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9182         unloaded or in the process of. Take this is such way that there is
9183         no race condition between another thread starting the unload and the
9184         current thread acknowledging it.
9186         * threadpool.c (async_invoke_thread): Same.
9188         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9189         firing the new thread.
9191         * threadpool.c (start_tpthread): Same.
9193         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9195         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9197 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9199         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9200         Add support for DuplicateHandle.
9201         
9202         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9203         Add support for DuplicateHandle.
9204         
9205         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9206         Add support for DuplicateHandle.
9208         Code is contributed under MIT/X11 license.
9210 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9212         * class-internals.h: Make min_align into a whole byte.
9214         * class.c: Set min_align for SIMD types to 16.
9216 2008-11-05  Geoff Norton  <gnorton@novell.com>
9218         * attach.c: Default the attacher to enabled for all cases including
9219         embedded.
9221 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9223         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9224         change r117650.
9226 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9228         * monitor.c, monitor.h: New function for querying offsets of
9229         members of MonoThreadsSync.
9231 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9233         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9234         to speed up this function and to avoid the boundless memory growth caused by
9235         the signature_dup () calls.
9237 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9239         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9240         wrapper.
9242         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9243         by 1 bit.
9245         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9247 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9249         * appdomain.c:
9250         * domain-internals.h: made mono_set_private_bin_path_from_config()
9251         "internal".
9252         * object.c: call the above function after setting the configuration
9253         file path for the root domain.
9254         Fixes bug #314478.
9256 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9258         * assembly.c: when the assembly is loaded from an absolute path, end
9259         basedir with a directory separator.
9260         Bug #440781 fixed.
9262 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9264         * monitor.c (mono_monitor_get_fast_enter_method): If
9265         CompareExchange is not available, don't create the fastpath
9266         instead of asserting.  (The method is missing in the 1.1 profile.)
9268 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9270         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9272         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9273         Monitor.Exit IL fastpaths.
9275 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9277         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9279 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9281         * class.c (mono_class_create_from_typedef): Added Vector2l.
9283 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9285         * class.c (mono_class_create_from_typedef): Added Vector2d.
9287 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9289         * appdomain.c: translate \ into / for cache_path.
9290         * domain-internals.h: new mono_is_shadow_copy_enabled().
9291         * icall.c: (fill_reflection_assembly_name) do the same path
9292         manipulations that get_code_base does.
9293         (get_code_base) use mono_is_shadow_copy_enabled.
9295 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9297         * appdomain.c: shadow-copied assemblies go to CachePath +
9298         ApplicationName when both are set. DynamicBase has nothing to do with
9299         shadow copies.
9300         Bug #406877 fixed.
9302 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9304         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9305         STANDALONESIG table.
9307         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9308         standalone signatures.
9310         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9311         comparison code: instead of comparing the signatures using a custom
9312         equals function, transform them to a common signature and compare that. This
9313         works better with AOT.
9315 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9317         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9319         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9320         call for generic instances.
9321         (mono_class_setup_properties): Call setup_properties () before accessing
9322         gklass->properties.
9324         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9325         over the virtual methods of a class using metadata if possible, avoiding the
9326         creation of MonoMethod's for non-virtual methods.
9327         
9328         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9329         get_virtual_methods () to iterate over the virtual methods of classes.
9331 2008-10-25  Martin Baulig  <martin@ximian.com>
9333         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9335 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9337         * class.c (mono_class_create_from_typedef): Added Vector4i.
9339 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9341         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9342         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9343         special-casing applies to eliminate the call completely.
9345 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9347         * class.c (mono_class_create_from_typedef): Added Vector8s.
9349 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9351         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9353 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9355         * icall.c: get rid of annoying warning.
9357 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9359         * threadpool.c: in 1.x, if you change the background status of the
9360         threadpool thread, it's not reset.
9361         Remove unnecessary calls to SetState.
9363 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9365         * threadpool.c: asynchronously create a set of idle threads upon first
9366         use of the threadpool. SetMinThreads will now start the appropriate
9367         number of idle threads if they are not already running. The default is
9368         1 threadpool thread per CPU. Increased the maximum number of threads
9369         per CPU to 10.
9371 2008-10-22  Martin Baulig  <martin@ximian.com>
9373         Revert r116521 from Zoltan, it breaks the debugger:
9375         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9376         over the virtual methods of a class using metadata if possible, avoiding the
9377         creation of MonoMethod's for non-virtual methods.
9378         
9379         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9380         get_virtual_methods () to iterate over the virtual methods of classes.
9382 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9384         * threads.c: when creating a threadpool thread, set its state to
9385         'background'.
9386         * threadpool.c: reset the background state of a threadpool thread
9387         after finishing each work item
9388         Bug #437888 fixed.
9390 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9392         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9393         
9394         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9395         generic instances which works by inflating the methods in the container
9396         class's vtable.
9398         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9399         variant which doesn't make a copy if no inflation was done.
9400         (mono_class_setup_fields): Use it.
9402         * metadata.c (mono_metadata_get_shared_type): New helper function to
9403         return a shared instance of a given MonoType.
9405         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9406         a copy of most non-generic types.
9408 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9410         * threadpool.c: remove one more GetSystemInfo () call.
9412 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9414         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9415         use the code in mono-proclib.h to get processor information.
9417 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9419         * appdomain.c: fixed the logic that determines whether assemblies in a
9420         directory are "shadow-copied" or not. Bug #433483 fixed.
9422 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9424         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9425         warning.
9427 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9429         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9430         returning a vtype.
9432         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9433         reflection.c: Use mono_field_get_name () for accessing a field's name.
9435         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9436         class.c
9438         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9439         field.
9441         * loader.c (find_method_in_class): Reenable the metadata optimization by
9442         not using it for generic instances.
9444         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9445         data/def_type fields from MonoClassField into a separate structure.
9446         (struct MonoClassField): Remove data/def_type fields.
9447         (struct _MonoClass): Add a 'field_def_values' array to store the default
9448         values/RVA for fields.
9450         * class.c reflection.c: Update after the changes.
9451         
9452         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9453         for accessing field->data.
9455         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9457         * loader.c (find_method_in_class): Revert the last change for now as
9458         it breaks Mono.C5 unit tests.
9460         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9461         'field_generic_types' and 'field_objects' which contain the information
9462         previously stored in MonoInflatedField.
9463         (MonoInflatedField): Delete.
9464         (struct _MonoClassField): Delete 'generic_info' field.
9466         * reflection.c: Store the information which was previously in 
9467         field->generic_info in MonoDynamicGenericClass instead.
9469         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9470         MonoClassField changes.
9472 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9474         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9475         store the value inside the data array of the MonoMethodWrapper.
9476         This saves memory, is faster and fixes the lifetime issues (methods
9477         were never removed from the hash previously). May also fix bug#436996.
9479 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9481         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9482         generic instances, compute the type from the generic definition instead of
9483         looking in field->generic_info.
9485         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9486         for inflated fields, the only user was get_fieldref_token () which no
9487         longer needs it.
9489         * class.c (mono_class_init): Revert the last change as it seems to cause
9490         crashes.
9492         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9493         bytes on 64 bit platforms.
9495         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9496         
9497         * object.c (mono_class_create_runtime_vtable): Don't initalize
9498         field->data/field->def_type here, it is done lazily by 
9499         mono_class_get_field_default_value ().
9501         * icall.c (ves_icall_get_enum_info): Call 
9502         mono_class_get_field_default_value () instead of directly accessing
9503         field->data and field->def_type.
9505         * object.c (get_default_field_value): Ditto.
9507         * class.c (mono_field_get_data): Ditto.
9508         
9509         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9510         call for generic instances.
9512         * loader.c (find_method_in_class): If klass != from_class, then inflate
9513         the method with the context of from_class, since the caller assumes this.
9515 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9517         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9518         for accessing method->slot.
9520 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9522         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9524 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9526         * class.c (mono_method_get_vtable_index): Use
9527         mono_method_get_vtable_slot () for accessing method->slot.
9529         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9530         accessing klass->methods.
9532         * class.c (mono_method_get_vtable_slot): New helper function.
9533         (mono_class_get_vtable_entry): Ditto.
9534         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9535         accessing method->slot.
9537         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9538         method to get_inflated_method ().
9540         * class.c (mono_class_get_inflated_method): New helper method to obtain
9541         a method of an inflated class without calling setup_methods ().
9542         (mono_class_get_cctor): Use get_inflated_method.
9544         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9545         
9546         * marshal.c image.c: Lazily create all the marshal caches.
9548         * image.c (mono_image_init): Move initialization of runtime_invoke
9549         caches to marshal.c.
9551         * marshal.c (get_cache): New helper function to lazily initialize a 
9552         wrapper cache.
9553         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9555         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9557 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9559         * loader.c: fixed check for interface type.
9561 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9563         * appdomain.c: check for NULL setup before it's referenced.
9566 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9568         * class.c: remove the unused old vtable setup code.
9570 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9572         * class.c: don't depend on interface order in
9573         setup_interface_offsets (bug #435777).
9574         * reflection.c: sort the InterfaceImpl table (patch from
9575         Jb Evain  <jbevain@novell.com>).
9577 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9579         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9580         the low level assemblies lock.
9582 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9584         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9585         object.c, reflection.c, socket-io.c, threads.c: introduced
9586         mono_framework_version () to return the major framewrok version,
9587         changed the code that was using more complex patterns to use it.
9588         Return the correct value for PlatformID for OSX.
9590 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9592         * icall-def.h, process.h, process.c: added an icall to get info about
9593         processes using mono-proclib.
9595 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9597         * mono-perfcounters.c: use the mono-proclib functions to
9598         access process information.
9600 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9602         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9603         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9604         reflection.c: remove rawbuffer usage: mmap support is more sanely
9605         provided by utils/mono-mmap.
9607 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9609         * gc.c: use posix semaphores when possible so that
9610         mono_gc_finalize_notify() is signal safe.
9612 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9614         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9615         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9616         be #ifdef-ed out, the linker will remove the rest.
9618         * marshal.c: Implement DISABLE_COM.
9620         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9622 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9624         * locales.c (string_invariant_compare_char): Optimization: do not
9625         call g_unichar_type unless we actually need the information.
9627 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9629         * object.c, class-internals.h: Also create remoting trampolines
9630         for generic methods.  Pass the domain to the remoting trampoline
9631         creation function, too.
9633 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9635         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9637 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9639         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9640         Vector4ui.
9642 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9644         * assembly.c:
9645         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9647 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9649         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9650         for the least possible amount of time (extending the fix in r113458).
9652 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9654         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9656 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9658         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9659         as possible simd intrinsic types.
9660         Optimized the test to check for the common prefix first.
9662 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9664         * class.c: back out part of a broken optimization committed on
9665         May 23th (bug #433908).
9667 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9669         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9670         Win32.  Should fix #432388 for most cases until we have the new
9671         profiler on Win32.
9673 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9675         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9676         instead of using inst->id so the hash is stable for AOT.
9678 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9680         * appdomain.c:
9681         * icall.c: create a .ini file for shadow-copied assemblies that
9682         contains the location of the original assembly. Use this to return the
9683         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9684         Also fix the number of '/' for windows when returning the CodeBase.
9685         Fixes bug #430920.
9687 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9689         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9691         Code is contributed under MIT/X11 license.
9693 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9695         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9696           if if the class vtable needs initialized.
9698         Code is contributed under MIT/X11 license.
9700 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9702         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9703           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9704           STRING->BSTR, and CLASS->INTERFACE.
9706         Code is contributed under MIT/X11 license.
9708 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9710         * sysmath.h: changed the declaration of the
9711         ves_icall_System_Math_Round2 icall by adding an extra
9712         away_from_zero parameter.
9714         * sysmath.c (ves_icall_System_Math_Round2): added support for
9715         away from zero rounding. The icall now takes an extra boolean
9716         parameter to signal that away from zero operation is requested.
9718 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9720         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9721         the delegate klass so it can work with full-aot.
9722         (mono_marshal_get_delegate_end_invoke): Ditto.
9723         (mono_marshal_get_delegate_invoke): Ditto.
9725 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9727         * gc.c, attach.h, attach.c: remove a bad pattern:
9728         add_finalizer_callback () is not implemented correctly, it can't
9729         without adding more overhead to the finalizer loop and it's not
9730         even needed, since we know exactly what we need to call, so there is
9731         no need to do so through an expensive function pointer.
9733 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9735         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9736         for the no-gc case.
9737         * attach.c (mono_attach_init): Remove the #ifdef.
9739 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9741         * attach.c (mono_attach_init): Don't use
9742         mono_gc_add_finalizer_thread_callback when compiling without GC.
9743         Fixes #432306.
9744         
9745         Code is contributed under MIT/X11 license.
9747 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9749         * class.c (mono_class_create_from_typedef): Remove the 
9750         #ifndef DISABLE_SIMD stuff.
9752 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9754         * class-internals.h (MonoClass): Added simd_type bit field.
9756         * class.c (mono_class_create_from_typedef): Check if type is a simd
9757         intrinsic.
9759 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9761         * object.c (mono_method_add_generic_virtual_invocation): Only add
9762         instantiations to the thunk whose count is at least as large as
9763         the threshold.
9765 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9767         * icall.c: changed the Type of the exception thrown when trying to
9768         invoke a constructor on an abstract class. Part of the fix for bug
9769         #324185.
9771 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9773         * class.c, class-internals.h (mono_method_get_vtable_index): New
9774         function which returns the index into the vtable and properly
9775         handles inflated virtual generic methods.
9777 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9779         * object.c, domain.c, object-internals.h, domain-internals.h:
9780         Generalize IMT thunk machinery to also handle thunks for virtual
9781         generic method invokes.  When a virtual generic method is invoked
9782         more than a number of times we insert it into the thunk so that it
9783         can be called without lookup in unmanaged code.
9785         * generic-sharing.c, class-internals.h: Fetching a
9786         MonoGenericInst* for a method from an (M)RGCTX.
9788 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9790         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9791         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9792         marshalling. Fixes #431304.
9794 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9796         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9797           handle when ref is specified without In or Out.
9799         Code is contributed under MIT/X11 license.
9801 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9803         * loader.c (mono_get_method_constrained): Don't expand method with
9804         the class's context, because it's already a method of that class.
9806 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9808         * attach.c : should be correct build fix.
9810 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9812         * attach.c: Fix the previous change.
9814 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9816         * attach.c : quick w32 build fix.
9818 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9820         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9821         crashes MonoDevelop: #430455.
9823 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9825         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9826         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9828         * domain.c: Remove initialization/cleanup of the removed fields.
9830 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9832         * class.c (mono_class_generic_sharing_enabled): Enable generic
9833         code sharing for PPC.
9835 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9837         * attach.c : Fixing the Windows builds.
9839         Code is contributed under MIT/X11 license.
9841 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9843         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9844         the default generic sharing mode to 'all'.
9846 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9848         * generic-sharing.c, class-internals.h: New function for checking
9849         whether a method needs a static RGCTX invoke wrapper.  A few
9850         funtions moved from mini/generic-sharing.c.
9852         * icall.c: New function used.
9854 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9856         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9857         Static RGCTX invoke wrapping applies to value type methods, too.
9859         * class.c (mono_class_setup_vtable_general): In generic-shared
9860         value types, wrap methods with a static RGCTX invoke wrapper.
9862 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9864         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9865         osx build.
9867 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9869         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9870         register a callback which is called when the finalizer thread is woken
9871         up.
9872         (finalizer_thread): Call the callback if it exists.
9874         * attach.h attach.c: New files, implementing the attach mechanism.
9876         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9877         
9878         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9879         by the previous change.
9881 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9883         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9884         loader.c, marshal.c, metadata-internals.h, metadata.c,
9885         method-builder.c, object.c, reflection.c: introduced specific functions
9886         to allocate from the domain and image mempools and cleaned up most of
9887         the code to use them (still missing a few in reflection.c).
9888         Keep the loader bytes counter updated.
9890 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9892         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9893         loader-related counters.
9895 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9897         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9898         added more MS-compatible counters.
9900 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9902         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9903         class->blittable. Fixes #428217.
9905 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9907         * reflection.c (mono_image_get_field_on_inst_token): Call 
9908         field_encode_signature () since that handles custom modifiers too.
9909         Fixes #424663.
9911 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9913         * reflection.c (add_custom_modifiers): New helper function to merge custom
9914         modifiers stored in objects to a MonoType.
9915         (fieldref_encode_signature): Encode custom modifiers.
9916         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9917         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9919 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9921         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9922         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9923         64-bit IL only images because imports are not resolved for IL only images.
9924         Special thanks to Bill Holmes for finding this bug and testing the patch.
9925         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9927         Contributed under MIT/X11 license.
9929 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9931         * mono-config.c (dllmap_start): Add support for the bits keyword
9932         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9934 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9936         * reflection.c (inflate_mono_method): When the class the method is
9937         to be inflated for is itself not inflated, just return the method.
9939 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9941         * mono-perfcounters.c: use more user friendly process instance names.
9943 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9945         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9946           handle "[in] ref" and "[in][out] ref" cases.
9948         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9949           to mono_mb_create_method.  This was causing problems calling native to
9950           managed passing Variants by value.
9952         Code is contributed under MIT/X11 license.
9954 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9956         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9957         before accessing the friend_assembly_names field.
9959         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9960         times.
9961         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9962         called lazily when it is needed.
9964         * metadata-internals.h (struct _MonoAssembly): Add 
9965         'friend_assembly_names_inited' flag.
9967 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9969         * mono-perfcounters-def.h: fix the types of a few counters.
9970         * mono-perfcounters.c: implemented the instance names getter
9971         and a few bugfixes.
9973 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9975         * culture-info-table.h : regenerated.
9977 2008-09-17  Robert Jordan  <robertj@gmx.net>
9979         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9980         context bound objects. Fixes #415577.
9982         Code is contributed under MIT/X11 license.
9984 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9986         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9987         implementation (bug #423582).
9989 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9991         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9992         is not set. Fixes #426309.
9994 2008-09-16  Jb Evain  <jbevain@novell.com>
9996         * class.c (mono_class_from_name): fix the exported type look up
9997         when the type is defined in a referenced assembly.
9999 2008-09-16  Jb Evain  <jbevain@novell.com>
10001         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
10002         increment the next index counter on each iteration to make that work
10003         for more than one type forwarder. Unmanaged part to fix #422929.
10005 2008-09-15  Mark Probst  <mark.probst@gmail.com>
10007         * object-internals.h: enum ComInterfaceType in
10008         MonoInterfaceTypeAttribute is guint32, not guint16.
10010 2008-09-12  Mark Probst  <mark.probst@gmail.com>
10012         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10013         writing code.
10015 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10017         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10018         not gboolean.
10020 2008-09-11  Mark Probst  <mark.probst@gmail.com>
10022         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10023         Endianness fixes for MonoSymbolFileOffsetTable.
10025 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10027         * process.c (complete_path) : Removing quotes from the 
10028           input path.  The glib file routines do not handle file paths
10029           that have quotes around them.
10031         Code is contributed under MIT/X11 license.
10033 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
10035         * socket-io.h : Adding a comment to provide locations where 
10036           changes to MonoSocketAsyncResult need to be synced.
10038         Code is contributed under MIT/X11 license.
10040 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
10042         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10043         parameters as well. Fixes #425001.
10045 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10047         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10048         windows build.
10050 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10052         * console-io.c: Add support for tracking the window size if it
10053         changes.
10055         The setup is very simple: the TtySetup function will now return a
10056         pointer to a location in memory that tracks the current console
10057         size.  The managed code checks its current value every time its
10058         queried against the last value set, and updates accordingly.
10060         With this setup we can work with multiple consoles, and we do not
10061         require to poke into managed code from a signal handler.
10063         Additionally, the environment for COLUMNS and LINES is now handled
10064         in unmanaged code.
10066         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10068 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10070         * marshal.c (mono_type_native_stack_size): Treat
10071         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10073 2008-09-04  Jb Evain  <jbevain@novell.com>
10075         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10076         to nullables.
10078 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10080         * verify.c (verify_type_compatibility_full): Revert change
10081         to allow converting a native int to unmanaged pointer be verifiable
10082         under non-strict mode.
10083         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10085         * verify.c: Added some TODOs.
10087 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10089         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10090           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10091           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10093         Code is contributed under MIT/X11 license.
10095 2008-09-02  Jb Evain  <jbevain@novell.com>
10097         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10099 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10101         reflection.c (typebuilder_setup_fields): Handle classes with
10102         explicit size.
10104 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10106         class.c (mono_class_setup_events): Add memory barrier due to
10107         double checked locking.
10108         
10109         class.c (mono_class_setup_properties): Same.
10111 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10113         * class.c (mono_class_is_assignable_from): Fix the build.
10114         
10115         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10116         before accessing klass->interface_bitmap. Fixes #421744.
10118 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10120         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10121         the runtime into no-exec mode, useful when running the AOT compiler.
10123         * appdomain.c gc.c object.c: Avoid executing managed code when running
10124         in no-exec mode.
10125         
10126         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10128         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10129         special case when the mono_assembly_loaded () returns NULL because the 
10130         search hook is not installed.
10132 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10134         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10135         crashes in bstr marshalling on linux.
10137 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10139         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10140         with more than one parameter.
10142 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10144         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10145         start/stop flow control as well when turning off ICANON (allows
10146         C-s and C-q to be read by Console.ReadKey).
10148 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10150         * class.c (mono_class_init): Move the initialization of nested classes
10151         into mono_class_get_nested_types (). Fixes #418433.
10153         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10154         flag.
10156         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10157         iterating tough the nested classes of a class.
10159 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10161         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10162         on arm.
10164 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10166         * console-io.c (sigcont_handler): Support signal chaining for
10167         SIGCONT.
10169         (console_set_signal_handlers): Use best practices with sigaction,
10170         clear the structure before using it. 
10172 2008-08-22  Robert Jordan  <robertj@gmx.net>
10174         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10175         Fix the Windows build.
10177 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10179         * class.c (mono_class_generic_sharing_enabled): Make the default
10180         sharing mode 'corlib'.
10182 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10184         * console-io.c (console_set_signal_handlers): Fix a warning.
10186         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10187         method normally, the JIT will take care of avoiding recursion.
10189 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10191         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10193         Code is contributed under MIT/X11 license.
10195 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10197         * console-io.c (sigcont_handler): We need to restore the entire
10198         termios state, not only the original settings, as things like echo
10199         can be controlled after this (Booish exposes this issue with its
10200         own ReadLine implementation).
10202         Additionally, we need to set the terminal back into keypad_xmit
10203         mode.
10204         
10205         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10206         string as a paramter as well.   Otherwise we get different
10207         keyboard sequences.
10209 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10211         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10212         delegates with byref out parameter passing. Fixes #351520.
10214         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10215         a generic context.
10216         (mono_type_get_desc): Add the type arguments for GENERICINST.
10217         (mono_method_full_name): Stringify the class name using mono_type_full_name
10218         so it picks up generic arguments.
10220 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10222         * console-io.c: Removed debug output.
10224 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10226         reflection.c (mono_reflection_create_runtime_class): Alloc
10227         the nested classes linked list using the dynamic image mempool.
10228         Fixes leak in corlib compilation.
10230 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10232         * console-io.c: Fix incredibly annoying behavior on the console
10233         after resuming execution after control-z.   This affected every
10234         console application.
10236 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10238         * mempool-internals.h: Header for mono private mempool functions. The first
10239         two function are for allocating glib linked lists using pools.
10241         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10243         * Makefile.am: Added mempool-internals.h.
10245 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10247         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10248         (mono_domain_free): Ditto.
10250         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10251         be used by the JIT to store its domain-specific information, instead of putting
10252         it directly into MonoDomain.
10254         * domain.c (mono_install_create_domain_hook): New helper function to install
10255         a hook which initializes domain->runtime_info.
10257         * domain.c (mono_install_free_domain_hook): Ditto.
10258         
10259 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10261         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10262         asserting if the ares parameter is null.
10264         * mono-perfcounters.c: Fix warnings.
10266         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10267         is not needed, don't check for interruptions either.
10268         (mono_marshal_get_delegate_end_invoke): Ditto.
10270 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10272         * mono-perfcounters.c (predef_readonly_counter): added support for
10273         reading the ASP.NET Requests Queued counter from another process.
10275 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10277         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10278         MonoImage to simplify the AOT code.
10280 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10282         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10283         marshalling. Fixes #416078.
10285 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10286         
10287         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10288         it is set, looking up the icall address is deferred to the JIT, since 
10289         in embedded scenarios, the icall might not be registered in the runtime
10290         doing the AOT compilation. Backported from the 2.0 branch.
10292 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10294         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10295         Fixes #415621.
10297 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10299         * Makefile.am: added support for cross-compilation.
10301 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10303         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10305 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10307         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10309 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10311         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10312         mono-perfcounters.c: performance counters implementation.
10314 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10316         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10317         to gpointer, letting the AOT code decide what to store in it.
10319 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10321         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10322           mono_class_setup_methods if the methods are not initialized.
10324         Code is contributed under MIT/X11 license.
10326 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10328         * verify.c: Remove some debug code I commited by accident.
10330         * verify.c (mono_method_is_valid_in_context): Change the return value
10331         to make possible to distinguish between invalid and unverifiable.
10333         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10334         methods.
10336 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10338         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10339         constraints. Fixes regression in gtest-253.
10341 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10343         * verify.c (mono_verifier_verify_class): Don't allow generic types
10344         with explicit layout.
10346         * verify.c (mono_method_verify): Check locals and argument types.
10348 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10350         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10351         wait if the thread is in StopRequested state.
10353         * class.c (mono_class_from_name): Refactor the module searching code into
10354         a separate function so it can be reused in the AOT case too.
10356 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10358         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10359         Check both the type and it's generic type definition for loader errors.
10360         
10361         * verify.c (mono_method_is_valid_in_context): Don't generate another
10362         error when a type errors occur, this leads to the wrong exception been
10363         thrown.
10365 2008-07-28  Dick Porter  <dick@ximian.com>
10367         * icall-def.h
10368         * process.c
10369         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10370         New internal calls to duplicate and close a process handle.
10372 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10374         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10376 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10378         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10380 2008-07-27  Robert Jordan  <robertj@gmx.net>
10382         * class.c (mono_class_init): Don't compute class.has_finalize for
10383         valuetypes. Fixes #412477.
10385 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10387         * verify.c: Implement constraint equivalence checking.
10388         This is required when a generic parameter is used as
10389         argument to a constrained one.
10391         Fixes #410637.
10393 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10395         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10397         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10399         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10400         synch with managed object layout.
10402 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10404         * verify.c (do_branch_op): Handle valuetypes and generic
10405         arguments properly.
10407         * verify.c (do_cmp_op): Same.
10409         Fixes #410383.
10411 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10413         * generic-sharing.c: Fix memory leaks.
10415         * class.c, class-internals.h: Make
10416         mono_class_inflate_generic_type_with_mempool() non-static.
10418 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10420         * pedump.c (dump_verify_info): Dump full class name.
10422 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10424         * generic-sharing.c: Removed some old code that didn't do anything.
10426 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10427         * profiler.c: Added runtime_initialized_event,
10428         mono_profiler_install_runtime_initialized and
10429         mono_profiler_runtime_initialized. This new hook tells the profiler
10430         when the runtime is sufficiently initialized to be able to call
10431         mono_thread_attach on the root appdomain.
10432         * profiler.h, profiler-private.h: Likewise.
10434 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10436         * verify.c (do_cast): Do boxing for generic arguments as well.
10438         * class.c (is_nesting_type): Drop generic instantiations before
10439         checking for nesting.
10441         * class.c (can_access_instantiation): Allow access to generic
10442         arguments.
10444 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10446         * verify.c (verify_class_for_overlapping_reference_fields):
10447         On some cases, the field size might be zero, guard against that.
10448         Fix the explicit layout check to work as expected.
10450 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10452         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10453         mono_thread_resume () during shutdown, since the thread we want to abort
10454         might be suspended.
10456 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10458         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10459         warning.
10461         * debug-mono-symfile.c: Fix a warning.
10463         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10465         * object.c (mono_class_vtable): Check if exception_type is set, and return
10466         NULL as defined by the function comments.
10468 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10470         * mempool.c: Use malloc for every single mempool allocation if the
10471         configure option is set.  This makes it easier to track mempool
10472         allocations with tools like Valgrind.
10474 2008-07-22  Jb Evain  <jbevain@novell.com>
10476         * reflection.c (create_dynamic_mono_image): emit the same
10477         metadata version that SL2 does when creating a SL2 image.
10479 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10481         * icall-def.h:
10482         * icall.c: New icall System.Enum:get_hashcode. This function
10483         avoids the overhead of boxing the enum to the underlying type.
10485 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10487         * reflection.c (mono_method_get_object): Don't let static RGCTX
10488         invoke wrappers get into MonoReflectionMethods.
10490 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10492         * object-internals.h:
10493         * object.c: New mono_runtime_class_init_full function
10494         that makes throwing the exception optinal.
10496         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10497         for the case where the exception object is supplied.
10499 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10501         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10502         old ld versions.
10504         Contributed under MIT/X11 license.
10506 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10508         * string-icalls.c (ves_icall_System_String_InternalSplit):
10509         Optimize array allocation by caching the MonoClass of the
10510         array type.
10512         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10514         * reflection.c (mono_param_get_objects): Same.
10516 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10518         * icall-def.h:
10519         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10520         It inflates the given type using the class context.
10522 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10524         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10525         the vtable if it already exists.
10527         * object-internals.h: Add mono_class_try_get_vtable as part of the
10528         internal API.
10530         * reflection.c (mono_type_get_object): Use the MonoObject from the
10531         vtable when possible. Reduces locking contention on reflection heavy
10532         code.
10534 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10536         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10537         g_bit_nth_msf () since that macro is not implemented in eglib.
10539 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10541         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10542         on platforms which do not support it.
10544 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10546         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10548 2008-07-11  Martin Baulig  <martin@ximian.com>
10550         * mono-debug-debugger.h
10551         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10553         * mono-debug-debugger.c
10554         (_mono_debugger_interruption_request): New global volatile variable.
10555         (mono_debugger_check_interruption): New public function.
10557         * threads.c
10558         (mono_thread_current_check_pending_interrupt): Call
10559         mono_debugger_check_interruption().
10560         (mono_thread_interruption_checkpoint_request): Likewise.
10562 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10564         * verify.c: Add more type checks for loaded types. Verify the result
10565         handle from ldtoken.
10567 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10569         * loader.c (field_from_memberref): Don't crash if the field
10570         wasn't found.
10572 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10574         * verify.c: Verify if type and method instantiations
10575         don't have invalid VAR or MVAR arguments.
10577 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10579         * verify.c: Fix double free of function pointer list.
10581 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10583         * object.c (mono_string_to_utf8): Comment the new code as it
10584         breaks under eglib.
10586 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10588         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10590 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10592         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10593           is not throw too many times.
10595         Code is contributed under MIT/X11 license.
10597 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10599         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10600         debugging is turned off.
10602 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10604         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10606 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10608         * class-internals.h, class.c: Added new generic sharing option:
10609         Share only stuff in System.Collections.Generic, which is now the
10610         default.
10612 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10614         * generic-sharing.c, class-internals.h: New function for getting a
10615         generic method in a generic class given the corresponding method
10616         for a different instantiation of the class.  Partly refactored
10617         from mini-trampolines.c.
10619         * class.c: Make sure generic methods have a class_inst if they are
10620         part of a generic class.
10622         * metadata.c (mono_type_stack_size_internal): Handle type
10623         variables.
10625 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10627         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10628         Signifies whether information on the this/vtable/mrgctx variable
10629         is available.
10631 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10633         * object.c, object-internals.h, icall.c: New function
10634         mono_delegate_ctor_with_method(), which does the same as
10635         mono_delegate_ctor(), but takes an explicit method argument
10636         instead of taking the method from the jit info.
10638         * marshal.c: When creating a delegate with an inflated method take
10639         the "this" argument as the target class for the castclass.
10641 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10643         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10644         mono_jit_info_table_find() to perform very badly in some cases.
10646 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10648         * icall.c (type_from_typename): Handle 'string'.
10650         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10651         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10653 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10655         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10657         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10658         number of available managed allocator types.
10660         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10661         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10663 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10665         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10666         which is a low level lock protecting just the 'jit_code_hash' hash table.
10668         * domain.c: Initialize+cleanup jit_code_hash_lock.
10669         
10670 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10672         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10673         after initialization.
10675         * coree.h: Make MonoFixupExe internal.
10677         Contributed under MIT/X11 license.
10679 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10681         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10682         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10683         as well.
10684         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10685         image being loaded is a CLI image and _CorValidateImage gets called.
10687         * coree.h: Add MonoLoadImage.
10689         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10690         instead of LoadLibrary.
10692         Contributed under MIT/X11 license.
10694 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10696         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10697         for any primitive type.
10699 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10701         * object.c (mono_array_new_specific): Optimize this and the other allocation
10702         functions a bit.
10703         
10704         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10705         domains too if mono_dont_free_domains is set.
10707         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10708         whenever to free appdomain data after it has been unloaded.
10710         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10711         
10712 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10714         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10715         (mono_method_get_equivalent_method): Fix a warning.
10717         * object.c (mono_message_init): Avoid looking up array types for each call.
10719 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10721         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10722         call.
10724         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10725         even more.
10727         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10728         each iteration.
10730         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10731         fields of an enum.
10733 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10735         * object.c (mono_value_box): Fix boxing of nullables.
10737 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10739         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10740         mono_module_handle that is defined by the linker; no initialization required.
10741         * coree.h: Remove mono_module_handle, add __ImageBase, update
10742         mono_image_open_from_module_handle.
10743         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10744         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10745         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10746         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10747         to 4 GB away from image base address. IA64 version is not tested but was very
10748         easy to implement and should work if we ever need it.
10749         * domain.c (mono_init_internal): Avoid system error message boxes.
10750         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10751         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10752         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10753         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10754         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10756         Contributed under MIT/X11 license.
10758 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10760         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10761         as part of the private mono API.
10762         
10763         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10764         Do proper argument checking for methods that belong to generic classes.
10765         Do proper type resolution for GMFH/2.
10766         Fixes #377324.
10767         
10768 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10770         * verify.c (do_switch): Fix a memory corruption bug with
10771         the jump index is out of bound.
10773 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10775         * verify.c: Disable debug code.
10777 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10779         * reflection.c (mono_image_get_methodbuilder_token): Use
10780         mono_image_get_methodspec_token_for_generic_method_definition
10781         instead of mono_image_get_memberref_token. We cache more memberef
10782         entries now.
10784 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10786         * verify.c: Inflate exception clause types.
10787         Fixes #402606.
10788         
10789 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10791         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10792         name.
10794         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10796         * reflection.c (mono_image_create_method_token): Same.
10798 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10800         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10801         It does the same as mono_image_get_methodref_token but works on
10802         MethodBuilder.
10804         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10805         and always generate a methodspec. This follows the old behavior and fixes
10806         the regressions in System.Core. 
10808 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10810         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10811         don't event mono_class_get () succeeds. Fixes #402182.
10813 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10815         * metadata-internals.h: Added MonoDynamicImage::methodspec
10816         hashtable to store methodspec tokens created for MethodBuilders.
10818         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10819         MethodBuilders as open instantiations if a methodspec was requested.
10821         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10823         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10825         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10827         Fixes bug #349190.
10829 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10831         * loader.c (method_from_methodspec): Avoid crashing if the
10832         method lookup fails.
10834 2008-06-20  Dick Porter  <dick@ximian.com>
10836         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10837         classes being in a different assembly.  Fixes bug 399184.
10839 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10841         * loader.c (mono_loader_init): Make this callable multiple times.
10842         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10843         the runtime is initialized. Fixes #401755.
10845 2008-06-19  Dick Porter  <dick@ximian.com>
10847         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10848         Fixes bug 349688.
10850 2008-06-19  Dick Porter  <dick@ximian.com>
10852         * socket-io.c:
10853         * icall-def.h: Implement Socket generic Send() and Receive()
10854         methods.  Fixes bug 395168.
10856 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10858         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10860         Contributed under MIT/X11 license.
10862 2008-06-18  Martin Baulig  <martin@ximian.com>
10864         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10865         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10866         set to 80.0.  The debugger <-> runtime interface is now frozen as
10867         well.   
10869         * mono-debug.c
10870         (mono_debug_debugger_version): Bump to 4.
10872 2008-06-18  Martin Baulig  <martin@ximian.com>
10874         * debug-mono-symfile.c
10875         (load_symfile): Don't check the minor version.
10877         * debug-mono-symfile.h: Bump the version number to 50.0.
10879 2008-06-18  Martin Baulig  <martin@ximian.com>
10881         * debug-mono-symfile.c
10882         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10883         minimum required version.
10885 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10887         * reflection.c (mono_custom_attrs_from_property): Fix support for
10888         retriveving cattrs of dynamic inflated generic types.
10890         * reflection.c (mono_custom_attrs_from_event): Same.
10892         * reflection.c (mono_custom_attrs_from_field): Same;
10894         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10896         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10897         Moved to metadata.c.
10899         * metadata.c: New functions to retrive the equivalent field, event
10900         of property from the generic type definition.
10902         * metadata-internals.h: Added new functions from metadata.c.
10904 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10906         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10907         to cached in a mempool is used.
10909         * metadata.c (free_generic_class): In some situations field generic_info type
10910         is not properly dup'ed and leads to double free'ing.
10912         Fixes #400643.
10914 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10916         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10917         this arguments (will be needed later for generic methods).
10918         Collect stats.
10920 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10922         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10923         Create a static RGCTX invoke wrapper for methods which require it.
10925 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10927         * object.c, class-internals.h: New function for checking whether
10928         an individual field is special static.
10930 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10932         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10933         linear search since the table is sorted.
10935         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10936         Fixes #324180.
10938 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10940         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10941         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10943         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10945         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10946         
10947         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10948         InterlockedCompareExchange to query and modify 
10949         thread->interruption_requested.
10951         * object-internals.h (struct _MonoThread): Change interruption_requested
10952         to a gint32 so it can be modified by atomic operations. Add 
10953         'critical_region_level' from the managed side, change small_id to a guint32,
10954         add new set of 'unused' fields.
10956         * appdomain.c: Bump corlib version.
10958 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10960         * class.c (mono_class_from_name): Search modules as well. Fixes
10961         #322332.
10963 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10965         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10966         templates.  Templates are generalized with an additional type_argc
10967         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10968         have type_argc>0.
10970         * domain-internals.h, domain.c: New hash table for looking up
10971         MRGCTXs.
10973         * metadata.c, metadata-internals.h: Rename hash and equal
10974         functions for MonoGenericInst's and make them public.
10976         * class-internals.h: New data structures for the MRGCTX.  Macros
10977         for distinguishing slots in the RGCTX and the MRGCTX.
10979 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10981         * object.c (mono_method_get_imt_slot): Put the same methods of
10982         different instantiations of the same generic interface in the same
10983         IMT slots, to make generic sharing simpler.
10985 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10987         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10989         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10990         This function works just like mono_metadata_field_info, but
10991         accept a mempool as argument to be used allocating memory.
10993         * marshal.c (mono_marshal_load_type_info): Use new function
10994         to load marshal data into image mempool.
10996 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10998         * class.c (mono_class_inflate_generic_type_with_mempool):
10999         This function allows to inflate a generic type using
11000         a mempool.
11002         * class.c (inflate_generic_type): Take a mempool as argument
11003         and use it to do type dup'ing.
11005         * class.c (mono_class_setup_fields): Field type for generic
11006         generic classes are allocated from the image mempool.
11008         * metadata.c (free_generic_class): Inflated field type is
11009         now allocated in the image mempool.
11011 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
11013         * threads.c (thread_cleanup): Free MonoThread::name.
11015 2008-06-12  Marek Habersack  <mhabersack@novell.com>
11017         * appdomain.c (ensure_directory_exists): avoid unnecessary
11018         mkdir(2) calls when the shadow directory already exists.
11019         (mono_make_shadow_copy): copy also satellite assemblies from the
11020         private bin directories.
11022 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11024         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11025         
11026         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11027         a page boundary. Fixes #396219.
11029 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11031         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11032         due to double-checked locking.
11034 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11036         * assembly.c (build_assembly_name): Release memory on failure.
11038         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11040 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11042         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11043         memory on failure.
11045 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11047         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11048         memory on failure.
11050 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11052         * loader.c (field_from_memberref): Check if field signature type is equal
11053         to the non-inflated type of the field. Fixes #398980.
11055 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11057         * assembly.c (mono_assembly_load_from_full): Call 
11058         mono_assembly_load_friends () outside the assemblies lock, since it can
11059         acquire the loader lock. Fixes #323696.
11061         * reflection.c (resolve_object): Inflate the inst with the context for
11062         FieldOnTypeBuilderInst. Fixes #399010.
11064 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11066         * reflection.c (mono_image_get_field_on_inst_token): Don't
11067         inflate the field to encode it's signature. If it's a
11068         VAR or MVAR it should stay that way in the signature.
11069         Fixes #399047.
11071 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11073         * reflection.c (resolve_object): Release memory of inflated types.
11075 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11077         * loader.c (mono_method_get_signature_full): Remove assert about
11078         loading a methodspec to a generic method. We have such methods, such as
11079         System.Threading.Interlocked::CompareExchange<T>.
11080         This assert was removed since it crashes the verifier when it checks
11081         methods calling CompareExchange<T>.
11083 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11085         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11086         of Type array and not MonoType.
11088 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11090         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11091         <lupus@ximian.com>
11093 2008-06-10  Martin Baulig  <martin@ximian.com>
11095         * debug-mono-symfile.h
11096         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11097         changes to the file format, but we were generating incorrect
11098         source file indices in the line number table due to a bug, which
11099         made backtraces report an incorrect source file.
11101 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11103         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11104         mini/debug-mini.c to here.
11106         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11108         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11109         use it to release structs returned by mono_debug_find_method.
11111 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11113         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11114         since it needs to set method->slot for all interface methods.
11116 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11118         * class-internals.h: Forgot to add.
11120 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11122         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11124         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11125         Lookup the custom attributes from property_hash.
11127         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11128         in property_hash. Allocate all data using the image mempool.
11130         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11131         for dynamic_custom_attrs to checks if the image is dynamic.
11133 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11135         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11136         assemblies array.
11137         
11138         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11139         runtime functions while holding the domain assemblies lock.
11141 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11143         * verify.c: Reapplied the last bit of the reverted changes.
11145 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11147         * verify.c: Reapplied more of the reverted changes.
11149 2008-06-09  Martin Baulig  <martin@ximian.com>
11151         * debug-mono-symfile.c (load_symfile): Check the major version
11152         first; if it's wrong, don't print the minor version in the error message.
11154 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11156         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11157         lock instead of the domain lock to avoid deadlocks, since the thread might
11158         already hold the loader lock.
11160         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11161         (mono_thread_attach): Ditto.
11163         * monitor.c: Use a TLS variable for holding the current thread id instead
11164         of calling pthread_self ().
11165         (mono_monitor_init_tls): New internal function to initialize the TLS
11166         variable.
11167         (mono_monitor_try_enter_internal): Put the owner == id check after the
11168         owner == 0 check.
11170         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11171         missed optimizations when using gcc-4.3.
11173 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11175         * reflection.c (mono_dynamic_image_free): Free the memory
11176         used by MonoGenericParam in MonoDynamicImage::gen_param.
11178         * reflection.c (mono_reflection_setup_generic_class): Allocate
11179         container from mempool.
11181         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11182         container from mempool.
11184 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11186         * threads.c (mono_set_pending_exception): New internal function to set the
11187         pending exception of the current thread.
11188         (mono_thread_get_and_clear_pending_exception): Check for 
11189         thread->pending_exception as well.
11191         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11193         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11194         it can trigger a collection.
11196 2008-06-06  Martin Baulig  <martin@ximian.com>
11198         Merged the `debugger-kahalo' branch.
11200         * mono-debug.h
11201         (MONO_DEBUGGER_VERSION): Bumped to 72.
11203         * debug-mono-symfile.h
11204         (MonoSymbolFileMethodIndexEntry): Removed.
11205         (MonoSymbolFileMethodEntry): New public typedef.
11206         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11207         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11208         `data_offset'.
11209         (MonoSymbolFileMethodEntry): Removed.
11210         (MonoSymbolFileLexicalBlockEntry): Removed.
11211         (MonoSymbolFileLineNumberEntry): Removed.
11212         (MonoDebugLexicalBlockEntry): Removed.
11213         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11214         removed `num_il_offsets' and `il_offsets'.
11215         (MonoSymbolFile): Replace `version' with `major_version' and
11216         `minor_version'.
11217         (MONO_SYMBOL_FILE_VERSION): Replace with
11218         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11219         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11221         * debug-mono-symfile.c
11222         (mono_debug_symfile_lookup_location): Add support for the new line
11223         number table format.
11225 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11227         * metadata.c (free_generic_class): Release the inflated
11228         MonoClass of dynamic generic classes if it's not a generic
11229         type definition.
11231 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11233         * verify.c: Reapplied more of the reverted changes.
11235 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11237         * reflection.c (lookup_custom_attr): Clean the cached flag or
11238         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11239         for SRE types.
11241 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11243         * verify.c: Reapplied a small part of the reverted changes.
11245 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11247         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11249         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11250         previously in managed code.
11251         (mono_monitor_exit): Ditto.
11252         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11254         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11255         the managed definition.
11257 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11259         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11261 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11263         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11264         
11265         * monitor.c: Add some micro optimizations.
11267         * icall.c (type_from_typename): Handle 'bool'.
11269 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11271         * verify.c: Implement constructor verification per P III 1.8.1.4.
11272         Fixes #396716.
11274 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11276         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11277         holding the assemblies lock here too.
11279 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11281         * verify.c: Kill stack_top function.
11283 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11285         * verify.c: Kill stack_get function.
11287 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11289         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11291 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11293         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11294         more reliable.
11296         * verify.c (mono_method_verify): Inflate params and locals to avoid
11297         mismatch when checking for compatibility.
11299 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11301         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11302         Length prefix should be size in bytes. Fix bug #339530.
11303         
11304         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11305         Length prefix should be size in bytes. Fix bug #339530.
11307         Code is contributed under MIT/X11 license.
11309 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11311         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11313         Contributed under MIT/X11 license.
11315 2008-06-05  Martin Baulig  <martin@ximian.com>
11317         * mono-debug-debugger.c
11318         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11320 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11322         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11323         while holding the assemblies lock to prevent deadlocks. Handle the case
11324         where the search hook returns NULL but the assembly was still loaded.
11325         Fixes #323696.
11327         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11328         modify domain state.
11330 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11332         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11333         * Makefile.am (pedump_LDADD): Post-process object files and
11334         add dtrace-generated object file, if necessary.
11336         Code is contributed under MIT/X11 license.
11338 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11340         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11342 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11344         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11346 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11348         * threads.c: Try to free everything from the delayed free table
11349         when shutting down threads, and set the variable to NULL after the
11350         table is freed so that calling
11351         mono_thread_hazardous_try_free_all() when shutting down the root
11352         domain doesn't crash.
11354 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11356         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11357         the caller if resulting type was inflated.
11359         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11360         was inflated.
11362         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11365 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11367         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11368         class library tests.
11370         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11371         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11372         #396989.
11374 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11376         * domain.c, domain-internals.h: The JIT infos are now freed by the
11377         JIT info table code.  They are freed immediately if there only a
11378         single JIT info table in circulation.  If there is more, the free
11379         is delayed via a queue.
11381         * threads.c, threads-types.h: New hazard pointer function for
11382         freeing all freeable delayed items in one sitting.
11384 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11386         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11388         * reflection.c (typebuilder_setup_properties): Same.
11390         * reflection.c (typebuilder_setup_events): Same.
11392 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11394         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11395         and use it for allocating memory.
11397         * reflection.c (mono_marshal_spec_from_builder): Same.
11399         * reflection.c: Change code to use new signatures.
11401         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11403 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11405         * decimal.c (rescale128): Put back one line which was accidently commented
11406         out.
11407         
11408         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11409         to cause crashes.
11411 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11413         * reflection.c (mono_reflection_generic_class_initialize): Name must
11414         be always malloc'ed so we can free it later on. Do this for field, property
11415         and event.
11417         * metadata.c (free_generic_class): Free field, property and event names.
11419 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11421         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11422         instead of g_memdup.
11424         * reflection.c (typebuilder_setup_fields): Same.
11426 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11428         * decimal.c (rescale128): Optimize this function a bit more.
11430 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11432         * metadata.c (free_generic_class): Release some memory from
11433         SRE generic classes.
11435 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11437         * reflection.c (mono_image_get_generic_field_token): No reference
11438         to name is kept, free it.
11440         * reflection.c (mono_reflection_generic_class_initialize): Free
11441         more memory of the inflated field.
11443 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11445         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11446         code.
11448 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11450         * reflection.c (mono_dynamic_image_free): Release memory used by
11451         MonoDynamicImage::array_methods elements.
11453         * reflection.c (assembly_add_win32_resources): Release memory after
11454         encoding.
11456 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11458         * decimal.c (log2_32): Use an optimized version for this function too.
11459         
11460         * decimal.c (log2_64): Fix this on 32 bit machines.
11462 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11464         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11466         * class.c (mono_metadata_signature_deep_dup): Same.
11468         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11469         a mempool.
11471         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11473         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11475         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11477         * class-internals.h: Update signatures to take a MonoMemPool.
11479 2008-06-02  Dick Porter  <dick@ximian.com>
11481         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11482         * icall-def.h: Add
11483         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11484         FormatMessage API to get the error text.  Fixes bug 321827.
11486 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11488         * decimal.c: Add some micro optimizations to make decimal operations faster.
11490 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11492         * reflection.c (method_encode_clauses): Take a mempool
11493         as parameter and use it to allocate the clause array.
11495         * reflection.c (mono_image_get_field_on_inst_token): Free
11496         the inflated type after encoding it.
11498         * reflection.c (mono_dynamic_image_free): Free each element
11499         of MonoDynamicImage::gen_params.
11501         * reflection.c (reflection_methodbuilder_to_mono_method):
11502         Allocate the generic param array from the mempool.
11503         Allocate signature params from the mempool.
11505         * reflection.c (mono_reflection_generic_class_initialize):
11506         Free inflated fields after been used.
11508 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11510         * icall.c: Reapply the memory leak fixes as they no
11511         longer make mono crash.
11513 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11515         * reflection.c (mono_type_get_object): Don't store the suplied
11516         MonoType with type_hash. A caller which pass a type that
11517         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11518         might end with a pointer to freed memory.
11519         The solution is to use byval_arg or this_arg from the associated
11520         MonoClass of the supplied type.
11522 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11524         * icall.c: Revert the rest of the last change as it breaks the build too.
11526 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11528         * icall.c: Revert a leak fix as it's breaking the build.
11530 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11532         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11534 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11536         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11538 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11540         * icall.c: Fix some memory leaks.
11542 2008-05-29  Dick Porter  <dick@ximian.com>
11544         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11545         async socket operations from the pending list when a socket
11546         closes.  Leaving it until the threadpool services the event
11547         exposes a race condition when a socket descriptor is reused.
11548         Fixes bug 377589.
11550 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11552         * object.c: Fix negative index check for array alocation.
11554 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11556         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11557         This check is performed by the verifier for IL created delegates
11558         and by Delegate::CreateDelegate for programatically created ones.
11559         Fixes #372406.
11561 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11563         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11564         Fix code to use mono_array_size_t instead of int.
11566         Based on patch by Luis F. Ortiz.
11567         Contributed under X11 license.
11568         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11570 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11572         * icall.c: Added ves_icall_System_Array_GetLongLength and
11573         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11574         arrays.
11576         * icall.h: Export both new functions.
11578         Based on patch by Luis F. Ortiz.
11579         Contributed under X11 license.
11580         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11582 2008-05-28  Martin Baulig  <martin@ximian.com>
11584         The debugger now requires exactly r103463.
11586         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11587         This version is not supported by the debugger, wait for 72.
11589 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11591         * object.h: Changed array related functions to use
11592         mono_array_size_t instead of guint32. Forgot to commit this file.
11594         Patch by Luis F. Ortiz.
11595         Contributed under X11 license.
11596         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11599 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11601         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11602         don't define it. Use the number literal instead.
11604 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11606         * icall.c: Changed array related functions to use
11607         mono_array_size_t instead of guint32.
11609         * icall.c (ves_icall_System_Array_GetLength): Check for length
11610         overflow under MONO_BIG_ARRAYS.
11612         Based on patch by Luis F. Ortiz.
11613         Contributed under X11 license.
11614         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11616 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11618         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11620         Based on patch by Luis F. Ortiz.
11621         Contributed under X11 license.
11622         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11624 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11626         * object.c, object.h: Changed array related functions to use
11627         mono_array_size_t instead of guint32.
11629         Patch by Luis F. Ortiz.
11630         Contributed under X11 license.
11631         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11633 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11635         * object.h: Introduced mono_array_size_t typedef. This must be used
11636         in all places an array length is expected. This is 64bits wide if
11637         MONO_BIG_ARRAYS is enabled.
11639         Patch by Luis F. Ortiz.
11640         Contributed under X11 license.
11641         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11643 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11645         * security-manager.c class.c: Set the class exception info by calling
11646         mono_class_set_failure ().
11648         * class.c (mono_class_get_exception_data): New accessor function.
11649         (mono_class_set_failure): Store exception_data in the property hash.
11651         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11652         the struct as a property.
11654         * loader.c (mono_get_method_full): Store the lookup result for method
11655         tokens in method_cache, the others in methodref_cache to decrease the memory
11656         usage of hash tables.
11658         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11659         (mono_image_init): method_cache is lazy inited now.
11661         * metadata-internals.h (struct _MonoImage): Change method_cache to
11662         a MonoValueHashTable, add a separate methodref_cache.
11664 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11666         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11667           Double.ToString as exposed by Bug #383531.
11669 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11671         * number-formatter.h: Make some tables static.
11673         * class.c (mono_method_set_generic_container): New accessor function.
11674         (mono_method_get_generic_container): Ditto.
11676         * class-internals.h (struct _MonoMethod): Remove rarely used 
11677         'generic_container' field, store it in the property hash instead. Add 
11678         'is_generic' boolean field instead.
11680         * image.c (mono_image_init): Initialize property_hash.
11681         (mono_image_close): Destroy property_hash.
11683         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11684         hold rarely used fields of runtime structures belonging to this image.
11686         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11687         to get/set method->generic_container.
11689         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11690         generic methods.
11692 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11694         * class.c (mono_class_inflate_generic_method_full): Don't increase
11695         mono_stats.inflated_method_count for methods found in the cache.
11697         * threads.c (mono_thread_request_interruption): Add a comment about 
11698         QueueUserAPC ().
11700 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11702         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11703         interface_offsets_packed table.
11704         
11705         * class.c (mono_class_init): Remove some dead code.
11707         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11708         mono_class_setup_vtable () when CAS is active to detect security problems.
11710 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11712         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11714         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11715         parameters as it's irrelevant for delegate checking.
11717 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11719         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11721         * class.c (mono_class_init): Control the creation of a generic vtable using
11722         a global which is true by default, but set to false by the runtime startup code.
11723         
11724         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11725         Disabled for now since it breaks the embedding API.
11726         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11727         (mono_class_setup_methods): Add a memory barrier.
11729         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11730         when mono_class_init () doesn't compute the generic vtable.
11731         
11732 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11733         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11734         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11735         to support call chains (backtrace) in the stat profiler.
11736         * profiler.c, profiler-private.h: Likewise.
11738 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11740         * generic-sharing.c: Init generic class when a method of it is
11741         requested via a runtime generic context.
11743 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11745         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11747         * reflection.c (mono_type_get_object): Add a FIXME.
11749         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11751         * class.c (mono_class_get_method_by_index): New helper function, returning an
11752         entry in the class->methods array.
11754 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11756         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11757         Avoid creating a generic vtable for generic instances as well.
11758         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11759         generic instances.
11761 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11763         * loader.c (mono_get_method_constrained): Inflate the signature
11764         with class context. Fix #325283.
11766 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11768         * object.c (mono_class_create_runtime_vtable): Add a comment.
11770         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11771         where needed.
11772         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11773         (mono_class_setup_vtable_general): Add an assert.
11774         (mono_class_init): Avoid creating a generic vtable for arrays.
11776         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11777         here, let mono_class_init () do that.
11779         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11780         interfaces in mscorlib.
11782         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11783         interfaces. Add some comments.
11784         (mono_class_init): Call mono_class_setup_methods () here since it is no
11785         longer called by mono_class_setup_vtable ().
11787         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11788         not set in class->vtable.
11789         (mono_class_create_runtime_vtable): Reenable the disabled code.
11791         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11792         now as it causes some test failures.
11794         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11795         if using the vtable trampoline. Also remove some strange code which put the
11796         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11797         stuff as it is no longer needed.
11799 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11801         * pedump.c: Give make --verify all option check code as well.
11802         Using --verify code won't check for metadata now.
11804 2008-05-19  Martin Baulig  <martin@ximian.com>
11806         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11808         * mono-debug.c
11809         (_mono_debug_using_mono_debugger): New global variable; it's set
11810         directly by the debugger, so mono_debug_using_mono_debugger() also
11811         works after attaching.
11813 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11815         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11816         as we do double checked locking on MonoClass::runtime_info and
11817         MonoClassRuntimeInfo::domain_vtables.
11819 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11821         * debug-helpers.c (print_field_value): Fix a warning.
11823 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11825         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11826         set in the AOT case.
11828 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11830         * class.c (mono_class_setup_vtable_general): Use memory barriers
11831         as we do double checked locking on MonoClass::vtable.
11833 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11835         * reflection.c (resolve_object): Inflate only if the generic context
11836         is not null. Fixes #389886.
11838 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11840         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11841         instead of g_free.
11843         Code is contributed under MIT/X11 license.
11845 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11847         * class.c: Revert unrelated change.
11849 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11851         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11852         a generic instantiation, use mono_class_from_mono_type instead of playing
11853         with MonoType directly.
11855 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11857         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11858         checks must ignore generic instantiations, so mono_class_has_parent is not
11859         suitable. Fixes #390128.
11861 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11863         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11864         it to avoid registering tokens during metadata generation. Fixes #390023.
11866 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11868         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11869         consistent.
11871         Contributed under MIT/X11 license.
11873 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11875         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11876         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11877         to fixup the EXE image.
11878         (mono_cleanup): Use mono_close_exe_image.
11879         (mono_close_exe_image): New function.
11880         * image.c: Include "marshal.h".
11881         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11882         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11883         counting when the image is loaded outside of mono_image_open_full. Set status
11884         based on GetLastError.
11885         * coree.c: Include required headers. Add init_from_coree.
11886         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11887         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11888         (_CorExeMain): Set init_from_coree.
11889         (CorExitProcess): Only call ExitProcess for now.
11890         (CorBindToRuntimeEx): New stub implementation.
11891         (CorBindToRuntime): New function.
11892         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11893         (MonoFixupExe): ILONLY executables require no fixups.
11894         (mono_set_act_ctx): New function to set activation context.
11895         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11896         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11897         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11898         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11899         as MONO_INTERNAL.
11900         * domain-internals.h: Add mono_close_exe_image.
11902         Contributed under MIT/X11 license.
11904 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11906         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11907         size for generic param and event tables. Fixes #388977.
11909 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11911         * loader.c (mono_method_signature): Use memory barriers because of the double
11912         checked locking pattern.
11914         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11915         aborting or aborted as well. Fixes #376391.
11916         
11917         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11918         existing runtime state in the Suspend handler during shutdown.
11920 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11922         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11924         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11925         which are starting up or shutting down.
11927         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11928         this function never returns if the runtime is already shutting down.
11930         * icall.c (ves_icall_System_Environment_Exit): Update after 
11931         mono_threads_set_shutting_down () signature change.
11932         
11933 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11935         * class.c: Added can_access_instantiation to verify if the instantiation
11936         is visible. Fix access check for nested types as they returned TRUE
11937         before doing type and generic instantiation visibility checks.
11939 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11941         * reflection.c (mono_reflection_create_generic_class): The created type
11942         must have a different container from its TypeBuilder. Otherwise they
11943         will end sharing generic arguments, which is wrong.
11945         Due to the sharing, making a generic instance of the created type using
11946         the TypeBuider generic arguments resulted in the generic type definition
11947         been returned, which is wrong as well.
11949         As a bonus the code was leaking the type_params array. This memory should
11950         be allocated from the image mempool.
11952         This fixes bug #354047.
11954 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11956         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11957         to here         as they are now used in assembly.c new code.
11958         Added a skipverification flag to MonoAssembly.
11959         New internal function mono_assembly_has_skip_verification.
11961         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11962         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11963         part of #387274.
11965 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11967         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11968         needed. Fixes #387034.
11970         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11972 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11974         * assembly.c (mono_assembly_load_reference): Prevent crash while
11975         disassembling Silverlight 2.0 executables while we still do not
11976         have GACed libraries.
11978 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11980         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11982 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11984         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11985         of the dynamic case. Fixes #387404.
11987 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11989         *verify.c (mono_verifier_is_class_full_trust): If under
11990         verify_all and the verifier mode was not set, only
11991         gac and corlib types are fulltrust. This makes --verify-all
11992         usable to detect unverifiable code, which is the expected
11993         use case.
11995 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11997         * verify.h: Ops, commited the header with debug
11998         enabled.
12000 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
12002         * verify.c (merge_stack): Use the new value on unverifiable
12003         stack merges.
12005         * verify.c (verify_type_compatibility_full): Comparison
12006         of nullable types can't use mono_class_is_assignable_from.
12008         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12009         that makes all verification errors be reported.
12011         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12012         mono_method_verify.
12014 2008-05-05  Robert Jordan  <robertj@gmx.net>
12016         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12017         support for value types. See #386415.
12019         * object.c: comments.
12021         Code is contributed under MIT/X11 license.
12023 2008-05-05  Martin Baulig  <martin@ximian.com>
12025         * debug-mono-symfile.h
12026         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12027         for old pre-terrania symbol files.
12029 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12031         * mono-config.c: Add ppc64 architecture.
12033         Code is contributed under MIT/X11 license.
12035 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
12037         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12038           PPC64 uses function descriptors as well.
12040         Code is contributed under MIT/X11 license.
12042 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12044         * object.c (compute_class_bitmap): Ignore literal static fields.
12046         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12047         var has an invalid format.
12048         (describe_ptr): Add some sanity checks for the vtable.
12049         (add_nursery_frag): Clear unused nursery fragments.
12050         (major_collection): Clear all remaining nursery fragments.
12052 2008-05-03  Robert Jordan  <robertj@gmx.net>
12054         * image.c, metadata-internals.h: add thunk_invoke_cache.
12056         * marshal.c, marshal.h: implement
12057         mono_marshal_get_thunk_invoke_wrapper ().
12059         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12061         Code is contributed under MIT/X11 license.
12063 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12065         * verify.c (do_leave): Empty the stack.
12067 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12069         * class.c (mono_class_is_assignable_from): Variance
12070         doesn't work between reference and value types. For example,
12071         given type C<T+>, C<int32> is not assignable to C<object>.
12072         Break the argument checking loop on first error. 
12074 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12076         * icall.c : base64_to_byte_array() needs some more strict
12077           check for sequence of '=' characters. Patch by Santa
12078           Marta (http://deee.g.hatena.ne.jp/santamarta).
12080           Contributed under MIT/X11 license.
12081           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12083 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12085         * domain.c: Disable LoadLibrary support to fix Win32 build.
12087         Code is contributed under MIT/X11 license.
12089 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12091         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12092         to help with cache behaviour.
12094 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12096         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12097         method. 
12099 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12101         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12103 2008-05-01  Dick Porter  <dick@ximian.com>
12105         * process.c (process_get_fileversion): Only pass 16 bits of
12106         language ID to VerLanguageName.  Fixes bug 381204.
12108 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12110         * verify.c (mono_method_verify): Fix the comparison
12111         operator for code bounds check.
12113 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12115         * verify.c (mono_method_verify): Check the bounds of
12116         all access of the code array.
12118 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12120         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12122 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12124         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12125         not valid.
12127 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12129         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12130         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12131         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12132         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12133         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12134         mono_runtime_load.
12135         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12136         runtime initialization from metadata.
12137         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12138         (mono_set_rootdir): Use mono_get_module_file_name.
12139         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12140         handles.
12141         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12142         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12143         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12144         MonoCLIImageInfo. Add support for module handles.
12145         (load_cli_header): Update mono_cli_rva_image_map signature.
12146         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12147         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12148         (mono_image_rva_map): Add support for module handles.
12149         (mono_image_ensure_section_idx): Add support for module handles.
12150         (mono_image_close): Add support for module handles.
12151         (do_load_header): Add support for module handles.
12152         (mono_image_open_from_module_handle): New function for internal use.
12153         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12154         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12155         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12156         handles.
12157         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12158         * image.h: Add mono_image_fixup_vtable.
12159         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12160         support.
12161         * coree.h: New file.
12162         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12163         unsupported native code.
12164         (mono_marshal_set_callconv_from_modopt): New function splitted from
12165         mono_marshal_get_managed_wrapper.
12166         (mono_marshal_get_managed_wrapper): Use
12167         mono_marshal_set_callconv_from_modopt.
12168         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12169         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12170         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12171         that results in a deadlock when the runtime is loaded in _CorDllMain.
12172         * Makefile.am: Add coree.c and coree.h.
12174         Contributed under MIT/X11 license.
12176 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12178         * generic-sharing.c: Search for type arguments in array element
12179         types as well.
12181 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12183         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12185         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12187         * object.c: Don't setup the RGCTX when the vtable is created,
12188         because we're setting it up lazily now.
12190 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12192         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12193         64 bit support.
12195 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12197         * verify.c (verify_class_for_overlapping_reference_fields): 
12198         If class is under fulltrust allow reference types to overllap
12199         if they have the same RVA.
12201 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12203         * pedump.c: Added new flag valid-only, that makes the verifier
12204         behaves just like --security=validil. It won't fail type load
12205         due to unverifiable restrictions.
12207 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12209         * class-internals.h (struct MonoMethod): Added a verification_success
12210         field to cache verifier executions. Reduced MonoMethod:slot size by
12211         one bit.
12213 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12215         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12216         instead of a 'vt' argument to save an indirection and to allow these to be used
12217         for valuetypes.
12218         (scan_vtype): New helper function to scan an area using a gc descriptor.
12219         (mono_gc_wbarrier_value_copy): Implement this.
12220         (handle_remset): Add support for REMSET_VTYPE.
12221         (find_in_remset_loc): Ditto.
12222         (mono_gc_base_init): Allow some debugging options to be controlled through the
12223         use of the MONO_GC_DEBUG env variable.
12224         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12225         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12227 2008-04-23  Martin Baulig  <martin@ximian.com>
12229         * domain.c (mono_domain_create): Move the call to
12230         mono_debug_domain_create() down, after allocating the domain id.
12232 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12234         verify.c (verify_class_for_overlapping_reference_fields): Skip
12235         static fields while verifying for overlapping fields as they
12236         don't matter at all.
12238 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12240         * domain-internals.h: added a declaration of
12241         mono_make_shadow_copy.
12243         * assembly.c (mono_assembly_open_full): shadow copying of
12244         assemblies moved to here, so that all the assemblies within the
12245         application domain's private binary directories can be
12246         processed. Fixes bug #380546
12248         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12249         mono_make_shadow_copy and made non-static. The decision whether
12250         to shadow-copy an assembly is made based on its location - it's
12251         copied if it's in one of the private application domain binary
12252         directories and its different to the target file in the shadow
12253         directory. Fixes bug #380546
12255 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12257         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12259         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12260         types.
12262         * reflection.c (mono_image_create_token): Handle 
12263         Method/ConstructorOnTypeBuilderInst.
12264         (resolve_object): Ditto.
12265         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12266         so it can be called from resolve_object. Also handle the case when the inflated
12267         class already has its methods setup.
12269 2008-04-21  Martin Baulig  <martin@ximian.com>
12271         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12273 2008-04-20  Geoff Norton  <gnorton@novell.com>
12275         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12276         pointer dereference.
12278 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12280         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12281         portability API to look up the assembly file. Fixes behavior in
12282         situations when the application has a bin/ directory, but the
12283         assembly search patch refers to Bin/ (and thus the requested file
12284         name is Bin/SomeLibrary.dll). Fixes bug #379888
12286 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12288         verify.c (mono_type_is_generic_argument): Extracted this check
12289         from a dozen places to here.
12291         verify.c: Fixed all issues related to boxing generic arguments
12292         and their constraints.
12294 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12296         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12298 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12300         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12301         isn't finished yet. Fixes #363447.
12303 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12305         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12306         Fixes #346419.
12308 2008-04-13  Jb Evain  <jbevain@novell.com>
12310         * domain.c: update the 2.1 profile versions.
12311         Merged from the Moonlight 2 branch.
12313 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12315         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12316         mscorlibs for the non-refonly case as well.
12318         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12319         in mono_assembly_load_from_full (). Fixes #378924.
12321 2008-04-11  Geoff Norton  <gnorton@novell.com>
12323         * icall.c: The global extern environ doesn't exist on Mac.  We
12324         need to call NSGetEnviron instead.
12326 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12328         verify.c: Add generic method constraint verification.
12330 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12332         class.c (mono_class_inflate_generic_method_full): Add a long
12333         explanation to the is_mb_open hack. Remove the FIXME.
12335 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12337         * verify.c (mono_method_verify): Mark all unknown opcodes
12338         as invalid. Mark jmp as unverifiable.
12340 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12342         * verify.c: Add code to do type constraint verification on class instances.
12344         * verify.c (mono_verifier_verify_class): Use the type constraint 
12345         verification code.
12347 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12349         * class.c (mono_class_get_field_default_value): Don't pass cindex
12350         as hint to mono_metadata_get_constant_index. The local is not initialized
12351         and should contain garbage most of the time. This could only work
12352         with a lot of luck.
12354 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12356         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12358 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12360         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12362         * class.c (mono_class_from_generic_parameter): Save the token of the
12363         generic param in MonoClass::sizes.generic_param_token.
12365         * reflection.c (mono_custom_attrs_from_class): If the class type is
12366         VAR or MVAR retrieve the attributes of the generic param.
12368 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12370         * class.c (mono_class_init): Do class verification if the verifier
12371         is enabled.
12373 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12375         * verify-internal.h: Added mono_verifier_verify_class.
12377         * verify.c: Added mono_verifier_verify_class. It checks for
12378         classes with explicit layout that have overlapping reference fields.
12380         * pedump.c: Init the verifier state prior to verification. Fixed
12381         command line arguments.
12383 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12385         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12387 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12389         * verify-internals.h: Fix a warning.
12391 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12393         * verify-internals.h: New header with the verifier configuration
12394         extracted from mini.c.
12396         * verify.c: Implemented the new functions exported by verify-internals.h.
12398 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12400         * verify.c: Add proper verification of ckfinite.
12402 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12404         * verify.c (do_conversion): Improved error message to something
12405         more meanfull.
12407         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12408         with primitive types.
12410 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12412         * verify.c: Added tail prefix checking. Marked icall
12413         as unverifible.
12415 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12417         * verify.c: Fix the detection of branches to the middle
12418         of an instruction.
12420 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12422         * verify.c: Implemented verification of volatile. and
12423         unaligned. prefix. Check if a type is valid after retrieving it.
12425 2008-04-01  Dick Porter  <dick@ximian.com>
12427         * process.c (process_get_fileversion): If there's no string block,
12428         set the file language to en_US.  Fixes the other new part of bug
12429         374600.
12431 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12433         * class.c: New functions mono_method_can_access_field_full and
12434         mono_method_can_access_method_full. They perform type visibility
12435         and type site check.
12437         * class-internal.h: Added exported functions.
12439         * verify.c: Use new functions to implement proper visibility checks.
12441 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12443         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12445 2008-03-28  Dick Porter  <dick@ximian.com>
12447         * process.c (process_get_fileversion): Use the first language ID
12448         we see, rather than insisting on an invariant language.  Fixes bug
12449         374600.
12451 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12453         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12454         the streams to fix reading of invalid memory later.
12456         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12457         to ease debugging.
12459 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12461         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12462         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12464 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12465         * threads.h: Added MonoThreadManageCallback type and
12466         mono_thread_set_manage_callback prototype
12467         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12468         (used to store the mono_thread_manage callback).
12469         * threads.c: Added mono_thread_set_manage_callback, and handle
12470         "MonoThread->manage_callback" in build_wait_tids.
12472 2008-03-26  Dick Porter  <dick@ximian.com>
12474         * process.c (process_get_fileversion): Set FileVersionInfo strings
12475         to Empty when the resource doesn't have the particular info.
12476         Fixes bug 355717.
12478 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12480         * verify.c (mono_method_verify): Proper prefix validation.
12482 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12484         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12485         itself in a separate argument instead of throwing them. Fixes #373448.
12487         * appdomain.c: Bump corlib version.
12489 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12491         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12493 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12495         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12496         version macros.
12498 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12500         * generic-sharing.c, class-internals.h: Code for putting
12501         reflection types into the runtime generic context.
12503 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12505         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12506         Fixes #340662. 
12509 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12511         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12513         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12515         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12517         * verify.c (do_cast): Let the result value keep the boxed status.
12519         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12521 2008-03-17  Jb Evain  <jbevain@novell.com>
12523         * reflection.c: when running on a 2.0 runtime, emit
12524         unconditionally the #~ header version as 2.0, and the
12525         CLI header version as 2.5, for symmetry's sake with csc.
12527 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12529         * class.c: Remove the unused cache_interface_offsets stuff.
12531         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12532         profiler.c: Fix warnings.
12534 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12536         * generic-sharing.c, class-internals.h: Support for putting
12537         methods into the runtime generic context.
12539 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12541         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12542         classes which are generic instances of not-yet finished typebuilders. Fixes
12543         #351172.
12545         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12547 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12549         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12551         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12552         field, replace it with a hash table in MonoDynamicImage.
12554         * reflection.c (inflate_mono_method): Access the generic definition object from
12555         image->generic_def_objects instead of imethod->reflection_info.
12557         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12559         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12560         
12561         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12562         function in reflection.c so it is easier to keep in sync with the dynamic image
12563         creation code.
12565         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12566         mono_image_close ().
12568 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12570         * class.c (mono_class_generic_sharing_enabled): Disable generic
12571         sharing for all architectures except AMD64 and x86 to fix build.
12573 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12575         * verify.c: Use the generic definition MonoGenericContext when available.
12576         Remove code for checking generics instance compatibility in favor of
12577         mono_class_is_assignable_from.
12579 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12581         * marshal.c, marshal.h, metadata-internals.h, image.c,
12582         wrapper-types.h: New wrapper for invoking a shared static method
12583         without having to pass the runtime generic context argument.
12585 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12587         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12589 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12591         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12592         
12593         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12594         create a token from a FieldOnTypeBuilderInst.
12595         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12596         (resolve_object): Ditto.
12598         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12599         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12601 2008-03-14  Martin Baulig  <martin@ximian.com>
12603         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12605         * debug-mono-symfile.h
12606         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12607         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12609 2008-03-10  Martin Baulig  <martin@ximian.com>
12611         * debug-mono-symfile.h
12612         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12613         `lexical_block_table_offset'.
12614         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12615         `lexical_blocks'.
12616         (MonoSymbolFile): Added `version'.
12618         * mono-debug.h
12619         (MonoDebugLexicalBlockEntry): Removed.
12620         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12621         `lexical_blocks'.
12623         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12624         blocks here; the debugger now does this internally.
12626 2008-02-27  Martin Baulig  <martin@ximian.com>
12628         * object.c (mono_runtime_exec_main): Call
12629         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12630         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12632 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12634         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12635         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12637 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12639         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12640         ldftn with a virtual method.
12642 2008-03-13  Geoff Norton  <gnorton@novell.com>
12644         * decimal.c:  Only include memory.h if the platform has it.
12646 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12648         * assembly.c, class.c, metadata-internals.h: make sure public key
12649         tokesns are compared in a case-insensitive way. Also, all
12650         the lookups in the GAC use a lowercase public key token
12651         (gaacutil already does the lowercasing on install). Fixes
12652         bug #369541.
12654 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12656         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12657         and return value.
12659 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12661         * image.c: when someone loads a mscorlib from a file, return the
12662         currently loaded mscorlib (fixes bug #369253).
12664 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12666         * class.c: handle types with no parents by forcing them to have
12667         System.Object as a parent and marking them as broken (this currently
12668         allows the first part of bug #369173 to work as well, likely because
12669         we don't check for typeload exceptions everywhere yet).
12671 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12673         * class.c: more complete check that types belong to corlib
12674         (fixes second part of bug #369173).
12676 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12678         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12679           "inline" to "__inline" before including mono-membar.h.
12680           
12681         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12682           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12683           MSVC builds.
12685         Contributed under MIT/X11 license.
12687 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12689         * verify.c (do_invoke_method): Remove return type validation.
12691         * verify.c (do_ret): Do return type validation at return site instead of
12692         call site.
12694 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12696         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12698         * verify.c: Some todos cleaned and improved a few error messages.
12700 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12702         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12704 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12706         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12707         system types correctly.
12709         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12710         function.
12712 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12714         * assembly.c (build_assembly_name): Fix a warning.
12716 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12718         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12719         the called function takes an object type argument. Fixes storing or
12720         valuetypes across remoting as well as reducing memory usage.
12721         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12722         stfld_remote wrapper caches.
12724 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12726         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12727         is not found.
12729         * reflection.c (mono_image_register_token): New helper function to save
12730         a token->object mapping.        
12732         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12733         managed code.
12735         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12736         one dimension arrays. Fixes #367670.
12737         (mono_reflection_get_type_internal): Ditto.
12739 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12741         * marshal.c: mono_load_remote_field_new() always returns object.
12742         so use the proper signature (fixes bug #366445).
12744 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12745         
12746         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12747         add an 'inline_failure' flag instead.
12749 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12751         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12752         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12753         contains the location of "this", used for exception handling.
12755 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12757         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12758         their size on all platforms for perf reasons.
12760 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12762         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12763         object-internal.h
12765         * object-internal.h: Same.
12767 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12769         * reflection.h: Fix the build I just broke.
12771 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12773         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12774         Test if a token is valid, this remove explicit usage of 
12775         MonoDynamicImage::tokens from the verifier code.
12777         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12779         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12780         instead of direct access to MonoDynamicImage::tokens.
12782 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12784         * verify.c (token_bounds_check): Fix the build I just broke.
12786 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12788         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12790         * verify.c (verifier_load_method): Fixed the errors message.
12792         * verify.c (mono_method_verify): Fixed a debug message.
12794 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12796         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12797         mono-perfcounters.h, class-internals.h: support for predefined
12798         writable counters, query of categories and counters, bugfixes.
12800 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12802         * verify.c (do_refanytype): Verify the refanytype opcode.
12804         * verify.c (mono_method_verify): Use do_refanytype.
12806 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12808         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12810         * verify.c (mono_method_verify): Use do_mkrefany.
12812 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12814         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12815         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12816         implementation.
12818 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12820         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12821         the type load exception.
12823 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12825         * verify.c: Added a few FIXME for method signatures
12827         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12828         of mono_method_get_signature and get vararg call working. Removed unused
12829         checks for return value.
12831         * verify.c (do_refanyval): Verify the refanyval opcode.
12833         * verify.c (mono_method_verify): Implemented verification of arglist and
12834         use do_refanyval.
12836 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12838         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12839         vtypes to marshal.c.
12841         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12842         it works for AOT as well.
12844 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12846         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12847         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12848         the system time is adjusted.
12850 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12852         * icall.c, icall-def.h: use the new time functions (fixes the
12853         non-monotonic behaviour of TickCount).
12855 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12857         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12858         it breaks the build.
12859         
12860         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12861         cattr is not finished yet.
12863 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12865         * verify.c: Proper token validation for field, method and type.
12867 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12869         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12871         * loader.c (method_from_memberref): Generate type load error instead of method missing
12872         if the type is not found.
12874 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12876         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12877         some of the conversions caused the generation of a marshal directive exception.
12879 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12881         verify.c: Report which exception should be thrown by the JIT.
12882         Added a lot of FIXME notes.
12884 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12886         * generic-sharing.c: Runtime generic context slots are not
12887         instantiated on init anymore.  Instead, provide function to do the
12888         instantiating on demand.
12890         * class-internals.h: Added vtable to runtime generic context.
12891         Macros for encoding direct and indirect slot offsets in one
12892         guint32.
12894 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12896         * object.c, generic-sharing.c: Moved some generic sharing code
12897         from object.c to generic-sharing.c.
12899         * generic-sharing.c: Added support for extensible runtime generic
12900         context.
12902         * metadata-internals.h: Two new hash tables in MonoImage for
12903         extensible runtime generic context support.
12905         * domain.c: Unregister generic vtables upon domain unloading.
12907         * image.c: Destroy new hash tables upon image unloading.
12909         * metadata.c: Unregister generic subclasses upon image unloading.
12911         * class-internals.h: New data structure for runtime generic
12912         context template.  New fields in the runtime generic context for
12913         extensible part.
12915         * Makefile.am: Added generic-sharing.c.
12917 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12919         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12920         there is a pending loader exception, raise it.
12922         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12923         same.
12925         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12926         same.
12928         Fixes #363450.
12930 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12932         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12934         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12935         
12936         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12937         ref-only requests for compatibility with MS.
12939 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12941         * reflection.c (mono_custom_attrs_from_method): Don't silently
12942         return an empty list for generic method instances.
12943         (mono_custom_attrs_from_param): Likewise.
12945 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12946             Raja R Harinath  <harinath@hurrynot.org>
12948         Fix #354757
12949         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12950         * class.c (mono_class_inflate_generic_method_full): Initialize it
12951         when a fully-open method is instantiated.
12952         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12953         to new field.
12954         * reflection.c (inflate_mono_method): Don't create a temporary context.
12956 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12958         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12959         Compute correct value, to prepare for imethod->reflection_info going away.
12961 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12963         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12965 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12967         * verify.c: Implement skip visibility flag.
12969 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12971         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12972         which contains an extra field to tell the kind of exception that should be thrown.
12974         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12976 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12978         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12979         'method' is updated.
12981 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12983         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12984         explicit layout as well. Fixes #360375.
12986 2008-02-11  Geoff Norton  <gnorton@novell.com>
12988         * loader.c: Guard and dereference against inflated generic methods
12990 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12992         * class.c: Include Retargetable spec in assembly name.
12993         * assembly.c: Always include PublicKeyToken spec in assembly name
12994         (with value "null" if assembly is not signed), and include
12995         Retargetable spec.
12996         * icall-def.h: Added icall for Assembly.get_fullname.
12997         * icall.c: Added icall returning the fullname of an assembly.
12999 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
13001         * class.c (mono_class_setup_vtable_general): Add a missing call to
13002         mono_class_setup_methods () which is needed in the AOT case.
13004 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
13006         * verify.c (mono_type_get_stack_name): Added. Return the name for the
13007         stack type of the given MonoType.
13009         * verify.c (verify_type_compatibility_full): Handle the void type.
13011         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13012         way stack merging works.
13014         * verify.c (store_local): Improved verification message.
13016         * verify.c (do_branch_op): If the merging is invalid, the method
13017         is unverifiable and not invalid. Improved error message.
13019         * verify.c (merge_stacks): Properly merge a boxed valuetype and
13020         a reference type diferent than System.Object. Improved error
13021         message.
13023 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
13025         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13027         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13028         type of an enum even if the argument is byref.
13030         * verify.c: Replace all explicit uses of enumtype and enum_basetype
13031         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13033         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13035         *verify.c (verify_type_compatibility_full): Make enum types
13036         compatible with their base types.
13038         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13039         types are compatible for the special case of a boxed valuetype and
13040         System.Object.
13042         * verify.c (verify_stack_type_compatibility): The function
13043         is_compatible_boxed_valuetype was extracted from here.
13045         * verify.c (push_arg): Only set ctx->has_this_store if the method
13046         is not static.
13048         * verify.c (do_ldelem): Fixed a typo in an error message and added
13049         strict check for mixing int32 and native int as the array type
13050         and ldelem type.
13052         * verify.c (merge_stacks): Consider boxed valuetypes in the
13053         compatibility checks.
13055 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13056         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13058 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13059         *class.c: use_new_interface_vtable_code: renamed the env var to have
13060         a "MONO_" prefix, and fix the logic to enable it by default.
13062 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13063         *class.c:
13064         mono_class_setup_vtable_general: rewrote the way in which interface
13065         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13066         makes the code more maintainable.
13067         For now the old code is still there, and can be activated setting
13068         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13070 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13072         * verify.c: guarded some debug functions around and #ifdef.
13074         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13076 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13078         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13079         changes for now since they seem to break too many things.
13081 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13083         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13084         mono_marshal_find_nonzero_bit_offset): Added macro and function
13085         for finding the byte- and bit-offset of a bitfield within a
13086         struct.
13088 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13090         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13091         (mono_marshal_get_struct_to_ptr): Ditto.
13093         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13094         cctor_signature.
13096 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13098         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13099         between methods for non-corlib types.
13101 2008-02-02  Geoff Norton  <gnorton@novell.com>
13103         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13104         generic parameters as well. (Fixes #342536)
13106 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13108         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13110         * verify.c (do_invoke_method): Fix for calling with byref structs.
13112         * verify.c (do_cast): push a boxed value type based on the type token and not
13113         the type of stack.
13115 2008-01-31  William Holmes  <billholmes54@gmail.com>
13117         * process.c (process_module_string_read): Check the size returned form 
13118           VerQueryValue to avoid out of memory exception. 
13120 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13122         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13123         Handle properly modules which are not in the moduleref table. Fixes
13124         #356938.
13126 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13128         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13129         the dynamic case which is now in managed code.
13130         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13132         * marshal.c (mono_string_to_bstr): Fix a warning.
13133         (init_com_provider_ms): Ditto.
13135         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13137         * exception.c (mono_get_exception_out_of_memory): New helper function.
13139 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13141         * marshal.c: Add support for BSTR marshalling
13142         using other COM systems.
13144         Code is contributed under MIT/X11 license.
13146 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13148         * object.c (mono_runtime_invoke_array): reverted previous
13149         commit as it breaks the build.
13151 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13153         * object.c (mono_runtime_invoke_array): Verify arguments for
13154         invalid types. Fixes #348522.
13156 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13158         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13159         non-final virtual calls using call. 
13161         * verify.c (do_invoke): fixed some TODOs.
13163         * verify.c (push_arg): set has_this_store for "ldarga 0".
13165 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13167         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13168         which belong to an inflated class. Fixes #356531.
13170 2008-01-26  Robert Jordan  <robertj@gmx.net>
13172         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13173         which resort to FindFirstFile when a certain error condition
13174         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13175         Code is contributed under MIT/X11 license.
13177 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13179         * marshal.c (emit_marshal_string): Fix out string marshalling
13180         to use specified encoding. Fixes #323900.
13182         Code is contributed under MIT/X11 license.
13184 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13186         * class.c (mono_class_inflate_generic_method_full): Don't modify
13187         iresult->context after cache check.
13189 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13191         * class.c (mono_class_inflate_generic_method_full): Change the
13192         struct assignments to memcpy for better visibility and add some comments.
13194 2008-01-23  Dick Porter  <dick@ximian.com>
13196         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13197         procedure, and make it work on windows.
13199 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13201         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13202         a MonoReflectionTypeBuilder since it is always of that type.
13204         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13206         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13208         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13209         
13210         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13212         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13214         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13215         instantiations from the type cache.
13217 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13219         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13221         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13223 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13225         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13227         * verify.c (mono_method_verify): removed old TODO
13229 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13231         * verify.c (do_newobj): add visibility check.
13233 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13235         * verify.c (do_load_function_ptr): add visibility check.
13237 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13238         *class.c:
13239         mono_generic_class_get_class: hook profiler events.
13240         mono_field_get_offset: added to support heap-shot in the new profiler.
13241         *class.h: exported mono_field_get_offset.
13242         * reflection.c:
13243         mono_reflection_setup_internal_class: hook profiler events.
13245 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13247         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13248         argument here too and use it to avoid checking for pending exceptions if 
13249         possible.
13251 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13253         * assembly.c (build_assembly_name): add arg for passing the assembly
13254         flags. Do not consider a PublicKey with value "null" valid.
13255         (mono_assembly_name_parse_full): added boolean argument that will be
13256         set if the assembly name contains a PublicKeyToken spec. Added support
13257         for the Retargetable spec for which only Yes or No are allowed as valid
13258         value. Consider assembly name invalid if Retargetable spec is set, but
13259         either version, culture or public key (token) are not specified.
13260         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13261         with implementation in assembly.c.
13262         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13263         from MonoAssemblyName.
13264         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13265         introduced argument for mono_assembly_name_parse_full to know if the
13266         assembly name has a PublicKeyToken spec, and if it has instruct
13267         fill_reflection_assembly_name to use default value for keyToken (if
13268         PublicKeyToken is null).
13270 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13272         * verify.c (mono_method_verify): fixed ovf ops with
13273         float values. They are unverifiable now.
13275 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13277         * class.c (set_failure_from_loader_error): add BadImageException to the
13278         list of exceptions that can cause a type to fail to load.
13280         * class.c (mono_class_get_exception_for_failure): same.
13282 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13284         * verify.c (in_any_exception_block): added, check if offset
13285         is part of any exception handling clause.
13287         * verify.c (get_stack_type): added VAR and MVAR types.
13289         * verify.c (do_stobj): better error messages.
13291         * verify.c (do_cpobj): added, check cpobj.
13293         * verify.c (do_initobj): added, check initobj.
13295         * verify.c (do_sizeof): added, check sizeof.
13297         * verify.c (do_localloc): added, check localloc.
13299         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13301 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13303         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13304         save_lmf/restore_lmf opcodes.
13306         * threads.c (mono_threads_install_notify_pending_exc): New function to
13307         install a callback notifying the JIT there is a pending exception on a thread.
13308         (mono_thread_request_interruption): Call the new callback.
13309         (mono_thread_get_and_clear_pending_exception): New function to return the
13310         exception pending on a thread.
13312         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13313         to turn off checking for pending exceptions.
13314         (mono_marshal_get_native_wrapper): Ditto.
13316 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13318         * threads-types.h: Get rid of the unnecessary extern declarations.
13320 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13322         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13323         return field from parent class if not private.
13324         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13325         returns fields from parent class if they are not private.
13326         (method_nonpublic): added function to determine if a given method
13327         should be considered non-public. Returns false for private methods
13328         on parent class, and internal methods from parent on the 1.0 profile.
13329         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13330         use method_nonpublic function to determine whether method should be
13331         returned.
13332         (property_accessor_public): use newly introduced method_nonpublic
13333         function to determine whether accessor is non-public. 
13334         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13335         event from parent class if not private. Only return static event if
13336         Static flag is set, and only return static event from parent class if
13337         FlattenHierarchy flag is set.
13338         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13339         include non-private events from parent class.
13341 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13343         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13344         warning.
13346 2008-01-16  Wade Berrier <wberrier@novell.com>
13348         * security.c: Add assembly.h header to appease some warnings
13350 2008-01-16  Dick Porter  <dick@ximian.com>
13352         * process.c (process_module_string_read): Remove trailing null
13353         when saving string.
13355 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13357         * class-internals.h: A new data structure describing the layout of
13358         a runtime generic context (MonoRuntimeGenericContextTemplate).
13360         * metadata-internals.h: Added a hash table to MonoDomain that maps
13361         from open generic classes to their runtime generic context
13362         templates.
13364         * object.c: Building of the runtime generic context, including
13365         proper handling of generic type arguments of superclasses.
13366         Building of the runtime generic context according to the template.
13368 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13370         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13371         Fixes #350856.
13373         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13374         mono_portability_find_file (). Fixes #325466.
13375         (mono_image_get_public_key): Fix a warning.
13377 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13379         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13380         Fixes #353550.
13381         (mono_class_from_name_case): Ditto.
13383 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13385         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13386           common storage for the tables used in the System/NumberFormatter class.
13388 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13390         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13392 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13394         * verify.c (get_boxable_mono_type): check if the token is valid.
13396         * verify.c (set_stack_value): changed to add an error if an
13397         invalid type is set on stack. Changed all callers due to signature change.
13399         * verify.c (do_stobj): implement stobj validation.
13401 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13403         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13404         set container->is_method, it was set earlier.
13406         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13407         generic methods.
13409         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13410         is_method of the generic container to TRUE for methods.
13412 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13414         * metadata.c (type_in_image): Handle type parameters properly.
13416         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13417         memory ownership of this structure.
13419 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13421         * verify.c (get_boxable_mono_type): make typedref types been just
13422         unverifiable. check for void type.
13424         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13426         * verify.c (do_load_function_ptr): accept method spec tokens.
13428 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13430         * marshal.c (mono_class_native_size): Always set *align even if this is called
13431         recursively.
13433 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13435         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13436         out-of-date.
13438 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13440         * verify.c: removed some old unused tables. A huge bunch of small fixes
13441         to things found while testing the verifier with mono basic.
13443         * verify.c (dump_stack_value): dump null literal flag to.
13445         * verify.c (verify_type_compatibility_full): fix comparison
13446         for types that have a generic super type.
13448         * verify.c (verify_stack_type_compatibility): fix compatibility
13449         between null literals and reference types. fix compatibility between
13450         boxed valuetypes and object. fix corner case test for enums.
13452         * verify.c (do_cmp_op): proper verification of cgt.un in case
13453         of reference types.
13455         * verify.c (do_invoke_method): fix error message.
13457         * verify.c (do_store_indirect
13459         * verify.c (check_is_valid_type_for_field_ops): proper verification
13460         of managed pointers to valuetypes and boxed valuetypes. proper verification
13461         of null literals.
13463         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13464         allow token to be a reference type.
13466         * verify.c (do_cast): proper handling of boxes valuetypes.
13468         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13469         in object[].
13471         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13472         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13473         fixed the decoding of unbox_any
13475 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13477         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13479 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13481         * verify.c (do_newobj): do delegate verification.
13483         * verify.c (verify_delegate_compatibility): perform delegate
13484         verification.
13486         * verify.c (verify_ldftn_delegate): perform tests related to
13487         ldftn delegates.
13489         * verify.c (mono_delegate_signature_equal): perform the
13490         slightly diferent signature comparison required by delegates.
13492         * metadata.c (mono_metadata_type_equal_full): added and exported
13493         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13494         allows signature only comparison.
13496         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13497         as MONO_INTERNAL.
13499 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13501         * verify.c: added a bunch of stack_slot_* functions to
13502         make access to stack slot type easier. This is required to
13503         allow optional flags, like null literal, boxed value and
13504         this pointer.
13505         All access paths to IlStackDesc::stype have been changed 
13506         to use these new funcions.
13507         Removed a bunch of unused functions and cleared all warnings.
13508         This patch introduces the usage of the this pointer and 
13509         boxed value flags.
13511 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13513         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13515 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13517         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13518         match managed version.
13520         * appdomain.c: Bump corlib version.
13521         
13522         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13523         argument.
13525 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13527         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13528         Set public key token to zero-length byte array if assembly is not
13529         strongnamed.
13531 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13533         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13534         writing a vtype array elem.
13536 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13538         * assembly.c (build_assembly_name): return FALSE if length of token is
13539         not 16 (if not "null").
13540         (mono_assembly_name_parse_full): return FALSE if value of version,
13541         culture, token or key is 0.
13542         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13543         specify whether public key and public key token must be set to default
13544         value (zero-length byte array) if not available. Set versioncompat to
13545         SameMachine. If public key is available or the default is set, then
13546         set PublicKey flag.
13547         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13548         is available, use empty byte array as default value. On the 2.0
13549         profile, use default value for public key token if not set.
13550         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13551         profile, use default value for public key if not set. On the 2.0
13552         profile, use default value for public key token if not set.
13553         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13554         default values for public key and public key token.
13556 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13558         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13559         field to keep it in synch with the managed object.
13561         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13562         delegates. Fixes #351520.
13564         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13565         contains defined memory.
13566         
13567         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13569         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13570         
13571         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13572         of the GC data structures.
13574         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13576         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13577         
13578         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13579         barrier.
13580         (mono_array_clone_in_domain): Ditto.
13581         (mono_array_clone_in_domain): Ditto.
13583         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13584         (cache_culture): Use a write barrier.
13586         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13587         (ves_icall_get_property_info): Ditto.
13589         * object.h (MONO_STRUCT_SETREF): New macro.
13591         * class-internals.h (MonoStats): Add some GC statistics.
13593         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13595 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13597         * exception.c (mono_exception_from_name_two_strings):
13598         Break from loop after method is found.
13600 2008-01-04  Dick Porter  <dick@ximian.com>
13602         * process.c (process_module_string_read): Rename variable to
13603         reflect correct usage, after fixing bug 345972.
13605 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13607         * verify.c (mono_type_create_fnptr_from_mono_method): 
13608         created a MonoType function pointer instance to be used during
13609         verification. The verifier releases this memory at end.
13611         * verify.c (mono_method_is_constructor): extracted repeated
13612         checks for constructor into a single class.
13614         * verify.c (do_push_field): use new extracted method
13615         for constructor check.
13617         * verify.c (do_newobj): same.
13619         * verify.c (do_ldftn): renamed to do_load_function_ptr
13620         and make it verify ldvirtftn too.
13622         * verify.c (mono_method_verify: proper verification
13623         of ldvirtftn. release created MonoMethod instances.
13625 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13627         * verify.c (token_bounds_check): added.
13629         * verify.c (do_ldftn): added.
13631         * verify.c (mono_method_verify): proper verificartion of ldftn.
13633 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13635         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13636         than the table row count. It's the resposibility of the caller to
13637         make the bounds check and raise the correct error.
13639         * metadata.c (mono_metadata_decode_row_col): Same.
13641         * loader.c (mono_get_method_from_token): perform bounds check
13642         on token for methoddef table.
13644 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13646         * icall.c
13647         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13648         assert into a negative result, the managed code already coped with
13649         that.
13651         Some folks on Windows reported this error. 
13653 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13655         * appdomain.c: Bump corlib version.
13656         * icall.c:
13657         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13658         CultureInfo.CreateCulture to create CultureInfo for name.
13659         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13660         create CultureInfo for name. Fixes bug #347174.
13662 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13664         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13665         flags.
13667         * verify.c (is_valid_branch_instruction): allow branching to the
13668         first instruction of the protected block.
13670         * verify.c (is_valid_cmp_branch_instruction): same.
13672         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13673         avoid double initialization.
13675         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13676         detect which cases the eval stack should just be copied.
13678         * verify.c (mono_method_verify): check if the eval stack
13679         is empty when entering a protected block.
13681 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13683         * verify.c: added is_clause_in_range, is_clause_inside_range,
13684         is_clause_nested and verify_clause_relationship. They perform
13685         the verifications stated in P1 12.4.2.7.
13687         * verify.c (mono_method_verify): remove some unused variables,
13688         add the new exception clause checks, add instruction border
13689         checks for protected block start/end, improved some error 
13690         messages and fixed a bug in the way invalid instruction access
13691         is detected.
13693 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13695         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13696         from GC 7.0 if available.
13698         * object.c: Remove an unused define.
13699         
13700         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13702         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13704         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13706         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13708         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13709         to take the same arguments as the other make_descr functions.
13711         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13713         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13714         directly.
13716         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13717         mini.c.
13719         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13720         call to boehm-gc.c.
13722         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13724         * null-gc.c (mono_gc_register_root): Fix a warning.
13726         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13728         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13729         (mono_gc_base_init): Call GC_init ().
13731         * null-gc.c: Define mono_gc_register_root () as a no-op.
13733         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13735 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13737         * verify.c: add prototype for merge_stacks at top
13739         * verify.c (do_switch): added.
13741         * verify.c (merge_stacks): on some cases the stack merging
13742         was not happening properly. Unequal stack sizes at merge
13743         points should be invalid.
13745         * verify.c (mono_method_verify): added more debug info on stack state.
13746         verify switch properly.
13748 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13750         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13751         marshal.h.
13753         * boehm-gc.c marshal.c: Include method-builder.h.
13755         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13757         * marshal.c: Remove some code which is now in method-builder.c.
13759 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13761         * method-builder.c: New file, extraction of the method builder functionality 
13762         from marshal.c.
13764         * marshal.c: Move the mb functions into method-builder.c.
13766         * marshal.h marshal.c: Export some mono_mb_... functions.
13768         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13770         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13771         the caller.
13773         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13775         * loader.c (mono_field_from_token): Ditto.      
13777         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13778         type as well.
13779         
13780         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13781         Fixes #342565.
13783         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13784         a helper function for setting it.
13786         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13788         
13789         * assembly.c: Significally simplify code now that referenced assemblies are 
13790         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13792         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13793         #349952.
13795 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13797         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13798         instructions that were target of branches or are at protected block boundaries.
13800         * verify.c (in_same_block): handle filter clauses.
13802         * verify.c (is_valid_branch_instruction): added. checks the target of
13803         instructions br or brtrue/false.
13805         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13806         binary branch instructions such as beq and bge.
13808         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13809         and made it pin the instruction as been part of the exception block.
13811         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13812         of in_same_block.
13814         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13815         of in_same_block.
13817         * verify.c (do_ret): ret from a protected block is unverifiable and
13818         not invalid.
13820         * verify.c (do_static_branch): verify br and br.s instructions.
13822         * verify.c (merge_stacks): add extra param to support detection
13823         of branches in the middle of instructions.
13824         
13825         * verify.c (mono_method_verify): verify branches and exception blocks
13826         that target the middle of instructions. Proper verification of br and br.s.
13828 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13830         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13831         skip_visibility field.
13832         (reflection_methodbuilder_from_dynamic_method): Ditto.
13834         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13835         registrations. Fixes #348193.
13837         * threads.h: Move the internal mono_thread_get_pending_exception () to
13838         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13840 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13842         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13843         icall registration. Fixes #348193.
13845         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13846         for corlib classes into object. Fixes #349621.
13848 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13850         * icall.c (property_accessor_nonpublic): new function to determine
13851         whether an accessor allows a property to be considered non-public.
13852         Returns false for private accessor(s) from parent class, and internal
13853         accessor(s) from parent on 2.0 profile (and higher).
13854         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13855         to determine whether property should be included if NonPublic flag
13856         is set. Fixes bug #349078.
13858 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13860         * verify.c (init_stack_with_value): added.
13862         * verify.c (mono_method_verify): extracted common
13863         code for exception initialization into init_stack_with_value.
13865         * verify.c (mono_method_verify): initialize the exception
13866         for handler clauses as well.
13868         * verify.c (mono_method_verify): fix the exception clause
13869         ordering rules, it should use handler end offset and not
13870         start offset.
13872 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13874         * rawbuffer.c: remove useless warning.
13876 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13878         * threads.h, threads-types.h: move functions to the correct header
13879         (fixes bug#349952).
13881 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13883         * verify.c (mono_method_verify): proper verification
13884         of exception handling clauses ranges and fallthru in
13885         and out of protected blocks.
13887 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13889         * verify.c (mono_method_verify): fixed compilation issue.
13891 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13893         * verify.c (mono_method_verify): a printf slipped in, changed
13894         to use verifier debug macro.
13896 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13898         * verify.c (is_correct_leave): check for filter clauses.
13900         * verify.c (do_filter): added.
13902         * verify.c (mono_method_verify): property verification of leave.
13905 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13907         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13908         Win32 build, until we figure out how to do the proper thing on
13909         Win32.
13911 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13913         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13914         by the previous patch.
13915         
13916         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13917         the assembly resolve handler for refonly assemblies.
13919 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13921         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13922         Make sure only one thread is allowed to commence shutdown, and
13923         don't allow new threads to be started once shutdown is in
13924         progress.
13926 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13928         * verify.c (is_correct_endfilter): added.
13930         * verify.c (is_unverifiable_endfilter): added.
13932         * verify.c (do_endfilter): added.
13934         * verify.c (mono_method_verify): property verification of endfilter
13935         and fixed a corner case or endfinally.
13937 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13939         * verify.h: new flags to support fail fast of unverifiable code and
13940         do non-strict verification. Non-strict verification is required to
13941         have MS runtime compatibility. There are a huge amount of unverifiable
13942         code that it accepts as verifiable. The strict mode verifies the code
13943         as the specs says.
13944         Non-strict mode will be required in cases where code needs to be
13945         accepted as verifiable but fails under strict mode.
13947         * pedump.c: added support to fail fast and non-strict verification.
13949         * verify.c: added support for both fail fast and non-strict verification.
13951 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13953         * verify.c (is_correct_endfinally): added.
13955         * verify.c (mono_method_verify): property verification of endfinally.
13957 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13959         * verify.c (in_any_block): check for filter clauses.
13961         * verify.c (is_correct_rethrow): added.
13963         * verify.c (mono_method_verify): property verification of rethrow.
13965         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13967 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13969         * verify.c (do_throw): added.
13971         * verify.c (mono_method_verify): property verification of throw
13973 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13975         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13976         assemblies. Fixes #346425.
13978 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13980         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13981         FieldBuilders.
13983         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13985         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13986         prevent asserts when this is called with a token which might not be valid.
13988         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13989         lookup_dynamic_token_class with valid_token == FALSE.
13991         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13993         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13995         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13996         
13997 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13999         * gc.c: Don't delay threadpool thread finalization unless Mono is
14000         shutting down.
14002 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14004         * threads.c: turn an assert into a non-fatal warning.
14006 2007-12-09  Robert Jordan  <robertj@gmx.net>
14008         * icall.c (GetVirtualMethod): Add missing argument validation.
14010 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14012         * verify.c (do_cast): added.
14014         * verify.c (mono_method_verify): property verification of castclass and isinst.
14017 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14019         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14021         * verify.c (do_stelem): added.
14023         * verify.c (mono_method_verify): property verification of stelem.X.
14025 2007-12-07  Mark Probst  <mark.probst@gmail.com>
14027         * class.c, class-internals.h: Introduce an environment variable
14028         (MONO_GENERIC_SHARING) through which the extent of generic code
14029         sharing can be controlled (share all classes, share only corlib
14030         classes, or share nothing).
14032         * object.c: Only create runtime generic context for classes for
14033         which sharing is enabled.
14035 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14037         * verify.c (do_ldelem): refactor it to work with ldelem.any.
14039         * verify.c (mono_method_verify): property verification of ldelem.any.
14041 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
14043         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14044         added ldelem.X opcodes.
14046         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14048         * verify.c: proper verification of ldelem.X 
14050 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14052         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14054 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14056         * verify.c (mono_method_verify): null literal requires special handling,
14057         the value pushed on stack need to be flagged as so.
14059         * verify.c (do_ldelema): Verify ldelema properly.
14061 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14063         * verify.c: Verify ldlen properly.
14065 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14067         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14068         to the target object's type. Fixes #346160.
14070 2007-12-05  Dick Porter  <dick@ximian.com>
14072         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14073         Solaris needs the same workaround as BSD-derived systems.  Fixes
14074         bug 323524, patch by Burkhard Linke
14075         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14077 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14079         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14080         handle to use when error dialog is shown; otherwise, update mask
14081         to show no error dialog when an error occurs.
14083 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14085         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14087         * class.c (mono_class_get_field_default_value): New helper function to initialize
14088         field->def_type and field->data.
14090 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14092         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14093         the general one.
14095         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14097         * marshal.c: Avoid depending on delegate->method_info being set.
14099         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14100         
14101         * object.c (mono_delegate_ctor): Set delegate->method.
14103         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14105         * appdomain.c: Bump corlib version.
14107 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14109         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14110         equality check if we're comparing canonicalized MonoGenericInsts.
14112 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14114         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14115         accessing class->methods.
14117 2007-11-22  Dick Porter  <dick@ximian.com>
14119         * threads.c: Ensure that the synch_cs is set before trying to use
14120         it.
14122 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14124         * profiler.c: r89126 broke the statistial profiler, unbreak.
14126 2007-11-22  Martin Baulig  <martin@ximian.com>
14128         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14130         * mono-debug.c
14131         (mono_debug_debugger_version): Bump to 3.
14132         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14133         -> mono_debugger_class_initialized().
14135         * mono-debug-debugger.c
14136         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14138         * class.c
14139         (mono_debugger_start_class_init_func): Removed.
14140         (mono_debugger_class_loaded_methods_func): Added.
14141         (mono_class_setup_methods): Call it here.
14143 2007-11-22  Martin Baulig  <martin@ximian.com>
14145         * mono-debug.c
14146         (mono_debug_add_delegate_trampoline): New public method.
14147         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14149         * mono-debug.h
14150         (MonoSymbolTable): Added `global_data_table'.
14151         (MonoDebuggerTypeKind): Removed.
14153 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14155         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14156         these methods.
14158         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14159         
14160 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14162         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14164 2007-11-20  Martin Baulig  <martin@ximian.com>
14166         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14168         * mono-debug-debugger.c
14169         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14170         (mono_debugger_remove_breakpoint): Likewise.
14171         (mono_debugger_check_breakpoints): Likewise.
14172         (mono_debugger_register_class_init_callback): New public method.
14173         (mono_debugger_remove_class_init_callback): Likewise.
14174         (mono_debugger_add_type): Likewise.
14176         * mono-debug-debugger.h
14177         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14179 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14181         * class.c: more interface implementations needed for the
14182         array enumerator (fixes bug #341112).
14184 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14186         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14187         fix ParamName of ArgumentNullExceptions.
14189 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14191         * reflection.c (mono_reflection_encode_sighelper): Generate the
14192         modopts and modreqs.   I have a useless test that crashes monodis,
14193         but that shows the code working.
14195 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14197         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14198         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14200 2007-11-15  Dick Porter  <dick@ximian.com>
14202         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14203         When joining a thread, it's the thread that's calling Join that
14204         gets WaitSleepJoin state not the target.  Fixes the standalone
14205         test case in bug 334740, and hopefully the whole bug too.
14207 2007-11-15  Dick Porter  <dick@ximian.com>
14209         * process.c: Read file version info from the files pointed at by
14210         process modules, not the current process.  Fixes bug 315969.
14212         Use windows typedef names in some places to fix warnings on the
14213         windows build.
14215 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14217         * image.c, metadata-internals.h: Added a generic_class_cache hash
14218         to MonoImage for looking up generic classes when sharing generics.
14220 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14222         * sgen-gc.c: warning cleanups.
14224 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14226         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14227         inherited properties.
14229 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14231         * object.c, class-internals.h: Added more information to the
14232         runtime generic context.
14234 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14236         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14237         instead of just the target method. Generalize the abstract method handling to
14238         handle any non-static method.
14240         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14241         mono_marshal_get_delegate_invoke () signature change.
14243 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14245         * class.c, class-internals.h: Made
14246         mono_type_get_basic_type_from_generic () public.  Fixed member
14247         access check for shared generics.
14249         * loader.c: Don't insert field into field cache if it's part of a
14250         non-inflated generic class.
14252         * domain.c, domain-internals.h: The generic sharing context is now
14253         part of the jit info data structure.  Added two accessor
14254         functions.
14256 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14258         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14259         the array Get/Set/Address methods, since the JIT inlines them.
14261         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14263         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14264         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14266         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14267         mono_marshal_get_delegate_invoke signature change.
14269         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14270         an additional argument. Add support for invoking abstract methods.
14272         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14274         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14276 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14278         * class.c: Do field layout for open generic classes as well.
14280 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14282         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14283         other objects, because the threadpool is still around.  Put them
14284         in a list instead and after finalizing all other objects in the
14285         root domain shut down the thread pool and then finalize the
14286         threads.  Fixes bug #337383.
14288         * threads.c, thread-types.h: New mono_thread_create_internal()
14289         function for marking a thread with the threadpool flag before it
14290         started.  Set synch_cs to NULL after freeing it.
14292         * threadpool.c: Mark threadpool threads before they start.
14294 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14296         * reflection.h, reflection.c: don't export random functions
14297         and lazy load dbnull and missing objects.
14299 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14301         * class.c: Initialize COM types if COM interfaces
14302         are present (not just COM classes).
14303         
14304         Code is contributed under MIT/X11 license.
14306 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14307         * reflection.c:
14308         create_dynamic_mono_image: hook module profiler events (dynamic case).
14309         mono_image_basic_init: hook assembly profiler events (dynamic case).
14311 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14312         * profiler.c:
14313         simple_appdomain_unload: completely terminate the profiler
14314         instead of only processing the statistical samples.
14315         simple_shutdown: make sure this is really called exactly once,
14316         even in multithreaded applications, and always listen to
14317         appdomain events.
14318         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14319         here, the "[un]load" functions will do it.
14320         Fixes bugs #333791 and #325261.
14322 2007-11-07  Geoff Norton  <gnorton@novell.com>
14324         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14325         rather than depend on __APPLE__.
14327 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14329         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14331 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14333         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14334         UTF16 MonoString. Fix the crash from bug #335488
14336 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14338         * marshal.c: Correct (for non-Win32 OS) length != size in 
14339         mono_string_from_bstr. Fix #339530.
14341 2007-11-06  Geoff Norton  <gnorton@novell.com>
14343         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14344         to succeed
14346 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14348         * process.c: Added run-time GetProcessId API detection for Windows.
14350 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14352         * reflection.c  (mono_param_get_objects): If a parameter has the
14353         attribute [System.Runtime.InteropServices.Optional] we should
14354         set the DefaultValue of the ParameterInfo to be
14355         System.Reflection.Missing instead of DBNull.
14357         See bug #339013.
14359         (mono_get_reflection_missing_object): New method,
14360         returns the System.Reflection.Missing.Value singleton instance.
14362 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14364         * culture-info-table.h : regenerated.
14366 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14368         * icall.c: Use GetEnvironmentStrings on windows
14369         so we are using the same environment block as 
14370         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14371         #333740.
14372         
14373         Code is contributed under MIT/X11 license.
14375 2007-10-31  Martin Baulig  <martin@ximian.com>
14377         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14379         * mono-debug-debugger.h
14380         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14382 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14384         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14385         classes.
14387 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14389         * culture-info-table.h : regenerated.
14391 2007-10-30  Robert Jordan  <robertj@gmx.net>
14393         * icall-def.h, icall.c:
14394         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14396         Code is contributed under MIT/X11 license.
14398 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14400         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14401         inflated class instead of inflating them again.
14402         
14403         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14404         dynamic case.
14406         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14407         Call setup_supertypes () after klass->parent is set.
14408         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14410         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14411         for inflated instances of not yet created dynamic generic classes.
14412         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14413         times from inflated_method.
14414         (methodbuilder_to_mono_method): Ditto.
14416 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14418         * gc.c: code cleanup and removed old untested option of not creating the
14419         finalizer thread.
14421 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14423         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14424         creating a jump trampoline for dynamic methods.
14426 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14428         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14429         generic TypeBuilders when called from another method of the same type (bug #335131).
14432 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14434         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14435         doesn't seem to work perfectly.
14436         
14437         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14438         called multiple times.
14439         (methodbuilder_to_mono_method): Ditto.
14440         (resolve_object): Inflate FieldBuilder's.
14442 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14444         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14445         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14446         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14448 2007-10-26  Dick Porter  <dick@ximian.com>
14450         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14451         Thread initialisation changes
14453 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14455         * verify.c: fix compatibility check between arrays and System.Array
14457 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14459         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14460         too. Fixes #336999.
14462 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14464         * object.c (mono_value_box): Use typed allocation here.
14466 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14468         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14469         trampoline instead of compiling the method right away.
14471         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14473 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14475         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14476         related fields for dynamic classes. Fixes #334493.
14478 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14480         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14481         
14482         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14484         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14485         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14487         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14489         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14490         if needed.
14491         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14493 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14495         * marshal.c: Use correct key when removing item
14496         from ccw_hash.
14497         
14498         Code is contributed under MIT/X11 license.
14500 2007-10-17  William Holmes  <billholmes54@gmail.com>
14502         *marshal.c: Adding a case to marshal booleans to U1
14504         Code is contributed under MIT/X11 license.
14506 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14508         * class.c (mono_class_from_name): Search the modules compromising dynamic
14509         assemblies. Fixes #331601.
14511 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14513         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14514         exception if the type name contains an assembly component. Fixes #334203.
14516         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14517         modules inside dynamic assemblies. Fixes #334200.
14518         
14519         * reflection.c: Set image->public_key and image->public_key_length;
14521         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14522         fields.
14524         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14525         
14526 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14528         * metadata.c: Implemented correct comparing of generic classes.
14529         An inflated generic class can be equal to a non-inflated one if it
14530         is inflated with generic type variables as type arguments.  Fixes
14531         bug #333798.
14533 2007-10-15  Dick Porter  <dick@ximian.com>
14535         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14536         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14537         81646.
14539         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14540         instead of a monitor lock.  This means that monitor_try_enter and
14541         co can set the thread state safely.
14542         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14543         thread_interrupt_requested, so interrupt actually works.
14545         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14546         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14547         state accessor function
14549 2007-10-15  Martin Baulig  <martin@ximian.com>
14551         * mono-debug.h
14552         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14553         the debugger with the current runtime.
14555 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14557         * object.c, object-internals.h: added the ability to set a single
14558         trampoline for all the slots in a vtable.
14560 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14562         * marshal.c: deal with a possible race condition during multicast
14563         delegate invocation.
14565 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14567         * class.c: ensure value type methods don't have the synchronized
14568         flag set.
14570 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14572         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14573         breaks the build.
14575 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14577         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14578         to take an options parameter so that empty entries can be removed during
14579         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14581 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14583         * marshal.c: make sure we don't store the signature from a dynamic
14584         method into the runtime invoke cache (bug #327189).
14586 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14588         * marshal.c: make sure the wrapper methods are properly initialized.
14590 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14592         * metadata.c, metadata-internals.h: Generalized
14593         mono_type_stack_size() to mono_type_stack_size_internal() which
14594         takes an additional argument specifying whether it allows open
14595         types.
14597 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14599         * verify.c (do_invoke_method): handle typedbyref params
14600         correctly and check for unverifiable return values.
14602         * verify.c (do_newobj): fix a warning.
14604 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14606         * verify.c: don't tread typedbyref as allways unverifable,
14607         so uses, like (ld/st)loc.0 are valid. verify for the cases
14608         that it matters, like boxing related operations.
14610 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14612         * verify.c: add verification of the newobj opcode. verification
14613         of delegate instantation still missing due ldftn and virldftn not
14614         pushing the function type on stack
14616 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14618         * class-internals.h: Runtime generic context data structure
14619         definition.
14621         * object.c: Initialization of runtime generic context at runtime
14622         vtable creation time.
14624 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14625         * class.c (mono_class_create_from_typedef,
14626         mono_class_from_generic_parameter, mono_ptr_class_get,
14627         mono_fnptr_class_get, mono_bounded_array_class_get)
14628         * domain.c (mono_domain_create, mono_domain_free)
14629         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14630         * image.c (do_mono_image_load, mono_image_close):
14631         Hooked up load-unload profiler events.
14633 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14635         * domain.c: track statistics about the actual amount of native code
14636         allocated.
14638 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14640         * class.c: the valuetype enumerators don't have the additional
14641         supertypes interfaces.
14643 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14645         * class.c: need more interfaces setup for the IEnumerator<T>
14646         object created for arrays (tests/ienumerator-interfaces.2.cs).
14648 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14650         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14652 2007-10-05  Alp Toker  <alp@atoker.com>
14654         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14655         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14656         #315863.
14658 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14660         * verify.c (verify_type_compatibility_full): verification of
14661         compatibility improved, validates correctly non-strict checks between
14662         native int and I4 types different than (unsigned)int32.
14664         * verify.c (do_store_indirect): added, do all verification of
14665         ldind.X opcodes. 
14667         * verify.c (get_load_indirect_mono_type): renamed to
14668         get_indirect_op_mono_type, as it now returns the MonoType for 
14669         ldind.X and stind.X opcodes.
14671 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14673         * reflection.c: Fix the encoding of generic type definition for
14674         TypeBuilders.
14676         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14677         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14678         be made. Typespec check is done prior to typeref cache lookup.
14680         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14681         mono_image_typedef_or_ref_full.
14683         * reflection.c (encode_generic_class): encode the generic class
14684         directly instead of calling encode_type.
14686         * reflection.c (encode_type): encode the generic type definition
14687         MonoClass as a generic instantiation.
14689         * reflection.c (create_typespec): cache typespec tokens in
14690         the assembly->typespec cache. Don't create typespec for a generic
14691         instance MonoClass. Create typespec for the generic type defintion.
14693         * reflection.c (create_generic_typespec): encode the generic
14694         class directly instead of calling encode_type.
14696         * reflection.c (mono_image_create_token): encode the generic
14697         type definition not using a typespec for MonoType instances.
14700 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14702         Fix #328812
14703         * class.c (mono_image_init_name_cache): Don't return nested
14704         'protected internal' classes.
14705         (mono_class_from_name_case): Likewise.
14707 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14709         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14710           common function used by both DefaultConfig in System.dll and
14711           InternalConfigurationHost in System.Configuration.dll.
14713 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14715         * class.c: automatically add to vectors only a few essential explicit
14716         generic interfaces. The rest of the interfaces that arrays should
14717         provide are currently implicitly added (but still not lazily, see the
14718         design in the discussion of bug#325495 for the details of what is
14719         needed for that). Additionally, implicit interfaces are assigned the
14720         same vtable slot as the explicit interfaces (as they are compatible):
14721         this enables huge memory savings since we don't need to instantiate
14722         as many memthods and as large vtables anymore. Also, Since
14723         GetEnumerator<T> returns an instance of a type that is required to
14724         support a similarly large set of interfaces as arrays, we add
14725         implicit interfaces and interface offset sharing support to those
14726         types, too. This change adds all the required interfaces so that
14727         the anonarray.cs test case in the bug report works (we don't add
14728         all the interfaces to arrays of arrays 3-level deep and more because
14729         of the memory requirements explained in the bug and since they are much
14730         less common: the lazy-loading support will enabled them to work, too).
14732 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14734         * verify.c (merge_stacks): major clean up, all type compatibility
14735         checks are done by verify_type_compatibility. This fix my earlier lack
14736         of understanding of the CLR type system and merge_stacks no longer looks
14737         scary.
14739         * verify.c: fixed some bad spelling.
14741 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14743         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14744         a given stack slock.
14745         
14746         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14747         verify_type_compatibility_full. This removed a near indentical function and fixed
14748         handling of Int32 and IntPtr across all opcodes.
14750 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14752         * class.c: only vectors have the additional generic interfaces.
14754 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14756         * mono-config.c: Use g_strcasecmp instead of
14757         strcasecmp like everywhere else to fix
14758         compilation with MSVC.
14759         
14760         Code is contributed under MIT/X11 license.
14762 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14764         * object.c, object-internals.h: refactored the IMT code to enable
14765         building a single slot at a time and lazily creating the IMT trampolines
14766         and thunks.
14768 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14770         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14772         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14773         Fixes #328501.
14774         
14775 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14777         * loader.c (method_from_methodspec): Rearrange to avoid
14778         un-necessary exposition.  Don't assert out if the method's
14779         declaring type is a generic type definition.
14781 2007-09-28  Martin Baulig  <martin@ximian.com>
14783         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14785 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14787         * class-internals.h: optimize field layout of MonoClass to
14788         requires less cachelines at runtime and save a few bytes on 64 bit
14789         systems.
14791 2007-09-28  Jb Evain  <jbevain@novell.com>
14793         * reflection.c: when encoding type names in custom attributes,
14794         if the type is a closed generic type, its generic arguments
14795         have to be serialized as AssemblyQualifiedName, so that when
14796         they are deserialized, it's possible to re-create them properly.
14797         Fixes #329450.
14800 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14802         * object.c, class-internals.h: added delegate-creation counter.
14804 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14806         * class.c: cleanup of the code that synthetizes interfaces for
14807         arrays in 2.0: saves quit a bit of corlib mempool memory.
14808         Code to fix bug #325495 ifdeffed out for now until the issues
14809         with memory usage and O(n^2) behaviour are fixed.
14811 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14813         * marshal.c: when possible, do not duplicate the name of the methods
14814         in the method builder and in the generated MonoMethod.
14816 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14817         * verify.c: added support for type checking ldind_* opcodes.
14819 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14821         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14822         which is used to distinguish the fully open instantiation of a TypeBuilder
14823         with the rest. This temporary hack is required to restore the property that
14824         the fully open instantiation is the same type of the generic type definition.
14826         * class-internals.h (mono_generic_class_is_generic_type_definition):
14827         new function as part of the internal API.
14829         * class.c (inflate_generic_type): return NULL when the generic inst is
14830         fully open. The fully open generic type is now the same as the generic type
14831         definition for non TypeBuilder types.
14833         * class.c (mono_generic_class_get_class): removed assert since it is
14834         no longer valid, gklass->cached_class can point to the generic type definition.
14836         * class.c (mono_generic_class_is_generic_type_definition): new.
14838         * metadata.c (mono_generic_class_hash): added is_tb_open field
14839         to the hash calculation.
14841         * metadata.c (free_generic_class): if the generic class is associated
14842         with the generic type definition, its field will come from the mempool and
14843         must not be freed.
14845         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14846         new, this function identifies the corner case of a TypeBuilder fully open
14847         instantiation.
14849         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14850         for lookup. Set gclass->cached_class to be the container class in case of
14851         the fully open instantiation of non TypeBuilder types.
14853         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14854         to compare generic classes.
14856         * reflection.c (method_encode_methodspec): remove assert that
14857         no longer is valid.
14859         * reflection.c (mono_reflection_generic_class_initialize): add
14860         an aditional assert to ensure the proper type is used.
14862 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14864         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14865         to enjoy it.
14867 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14869         * verify.c (push_arg): Fixed support for ldarga
14870         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14871         MonoType used as first arg in case of instance calls.
14873 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14875         * verify.c: Support for verifying VAR and MVAR types, 
14877 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14879         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14880         accessors correctly.
14882 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14884         * threads.c: support OSX and other systems in
14885         mono_thread_get_stack_bounds (bug #328026).
14887 2007-09-25  Martin Baulig  <martin@ximian.com>
14889         * mono-debug.h
14890         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14892 2007-09-24  Martin Baulig  <martin@ximian.com>
14894         * mono-debug.h
14895         (MonoDebugClassEntry): Moved the definition of this struct into
14896         mono-debug.c to make it private.
14898         * mono-debug.c
14899         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14900         type table per symbol file, we don't need to store the symfile id
14901         any longer.
14903 2007-09-24  Martin Baulig  <martin@ximian.com>
14905         Create one type table per symbol file, since a `MonoClass *' gets
14906         invalid when its image is unloaded.
14908         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14909         (MonoDebugHandle): Added `type_table'.
14911 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14913         * mempool.c, mempool.h: added mono_mempool_new_size () API
14914         to be able to specify a smaller initial size for the pool.
14915         Adjusted the code to slowly increase pool size before using
14916         the previous default size.
14917         * image.c: use a small initial size for image mempools.
14919 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14921         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14922         Fixes ##320990.
14924         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14925         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14927 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14929         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14930         free. Fixes #327438.
14932 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14934         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14935         generic instantiations, etc.
14936         <MONO_TYPE_ARRAY>: Likewise.
14938 2007-09-21  Martin Baulig  <martin@ximian.com>
14940         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14941         these structs were never defined.
14942         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14944 2007-09-21  Martin Baulig  <martin@ximian.com>
14946         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14948 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14950         * image.c: removed the guid hash tables: we can get the same info
14951         without the additional memory usage hit (partially fixes also bug #327052).
14953 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14955         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14956         event to handle unloading methods. After the event is called, the
14957         corresponding MonoMethod* must be considered invalid.
14958         * loader.c (mono_free_method): call the new mono_profiler_method_free
14959         event.
14961 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14963         * domain-internals.h: New flag in MonoJitInfo which marks shared
14964         generic methods.  New hash table (shared_generics_hash) in
14965         MonoDomain to keep track of shared generic methods.  Prototypes
14966         for functions to register and lookup shared generic methods.
14968         * domain.c: Support for registering and looking up shared generic
14969         methods via a hash table (shared_generics_hash) in MonoDomain.
14971         * class-internals.h: New exception to signal failure of shared
14972         compilation of a generic method.  New counters for generics
14973         sharing in MonoStats.
14975 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14977         * image.c, metadata-internals.h: don't keep a file descriptor open
14978         for loaded assemblies (bug#325988).
14980 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14982         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14983         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14984         use the corresponding datatypes.
14985         (type_in_image): Update to changes.
14986         (CleanForImageUserData): Simplify.
14987         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14988         Avoid quadratic behaviour in handling the "stolen" list by
14989         separating the filter predicate out, and by prepending the stolen
14990         items rather than appending them.
14991         (steal_ginst_in_image): Likewise.
14992         (mono_metadata_clean_for_image): Update to changes.
14994 2007-09-19  Martin Baulig  <martin@ximian.com>
14996         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14998 2007-09-19  Martin Baulig  <martin@ximian.com>
15000         * mono-debug.c (mono_debug_cleanup): Don't call
15001         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
15003 2007-09-19  Raja R Harinath  <harinath@gmail.com>
15005         Fix crash on 'make run-test' in mcs/errors
15006         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
15007         Avoid more potential allocations in mono_class_from_mono_type.
15008         (ginst_in_image): Update to changes.
15009         (gclass_in_image): Rearrange slightly.
15011 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15013         * class.c (mono_class_init): Move the code that sets up class->methods to 
15014         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15016         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15017         canonical instance of an inflated generic signature.
15018         (mono_type_create_from_typespec): Remove an invalid free.
15020         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
15022 2007-09-18  Marek Habersack  <mhabersack@novell.com>
15024         * domain-internals.h: added a declaration of the
15025         mono_assembly_load_full_nosearch internal function.
15027         * assembly.c (mono_assembly_load_with_partial_name): use
15028         mono_try_assembly_resolve return value properly.
15029         (mono_assembly_load_full_nosearch): copied the function body from
15030         mono_assembly_load_full, without the code to invoke assembly
15031         search hooks.
15032         (mono_assembly_load_full): calls the above new function and if the
15033         assembly is not resolved, invokes the search hooks.
15035         * appdomain.c (mono_runtime_init): restore the global postload
15036         assembly search handlers.
15038 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
15040         * class.c (mono_class_init): Make sure class->methods and class->properties
15041         are never NULL in the generics case.
15043         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15045 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15047         * metadata.c (free_generic_class): Disable some code to fix the build.
15049         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15051         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15052         from the image mempool.
15054         * metadata.c (free_generic_class): Free more data from the inflated class.
15056         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15058         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15059         mempool.
15060         (mono_type_create_from_typespec): Ditto.
15062         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15063         MonoImage to the caller.
15064         (mono_init_internal): Save the opened image in a global variable.
15065         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15067         * reflection.c (resolve_object): Fix a leak.
15069         * metadata.c: Fix the freeing of data in the generics caches.
15070         
15071         * metadata.c (free_generic_inst): Comment this out to fix the build.
15072         (free_generic_class): Ditto.
15074         * metadata.c: Free cached generic methods, instantinations and classes when
15075         they are removed from the caches.
15076         (mono_metadata_free_type): Free the type itself.
15078         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15079         places.
15081 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15083         * boehm-gc.c: restrict managed allocs to __thread supporting
15084         architectures.
15086 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15088         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15089         (mono_generic_class_get_class): Fix a leak.
15091         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15092         mono_metadata_free_type ().
15093         (mono_metadata_inflate_generic_inst): Fix a leak.
15095 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15097         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15099         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15100         mempool.
15102         * mono-debug.c (mono_debug_close_image): Fix call to 
15103         g_hash_table_remove ().
15105 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15107         * icall-def.h: redirect all the string ctor to the managed
15108         CreateString () methods.
15109         * string-icalls.c, string-icalls.h: removed dead code for string
15110         ctors and icalls.
15112 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15114         * mono-debug.c: Fix memory leaks.
15116 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15118         * threads-types.h: Implement mono_hazard_pointer_set and 
15119         mono_hazard_pointer_clear macros using do/while(0) to fix
15120         compilation with MSVC.
15121         
15122         Code is contributed under MIT/X11 license.
15124 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15126         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15127         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15129 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15131         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15132         icalls.
15134 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15136         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15137         managed-code allocated as well.
15139 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15141         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15143 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15145         * boehm-gc.c: fixed the build after the AOT changes.
15147 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15149         * wrapper-types.h: Add an ALLOC wrapper type.
15151         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15152         reference managed allocator methods.
15154 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15156         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15157         of Type array and not MonoType, a fix suggested by Hari.
15158         
15159 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15161         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15162         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15163         
15164         Code is contributed under MIT/X11 license.
15166 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15168         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15170 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15172         * image.c (do_mono_image_open): if assembly file fails to open and
15173         MONO_IOMAP is in effect, try to find the path in a
15174         case-insensitive way.
15176         * appdomain.c (mono_runtime_init): do not install postload hooks -
15177         tests show that MS.NET doesn't use anything of that sort to
15178         trigger the AppDomain.AssemblyResolve event.
15179         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15180         made non-static.
15181         (mono_runtime_init): init portability helpers here.
15183         * assembly.c (mono_assembly_load_with_partial_name): if other   
15184         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15185         to resolve the assembly.
15187         * domain-internals.h: added mono_try_assembly_resolve and marked
15188         it as internal.
15190 2007-09-11  Jb Evain  <jbevain@novell.com>
15192         * object-internals.h (MonoReflectionDynamicMethod): add
15193         a `MonoReflectionType *owner` field. The owner is used
15194         * reflection.c:
15195         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15196         method as the class declaring the dynamic method.
15197         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15198         dynamic method to the declaring type of the methodbuilder.
15200 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15202         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15203         rules for calling methods via reflection.
15205 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15207         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15208         Inflate MonoType's.
15210 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15212         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15213         provide a managed method that does fast allocations without needing
15214         a managed->unmanaged transition. Boehm GC implementation currently
15215         enabled for ptrfree objects on sane architectures.
15217 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15219         * marshal.c, marshal.h: exported a couple of useful functions and
15220         added mono_mb_get_label () to easily handle backward branches.
15222 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15224         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15226 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15228         * loader.c (find_method): Fixed the regression introduced while
15229         fixing bug #81466.
15231 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15233         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15234         well.
15235         
15236         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15237         icall.c reflection.c: Pass a MonoGenericContext argument to 
15238         mono_lookup_dynamic_token ().
15240         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15241         #82744.
15242         
15243 2007-09-09  Robert Jordan  <robertj@gmx.net>
15245         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15246         for generic methods.
15248         * object.c (mono_object_get_virtual_method): Handle generic methods.
15249         Fixes bug #78882.
15251         Code is contributed under MIT/X11 license.
15253 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15255         * image.c: fix locking in mono_image_load_file_for_image ().
15257 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15259         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15260         used only as a cache: added an icall to fill it.
15262 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15264         * reflection.h: exposed mono_reflection_free_type_info
15265         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15266         since mono_reflection_bind_generic_parameters makes a copy of it.
15267         * reflection.c (free_type_info): subinfos should be freed.
15268         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15269         made non static.
15270         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15271         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15272         this fixes #82695 and #81726.
15273    
15275 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15277         * process.h, process.c:  added support for user profile/info in
15278           ProcessStartInfo. For now only Windows works.
15280 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15282         * metadata.c: consider the generic arguments when comparing
15283         signatures (bug #82614).
15285 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15287         * cil-coff.h, image.c: updated assembly loader to cope with the
15288         PE32+ 64 bit file format.
15290 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15292         * assembly.c, class.c, domain.c, loader.c: remove useless
15293         inclusion of cil-coff.h.
15295 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15297         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15298         if interface is marked with CoClassAttribute. 
15299    
15300         Code is contributed under MIT/X11 license.
15302 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15304         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15305         if it's seen twice in major collections.
15307 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15309         * sgen-gc.c: big objects are not copied to the gray area, but they
15310         need to be considered for scanning, too, if they are brought alive
15311         by an object ready for finalizations or a survived one.
15313 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15315         * sgen-gc.c: properly account the number of disappearing links when
15316         they are nullified.
15318 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15320         * sgen-gc.c: share the code to scan the registered roots between the
15321         different types of collections.
15323 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15325         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15327 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15329         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15330         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15332 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15334         * security-manager.c (mono_security_manager_get_methods):
15335         LinkDemandSecurityException now has 2 arguments instead of 3.
15337 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15339         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15340         platforms which need it.
15342 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15344         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15345         dtor.
15347 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15349         * threads.c: free the thread static data on thread exit.
15351 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15353         * class.c: walk the hierarchy to find the generic definition for
15354         a class (fixes runtime part of bug #82498).
15356 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15358         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15359         ...
15361         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15363 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15365         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15367 2007-08-24  Robert Jordan  <robertj@gmx.net>
15369         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15371 2007-08-24  Jb Evain  <jbevain@novell.com>
15373         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15374         for byref types.
15376 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15378         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15379         #82286.
15381 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15383         * assembly.c: Fix a warning.
15384         
15385 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15387         * appdomain.c: parse the <runtime> section looking for the probing
15388         element with the 'privatePath' attribute, which sets additional
15389         directories in which the runtime should look for assemblies.
15391 2007-08-23  Robert Jordan  <robertj@gmx.net>
15393         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15394         Fixes #82499.
15396 2007-08-23  Martin Baulig  <martin@ximian.com>
15398         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15399         _mono_debug_init_corlib() and remove it from the header file.
15401 2007-08-23  Martin Baulig  <martin@ximian.com>
15403         * mono-debug-debugger.c
15404         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15405         don't notify the debugger about it.
15407         * mono-debug-debugger.h
15408         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15410 2007-08-23  Robert Jordan  <robertj@gmx.net>
15412         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15413         Code is contributed under MIT/X11 license.
15415 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15417         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15419 2007-08-22  Martin Baulig  <martin@ximian.com>
15421         * mono-debug.c: Store debugging info on a per-domain basis and
15422         free it on domain unload.  Add support for unloading symbol files.
15424         * mono-debug.h
15425         (MonoDebugList): New typedef.
15426         (MonoSymbolTable):
15427         - add `data_tables and `type_table'.
15428         - replace 'symbol_files' and `num_symbol_files' with a
15429           `MonoDebugList *'.
15430         (mono_debug_data_table): Removed.
15431         (mono_debug_list_add): New public function.
15432         (mono_debug_list_remove): New public function.
15433         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15434         (mono_debug_init_2_memory): Renamed into
15435         mono_debug_open_image_from_memory().
15436         (mono_debug_close_image): New public function.
15437         (mono_debug_domain_create): Likewise.
15438         (mono_debug_domain_unload): Likewise.
15439         (MONO_DEBUGGER_VERSION): Bump to 60.
15441         * mono-debug-debugger.h
15442         (MonoDebuggerEvent):
15443         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15444         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15445         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15446         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15447           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15448         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15449           meaning.
15450         (mono_debugger_add_symbol_file): Removed.
15451         (mono_debugger_add_type): Removed.
15452         (mono_debugger_lookup_type): Removed.
15453         (mono_debugger_lookup_assembly): Removed.
15455         * domain.c
15456         (mono_domain_create): Call mono_debug_domain_create().
15457         (mono_init_internal): Call mono_debug_init_corlib().
15459         * assembly.c
15460         (mono_assembly_close): Call mono_debug_close_image().
15462 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15464         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15465         mmap call.
15467 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15469         * sgen-gc.c: ensure section->pin_queue_end is initialized
15470         correctly when non pinning objects in the section have been found.
15472 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15474         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15475         containing a list of directories separated by ':'. MSDN docs say
15476         the directories should be separated with ';'. Part of a bugfix for
15477         bug #81446
15479 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15481         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15482         it should MonoType and not MonoClass.
15484 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15486         * culture-info-table.h : regenerated.
15488 2007-08-20  William Holmes  <billholmes54@gmail.com>
15490         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15491          to call ReplaceFile Kernel32 on windows or in io-layer.
15492         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15493         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15494          as an internal call.
15496         Code is contributed under MIT/X11 license.
15498 2007-08-20  Jb Evain  <jbevain@novell.com>
15500         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15501         and MONO_EXCEPTION_FIELD_ACCESS.
15503         * debug-helpers.[c|h]: new mono_field_full_name function.
15505 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15507         * class.c: Removed class_security_level() and moved it to
15508         security-core-clr.c.
15510         * security-core-clr.c, security-core-clr.h: class_security_level()
15511         is now public and renamed to mono_security_core_clr_class_level().
15512         It also looks for security attributes in the classes a class is
15513         nested in.
15515 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15517         * security-core-clr.c, security-core-clr.h: CoreCLR security
15518         utility functions.
15520         * Makefile.am: Added security-core-clr.[ch].
15522         * security-manager.c, security-manager.h: Functions and enum for
15523         setting and getting the security mode.
15525         * class.c: CoreCLR security checks.
15527 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15529         * icall-def.h, process.c, process.h: implemented icall to get
15530         user/system processor times.
15532 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15534         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15535         reader-lock-free jit_info_table.
15537 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15539         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15541         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15543         * object-internals.h (MonoException): Add missing _data member.
15545 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15547         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15548         checking that only methods with matching qname or fqname are picked
15549         from implemented interfaces.
15551 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15553         * verify.c (do_newarr):added, do type verification of
15554         newarr ops, push the right value on the eval stack.
15555         * verify.c (mono_method_verify): use do_newarr
15558 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15560         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15561         factored the common code into get_boxable_mono_type, which
15562         is now using mono_type_get_full, this fixed byref related tests.
15564 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15566         * class.c: added mono_type_get_full, this function has the same
15567         behavior of mono_class_get_full but the returned MonoType has
15568         all metadata of the associated token in case of a typespec token.
15569         * class.c: added mono_type_retrieve_from_typespec, used by 
15570         mono_type_get_full to retrieve the token type.
15571         * class.c (mono_class_create_from_typespec): changed to use
15572         mono_type_retrieve_from_typespec.
15573         * class.c (mono_ldtoken): changed to use mono_type_get_full
15574         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15575         * class-internals.h: exported mono_type_get_full for internal use.
15577 2007-08-16  Jb Evain  <jbevain@novell.com>
15579         * domain.c (supported_runtimes): add entry for
15580         the 'moonlight' runtime version.
15582 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15584         * verify.c (mono_method_verify): small typo sliped in.  
15586 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15588         * verify.c (do_unbox_value): added, do type verification of
15589         unboxing ops
15590         * verify.c (mono_method_verify): use do_unbox_value
15593 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15595         * verify.c (dump_stack_value): fixed typo, was printing string
15596         instead of object on stack.
15597         * verify.c (do_box_value): moved the byref check up as it leads
15598         to invalid code and should be done earlier.
15599         * verify.c: improved error messages for and ldobj
15601 2007-08-15  William Holmes  <billholmes54@gmail.com>
15603         * marshal.c (emit_marshal_custom): Omit the call to 
15604           marshal_native_to_managed when calling native to managed 
15605           and the argument is specified as an out argument.
15607         Code is contributed under MIT/X11 license.
15609 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15611         * verify.c: fixed the type checks for generics, function pointers and vectors.
15612         Added type verification for ldobj and ldtoken. The verifier
15613         would segfault if header or signature of a method contained references
15614         to non-existant types.
15616 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15618         * marshal.c (cominterop_get_ccw): Patch from
15619         Bill Holmes to no walk up interface hierarchy. 
15620         All parent methods should be present in the interface for COM.
15621    
15622         Code is contributed under MIT/X11 license.
15624 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15626         * marshal.c (emit_marshal_com_interface): Patch from
15627         Bill Holmes to handle COM Interfaces as return values
15628         for native->managed calls.
15629    
15630         Code is contributed under MIT/X11 license.
15632 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15634         * marshal.c (cominterop_get_idispatch_for_object): Implement
15635         for runtime callable wrappers.
15636    
15637         Code is contributed under MIT/X11 license.
15639 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15641         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15642         so 2.0 types are accessible
15645 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15647         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15648         once we load mscorlib.   Due to the order in which we initialize,
15649         the mono_assembly_load_full routine that loads mscorlib did not
15650         load friends.   We now load it once we load the
15651         mono_defaults.internals_visible_class class. 
15653         * assembly.c: Expose the mono_load_friend_assemblies method.
15655 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15657         * verify.c: improved the handling of boxing, better
15658         type checking for unary ops and conversion. Fix bug
15659         regarding managed pointer compatibility checking
15661 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15663         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15665         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15667 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15669         * reflection.c (dup_type): Remove.
15670         * class.c (dup_type): Remove.
15671         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15672         instead of the dodgy 'dup_type'.
15673         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15674         handle the case where 'dup_type' needed the second argument.
15676 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15678         * domain.c: Fix a warning.
15680 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15682         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15683         checking that methods with the same fqname are not overridden
15684         with a method from an ancestor.
15686 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15688         * threads.c (free_thread_static_data_helper): Avoid a crash if
15689         thread->static_data is not yet set.
15691 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15693         * marshal.c: Use correct image when emitting
15694         native wrapper for COM calls.
15695    
15696         Code is contributed under MIT/X11 license.
15698 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15700         * icall-def.h, security.c, security.h :
15701           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15703 2007-08-07  Martin Baulig  <martin@ximian.com>
15705         * mono-debug-debugger.h
15706         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15708         * domain.c (mono_domain_free): Call
15709         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15711 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15713         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15714         * verify.c (in_same_block): code should test if either offset is inside the clauses
15715         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15716         and filter blocks
15718 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15720         * image.c (mono_image_close): Fix a leak.
15722         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15724         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15726 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15728         * domain.c, threads.c, threads-types.h: fix memory retention issue
15729         with thread static variables not being cleared on domain unload.
15730         Reuse thread static slots after domain unload.
15732 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15734         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15735         nullable type.
15737         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15738         now done in mono_runtime_invoke_array.
15740         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15741         receiver is a nullable type.
15743         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15744         generic parameter.
15746 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15748         * marshal.c: Implement COM Objects as return type for 
15749         managed->unmanaged calls. Added Release calls for COM Object
15750         out/return values in managed->unmanaged calls.
15752         Code is contributed under MIT/X11 license.
15754 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15756         * threads.h, threads-type.h: move the hazard pointer declarations
15757         to the private header.
15759 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15761         * file-io.c, appdomain.c: memory leak fixes.
15763 2007-08-02  Dick Porter  <dick@ximian.com>
15765         * socket-io.c
15766         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15767         SO_REUSEADDR setting into io-layer/sockets.c.
15769 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15771         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15772         from Object when called on a generic parameter. Fixes #82211.
15774 2007-08-01  Dick Porter  <dick@ximian.com>
15776         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15777         Fixes bug 79250 yet again.
15779 2007-07-30  Martin Baulig  <martin@ximian.com>
15781         Merged the `debugger-dublin' branch.
15783         * mono-debug.h
15784         (MonoDebugDataTable): New typedef.
15785         (MonoDebugMethodAddressList): New typedef.
15786         (MonoDebugWrapperData): Removed.
15787         (MonoDebugSymbolTable): Removed `current_data_table',
15788         `current_data_table_size', `current_data_table_offset'.
15789         (MonoDebugDataItemType): Moved into mono-debug.c.
15790         (MonoDebugMethodJitInfo): Remove `address'.
15791         (mono_debug_data_table): New global variable.
15792         (mono_debug_lookup_method_addresses): New public function.
15793         (mono_debug_find_method): Take a `MonoMethod *', not a
15794         `MonoDebugMethodInfo *'.
15796         * mono-debug.c: Drop support for the old symbol tables.
15798 2007-06-28  Martin Baulig  <martin@ximian.com>
15800         * mono-debug.c (mono_debug_debugger_version): New public variable.
15802 2007-07-31  William Holmes  <billholmes54@gmail.com>
15804         * metadata.c Changed mono_type_create_from_typespec to not insert
15805           the type into the hash map until after
15806           do_mono_metadata_parse_type has completed.
15807         Fixes Bug #82194
15808         Code is contributed under MIT/X11 license.
15810 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15812         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15813         generic parameter. Fixes #82211.
15815 2007-07-27  Jb Evain  <jbevain@novell.com>
15817         * pedump.c (dump_metadata, dump_metadata_header): dump
15818         versions contained in the metadata header.
15820 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15822         * threads.c: register small_id_table with the GC.
15824 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15826         * threads.c, threads.h, class-internals.h, object-internals.h:
15827         Hazard pointers, to be used by lock-free parallel algorithms.
15829 2007-07-26  Dick Porter  <dick@ximian.com>
15831         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15832         routine on non-windows platforms, as I've not managed to think of
15833         a non-kludgy way of doing this.  Finishes off bug 78739.
15835 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15837         * object.c: properly setup interface_bitmap in proxy vtables.
15839 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15841         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15842         to create unique shadow copy target directories, use the domain's
15843         serial number instead. Each domain gets a unique target directory
15844         that way.
15846         * domain.c (mono_domain_create): added code to increment domain
15847         shadow copy serial number and cache the value in the current
15848         domain structure.
15850         * domain-internals.h (struct _MonoDomain): added a new field -
15851         shadow_serial to hold the serial number used in generation of
15852         shadow-copy directories. This is to make sure that the directory
15853         name is unique for each and every domain created. We avoid a race
15854         condition with overriding assemblies already in use by other app
15855         domains.
15857 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15859         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15860         binding generic parameters.
15862 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15864         * metadata.c (do_mono_metadata_parse_generic_class): Use
15865         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15866         error.
15868 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15870         * loader.c, class-internals.h, reflection.c: removed the per-method
15871         generics hashtable: we use the global one through the call of
15872         mono_class_inflate_generic_method ().
15874 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15876         * class.c, metadata.c, class-internals.h: introduce yet another
15877         generics global cache for inflated methods (fixes 98% of the perf
15878         issue in bug #81806).
15880 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15882         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15883         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15884         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15885         return a MonoGenericInst containing (a copy) of those types.
15886         (mono_metadata_inflate_generic_inst): Update to changes.
15887         (mono_metadata_parse_generic_inst): Likewise.
15888         (mono_get_shared_generic_inst): Likewise.
15889         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15890         (mono_reflection_bind_generic_method_parameters): Likewise.
15891         * metadata-internals.h: Likewise.
15892         * icall.c (free_generic_context): Kill.
15893         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15895         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15896         mono_metadata_type_dup.
15897         * marshal.c (mono_mb_create_method): Likewise.
15899         * metadata.c (mono_metadata_type_dup): Rename from
15900         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15901         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15902         * marshal.c, metadata-internals.h: Update to changes.
15904 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15906         * class.c: fixed a small leak for array classes and removed warning.
15908 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15910         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15911         Return 0x8000000 for return parameters. Fixes #82161.
15913 2007-07-21  Marek Habersack  <grendello@gmail.com>
15915         * appdomain.c (get_shadow_assembly_location): append the current
15916         ticks value to the path. Avoids overwriting the same assemblies by
15917         several threads at the same time.
15919 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15920         and Raja R Harinath  <rharinath@novell.com>
15922         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15923         Simplify slightly.
15924         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15925         property for testing if a method is a generic method definition.
15927 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15929         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15931 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15933         * verify.c: used function from private branch, reverted to the one in class.h 
15935 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15937         * verify.c: a typo slipped in and the code wont compile
15939 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15941         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15942         disabled box instruction as it is doing the wrong thing
15943         improved stack dump messages, now it is easier to debug type related issues
15946 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15948         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15950 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15952         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15953         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15954         grouped with class and valuetype. This change will simply 
15955         the code as it should be handled just like unmanaged pointers.
15957 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15959         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15961 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15963         * verify.c: several stack merge issues fixed, reference comparisons now
15964         check the type size. strict type check now works correctly.
15965         added more uses of IS_MANAGED_POINTER macro.
15966         fixed issues pointed by running the test suite against .net.
15967         
15969 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15971         * class.c, loader.c, class-internals.h: Removed the
15972         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15973         defines.
15975         * icall.c: Better error checking in some internal reflection
15976         methods.
15978 2007-07-18  William Holmes  <billholmes54@gmail.com>
15980         * filewatcher.c : removed unused variable 'filename' in 
15981           ves_icall_System_IO_FSW_SupportsFSW
15983 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15985         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15986         obsolete, removed.
15988 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15990         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15991         
15992         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15994 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15996         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15997         Implement generics support.
15998         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16000         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
16001         type_args and method_args arguments.
16002         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
16003         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
16004         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
16006 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
16008         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16009           It adds a rootimage parameter to mono_reflection_get_type_internal,
16010           adds new function mono_reflection_get_type_with_rootimage and use
16011           the rootimage to resolve the types instead of the current image
16013 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
16015         * culture-info-table.h: Forgot to update after r78304.
16017 2007-07-13  Raja R Harinath  <rharinath@novell.com>
16019         * class.c (mono_class_is_open_constructed_type)
16020         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16022 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
16024         * class.c (mono_bounded_array_class_get):  method fails if used with
16025         an incomplete TypeBuilder enum (no basetype field), fixed it by 
16026         avoiding calculating the size for such array as it cannot be instantiated.
16027         Fix bug #82015
16029 2007-07-12  Raja R Harinath  <rharinath@novell.com>
16031         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16032         field.
16033         * metadata.c, reflection.c: Update to changes.
16035 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
16037         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16038         mono_class_is_valid_enum, they are used to valide a enum when loading.
16039         * reflection.c: used new functions to throw TypeLoadException when and
16040         invalid enum is build with TypeBuilder. Fixes #82018
16041   
16042 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16044         * object.c: forgot commit of mono_class_setup_methods () to access
16045         iface->methods.
16046         * object-internals.h: added a few more handy fields to
16047         MonoIMTCheckItem.
16049 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16051         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16052         iface->methods.
16054 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16056         * class-internals.h, object-internals.h, object.c: IMT-based
16057         interface invocation core from Massimiliano Mantione
16058         (massi@ximian.com) with a reworked arch-specific interface,
16059         bsearch implementation and a few bugfixes and memory savings by me.
16061 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16063         * class.c (mono_class_create_from_typedef): mono would segfault if 
16064         an enum did not have a __value field. It now throws a TypeLoadException
16065         for such cases. Fix bug #82022
16067 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16069         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16071 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16073         * class.c (mono_class_init): If a class is already inited but has
16074         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16076 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16078         * class.c: Properly handle the case of an unimplemented interface
16079         method.  Fixes: 81673.
16081 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16083         * class-internals.h, object.c: cleanup patch from massi: use
16084         MonoVTable->interface_bitmap since the vtable interfaces offset array
16085         is going away.
16087 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16089         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16090         GetMDStreamVersion icall instead.
16092 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16094         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16095         not use mono_dl_build_path() with a full library name: makes
16096         fallbacks to libgaim and libfam work.
16098 2007-07-06  William Holmes  <billholmes54@gmail.com>
16100         * assembly.c: Added a continue statement in probe_for_partial_name when
16101          parse_assembly_directory_name fails.  Fixes : 82002
16103 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16105         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16106         and added a verification  for TYPEDBYREF.
16107         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16108         make native int interchangeable with int32 and some small cleanup and formating.
16109         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16110         handle byref of byref.
16111         * verify.c (push_local): handle byref of byref.
16112         * verify.c (do_binop): invalid mix of values is unverifiable
16113         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16114         added visibility checks
16115         * verify.c (field related method): added visibility checks
16116         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16118 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16120         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16121         string.
16123 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16125         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16127         * marshal.c (emit_marshal_string): When returning a string from managed code,
16128         allways make a copy even for unicode strings. Fixes #81990.
16130 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16132         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16133         of byref generic inst types (bug #81997).
16135 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16137         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16138         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16140 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16142         * marshal.c (emit_marshal_string): Add support for unicode strings in
16143         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16145 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16147         * verify.c: field load/store are now verified, missing only access checks now
16149 2007-06-28  Martin Baulig  <martin@ximian.com>
16151         * mono-debug.c (mono_debug_debugger_version): New public variable.
16153 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16155         * locales.c: When constructing DateTimeFormat or NumberFormat for
16156         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16157         MonoCultureInfo contructed from the current locale is always
16158         read-only and has UseUserOverride set to true. All MonoCultureInfo
16159         instances returned for GetCultures have both IsReadOnly and
16160         UseUserOverride set to true. Fixes part of bug #81930.
16162 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16164        * icall-def.h: Update System.__ComObject icalls
16165        * marshal.c: Avoid managed transition (and object creation)
16166        when looking up COM interface in RCW.
16167        * marshal.h: Ditto.
16168        
16169        Code is contributed under MIT/X11 license.
16171 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16173         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16174         to avoid crashes during assembly unloading.
16176 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16178         Fix MethodInfo.IsGenericMethodDefinition
16179         * reflection.c (mono_reflection_bind_generic_method_parameters):
16180         Rearrange code to ensure we always uses a generic method definition.
16181         * class.c (mono_class_inflate_generic_method_full): Set
16182         'generic_container' field only for generic method definitions.
16183         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16184         Use presense of 'generic_container' field as indication of being a
16185         generic method definition.
16187 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16189         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16191         * object-internals.h: Reflect changes in the layout of the managed Delegate
16192         class.
16193         
16194         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16195         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16196         runtime memory used by the dynamic method. Fixes #77146.
16198 2007-06-21  Dick Porter  <dick@ximian.com>
16200         * file-io.h: 
16201         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16202         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16203         81767.
16205 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16207         * reflection.c (method_encode_methodspec): Add a tripwire.
16208         * class.c (inflate_generic_type): The fully open generic type is
16209         not the same as the generic type definition.
16211 2007-06-21  Martin Baulig  <martin@ximian.com>
16213         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16215         * mono-debug-debugger.h
16216         (MonoDebuggerBreakpointInfo): Removed.
16217         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16218         (mono_debugger_remove_breakpoint): Likewise.
16219         (mono_debugger_breakpoint_callback): Likewise.
16220         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16222 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16224         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16225         generic type is not the same as the generic type definition.
16226         * class.c (mono_generic_class_get_class): Likewise.
16228 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16230         * icall.c: The second argument to 
16231         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16232         is a MonoType not a MonoClass.
16234 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16236         * verify.c: support for function pointers in the verifier
16238 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16240         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16242 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16244         * assembly.c: removed Mono.Data.SqliteClient from the list of
16245         forward-compatible assemblies as it breaks the ABI (bug #81899).
16247 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16249         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16250         lookup/update with the loader lock.
16251         * reflection.c (mono_class_bind_generic_parameters): No need to
16252         protect mono_metadata_lookup_* with the loader lock.
16253         * class.c (inflate_generic_type): Likewise.
16254         
16255         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16256         on a generic instantiated type.
16258 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16260         *verify.c: produce meanfull error messages on verification error
16261         *verify.c: fixed some cases of verification errors reported as validation errors
16262         *pedump.c: fixed the error name array, now it shows validation errors properly
16263         *verify.h: fixed the contant that should be used for verification errors
16265 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16267         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16268         for bug #77596, 81858 and 80743 (generics data structures on domain
16269         unload).
16271 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16273         Avoid allocating 'MonoGenericContext' on the heap.
16274         * class-internals (_MonoMethodInflated::context): Make field
16275         inline, not a pointer.
16276         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16277         stack.  Use the context embedded within the inflated method as the
16278         hash key, rather than 'new_context'.
16279         * class.c (inflate_generic_context): Simplify.  Return a struct
16280         rather than allocating on the heap.
16281         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16282         doesn't salt away a copy of the context -- simplifying the
16283         lifetime rules of a 'MonoGenericContext *'.
16284         (mono_method_get_context): Return pointer to embedded context.
16285         (setup_generic_array_ifaces): Allocate temporary context on stack.
16286         * reflection.c (inflate_mono_method): Likewise.
16287         (mono_reflection_bind_generic_method_parameters): Likewise.
16288         Use the context embedded within the inflated method as the hash key.
16290         Avoid a source of allocation of 'MonoGenericContext'.
16291         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16292         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16293         * class.c: Update to changes.
16294         (mono_generic_class_get_context): Simplify drastically.  Now just
16295         returns a pointer to the field.
16296         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16297         argument as a const pointer.
16298         (mono_metadata_generic_context_equal): Likewise.
16299         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16300         Update to changes.
16302 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16304         * verify.c improved the handling of brtrue/brfalse, factored out common code
16306 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16308         Kill MonoGenericMethod.
16309         * class-internals.h (MonoGenericContext::method_inst): Rename from
16310         'gmethod' and convert to a MonoGenericInst.
16311         (MonoGenericMethod): Remove.
16312         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16313         * loader.c (method_from_methodspec): Update to changes.  Use a
16314         MonoGenericContext as the key to the hashtable.
16315         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16316         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16317         (mono_metadata_generic_context_hash): Likewise from
16318         'mono_metadata_generic_method_hash'.  Change hash function.
16319         (mono_metadata_load_generic_params): Update to changes.
16320         (mono_get_shared_generic_method): Remove.
16321         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16322         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16323         (inflate_generic_context): Likewise.
16324         (mono_class_inflate_generic_method_full): Likewise.
16325         (setup_generic_array_ifaces): Likewise.
16326         (mono_class_create_from_typespec): Likewise.
16327         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16328         (method_encode_methodspec): Update callsite.
16329         (reflection_methodbuilder_to_mono_method): Update to changes.
16330         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16331         MonoGenericContext as the key to the hashtable.
16332         (inflate_mono_method): Update to changes.
16334         * class-internals.h (MonoGenericMethod::container): Remove.
16335         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16337 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16339         * profiler-private.h, profiler.c, profiler.h: added API to profile
16340         exception events.
16342 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16344         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16346 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16348         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16349         Fixed overflow and underflow not aborting the verification process.
16351 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16353         * class-internals.h (MonoStats): Added stats entries for dynamic
16354         code allocations.
16356 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16358         * loader.c (mono_free_method): Free header->locals and header->clauses.
16360         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16361         dynamic case.
16363         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16365         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16367 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16369         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16370         the tables.
16372 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16374         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16376 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16378         MonoGenericMethod on a diet
16379         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16380         here ...
16381         (_MonoGenericMethod::reflection_info): ... from here.
16382         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16383         Update to changes.
16384         * reflection.c (inflate_mono_method): Likewise.
16385         (mono_reflection_bind_generic_method_parameters): Likewise.
16387 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16389         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16390         *verify.c: factored long ldarg forms to share code with short forms
16392 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16394         *verify.c: fixed code formating factored some duplicate code
16395         into a new function
16397         *verify.h: fixed binary incompatibility introduced earlier
16399         *pedump.c: fixed formating
16401 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16403         Fix assertion when disassembling Mono.C5.dll
16404         * loader.c (method_from_methodspec): Avoid inflating a method
16405         twice with the same context.  If the methodref is inflated, use
16406         the declaring method instead.
16408         * class.c (mono_class_from_generic_parameter): Fix case similar to
16409         bug #81830 handled below, but for method containers.
16411 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16413         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16414         get_shared_generic_class.  Directly inflate the instance.
16415         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16416         (inflate_generic_class): Delete.
16417         (get_shared_generic_class): Delete.  Move setting of
16418         'cached_class' and 'cached_context' ...
16419         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16421         * metadata.c (mono_metadata_lookup_generic_class): Change
16422         signature to take the components of a MonoGenericClass rather than
16423         an allocated MonoGenericClass.  Change semantics to be intern-like.
16424         * reflection.c (mono_class_bind_generic_parameters): Update to
16425         changes.  Make locking region tighter.
16426         * class.c (inflate_generic_class): Update to changes.
16427         (get_shared_generic_class): Likewise.
16428         * metadata-internals.h: Likewise.
16430         * reflection.c (mono_class_bind_generic_parameters): Take and
16431         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16432         (mono_reflection_bind_generic_parameters): Use
16433         'mono_class_bind_generic_parameters' rather than duplicate the code.
16434         * class.c (mono_bounded_array_class_get): Update to changes.
16435         * object-internals.h: Likewise.
16437         * reflection.c (mono_class_bind_generic_parameters): Only support
16438         parameterizing generic type definitions.  Remove support for other
16439         open types.
16441 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16443         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16445         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16446         in the dynamic case.
16448 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16450         * threads.c: When cleaning up thread, reset the Background bit.
16451         Fixes bug #81720.
16453 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16455        * metadata.c: Move variable declarations to top of scope.
16456        * verify.c: Move variable declarations to top of scope.
16458        Code is contributed under MIT/X11 license.
16460 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16462         * reflection.c (mono_class_bind_generic_parameters): Replace
16463         open-coded loop with mono_metadata_inflate_generic_inst.
16465         * class.c (get_shared_generic_class): Don't call
16466         mono_get_shared_generic_inst.  Use the container's own
16467         'class_inst'.
16469         * metadata.c (mono_metadata_load_generic_params): Move
16470         initialization of 'context' field here from ...
16471         * class.c (mono_class_create_from_typedef): ... here, and ...
16472         * loader.c (mono_get_method_from_token): ... here.
16474         * class.c (get_shared_generic_class): Rename from
16475         mono_get_shared_generic_class and make static.
16476         (mono_get_shared_generic_inst): Move to metadata.c.
16477         * loader.c (mono_get_shared_generic_method): Likewise.
16478         * class-internals.h, metadata-internals.h: Update to changes.
16480         Fix #81830
16481         * class.c (mono_class_from_generic_parameter): Don't assume a
16482         generic container owner exists.  Generic containers from monodis
16483         don't have any.
16485 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16487         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16488         * verify.h: new typedefs to returns the non-verifiable status
16489         * verify.c: initial implementation of generics, stack merging and object compatibility check
16491 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16493         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16494         a MonoInternalHashTable again (fixed bug in internal hash table
16495         code).
16497 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16499         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16500         MonoInternalHashTable again (fixed bug in internal hash table
16501         code).
16503 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16505         * class.c, image.c, class-internals.h, domain.c,
16506         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16507         changes.  Have to figure out what makes them break the SWF
16508         regression.
16510 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16512         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16513         a MonoInternalHashTable now.
16515 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16517         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16518         MonoInternalHashTable now.
16520 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16522         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16523         invoke_impl code.
16525         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16527         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16528         dependent trampoline.
16530         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16532         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16534 2007-05-29  Robert Jordan  <robertj@gmx.net>
16536         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16538 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16540         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16542 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16544        * marshal.c: Fix interface lookup loops for
16545        cominterop_get_com_slot_for_method and 
16546        cominterop_get_method_interface. Only need to lookup
16547        if type is a class, else use interface type method is on.
16549        Code is contributed under MIT/X11 license.
16551 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16553         * reflection.c: HasSecurity can be present even if no specially 
16554         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16555         SecurityAttribute). Fix CAS regression tests on buildbot.
16557 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16559        * appdomain.c: Add configure checks for header files.
16560        * image.c: Add configure checks for header files.
16561        * file-io.c: Add configure checks for header files.
16562        * debug-mono-symfile.c: Add configure checks for header files.
16563        * threadpool.c: Add configure checks for header files.
16564        * console-io.c: Add configure checks for header files.
16565        * profiler.c: Add configure checks for header files.
16566        * rawbuffer.c: Add configure checks for header files.
16567        * icall.c: Add configure checks for header files.
16568        * rand.c: Add configure checks for header files.
16569        * socket-io.c: Add configure checks for header files.
16571        Code is contributed under MIT/X11 license.
16573 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16575         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16576         assertion as it breaks the build.
16577         
16578         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16580         * reflection.c (lookup_custom_attr): Make a copy here too.
16582         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16583         dynamic images.
16585         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16586         images.
16588         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16589         info.
16591 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16593         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16594         (load_cattr_value): Ditto.
16596 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16598         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16600 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16602         * threads.c: In "start_wrapper", set apartment_state to MTA if
16603         apartment_state is Unknown and we're running on 2.0 profile or
16604         higher.
16605         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16606         to main method, then set apartment_state to Unknown on 1.0 profile,
16607         and MTA on 2.0 profile.
16609 2007-05-16  Jb Evain  <jb@nurv.fr>
16611         * class-internals.h (MonoDefaults): Add an attribute_class and
16612           customattribute_data_class.
16613         * domain.c (mono_init_internal): Populate them.
16614         * reflection.c: Use them to remove duplicates. Make a vew
16615         MonoClass variables `static'.
16617 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16619         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16620         step in implementing IMT, so that all isinst checks now can go
16621         through the bitmap.
16622         This was needed because vtables for TransparentProxy need to look
16623         like the vtable of the "target" class, so they need to point to
16624         its interface bitmap directly.
16626         * object.c: inside "mono_class_create_runtime_vtable" and
16627         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16629 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16631         * object-internals.h
16632           culture-info.h : added territory field in MonoCulture and
16633           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16634         * locales.c : fill territory field above too.
16635         * culture-info-table.h : regenerated.
16637 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16639         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16640         Fixes #81599.
16642 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16644         * object.c: Always initialize apartment, even if 
16645         there is no custom attributes on entry point.
16646         
16647         Code is contributed under MIT/X11 license.
16649 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16651         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16652         * metadata.c: If no encoding is set, check for unicode
16653         on class.
16654         
16655         Code is contributed under MIT/X11 license.
16657 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16659         * threads.c: Handle if mono_thread_current returns NULL 
16660         
16661         Code is contributed under MIT/X11 license.
16663 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16665         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16666         in start_wrapper. Added mono_thread_init_apartment_state and
16667         mono_thread_cleanup_apartment_state.
16668         * object.c: Initialize thread apartment state on main thread
16669         by checking for STAThreadAttribute on entry point.
16670         * object-internals.h: Add apartment_state field to MonoThread.
16671         * threads-types.h: Add unmanaged definition of 
16672         System.Threading.ApartmentState, MonoThreadApartmentState.
16673         
16674         Code is contributed under MIT/X11 license.
16675         
16676 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16678         * class.c: Fix windows build.
16679         * class-internals.h: Fix windows build.
16680         
16681         Code is contributed under MIT/X11 license.
16683 2007-05-08  Robert Jordan  <robertj@gmx.net>
16685         * process.c (CreateProcess_internal):
16686         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16687         .CreateNoWindow was specified. Fixes #81496.
16689 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16691         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16692         step in implementing IMT, replaced it with two compact arrays
16693         (interfaces_packed and interface_offsets_packed) and a bitmap that
16694         is used for isinst checks (interface_bitmap).
16696         * class.c: (compare_interface_ids): compare function to pass to
16697         bsearch when looking for an interface with a given id.
16698         (mono_class_interface_offset): reimplemented using bsearch on
16699         interfaces_packed, getting the offset from interface_offsets_packed.
16700         (print_implemented_interfaces): utility debugging function.
16701         (setup_interface_offsets): reworked to initialize interfaces_packed,
16702         interface_offsets_packed and interface_bitmap.
16704         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16705         with uses of interfaces_packed and interface_offsets_packed.
16707 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16709         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16710         mono_class_interface_offset prototype to wrap all accesses to
16711         "MonoClass.interface_offsets".
16713         * class.c: Implemented mono_class_interface_offset, and wrapped all
16714         accesses to "MonoClass.interface_offsets".
16716         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16717         "MonoClass.interface_offsets".
16719 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16721         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16722         GetMethodFromHandle overloads (bug #78637).
16724 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16726         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16727         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16729 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16731         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16732         #81498.
16734         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16735         gracefully.
16736         (mono_custom_attrs_from_index): Ditto.
16738         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16739         Fixes #81501.
16741 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16743         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16744         is now allocated from a mempool.
16746 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16748         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16749         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16751 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16753         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16754         mono_loader_clear_error () too late. Fixes #81463.
16756 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16758         * culture-info-table.h : regenerated.
16760 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16762         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16763         is missing.
16765 2007-04-25  Dick Porter  <dick@ximian.com>
16767         * Makefile.am: Put the mingw enforced-optimisation back into the
16768         PLATFORM_WIN32 section.
16770 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16772         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16773         patch.
16775         * image.c (mono_image_load_module): New API function to load a module reference.
16777         * image.c (load_modules): Load modules lazily. Fixes #80812.
16779         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16780         
16781         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16783         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16784         to mono_image_load_module_dynamic.
16786 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16788         * marshal.c: Fix calling convention for CCW on non-windows
16789         platforms. STDCALL on windows, CDECL everywhere else to work 
16790         with XPCOM and MainWin COM.
16791         
16792         Code is contributed under MIT/X11 license.
16794 2007-04-23  Martin Baulig  <martin@ximian.com>
16796         Fix #80969.
16798         * loader.c
16799         (method_from_memberref): Added `gboolean *used_context' argument.
16800         (mono_get_method_from_token): Likewise.
16801         (mono_get_method_full): Don't insert the method in the cache when
16802         `used_context' is true.
16804 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16806         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16808         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16809         create new MonoTypes for returned types.
16810         * class.c (mono_generic_class_get_class): Export mono-internal.
16811         * class-internals.h: Update to changes.
16813 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16815         * threadpool.c, threadpool.h, icall-def.h: patch from
16816         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16818 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16820         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16821         
16822         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16824         * threads.c (mono_thread_get_stack_bounds): New helper function.
16826         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16827         Correctly compute stack bounds when attaching. Fixes #81394.
16829 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16831         * reflection.c: fix handling of doubles in custom attributes
16832         for the arm-fpa format (bug #81368).
16834 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16836         * reflection.c (assembly_add_win32_resources): Mildly relax an
16837         bounds check to let the end pointer point just past the end of the
16838         allocated buffer.  (may fix #81384)
16840 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16842         * culture-info-table.h : regenerated.
16844 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16846         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16847         the thread is aborted early.
16849 2007-04-05  Dick Porter  <dick@ximian.com>
16851         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16852         FindFirstFile()/FindNextFile() to find entries.  This lets the
16853         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16854         81038.
16856         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16857         the parameters of
16858         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16860 2007-04-04  Martin Baulig  <martin@ximian.com>
16862         * debug-helpers.c
16863         (mono_method_desc_full_match): Add support for nested classes.
16865 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16867         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16869 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16871         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16872         waiting for too many threads.
16874 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16876         * environment.c: Fix return value check on uname so we can get the 
16877         executing version on Solaris operating systems.
16879 2007-03-28  Jb Evain  <jbevain@gmail.com>
16881         * class.c (mono_type_get_name_recurse): Complete the
16882         fix for the creation of assembly qualified names for
16883         pointer types. Fixes #81208.
16885 2007-03-27  Dick Porter  <dick@ximian.com>
16887         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16888         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16889         changed.
16891         * threads.c
16892         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16893         the value of ReleaseMutex().
16895 2007-03-27  Dick Porter  <dick@ximian.com>
16897         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16898         in little-endian order, not network endian, so must be converted
16899         to host endian here.  Fixes bug 80593.
16901 2007-03-22  Jb Evain  <jbevain@gmail.com>
16903         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16904         qualified names for pointer types. Fixes #81208.
16906 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16908         * marshal.c: Add support for PreserveSigAttribute. 
16909         
16910         Code is contributed under MIT/X11 license.
16912 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16914         * process.c: Fix endianness issues. Fixes #81126.
16916         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16917         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16919         * image.c (mono_image_lookup_resource): Make this work on big-endian
16920         machines.Change API contract so the caller needs to free the return value.
16921         
16922         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16923         API change.
16924         
16925 2007-03-14  Martin Baulig  <martin@ximian.com>
16927         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16928         mono_type_get_desc() as well.
16930 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16932         * icall.c:  Fix environ access in VS.  
16933         
16934 2007-03-13  Alp Toker  <alp@atoker.com>
16936         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16937         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16938         #63841.
16940 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16942         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16943         circular references among dynamic methods. Fixes #81091.
16945         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16947 2007-03-09  Martin Baulig  <martin@ximian.com>
16949         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16951 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16953         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16954         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16955         
16956         Code is contributed under MIT/X11 license.
16957         
16958 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16960         * loader.c: Reapply patch for bug #79424.
16962 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16964         * metadata.c (mono_type_to_unmanaged): Only convert object to
16965         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16967 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16969         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16970         (and incorrectly set) is_reference field from MonoGenericInst.
16972 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16974         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16975         a little earlier.
16977         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16979         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16981 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16983         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16984         FileOptions.1 value to mean "temporary", map that to
16985         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16987         Fixes 80688
16989 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16991         * appdomain.c: implement MS .Net style shadow copying. Copies of
16992         the assemblies are made in a subdirectory of the dynamic base
16993         directory, the assembly names are preserved.
16994         Copy .mdb and .config files along with the assemblies being shadowed.
16996 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16998         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16999         (emit_marshal_handleref): Ditto.
17001         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
17002         on Visual C++. Fixes #80671.
17004 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
17006         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
17007         for clone operations.
17009 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
17011         * marshal.c: Fix warnings.
17013 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17015         * loader.c: allow case-insensitive matching of the dll name
17016         in dllmap handling when prefixed with "i:".
17018 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
17020         * threads.c: Fix #ifdef for dummy_apc function for VS.
17022 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17024         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17026 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
17027         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17028         giving precedence to the methods with a fully qualified name
17029         (InterfaceName.MethodName) when building the interface sections
17030         of the vtable.
17032 2007-02-16  Dick Porter  <dick@ximian.com>
17034         * threadpool.c (append_job): Fix fast-path array handling, so it's
17035         less likely the array will grow exponentially when the load is
17036         heavy.
17038 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17040         * metadata-internals.h, loader.c: fix dllmap lookup order
17041         for non-function maps, too, and prepare for fallback code.
17043 2007-02-12  Robert Jordan  <robertj@gmx.net>
17045         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17046         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17047         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17048         GlobalFree. Fixes a part of bug #77075.
17050 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17052         * loader.c: implemented typedef parent in field memberref.
17054 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17056         * marshal.c: Fix warnings and remember to call Release on
17057         IUnknown of RCW.
17058         
17059         Code is contributed under MIT/X11 license.
17061 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17063         * class-internals.h: Add MonoHandleRef definition, and
17064         handleref_class to mono_defaults. 
17066         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17067         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17069         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17070         (do nothing on this stage)
17071         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17072         (emit_marshal_handleref): New method, used for argument handling
17073         of HandleRefs. 
17075 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17077         * class.c (mono_class_setup_parent): Lazily init com types.
17078         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17079         init com types.
17080         * object.c (mono_remote_class_vtable): Lazily init com types.
17081         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17082         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17083         * domain-internals.h: Expose mono_init_com_types.
17084         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17085         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17086         Add support for COM Callable Wrapper marshalling.
17087         * marshal.h: Add icall definitions.
17088         * gc.c: Handle freeing of CCWs in finalizer code.
17089         
17090         Code is contributed under MIT/X11 license.
17092 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17094         * reflection.c: changed all the signature encoding code to use
17095         a variable-sized buffer.
17097 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17099         * marshal.c: locking fixes: never take the loader lock
17100         or other runtime locks when holding the marshal lock
17101         (fixes bug#80664).
17103 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17105         * marshal.c: make the delegate function pointer mapping
17106         work for the moving GC.
17108 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17110         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17111         for bug #80618.
17113 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17115         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17116         gmodule.
17118 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17120         * threadpool.c: made the code moving-GC safe.
17122 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17124         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17125         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17126         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17127         warning cleanup.
17128         * reflection.c: warning cleanup, some threading and moving GC fixes.
17130 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17132         * class.c, loader.c: create the needed Set/Get/Address array methods
17133         as well as the .ctors in mono_class_init (), fixes bug #80567.
17135 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17137         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17138         we doesn't decrease its alignment. Should fix the sparc build.
17140 2007-01-24  Dick Porter  <dick@ximian.com>
17142         * socket-io.c
17143         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17144         Create the returned object if we need to ignore an unsupported
17145         socket option.  Fixes a segfault reported by Atsushi.
17147 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17149         * class.c, object.c: restrict GC-tracked fields to
17150         UIntPtr fields used inside corlib, so we provide better
17151         type info to the GC and also allow broken packing as in
17152         bug #80580.
17154 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17156         * sgen-gc.c: removed duplicated function.
17158 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17160         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17161         value that means that the value is not supported, but that we
17162         should not return a failure, but instead report this as a
17163         successful operation.
17165 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17167         Fix tests/bug79956.2.il
17168         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17169         (mono_generic_class_get_class): If the generic definition in an
17170         enum, copy over other fields related to it.
17172 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17174         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17175         genericinst enums (bug #79215).
17177 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17178         * class.c: Fix bug 80307.
17180 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17182         * image.c: if the file table is not present, try to load
17183         all the modules, since we don't have info about them
17184         having or not metadata (bug #80517).
17185         * assembly.c: allow mono_assembly_load_references () to
17186         work for netmodules.
17188 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17190         * image.c, metadata-internals.h, object.c: execute module
17191         cctors when running on the 2 runtime if present (bug #80487).
17193 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17195         * icall.c: optimized InitializeArray() on bigendian.
17197 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17199         * icall.c: fix for the broken ARM FPA double format.
17201 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17203         * icall.c: handle endian issues for r4 and r8 types, too, in
17204         the InitializeArray() icall.
17206 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17208         * loader.c (mono_loader_error_prepare_exception): Clear the error
17209         once we have extracted the information from it, do this before we
17210         call into the JIT's class loading mechanisms.
17212         * object.c (mono_class_create_runtime_vtable): Do not clear the
17213         loader error before calling mono_class_get_exception_for_failure
17214         as the loader error is needed inside
17215         mono_class_get_exception_for_failure to throw the error (thinko).
17217         Fixes #80521
17218         
17219 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17221         * reflection.c: align fields rva data so it's faster to load at
17222         runtime.
17224 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17226         Prepare to simplify GenericMethod handling.
17227         * class-internals.h (mono_method_get_context): New accessor function.
17228         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17229         rather than directly accessing '->context' field.
17231         * class-internals.h (_MonoGenericParam.method): Move ...
17232         (_MonoGenericContainer): ... here.  Add into union with klass field.
17233         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17234         Update to changes.
17236 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17238         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17239         the wrapper type enum and reduce relocations.
17241 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17243         * reflection.c (inflate_mono_method): Reuse method instantiation
17244         from the generic method, if available.
17246 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17248         * marshal.c (emit_marshal_variant): Fix conv_arg
17249         type in last commit, based on whether parameter is byref.
17250         
17251 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17253         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17254         marshalling.
17255         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17256         MONO_TYPE_OBJECT back for VARIANT support.
17258 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17260         * marshal.c, marshal.h, icall-def.h: Implement 
17261         Marshal.ReAllocCoTaskMem.
17263 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17265         * marshal.c: memory retention fixes: use the proper
17266         image cache for runtime_invoke method lookups.
17268 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17270         * mempool.c: added code to help debug mempool allocations.
17272 2007-01-11  Dick Porter  <dick@ximian.com>
17274         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17275         support (experimenting with faking it with IP_MTU_DISCOVER for
17276         systems that don't have IP_DONTFRAGMENT.)
17277         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17278         icall.
17280         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17282         * socket-io.h: Add new fields to MonoSocketAsyncResult
17283         corresponding to the new ones in Socket.cs.
17285 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17287         Fix IronPython regression mentioned in #80249
17288         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17289         'cached_context' field, since it may have been initialized as a
17290         side-effect of metadata parsing.
17292         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17293         (_MonoGenericClass.cached_class): Move here and rename from lone
17294         remaining field of ...
17295         (_MonoInflatedGenericClass): ... this.  Remove.
17296         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17297         to changes.
17299         Fix mcs/tests/test-128.cs regression.
17300         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17301         2007-01-10 change below.
17302         [MONO_TYPE_OBJECT]: Recurse into array case.
17304 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17306         * class-internals.h (mono_get_inflated_generic_class): Remove.
17307         * class.c (mono_get_inflated_generic_class): Remove.
17308         (mono_generic_class_get_class): Rename from
17309         mono_class_create_generic.
17310         (mono_class_from_mono_type) [GENERICINST]: Use it.
17311         * reflection.c, metadata.c: Update to changes.  Use
17312         'mono_class_from_mono_type'.
17314 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17316         * reflection.c: use passed type when encoding an array element
17317         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17319 2007-01-09  Robert Jordan  <robertj@gmx.net>
17321         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17322         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17323         Fixes bug #80392.
17325 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17327         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17329         * object.c (set_value): Avoid aliasing between type->data.klass
17330         and type->data.generic_class.
17332         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17334 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17336         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17337         between type->data.klass and type->data.generic_class.
17339 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17341         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17342         value in out parameters.
17344 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17346         Simplify invariant for MonoGenericClass::klass field.
17347         * class.c (mono_class_create_generic): Verify 'klass' is null.
17348         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17349         initialize 'klass' field.
17351 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17353         Ongoing work to avoid redundant data and simplify invariants.
17354         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17355         'generic_class', and change type to a GenericInst.
17356         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17357         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17359 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17361         * class.c : skip io-layer under PLATFORM_WIN32.
17363 2007-01-03  Tor Lillqvist  <tml@novell.com>
17365         Fix #80305: In a bundled executable, look in the bundled exe
17366         assembly to determine the runtime version. Add the possibility to
17367         bundle also the machine.config file.
17368         
17369         * assembly.c (mono_assembly_open_from_bundle): Make
17370         non-static. Allow being called even if we have no bundled
17371         assemblies, and return NULL right away in that case.
17373         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17374         here.
17376         * domain.c (app_config_parse): Take an assembly exe file name as
17377         parameter instead of a config file name. Check for a bundled
17378         config file for that assembly by calling
17379         mono_config_string_for_assembly_file() (see below) before looking
17380         for one in the file system.
17381         (get_runtimes_from_exe): Corrsponding change to call of
17382         app_config_parse().
17383         (get_runtimes_from_exe): Check for bundled assembly exe file first
17384         by calling mono_assembly_open_from_bundle(). If no bundled
17385         assembly exe file is found, call mono_image_open() as before to
17386         look it up in the file system.
17388         * mono-config.c: Add variable bundled_machinec_onfig.
17389         (mono_config_string_for_assembly_file): New function.
17390         (mono_config_for_assembly): Move code snippet that looks for a
17391         bundled assembly .config file into the above new function. Call
17392         it.
17393         (mono_register_machine_config, mono_get_machine_config): New
17394         functions to set and retrieve
17396         * assembly.h: Declare mono_register_machine_config().
17398         * mono-config.h: Declare mono_get_machine_config() and
17399         mono_config_string_for_assembly_file().
17401         * icall.c: No declaration of environ necessary on Win32. It is
17402         declared (as a macro expanding to a function call) in stdlib.h.
17403         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17404         New internal mono function. Returns the value of
17405         mono_get_machine_config() as a Mono string.
17407         * icall-def.h: Add get_bundled_machine_config().
17409 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17411         Remove redundant field
17412         * class-internals.h (_MonoGenericContext.container): Remove field.
17413         * loader.c (mono_method_get_signature_full): Don't parse a
17414         "container" for a signature parse when the signature is inflated
17415         immediately.
17416         (method_from_methodspec): Likewise, for a generic_inst.
17417         * class.c, metadata.c, reflection.c: Update to changes.
17419 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17421         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17422         'cached_context', and change semantics -- it starts off NULL, and
17423         is initialized on demand.
17424         * class.c (mono_generic_class_get_context): New accessor to
17425         replace 'context' field accesses.
17426         (mono_class_get_context): New helper.
17427         (*): Update to changes.
17428         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17430 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17432         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17433         before the memcpy.   Fixes Marshal2 regression.
17435 2007-01-02  Jb Evain  <jbevain@gmail.com>
17437         * blob.h: add a MONO_TYPE_ENUM definition
17438         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17439         fix the encoding of arrays of enums in custom attributes.
17441         Fixes #79666.
17443 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17445         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17446         string is null terminated, but only cut the string short if it
17447         overflows the buffer.   
17448         
17449         (mono_string_to_byvalstr): Also fix this routine.   The code here
17450         was not properly terminating a string (it was only terminated
17451         because of the previous catch-all memset). 
17453         I left the memset, because I do not know if applications expect
17454         the runtime to clear this region. 
17456         Fixes #79944.
17458         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17459         Clear the error before returning to unmanaged code to prevent the
17460         runtime from being confused later on (fixes  80420).
17461         (ves_icall_type_from_name): Always call mono_loader_clear_error
17462         after parsing a type that could have failed.
17463         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17465         * loader.c (mono_loader_clear_error): Fix indentation.
17467 2006-12-28  Martin Baulig  <martin@ximian.com>
17469         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17471 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17473         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17474         getting a token for an EnumBuilder.
17476 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17478         * reflection.c: be more careful in case resource generation
17479         fails to create the data array.
17481 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17483         * sgen-gc.c: write barrier for clone and fix unregister handles.
17485 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17487         * reflection.c: some fixes needed in the generics code for the moving GC.
17489 2006-12-22  Robert Jordan  <robertj@gmx.net>
17491         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17492         account. Fixes bug #80299.
17494 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17496         Fix WaitHandle usage in delegates.
17497         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17498         * object.c (mono_wait_handle_new): Use the property set method to
17499         initialize the handle.
17500         (mono_wait_handle_get_handle): New.
17501         * threadpool.c (mono_async_invoke): Use it.
17502         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17503         Likewise.
17504         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17506 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17508         * marshal.c (emit_marshal): Call emit_marshal_variant and
17509         emit_marshal_com_interface when applicable.
17510         (emit_marshal_variant, emit_marshal_com_interface): Add
17511         methods for this case and remove if's from emit_marshal_object.
17512         
17513 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17515         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17517 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17519         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17520         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17521         and GlobalFree on Windows. Remove FIXME.
17523 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17525         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17526         implementation for managed objects.
17528 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17530         * object.c: implemented code to be used for checking
17531         that no reference field overlaps with non-references.
17533 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17535         * threadpool.c: fix queue code to be compatible with the
17536         moving GC.
17538 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17540         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17541         in structures by throwing ArgumentNullException.
17543         (emit_marshal_safehandle): Also when they are null parameters.
17545         (emit_marshal_safehandle): Add support for ref
17546         SafeHandles parameters
17548 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17550         * profiler.c: updated to use the mono-dl API instead of
17551         gmodule.
17553 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17555         * profiler.c: updated to use the mono-dl dynamic loading
17556         API instead of gmodule.
17558 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17560         * profiler.c: use readlink, older versions of glib don't have
17561         g_file_read_link ().
17563 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17565         * profiler.c: try to detect the path to mono if libc fails to provide
17566         a useful name (bug #80286).
17568 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17570         Fix #80242
17571         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17572         instance, use the generic type definition instead.
17573         (ves_icall_Type_GetNestedTypes): Likewise.
17574         * class.c (mono_class_create_generic): Always set the
17575         nested_classes of a generic instance to NULL, even if the generic
17576         type definition has nested types.
17578 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17580         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17581         and fix on Linux.
17582         
17583 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17585         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17586         my arguments were in the wrong order.   I also fixed the Windows
17587         version which seems to have had the same issue.
17589         (mono_free_bstr): On Unix, this is g_free.
17590         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17591         conversions (for the tests in corlib to pass).
17593 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17595         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17596         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17597         exception if a ref SafeHandle in a struct has changed).
17598         
17599         (emit_struct_conv): Do not perform layout checks for classes
17600         derived from SafeHandle, as those are specially handled. 
17602         (emit_object_to_ptr_conv): Add support for
17603         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17605         (emit_marshal_safehandle): Implement conversion of return values
17606         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17607         
17608         * threads.c: WaitHandle now is compiled with two different handles
17609         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17610         for 2.0.
17611         
17612         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17613         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17614         these routines to cope with both kinds of fields.
17616 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17618         * metadata.c (mono_type_to_unmanaged): Handle the case where
17619         type->data.klass is a SafeHandle, and in that case, return the
17620         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17621         MONO_MARSHAL_CONV_SAFEHANDLE. 
17623 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17625         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17626         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17627         calling emit_marshal_object.
17629         (emit_marshal_safehandle): Implement marshalling of
17630         SafeHandle parameters (no ref support yet).
17632         (MarshalAction): Document the defines as I implement
17633         them for SafeHandle.
17635         (emit_marshal_object): indentation police.
17637         * class-internals.h: Define MonoSafeHandle.
17638         Add safehandle_class to MonoDefaults type.
17640         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17641         list of classes to check for fields. 
17643         * domain.c (mono_init_internal): Add SafeHandle to the list of
17644         mono_defaults loaded.
17646 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17648         Fix #80253
17649         * reflection.c (mono_reflection_bind_generic_parameters): If the
17650         generic type definition is a type builder, ensure that it is fully
17651         initialized before instantiating it.  Kill some dead code.
17653 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17655         * object.c: clear the loader_error () before loading
17656         more metadata stuff (bug #80258).
17658 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17660         * icall.c, icall-defs.h: type modifiers icalls for
17661         parameters and properties.
17663 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17665         * object.c, icall.c: fixed warnings.
17667 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17669         * marshal.c: fixed a couple of leaks and coding style in a few places.
17671 2006-12-08  Dick Porter  <dick@ximian.com>
17673         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17674         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17675         80173.
17677 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17679         * process.c: ProcessStartInfo may have only filename set and
17680         arguments can be NULL.
17682 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17684         * icall.c: fix leak found by Robert Jordan.
17686 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17688         * marshal.c, marshal.h: generate managed method to access an element
17689         of a multi-dimensional array.
17691 2006-11-30  Paolo Molaro (lupus@ximian.com)
17693         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17695 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17697         * icall.c: back out GetFields () fix until the serialization code is
17698         fixed to not depend on the incorrect behaviour.
17700 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17702         * profiler.c: provide defaults if none are set.
17704 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17706         * Makefile.am, attrdefs.h: new public header file with
17707         constants for attributes for use by embedders.
17709 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17711         * icall.c: GetFields () fix for bug #80064.
17713 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17715         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17716         removed long unused icalls.
17718 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17719   
17720         * marshal.c: 
17721                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17722                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17723                 can be generated without a delegate class.
17724                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17725         
17726         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17728 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17730         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17731         #80069.
17733 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17735         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17736         icall-def.h: added icalls needed by System.GC.
17738 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17740         * loader.c: ensure the class in catch clauses is handled
17741         correctly for generics methods (fixes bug#79980).
17743 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17745         * monitor.h, monitor.c: added mono_locks_dump () function
17746         to help debug deadlocks involving managed locks.
17748 2006-11-13  Dick Porter  <dick@ximian.com>
17750         * file-io.c (get_file_attributes): If the file is a symlink try
17751         and get the stat data for the target, but also add the
17752         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17753         the specs for the windows symlink support, but will probably have
17754         to be reworked when I have test data from a vista machine.  Fixes
17755         bug 79887.
17757 2006-11-13  Dick Porter  <dick@ximian.com>
17759         * gc.c (mono_domain_finalize): 
17760         * marshal.c (mono_delegate_begin_invoke): 
17761         * threadpool.c (socket_io_init, mono_thread_pool_init)
17762         (mono_thread_pool_finish): 
17763         * monitor.c (mono_monitor_try_enter_internal): 
17764         * threads.c (mono_thread_resume, mono_thread_init)
17765         (mono_thread_suspend_all_other_threads)
17766         (mono_thread_execute_interruption): 
17767         * appdomain.c (mono_domain_unload): Check for NULL error returns
17768         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17769         75733.
17771 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17773         * process.c
17774         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17775         Only close the handle if the value of the handle is not
17776         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17777         robust.
17779         Improvement for #75733, so that we do not run into this problem. 
17781         
17782         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17783         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17784         internal variables.  Fixes #79462 
17785         
17787 2006-11-09  Dick Porter  <dick@ximian.com>
17789         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17790         Use poll() not select().  Fixes bug 79397.
17792 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17794         Fix #79872
17795         * assembly.c (mono_assembly_load_from_full): Check that the given
17796         image has an assembly manifest.
17798 2006-11-09  Ankit Jain  <jankit@novell.com>
17800         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17801         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17802         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17804 2006-11-07  Dick Porter  <dick@ximian.com>
17806         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17807         Put the old resolver behaviour back for pre-2.0 profiles.
17809 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17811         * threadpool.c: precise GC and locking fixes.
17813 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17815         * class.c: don't load types that have an explicit unaligned
17816         managed reference. Provide better info in the TypeLoad exception.
17817         Part of the fix for bug #79744.
17818         * object.c: use the correct check for class type load issues.
17820 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17822         * class.c: enforce alignment of fields with managed references
17823         even when Pack=1 is forced by the user (bug #77788).
17825 2006-11-03  Dick Porter  <dick@ximian.com>
17827         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17828         If the address reverse lookup fails, return it as the hostname
17829         anyway.  Fixes bug 79721.
17831 2006-11-03  Dick Porter  <dick@ximian.com>
17833         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17834         Fix build on Windows.
17836 2006-11-02  Dick Porter  <dick@ximian.com>
17838         * icall-def.h: 
17839         * object-internals.h: 
17840         * exception.c (mono_get_exception_thread_interrupted): 
17841         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17842         Fixes bug 74525.
17844         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17845         Check for pending Thread.Interrupt.
17847 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17848         * loader.c: Fixed bug 79684.
17850 2006-10-27  Dick Porter  <dick@ximian.com>
17852         * file-io.c (get_file_attributes): Force symlinks to directories
17853         to be returned as a regular file.  Fixes bug 79733.
17854 2006-10-26  Dick Porter  <dick@ximian.com>
17856         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17857         CreateFile to open a directory then we need to set the
17858         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17860 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17862         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17863         friends.
17865 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17867         * sgengc.c: small cleanup of timer code.
17869 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17871         * sgen-gc.c: fix some warnings and start adding support for
17872         complete object removal on domain unload.
17874 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17876         * assembly.c: build_assembly_name should not consider a version
17877         number without build or revision number invalid. Fixes bug #79715.
17879 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17881         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17882         call kernel32 function OutputDebugString directly.
17883         
17884         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17885         
17886 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17888         * reflection.c: small cleanup, using a function to insert a MonoString
17889         in the string heap.
17891 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17893         * reflection.c: moving GC fixes.
17895 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17897         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17898         all the objects with finalizers belonging to an unloading appdomain.
17900 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17902         * sgen-gc.c: added ability to allocate even when the nursery is fully
17903         pinned and fixed a couple of bugs.
17905 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17907         * threads.h: Revert the last change for now.
17909         * threads.h (mono_thread_get_pending_exception): Rename this to
17910         mono_thread_get_undeniable_exception ().
17912 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17914         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17915         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17916         when fname does not refer to valid assembly. This result in a more
17917         meaningful error message.
17918         * exception.c: added mono_get_exception_bad_image_format2 which 
17919         constructs a BadImageFormatException using the ctor taking a custom
17920         message and the file name. Passing in a NULL msg results in a default
17921         message.
17922         * exception.h: define mono_get_exception_bad_image_format2 function.
17923         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17924         when file name pointed to an invalid IL image. Use 
17925         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17926         as this results in a more meaningful error message.
17928 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17930         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17931         #79465.
17933 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17935         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17936         consistency with the other _size functions.
17937         (mono_type_stack_size): Ditto.
17939         * class.c object.c icall.c: Fix warnings caused by the above change.
17941         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17943         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17945         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17947 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17949         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17950         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17951         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17952         threadpool.h, threads-types.h: mark more internal functions.
17954 2006-10-11  Dick Porter  <dick@ximian.com>
17956         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17957         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17958         reproduce the bug even before applying the fix.)
17960 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17962         * reflection.c: allow retrieving attributes for arguments in generic
17963         methods (bug #79241).
17965 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17967         * debug-mono-symfile.c: properly check fopen () result (found by
17968         coverity).
17970 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17972         * reflection.c: make error message clearer and fixed two
17973         issuelets found by Coverity.
17975 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17977         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17979 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17981         * object-internals.h, gc-internal.h, profiler-private.h:
17982         mark internal functions.
17984 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17986         * reflection.c: put data in the text section.
17987         * icall.c: recognize more types in type_from_typename ().
17988         * process.c, marshal.c: added some GC FIXMEs.
17990 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17992         * loader.c: check for NULL before initializing.
17994 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17996         * gc.c (finalizer_thread): Use a non-alertable wait here.
17998         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17999         until the correct solution is found.
18001 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18003         * reflection.c (mono_module_get_object): Avoid an assert when operating on
18004         modules with no metadata. Fixes #79596.
18006         * image.c (load_metadata_ptrs): Put back the error message when
18007         the #- heap is encountered since the support is not complete yet.
18009 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18011         * gc.c: do not allow the user to SuppressFinalize () a
18012         delegate because it would leak the trampoline if present.
18014 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
18016         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18017         PropertyPtr table.
18019 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
18021         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18023         * metadata.c (mono_metadata_get_param_attrs): Ditto.
18025         * row-indexes.h: Add definitions for *Ptr tables.
18027         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18029         * metadata.c (mono_metadata_translate_token_index): New helper function to
18030         translate table indexes used in uncompressed metadata.
18031         (mono_metadata_decode_table_row): Ditto.
18032         (mono_metadata_decode_table_row_col): Ditto.
18034         * metadata.c: Add table schema for *Ptr tables.
18036         * class.c loader.c: Use the new helper function to access the affected metadata
18037         tables.
18038         
18039         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18040         #38532.
18041         
18042 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18044         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18045         sequences which can be unbounded in size. Fixes #79583.
18047 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18049         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18050         static initialization.
18052         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18054         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18056         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18058         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18059         ctor fails, i.e. throw the same exception on subsequent accesses.
18060         
18061 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18063         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18064         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18065         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18066         Handle marshalling of interfaces and VARIANTs contained in structs.
18067         
18068         Code is contributed under MIT/X11 license.
18069         
18070 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18072         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18073         
18074         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18075         mempool.
18077 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18079         * console-io.c: ignore previous SIGINT handler.
18081 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18083         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18084         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18085         #79460, #79461, #79485.
18087         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18089         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18090         #79217.
18092 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18094         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18095         could be generated from it.
18097 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18099         * rand.c: fix read loop to correctly handle EINTR.
18101 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18103         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18104         internal calls are defined to keep methods closer to the declaring
18105         type and allow a significant reduction in runtime relocations and
18106         memory usage.
18108 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18110         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18111         exception message to have FileNotFoundException use the default
18112         assembly load error message. Fixes bug #79426.
18113         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18115 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18117         * threadpool.c: (start_thread_or_queue) use the root domain when
18118         creating the thread instead of the async object one.
18120 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18122         * class.c, object.c, class-internals.h, reflection.c:
18123         for arrays, store element_size inside MonoClass (speedup
18124         for array object creation).
18126 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18128         * icall.c: fixed CodeBase to use the file name and not the module
18129         name (bug #79365).
18131 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18133         * mono-debug.c, mono-debug.h: export find_method as
18134         mono_debug_find_method ().
18136 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18138         * debug-helpers.c, class-internals.h: added a few functions useful
18139         when debugging under gdb.
18141 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18143         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18144         characters that need special handling.
18146 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18148         * mono-config.c: make the os/cpu specification more flexible,
18149         allowing lists and negation.
18151 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18153         * marshal.c: COM Interop fixes. Handle case where method->klass.
18154         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18155         calling convention on non-windows platforms. This is for
18156         compatibility with XPCOM and MainWin COM.
18157         
18158         Code is contributed under MIT/X11 license.
18159         
18161 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18163         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18164         correctly. Fixes #79217.
18166         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18168 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18170         * mono-config.c: allow both an os and cpu attribute for dllmap
18171         and dllentry elemnets to enable a single config file to be used
18172         for multiple architectures.
18174 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18176         * loader.c: MonoLoaderError was cleared too soon on load failure.
18177         Fixes bug #79424.
18179 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18181         * icall.c: use the defining class vtable when accessing a
18182         static field, not a pobblibly derived class.
18184 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18186         * icall.c string-icalls.c: Remove references to unicode.h.
18188         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18190         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18192         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18193         indicating the image where custom marshaller types should be looked up.
18194         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18195         custom marshallers, instead of corlib. Fixes #79425.
18197 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18199         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18201 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18203         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18204         Implement Environment.ProcessorCount.
18205         
18206         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18207         Implement Environment.ProcessorCount.
18208         
18209         * icall.c: 
18210         Add Environment.ProcessorCount icall.
18211         
18212         Patch by Jason McFall.
18214 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18216         * assembly.c: don't append .exe/.dll when the filename already contains
18217         one of those extensions.
18219 2006-09-12  Martin Baulig  <martin@ximian.com>
18221         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18222         to array interfaces.
18224 2006-09-11  Martin Baulig  <martin@ximian.com>
18226         * reflection.c (mono_image_build_metadata): Create the
18227         MethodImpl's after emitting all types and methods, so we don't
18228         need another fixup pass for them.
18230 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18232         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18233         change.
18235 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18237         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18238         unload.
18240 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18242         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18243         args is not set. Fixes #78926.
18245 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18247         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18249         * image.c (load_class_names): Move this to class.c, and rename it to 
18250         'mono_image_init_name_cache'.
18251         (load_modules): Fix a warning.
18253         * class.c icall.c image.c: Initialize image->name_cache lazily.
18255         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18256         on its name using information in the AOT file.
18258         * class.c (mono_class_from_name): Use the new hook function.
18260 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18262         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18263         correctly.
18265         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18266         Fixes #79289.
18267         
18268 2006-09-06  Martin Baulig  <martin@ximian.com>
18270         * icall.c (mono_lookup_internal_call): Small fix.
18272 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18274         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18275         double g_free.
18277 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18279         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18280         when --debug is specified.
18282 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18284         * class.c (setup_generic_array_ifaces): Fix a warning.
18286 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18288         * Temporarily remove the patch to assemly.c that checks the
18289         assembly versions as it breaks our gacutil.
18291 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18293         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18295         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18296         a net 1.0 runtime.
18298         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18299         created using the default ctor. Fixes #79152.
18300         (mono_string_builder_to_utf16): Ditto.
18302 2006-09-01  Martin Baulig  <martin@ximian.com>
18304         Fix handling of the generic array interfaces.
18306         * class-internals.h
18307         (MonoDefaults): Removed `generic_array_class' and added
18308         `generic_ilist' class.
18310         * class.c
18311         (mono_bounded_array_class_get): Add the new generic array interfaces.
18312         (setup_generic_array_ifaces): New static method; create vtable
18313         entries for each method in the generic array interfaces.
18315         * metadata.c
18316         (select_container): Allow "parent-less" generic methods.
18318         * marshal.c
18319         (mono_marshal_get_generic_array_helper): New public method.
18321         * icall.c
18322         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18323         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18324         moved the interncall into System.Array.
18326 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18328         A few more cases of avoiding work on types with ->byref set.
18329         Has the real fix for #79238
18330         * icall.c (is_generic_parameter): New helper.
18331         (ves_icall_Type_GetGenericParameterPosition): Use it.
18332         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18333         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18334         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18335         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18336         reference types.
18337         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18338         reference types.
18339         (ves_icall_Type_get_IsGenericInstance): Likewise.
18340         (ves_icall_Type_get_IsGenericType): Likewise.
18342 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18344         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18345         class if possible.
18347         * mempool.h (mono_mempool_get_allocated): New helper function.
18349         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18350         change.
18352         * mempool.c: Fix warnings and the calculation of stats.
18354         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18356         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18358         * loader.c (mono_get_method_from_token): Update method_count stat.
18360         * class-internals.h (MonoStats): Add some stats.
18362 2006-08-31 Robert Jordan  <robertj@gmx.net>
18364         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18365         with managed variants.
18366         All code is contributed under the MIT/X11 license.
18367         
18368 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18370         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18371         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18373         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18375         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18376         with cycles in classes.
18378         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18380         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18381         missing a [MarshalAs] directive. Fixes #79203.
18383         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18384         klass->marshal_info. Fixes #79217.
18386 2006-08-30  Martin Baulig  <martin@ximian.com>
18388         Committing a patch from Joachim Ante <joe@otee.dk>:
18389         Add support for binary data symbol stores.
18391         * debug-mono-symfile.c
18392         (mono_debug_open_mono_symbol_file): Renamed into
18393         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18394         arguments.
18396         * mono-debug.c
18397         (mono_debug_open_image): Added `raw_contents' and `size' args.
18398         (mono_debug_init_2_memory): New public function.
18400 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18402         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18404 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18406         * appdomain.c: implement support for ShadowCopyFiles.
18408 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18410         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18411         when value is NULL (and should remove CID #51).
18413 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18415         * image.c: moved 2 functions to ../utils.
18417 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18419         * gc.c: cope with the target object of a GC handle being NULL
18420         (bug #78877).
18422 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18424         * class.c: recursively check parent's explicit implementations
18425         of interface methods (fixes bug #79125).
18427 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18429         * filewatcher.c: Avoid warnings when building, do not redefine
18430         constants that are defined.
18432         Remove warnings.
18434 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18436         * image.c: don't fail when the link points to an absolute path.
18438 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18440         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18441         Fix CID #3.
18443 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18445         * image.c (full_path): A new method used to obtain the actual path
18446         of an assembly even in the presence of symbolic links.  
18448         This is necessary for the case where we are running a binary that
18449         has been GACed, but we are using the "published" path name
18450         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18451         file in the GAC.
18453         This was the source of the failure for the `xsp' command with the
18454         recent AppDomain changes, as far as the runtime was concerned,
18455         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18456         $prefix/mono/gac/blah/version/blah.exe.
18458         (do_mono_image_open): use full path
18460 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18462         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18464 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18466         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18467         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18469 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18471         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18472         small structures. Fixes #78990.
18474 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18476         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18478         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18480 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18482         * appdomain.c:
18483         * marshal.c: don't load all the assemblies from a domain into newly
18484         created ones. The new domains might have different rules and load
18485         assemblies from different locations. Fixes bug #76757.
18487         Patch by Lluis. Conflicts resolved by Brian Crowell.
18489 2006-08-16  Alp Toker  <alp@atoker.com>
18491         * socket-io.c: First half of the fix for #79084.
18492         Set sa_size to the length of the content, not that of the struct.
18493         Don't add NULL suffix to the content, this should be done in
18494         managed code if needed.
18496 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18498         Fix part of #79012
18499         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18500         mono_metadata_parse_type returns NULL.
18502 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18504         * normalization-tables.h : new file for string normalization data.
18505         * locales.c, locales.h, icall.c :
18506           added load_normalization_resource() for string normalization,
18507           and icall as well.
18508         * Makefile.am : added normalization-tables.h to the sources.
18510 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18512         * marshal.c: Add more helper functions to reduce code duplication and use them
18513         everywhere.
18515 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18517         * marshal.c: Fix non-x86 stdcall warnings.
18518         
18519         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18520         them everywhere.
18522 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18524         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18525         type check on multi-dimensional arrays. Fixes #79000.
18527 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18529         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18530         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18531         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18532         * class-internals.h: add is_com_object to class structure.
18533         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18534         null checks to COM object marshalling. Fix .ctor call on RCW.
18535         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18536         
18537         All code is contributed under the MIT/X11 license.
18539 2006-08-09  Dick Porter  <dick@ximian.com>
18541         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18542         racing mono_monitor_allocator_lock() somewhere, so don't delete
18543         the critical section for now.  Found by running and exiting
18544         monodevelop.
18546 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18548         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18549         (ves_icall_System_ComObject_FindInterface): Ditto.
18550         (ves_icall_System_ComObject_CacheInterface): Ditto.
18552         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18553         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18555 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18557         * threadpool.c: treat pipes from process asynchronous reads as sockets
18558         when reading from them, so we get select/poll or epoll to wait for
18559         data.
18561 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18563         * loader.c: Fix a typo (CID #233) in the null check.
18565 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18567         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18568         Hopefully fixes #78949.
18569         
18570         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18571         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18572         bytes. Fixes #78972.
18574 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18576         * filewatcher.c: we need to set errno here.
18578 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18580         * filewatcher.c: let Win32Exception get the error value.
18582 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18584         * filewatcher.c: translate errno into win32 errors for Win32Exception
18585         to know what happened.
18587 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18589         * threadpool.c: Fix more warnings.
18591         * assembly.c (search_loaded): Fix warnings.
18593         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18594         (mono_async_invoke): Ditto.
18596 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18598         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18599         entries for __ComObject type in addition to ComImport types.
18600         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18601         about hash table.
18602         
18603         All code is contributed under the MIT/X11 license.
18605 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18607         * image.c: avoid tentative loading of modulerefs that contain
18608         no metadata (P/Invoke library names).
18610 2006-07-28  Dick Porter  <dick@ximian.com>
18612         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18613         mono_loader_lock() somewhere, so don't delete the critical section
18614         for now.  Found by running and exiting monodevelop.
18616 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18618         * filewatcher.c: define the inotify syscalls when we're building on
18619         linux and have sys/syscall.h. The build system might not have support
18620         for inotify but the target system might have it.
18622 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18624         * domain.c: Documentation updates.
18626         * loader.c (mono_free_method): Do not release the method
18627         information if we are being profiled, as profilers will use this
18628         information at shut down to present some data to the user.
18630         This is needed so that the profiler does not crash, as the
18631         profiler tends to keep MonoMethods around, and they might become
18632         invalid if we free these.
18634         (mono_get_method_constrained): Return the original CIL stream
18635         method as well, so verification can be performed against it.
18637 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18639         * filewatcher.[ch]: support for inotify file system watcher.
18640         * icall.c: add new internal calls for the inotify file system watcher.
18642 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18644         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18645         #78888.
18647 2006-07-20  Dick Porter  <dick@ximian.com>
18649         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18650         warning.
18652 2006-07-20  Dick Porter  <dick@ximian.com>
18654         * threads.c (start_wrapper): Do the thread cleanup while we still
18655         hold a reference to its object.  Fixes bug 78123.
18657 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18659         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18660         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18661           "managed-to-managed".
18662         * icall.c: Redirect string constructors that take sbyte* to
18663           ves_icall_System_String_ctor_RedirectToCreateString.
18664         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18665           to CreateString () methods with matching signature.
18666         * reflection.c: Use original security informations for
18667           MONO_WRAPPER_MANAGED_TO_MANAGED.
18668         * security-manager.c: Use original security informations for
18669           MONO_WRAPPER_MANAGED_TO_MANAGED.
18670         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18671           that is a placeholder and only its address should be used.
18672         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18673           that is a placeholder and only its address should be used.
18675 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18677         Begin implementing COM Interop.
18678         * appdomain.c: Increment corlib version.
18679         * class.c: Set ComImport classes' parent to __ComObject.
18680         * loader.c: Mark cominterop methods as such.
18681         * domain.c: Add __ComObject class to MonoDefaults structure.
18682         * image.c: Add 2 hashtables to the image for COM Interop related methods
18683         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18684         using the mempool allocator
18685         
18686         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18687         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18688         declaration for mono_metadata_type_dup_mp.
18689         
18690         * debug-helpers.c: Added strings for two additional wrapper types
18691         * object.c: Create proxy objects for ComImport classes
18692         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18693         and added __ComObject class to MonoDefaults structure.
18694         
18695         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18696         MonoComInteropProxy and MonoComObject.
18697         
18698         * marshal.c: Added support for COM Interop
18699         (signature_cominterop): Converts managed signature to corresponding
18700         unmanaged COM signature.
18701         (cominterop_get_function_pointer): gets unmanaged function pointer via
18702         COM object vtable
18703         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18704         (cominterop_get_method_interface): returns interface type that method is defined on
18705         (mono_mb_emit_cominterop_call): emits native call to function pointer
18706         gotten from vtable
18707         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18708         that matches signature of unmanaged function.
18709         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18710         (cominterop_get_invoke): forwards call from proxy to __ComObject
18711         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18712         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18713         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18714         
18715         * marshal.h: Added Marshal icall declarations.
18716         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18717         so we can access them in finalizer
18718         
18719 2006-07-14  Dick Porter  <dick@ximian.com>
18721         * object.c (mono_type_initialization_cleanup): Fix a race
18722         condition by temporarily commenting out the critical section
18723         deletion.
18725 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18727         * reflection.c (create_custom_attr): Fix some warnings.
18728         (create_custom_attr_data): Ditto.
18729         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18730         types. Fixes #78855.
18732 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18734         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18736         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18738 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18740         * reflection.c (resolve_object): Add support for DynamicMethod.
18742         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18743         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18745 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18747         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18748         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18750 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18752         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18753         Fixes #77888.
18755 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18757         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18758         slightly: remove a shadow local variable.
18760 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18762         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18763         definition that introduces the virtual function slot.
18764         Also fix Coverity #105.
18766 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18768         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18769         for dynamic assemblies. Fixes #78724.
18771 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18773         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18774         Fixes #78722.
18776 2006-06-21  Martin Baulig  <martin@ximian.com>
18778         * reflection.c
18779         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18780         fixes #76484.
18782 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18784         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18786 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18788         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18789         nor TYPEREFs.
18790         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18791         Inflate result if necessary.
18792         (mono_class_get_full): Remove old version.  Rename from
18793         'mono_class_get' and add 'context' argument.  Pass it to
18794         ..._create_from_typespec.
18795         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18796         (mono_ldtoken): Revert change below.
18798 2006-06-20  Martin Baulig  <martin@ximian.com>
18800         * class.c (mono_ldtoken): Don't pass the generic context to
18801         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18803 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18805         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18806         and later freeing it. Fixes #78638.
18808 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18810         * icall.c (mono_class_get_throw): Revert over-zealous error
18811         throwing, the caller for mono_class_get_throw will cope with
18812         errors when classes are not properly initialized already.
18814         The code still copes with loader exceptions though.
18816         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18817         
18818 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18820         Fixes the `make run1' version of RuntimeAbort (to be commited,
18821         source is in Bugzilla).
18822         
18823         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18824         FALSE on class loading failure instead of returning true.
18826         * class.c (mono_class_create_from_typedef): It is possible for
18827         mono_metadata_interfaces_from_typedef_full to fail if a class is
18828         not found, cope with this.
18829         
18831 2006-06-14  Dick Porter  <dick@ximian.com>
18833         * socket-io.c: 
18834         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18835         4.1.1
18837 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18839         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18841 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18843         * icall.c: Another fix for building mono in Visual Studio.
18845 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18847         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18848         
18849 2006-06-09  Martin Baulig  <martin@ximian.com>
18851         * debug-mono-symfile.c: Put this back and really fix it this
18852         time. Sorry for all the trouble.
18854 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18856         * icall.c (mono_class_get_throw): Fix a warning.
18857         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18858         ReflectionTypeLoadException if needed. Fixes #78606.
18860         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18861         (mono_class_init): Ditto.
18863         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18864         ref_only exceptions.
18865         (mono_loader_clear_error): Make this work even if there is no error.
18867 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18869         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18870         Marshal.GetComSlotForMethodInfo using internal call.
18872 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18874         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18875         a function for signalling it.
18877         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18878         a referenced assembly is not found.
18880         * loader.c (mono_loader_error_prepare_exception): Add support for 
18881         LOADER_ERROR_ASSEMBLY. Fix formatting.
18883 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18885         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18886         for VARIANT marshalling on windows and increment corlib version
18887         since Variant struct was added.
18889 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18891         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18892         stack trace line information:
18894         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18895         (Martin) when looking up B which is between A and C, return A not C.
18897         Bug is #78573.
18899         Thanks to Alexander Olk for tracking this down.
18901 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18903         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18904         
18905         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18906         avoid clobbering its value.
18907         (mono_string_to_lpstr): Fix a warning on windows.
18909 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18911         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18913         * reflection.c loader.c: Removed references to 'dummy' flag.
18915         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18917         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18918         it gets GC tracking.
18920         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18921         GC tracking.
18922         
18923         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18925         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18927         * appdomain.c: Bump corlib version.
18929 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18931         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18932         CEE_STIND_REF when working with object references.
18934 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18936         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18937         Fixes #78539.
18939 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18941         * loader.c (method_from_memberref): Fix argument value for
18942         mono_loader_set_error_method_load (I was passing the MonoClass
18943         instead of the class name char *).
18945 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18947         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18948         CEE_STIND_REF when working with object references.
18950 2006-05-30  Martin Baulig  <martin@ximian.com>
18952         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18953         mono_method_full_name() change and replace the ':' with a '.'
18954         here.
18956 2006-05-30  Martin Baulig  <martin@ximian.com>
18958         * debug-mono-symfile.c
18959         (mono_debug_symfile_lookup_location): Fix the algorithm:
18960         when looking up B which is between A and C, return A not C.
18962 2006-05-29  Martin Baulig  <martin@ximian.com>
18964         * mono-debug.h
18965         (MonoDebugMethodInfo): Make the typedef public.
18966         (MonoDebugSourceLocation): New public struct.
18968         * mono-debug.c
18969         (mono_debug_source_location_from_address): Removed.
18970         (mono_debug_source_location_from_il_offset): Removed.
18971         (mono_debug_il_offset_from_address): Removed.
18972         (mono_debug_address_from_il_offset): Removed.
18973         (mono_debug_lookup_method): New public function.
18974         (mono_debug_lookup_source_location): New public function; replaces
18975         the old mono_debug_source_location_from_*() functions; see the
18976         inline documentation.
18977         (mono_debug_free_source_location): New public function.
18978         (mono_debug_print_stack_frame): New public function; see the
18979         inline documentation.
18981         * debug-mono-symfile.c
18982         (mono_debug_find_source_location): Renamed into
18983         mono_debug_symfile_lookup_location(); only take a
18984         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18985         documentation.
18986         (mono_debug_find_method): Renamed into
18987         mono_debug_symfile_lookup_method().
18989 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18991         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18992         returned by mono_image_open_full ().
18994         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18995         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18996         #78517.
18998         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18999         #78518.
19001 2006-05-27  Miguel de Icaza  <miguel@novell.com>
19003         * class.c (mono_class_from_typeref): handle missing images
19004         earlier, deals with bug #78418.   Refactor code; 
19006         Fix a warning introduced in my previous commit (some stale code
19007         from before I revisited my patch).
19009         * class.c (mono_class_create_from_typedef): On failure, remove the
19010         class from the MonoImage->class_cache as the class is not
19011         initialized;   Fixes the leak pointed out by Paolo.
19013 2006-05-25  Dick Porter  <dick@ximian.com>
19015         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
19016         DeleteCriticalSections until I figure out which one may still be
19017         sometimes locked when mono_thread_cleanup is called.
19019 2006-05-24  Dick Porter  <dick@ximian.com>
19021         * threads.c (mono_thread_cleanup): Move the threading cleanup out
19022         of mono_thread_manage and back into its own function, so it can be
19023         called after the finalizer thread has finished.
19025         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19027 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
19029         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19030         Fixes #78495.
19032         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19033         with non-blittable elements.
19034         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19036 2006-05-24  Martin Baulig  <martin@ximian.com>
19038         * mono-debug-debugger.h (MonoDebuggerEvent): Added
19039         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
19041         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19042         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19043         `mono_debugger_event_handler' to NULL.
19045 2006-05-24  Martin Baulig  <martin@ximian.com>
19047         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19049 2006-05-24  Martin Baulig  <martin@ximian.com>
19051         * mono-debug-debugger.h
19052         (mono_debugger_create_notification_function): Added
19053         `MonoCodeManager *' argument.
19055 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19057         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19059 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19061         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19062         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19063         implementation.
19065 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19067         * icall.c: precise GC support: objects can't be stored in unmanaged
19068         memory anymore, even if they are kept alive by other references: since
19069         they can move the GC needs to be able to always find them.
19071 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19073         * object.c: precise GC support for static fields. Support
19074         for moving GCs: write barriers and pinned allocation for interned
19075         strings.
19077 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19079         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19080         structure.
19082 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19084         * class.c, gc.c: sgen and precise GC updates.
19086 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19088         * marshal.h, marshal.c: added write barrier wrapper and precise type
19089         fixes.
19091 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19093         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19094         support.
19096 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19098         * reflection.c: precise and sgen GC updates.
19100 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19102         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19104 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19106         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19108 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19110         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19111         MONO_TYPE_OBJECT. Fixes #78462.
19113 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19115         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19116         and blittable types.
19118 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19120         * class.c (mono_class_get_exception_for_failure): Implement parts
19121         of a TODO: if the loader error is set (instead of the class
19122         error), we return a Loader exception that can be properly thrown
19123         elsewhere.
19125         This was exposed by some Winforms 2.0 code that I tried to run
19126         (Atsushi pointed me to it).
19128 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19130         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19131         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19132         
19133         * marshal.c (emit_marshal_vtype): Add limited support for 
19134         UnmanagedType.LPStruct. Fixes #78427.
19136         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19137         Applied a patch from kangaroo to fix #77523.
19139 2006-05-17  Martin Baulig  <martin@ximian.com>
19141         * threads.c
19142         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19143         (debugger_thread_created): Removed.
19144         (debugger_thread_exited): Removed.
19146 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19148         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19150         * object-internals.h (MonoReflectionResource): Sync with managed version.
19152 2006-05-12  Wade Berrier <wberrier@novell.com>
19154         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19156 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19158         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19159         functions try to allocate from the image mempool.
19161 2006-05-12  Dick Porter  <dick@ximian.com>
19163         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19165 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19167         * object.c: The FieldGetter and FieldSetter methods require the full
19168         name of the class, not only the name. Fixes bug #78277.
19170 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19172         * loader.c (method_from_memberref): Do not pass the NULL klass to
19173         mono_loader_set_error_() methods.  Pass the non-NULL value
19174         (class). 
19176 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19178         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19179         (mono_assembly_close): Null out assembly->image->references after freeing it.
19181         * image.c (mono_image_close): Free image->references.
19182         
19183         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19185 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19187         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19188         before checking if it's NULL (g_assert).
19190 2006-05-10  Martin Baulig  <martin@ximian.com>
19192         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19193         I thought I already killed that two months ago, but now it somehow reappeared.
19195 2006-05-10  Martin Baulig  <martin@ximian.com>
19197         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19199 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19201         * reflection.c: Allocate memory for dynamically created methods in the image
19202         mempools.
19204 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19206         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19207         don't use the ad pointer before checking if it's NULL (g_assert).
19209 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19211         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19212         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19214         * marshal.c: Allocate all signatures from mempools.
19216         * marshal.c: Allocate some more signatures from mempools.
19218 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19220         * object.c (mono_load_remote_field): The code used to provide a
19221         temporary variable for returning results if the user did not
19222         provide a result pointer.  But our temporary variable was allocted
19223         on the satck.
19225         Fix calling code to always pass a result area.   Coverity ID 103.
19227 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19229         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19230         value, not the old. Fixes #78312.
19231         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19233         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19234         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19235         per-image cache.
19237         * assembly.c (mono_assembly_close): Free image->references.
19239         * assembly.c (mono_assembly_names_equal): Fix a warning.
19240         (mono_assemblies_cleanup): Cleanup more global data.
19242         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19244         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19245         ptr_cache and image->modules.
19247         * image.c (mono_image_init): Allocate array_cache lazily.
19248         
19249 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19251         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19252         behavior was changed recently and has bad side effects.
19254 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19256         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19257         
19258         * assembly.c (mono_assembly_close): Remove a debug printf.
19260         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19262         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19263         to also allow for temporary references between mono_image_open ()/close ().
19265         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19267 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19269         * marshal.c: Fix support for dynamic methods.
19271         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19273         * marshal.c (mono_marshal_cleanup): New cleanup function.
19275         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19276         image mempools.
19278         * class.c (mono_class_init): Fix leaking class->nested_classes.
19280         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19282         * image.c (mono_image_init): Initialize the new cashes.
19284         * image.c (mono_image_close): Destroy the new cashes.
19286         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19288         * mempool.c (mono_mempool_strdup): New helper function.
19290         * class-internals.h: Add prototype for mono_loader_unlock ().
19292         * domain.c (mono_jit_info_table_find): Fix a warning.
19293         (mono_debugger_check_runtime_version): Ditto.
19295         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19296         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19297         functions to these modules.
19299         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19300         metadata modules.
19301         
19302         * marshal.c (mono_free_bstr): Fix a warning.
19304         * assembly.c (mono_assembly_open_full): Fix another small leak.
19306         * object.c: Fix some unload leaks in the remoting code.
19308         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19309         function.
19311         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19313         * reflection.c: Fix some unload leaks in dynamic assemblies.
19315 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19317         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19318         * marshal.h: Add BSTR support on Win32
19319         * icall.c: Add BSTR icalls
19320         * metadata.h: Add BSTR enums
19322 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19324         Work to catch the crash from #76795 and turn it into an
19325         exception.   As I stubbed out pieces of the VisualBasic support,
19326         I found a number of places where the code was failing and I added
19327         checks to those places. 
19328         
19329         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19330         function return a status code.  If we fail to parse the signature
19331         from mono_metadata_parse_generic_inst, return FALSE.
19333         * loader.c (mono_get_method_from_token): If we fail to load the
19334         method (mono_class_get) return NULL.   
19336         * (method_from_memberref): Return NULL if we are unable to parse
19337         the method signature
19339         (mono_loader_error_prepare_exception): Since we now use the
19340         loader_error flag internally to stop processing, and obtaining
19341         exceptions that might be thrown will walk this code path the
19342         proper way of going from a MonoLoaderError into a
19343         MonoException was convoluted.   This new routine encapsulates the
19344         process of turning the error into an exception and *clearing* the
19345         error afterwards.
19346         
19347 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19349         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19350         with missing assemblies), and to cope with:
19352                 * Missing fieldref from a non-existing assembly.
19353                 * Missing methodref from a non-existing assembly.
19355         The first batch of work to address *some* of the issues from 76661.
19356         
19357         * object.c (mono_class_create_runtime_vtable): If we fail to
19358         initialize the class raise the exception here. 
19360         * metadata.c (mono_class_get_overrides_full): If any methods fail
19361         to load return the failure to the caller.
19363         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19364         flagging assemblies that failed to load.   
19366         Do not crash if we are unable to load the assembly.
19368         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19369         assemblies. 
19371         * loader.c (mono_loader_set_error_type_load): Change the
19372         convention to always pass unallocated strings, so we make our own
19373         copies (I know our own code had duplicated strings before, but
19374         this keeps the normal conventions).
19375         (method_from_memberref): Call mono_loader_set_error_method_load
19376         for all possible failures of loading the class. 
19377         Remove assert, turn into a loader error.
19379         (mono_loader_error_to_exception): Move this routine from mini
19380         (mini_loader_error_to_exception) there was no need to have that in
19381         mini. 
19383         * class.c (mono_class_from_typeref): If we were not able to load
19384         the assembly with mono_assembly_load_reference, call the
19385         mono_loader_set_error_type_load to register the problem.
19387         (mono_class_setup_fields): If we fail to load the type from
19388         mono_metadata_parse_type_full, call mono_class_set_failure and
19389         break from the loop.
19391         If class->exception_type is set, we do not layout the fields as
19392         that might crash the runtime, and instead return (from breaking
19393         from the previous loop).
19395         (mono_class_setup_vtable): This now returns a boolean indicating
19396         whether the table was properly setup.   The decision is driven by
19397         mono_class_get_overrides_full which might run into non-existing
19398         methods. 
19399         
19400         (mono_class_init): Returns TRUE on success or FALSE if there was a
19401         problem in loading the type (incorrect assemblies, missing
19402         assemblies, methods, etc).
19404         When we call mono_class_setup_fields we also check for a potential
19405         error inside this call (either a class exception or a general
19406         loader exception).
19408         (mono_class_create_from_typedef): If the parent fails to load
19409         (calling mono_class_get_full) return NULL.
19410         
19411         ** Important **
19413         calls to mono_metadata_parse_type_full should be checked
19414         everywhere and set the mono_class_set_failure
19415         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19417         The current patch checks the places where my manually constructed
19418         tests show the errors are showing up, but we should do it
19419         everywhere. 
19421         ** Important2 **
19423         mono_class_init return values should be tested everywhere, like
19424         the previous case this is something that we should audit
19425         everywhere and not only on the cases exposed by the tests I
19426         created. 
19428 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19430         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19431         boolean parameter and instead pass the information on `options'
19432         parameter (FileOptions).
19434         * icall.c: Register the new signature for MonoIO.Open.
19436         * debug-helpers.c (dis_one): Trying to understand how coverity
19437         works.  Fix Run 5, item 78.
19439 2006-04-26  Dick Porter  <dick@ximian.com>
19441         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19442         dereference.
19444 2006-04-25  Martin Baulig  <martin@ximian.com>
19446         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19448         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19449         debugger_thread_created().
19450         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19451         special way.
19452         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19453         (mono_debugger_finalize_threads): New function; undo the effects
19454         of mono_debugger_init_threads().
19455         (mono_debugger_create_all_threads): Removed.
19457 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19459         * image.c (mono_image_close): Tidy up trace messages.
19461         * assembly.c (mono_assembly_close): Ditto.
19463         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19464         no longer references an already freed assembly. Fixes #78168.
19466 2006-04-21  Dick Porter  <dick@ximian.com>
19468         * threads.c (mono_thread_detach): Fix reference counting when
19469         detaching threads.
19471 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19473         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19474         #78155.
19476 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19478         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19479         (mono_type_to_stind): Ditto.
19481         * marshal.c: Use the new helper functions to simplify code.
19483         * image.c (mono_image_close): Add some code for help debug assembly unloading
19484         problems.
19486         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19487         image mempool.
19489         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19490         assembly was already loaded in another appdomain. Fixes #78083.
19492 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19494         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19495         referenced assemblies.
19496         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19498         * domain.c (mono_domain_free): Add a trace message.
19500         * appdomain.c (add_assemblies_to_domain): Ditto.        
19502         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19503         field.  
19505 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19507         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19509 2006-04-12  Martin Baulig  <martin@ximian.com>
19511         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19512         `USE_INCLUDED_LIBGC'.   
19514 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19516         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19517         the patch contains ../ and a small directory name later. Hopefully fixes
19518         #78035.
19520 2006-04-10  Martin Baulig  <martin@ximian.com>
19522         Clean up the debugger's thread-handling code.
19524         The debugger's thread-handling code has been moved from
19525         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19526         over the `threads' hash, keep track of exiting threads and also
19527         use proper locking.
19529         We can now debug XSP and XSP based applications with the debugger.
19531         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19533         * threads.h
19534         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19535         (mono_install_thread_callbacks): Likewise.      
19537         * threads.c (mono_thread_callbacks): Removed.
19538         (debugger_thread_created, debugger_thread_exited): New static functions.
19539         (start_wrapper): Call debugger_thread_created().
19540         (thread_cleanup): Call debugger_thread_exited().
19541         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19542         (mono_debugger_init_threads): New public function.
19543         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19544         iterate directly over the `threads' hash and also use proper locking.
19546         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19548         * mono-debug-debugger.h
19549         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19551 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19553         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19554         argument type=array. Fixes #78057.
19556 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19558         * culture-info-table.h : regenerated. Fixed bug #69652.
19560 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19562         * loader.c metadata.c: Reapply a variant r59116.
19563         
19564         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19566         * class.c (mono_class_setup_interface_offsets): New internal function.
19568         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19569         interfaces too. Fixes #77398.
19571         * reflection.c (encode_cattr_value): Add support for 
19572         parameter type=object, argument type=array.
19573         (load_cattr_value): Ditto. Fixes #77916.
19575         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19576         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19578         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19579         a byval char array and CharSet is Ansi.
19581         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19583 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19585         * metadata.c: Add some locking comments.
19586         
19587         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19588         mempool.
19589         (mono_metadata_free_method_signature): Don't free the signature itself.
19591         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19593         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19594         reference the same MonoImage.
19595         (mono_assembly_load_from_full): Add an assert.
19597 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19599         * image.c (mono_image_close): Don't put the image we are about to free into the
19600         loaded_images_guid_hash.
19602         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19603         to reduce code duplication.
19605         * marshal.c: Register the native functions called by this module as icalls, to
19606         somewhat centralize the creation of MonoMethodSignature's.
19608         * loader.c (mono_method_signature): Add a cache for method signatures.
19610         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19611         the parameter attributes of a method.
19612         (mono_metadata_parse_method_signature_full): Refactored the computation of
19613         parameter attributes into a separate function. Also avoid one allocation in
19614         most cases.
19616         * assembly.c (mono_assembly_close): Ditto.
19618         * image.c (mono_image_close): Log trace messages with INFO level.
19620         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19622         * image.c reflection.c: Correct reference counting of image modules.
19623         
19624         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19625         of this function from the image mempool.
19626         
19627         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19628         to allow more cached types to be used.
19630         * mono-debug.c (mono_debug_add_method): Appled patch from
19631         David S. Miller  <davem@sunset.davemloft.net>: Access 
19632         minfo->lexical_blocks[] entry elements using read32().
19634 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19636         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19637         methods as it is allocated from the mempool.
19639         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19640         image mempool.
19642         * metadata-internals.h: Add comments describing the reference counting scheme
19643         used for MonoImage and MonoAssembly.
19645         * image.c assembly.c reflection.c: Rework reference counting of images and 
19646         assemblies so they are freed when the runtime is shut down. Free some 
19647         additional memory structures when an image is unloaded.
19648         
19649 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19651         * class.c loader.c reflection.c: Allocate more data structures in
19652         the image mempool.
19654 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19656         * icall.c
19657         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19658         build on pre glib 2.4 systems.
19660 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19662         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19664         * icall.c: Fix some warnings.
19666 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19668         * culture-info-table.h : regenerated.
19670 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19672         * threads.c, object-internals.h, verify.c: changed the culture caching
19673         code to use a normal MonoArray for storage so the GC can keep track of
19674         them easily. Fixed bits of the cache logic, too and simplified the
19675         code.
19677 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19679         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19680         thread for non-Boehm GCs.
19682 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19684         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19685         needed to keep track of the data for static fields.
19687 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19689         Fix #75172
19690         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19691         for interface classes.  Use 'num_methods' instead.
19692         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19693         before using '->vtable_size' field.
19695 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19697         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19698         doesn't contain managed pointers, so use a normal hashtable.
19700 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19702         * reflection.c, class-internals.h, domain.c: fixed handling of types
19703         used as values for objects in custom attributes (bug #77915):
19705 2006-03-24  Martin Baulig  <martin@ximian.com>
19707         * class.c (mono_class_setup_fields): Added support for generic
19708         instances; fixes #77580.
19710 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19712         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19714 2006-03-24  Dick Porter  <dick@ximian.com>
19716         * file-io.c (get_file_attributes): More stat macro breakage.
19717         Fixes bug 77759.
19719 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19721         * profiler.c: added the file=filename option in the default profiler
19722         to output the profile data to filename.
19724 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19726         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19727         bug #77877.
19729 2006-03-22  Martin Baulig  <martin@ximian.com>
19731         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19732         allocated `MonoClassField *' in `fb->handle'.
19734 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19736         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19737         allocate interface ID to save memory and allow better ID reuse on
19738         appdomain unload. setup_generic_vtable () removal from Martin.
19740 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19742         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19743         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19744         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19745         write barriers for reference stores with managed objects accessed with
19746         C structures in the runtime and in embedding programs.
19748 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19750         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19751         'interface_id' and 'max_interface_id' fields of MonoClasses
19752         representing open generic types.
19754 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19756         * object.h, object.c, icall.c: added functions to deal with
19757         storing valuetypes that contain references in managed objects.
19758         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19759         fixes and comments around uses of mono_array_addr ().
19761 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19763         * object.h, icall.c, monitor.c: object.GetHashCode ()
19764         implementation that supports the moving garbage collector.
19766 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19768         * icall.c, threads-types.h, threads.c: implemented finalizer for
19769         LocalDataStoreSlot.
19771 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19773         * metadata.c (mono_type_size): Add a fixme.
19774         (mono_type_stack_size): Ditto.
19776         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19777         'type_forwarders' field.
19779         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19780         attribute from net 2.0.
19782         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19783         from class.c.
19785         * class.c (mono_class_setup_fields): Fix a warning.
19786         
19787         * class.c (mono_class_from_name): Add support for assemblyref entries
19788         in the EXPORTEDTYPE table.
19790         * reflection.c: Add support for handling type forwarders under net 2.0.
19792         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19793         
19794 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19796         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19797         overwriting entries in ModuleBuild->types, also clean up the code
19798         a little. Fixes #77774.
19800 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19802         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19803         load friend assembly info when present.
19805 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19807         Fix crasher on gtest-158.cs.
19808         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19809         the return value if the MonoClass we want is yet in an
19810         inconsistent state.
19811         * class.c (mono_class_create_from_typedef): Add an comment
19812         explaining an order dependency between mono_class_setup_parent and
19813         mono_class_setup_mono_type.
19815 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19817         * class.c: documentation updates and events bug fix.
19819 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19821         * class.c: some cleanup, locking fixes.
19823 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19825         * class.c: fix the generics code to setup nested
19826         type info to the instantiated type (bug #77770).
19828 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19830         * marshal.c: fixed a few type correctness issues.
19832 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19834         * loader.c: the Set/Get/Addrtess array methods should be public.
19836 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19838         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19839         
19840         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19841         info->wrapper.
19843 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19845         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19847         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19849         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19850         (mono_mempool_alloc0): Ditto.
19852 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19854         * socket-io.c:
19855         (create_object_from_sockaddr): it was allocating 4 extra bytes
19856         for the AF_UNIX data. Fixes bug #77747.
19858 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19860         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19862 2006-03-09  Dick Porter  <dick@ximian.com>
19864         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19865         Fixes bug 76966 again.
19867 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19869         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19870         names from r57532
19871         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19873 2006-03-07  Martin Baulig  <martin@ximian.com>
19875         * object.c
19876         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19878 2006-03-07  Martin Baulig  <martin@ximian.com>
19880         * class.c
19881         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19882         regression introduced in r56970; see gtest-252.cs.
19884         * loader.c (mono_get_method_constrained): Correctly handle generic
19885         methods; see gtest-253.cs.
19887 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19889         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19891 2006-03-04  Martin Baulig  <martin@ximian.com>
19893         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19894         compute the parent type at runtime, just like we're already doing
19895         it for interfaces.
19897         * reflection.c
19898         (mono_reflection_bind_generic_parameters): Don't compute the
19899         parent type anymore.
19901         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19903 2006-03-04  Martin Baulig  <martin@ximian.com>
19905         * mono-debug-debugger.h
19906         (mono_debugger_create_notification_function): Allocate memory at
19907         runtime and return a pointer to it.
19909 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19911         * assembly.c: Fix windows build.
19912         
19913         * assembly.c: Fix build.
19915         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19917         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19918         
19919 2006-03-03  Dick Porter  <dick@ximian.com>
19921         * process.c
19922         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19923         Check parameters before dereferencing them.  Fixes Aaron's part of
19924         bug 77393.
19926 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19928         Fix performance regression.
19929         * loader.c (find_method_in_class): Add 'from_class' argument.
19930         Rename 'klass' argument to 'in_class'.  The signature is compared
19931         against the method in 'in_class', and the corresponding method is
19932         returned from 'from_class'.
19933         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19934         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19935         type definition and generic instantiation in parallel.
19936         (mono_get_method_constrained): Update to changes.
19938 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19940         * threads.c: make sure the domain is correct, too when doing
19941         mono_thread_attach ().
19943 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19945         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19946         windows. Fixes #77683.
19948 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19950         * object.h, *: introduced specific way to set elements of an array
19951         of references to be used as write barrier. Still need to audit the
19952         uses of mono_array_addr.
19954 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19956         * object-internals.h: New field to cache the assmebly name, patch
19957         from Tambet Ingo (tambet@ximian.com)
19959 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19961         * decimal.h, class-internals.h, metadata-internals.h,
19962         file-io.h: mark a few function declarations as internal, to
19963         reduce the number of PLT entries.
19965 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19967         * file-io.c: fix typo in warning message.
19969 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19971         * loader.c: on unix, lookup the "*A" version of a function
19972         if charset is auto as a second option before failing.
19974 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19976         * class.h (mono_class_inflate_generic_method): Revert to two
19977         argument version.
19978         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19979         (mono_class_inflate_generic_method_full): Add.
19980         * class.c (mono_class_inflate_generic_method_full): Rename from
19981         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19982         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19983         * loader.c, reflection.c: Update to changes.
19985 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19987         * icall.c: const fixes and small improvements.
19989 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19991         * threadpool.c: for asynchronous connect(), enable the same workaround
19992         for BSD 6 as for the Mac. Fixes bug #77637.
19994 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19996         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19997         formatted classes. Fixes #77524.
19999 2006-02-24  Raja R Harinath  <rharinath@novell.com>
20001         * class.c (inflate_generic_type): Add a couple more
20002         micro-optimizations.
20003         (inflate_generic_context): Don't use the 'gmethod' from
20004         'inflate_with'.
20005         (mono_class_inflate_generic_method): If the method has generic
20006         parameters, but the passed-in context doesn't have a 'gmethod',
20007         create one.  Use the possibly simplified generic instantiation
20008         from the declaring class instead of the one passed in.
20010 2006-02-24  Raja R Harinath  <harinath@gmail.com>
20012         Make generic method signature and method header handling lazy.
20013         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20014         (inflate_generic_header): Likewise.
20015         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
20016         parameter to avoid inflating types.
20017         (mono_get_inflated_method): Empty out.
20018         * class.h (mono_class_inflate_generic_method): Update to changes.
20019         * loader.c (mono_get_method_from_token): Don't parse signature for
20020         generic methods, nor methods of generic classes.
20021         (mono_method_signature): Rename from 'mono_method_signature'.
20022         Inflate signature on demand.
20023         (mono_method_get_header): Inflate method header on demand.
20024         * reflection.c: Update to changes.
20026 2006-02-23  Raja R Harinath  <rharinath@novell.com>
20028         * metadata.c (mono_metadata_inflate_generic_inst): If the
20029         instantiation is closed, don't bother expanding it in the new
20030         context.
20031         * class.c (inflate_generic_class): If the generic instantiation
20032         doesn't change after inflation, return the argument itself.
20033         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20034         Add bounds checks.
20035         (inflate_generic_context): If neither the generic class nor the
20036         generic method instantiations change, return the original context.
20037         * reflection.c (mono_method_get_object): Do
20038         'mono_get_inflated_method' before accessing the ->klass field.
20039         (inflate_mono_method): Don't create a MonoGenericMethod unless
20040         necessary.
20041         (inflate_method): Don't pass a constructed type as the declaring
20042         type of a methodbuilder.
20044 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20046         * object.c: fix memory overwrite.
20048 2006-02-22  Dick Porter  <dick@ximian.com>
20050         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20051         it doesn't work any more.
20052         (mono_threads_request_thread_dump): Fix unused variable warnings.
20054 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20056         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20057         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20058         the public header file.
20060 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20062         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20064 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20066         * class-internals.h, object.c: reduce the size of MonoVTable
20067         and store the interface_offsets array at negative offsets.
20069 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20071         * metadata.c: tweak table descriptors data structures to reduce
20072         size and runtime relocations.
20074 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20076         * marshal.c: fix some types and opcodes to be type-safe
20077         in marshaling wrappers.
20079 2006-02-21  Ankit Jain  <jankit@novell.com>
20081         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20083 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20085         * metadata.c (get_constraints): Relax debugging checks for monodis.
20087 2006-02-21  Ankit Jain  <jankit@novell.com>
20089         * metadata.c (mono_metadata_load_generic_params): Move the code
20090         checking for ambiguous generic params from here to mono/dis/get.c
20091         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20093 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20095         Fix assertion triggered when compiling nemerle.
20096         * class.c (mono_get_shared_generic_inst): Rename from
20097         get_shared_inst and make non-static.
20098         * loader.c (mono_get_shared_generic_method): New.  Used to create
20099         the MonoGenericContext-equivalent of a MonoGenericContainer.
20100         (mono_get_method_from_token): Initialize the 'context' field of
20101         the created MonoGenericContainer.
20102         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20103         * metadata.c (get_constraints): Add sanity check.
20104         * class-internals.h: Add new internal methods.
20106         * reflection.c (verify_safe_for_managed_space): New sanity check.
20107         Currently checks that owner-less generic parameters aren't allowed
20108         in managed space.
20109         (mono_type_get_object): Use it.
20110         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20111         that are now in mono_type_get_object.
20112         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20114 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20116         * metadata.c (mono_type_create_from_typespec): Rename from
20117         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20118         argument and caching of types in the generic container.
20119         (unwrap_arrays, find_generic_param): Remove.
20120         * metadata-internals.h: Update.
20121         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20123 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20125         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20127         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20128         return values. Fixes #77581.
20130         * class.c (mono_fnptr_class_get): Switch name and name_space.
20132         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20133         classes and add support for [In, Out] attributes.
20134         (mono_marshal_free_asany): Ditto. Fixes #77524.
20136 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20138         * class.c (mono_class_from_generic_parameter): Make more robust to
20139         incomplete MonoGenericContainers from monodis.
20141 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20143         * class-internals.h: added some more exception types.
20144         * class.c, metadata.c: added a few checks to handle missing
20145         types.
20147 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20149         Use owner-less generic-params some more.
20150         * class.c (my_mono_class_from_generic_parameter): Remove.
20151         (mono_class_from_generic_parameter): Handle null image,
20152         param->name and param->owner.
20153         (mono_class_from_mono_type): Update.
20154         (mono_class_create_from_typespec): Remove 'container' parameter.
20155         If that parameter is non-null, the result is always inflated by
20156         'mono_class_get_full' anyway.
20157         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20158         parameter.
20159         (mono_class_get_full): Update.
20161         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20162         instance is not open, don't bother inflating.
20163         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20164         parse metadata for inflated classes.
20165         (_mono_class_get): Change GenericContext* parameter to
20166         GenericContainer*.
20167         (mono_class_create_from_typespec): Likewise.  Simplify, and
20168         implement trivially.  All the cases are handled in
20169         mono_class_from_mono_type.  Don't inflate returned class.
20170         (mono_class_get_full): Delegate GENERICINST optimization to
20171         inflate_generic_type.
20172         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20174 2006-02-16  Dick Porter  <dick@ximian.com>
20176         * socket-io.c (create_object_from_sockaddr): Fix typo.
20177         (create_sockaddr_from_object): Check array lengths before
20178         potentially accessing items off the end.
20179         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20180         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20181         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20182         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20183         length checks to avoid wraparound overflows.
20184         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20185         contents of the array of sockets
20186         (hostent_to_IPHostEntry2)
20187         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20188         Check return value of inet_ntop ().
20189         (addrinfo_to_IPHostEntry): Fix typo
20191 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20193         Type metadata parsing doesn't use generic-instantiation information.
20194         * metadata.c (mono_metadata_parse_array_full): Change
20195         MonoGenericContext* parameter to MonoGenericContainer*.
20196         (mono_metadata_parse_type_full): Likewise.
20197         (mono_type_create_from_typespec_full): Likewise.
20198         (mono_metadata_parse_mh_full): Likewise.
20199         (mono_metadata_parse_generic_inst): Likewise.
20200         (do_mono_metadata_parse_generic_class): Likewise.
20201         (do_mono_metadata_parse_type): Likewise.
20202         * metadata-internals.h: Update to changes.
20203         * class.c (mono_class_find_enum_basetype): Likewise.
20204         (mono_class_setup_fields): Likewise.
20205         (mono_class_create_from_typespec): Likewise.
20206         * loader.c (method_from_methodspec): Likewise.
20207         (mono_get_method_from_token): Likewise.
20208         (mono_method_get_header): Likewise.
20210 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20212         * marshal.c: handle additional GENERICINST case (patch from
20213         Thong Nguyen <tum@veridicus.com>).
20214         Fix a few cases where LDIND_I/STIND_I was used for references.
20216 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20218         * reflection.c (mono_reflection_get_token): Remove unused variable.
20220 2006-02-16  Martin Baulig  <martin@ximian.com>
20222         * reflection.c (mono_reflection_get_token): Add support for fields
20223         in instantiated generic types.
20225         * icall.c
20226         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20228 2006-02-15  Martin Baulig  <martin@ximian.com>
20230         * icall.c
20231         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20232         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20233         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20234         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20236 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20238         * class.c, metadata.c, metadata.h, object.c, icall.c,
20239         marshal.c: changed mono_type_get_underlying_type () to do
20240         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20241         Fixed handling of instantiated generic valuetypes (bug #75479).
20243 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20245         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20246         Delegate to mono_metadata_decode_value, and work on the returned value.
20248         * icall.c (ves_icall_MonoType_GetGenericArguments):
20249         Add consistency check here too.
20250         
20251 2006-02-15  Ankit Jain  <jankit@novell.com>
20253         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20254         char/short etc.
20256 2006-02-15  Ankit Jain  <jankit@novell.com>
20258         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20259         signed values, used only for representing lower bounds of arrays.
20260         (mono_metadata_parse_array_full): Use new
20261         mono_metadata_decode_signed_value to decode lower bounds.
20263 2006-02-14  Martin Baulig  <martin@ximian.com>
20265         * reflection.c
20266         (mono_reflection_get_token): Support "MonoGenericMethod" and
20267         "MonoGenericCMethod" and allow generic instances / methods.
20269 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20271         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20272         to obtain the terminal size using an ioctl.
20274         * object.c (mono_nullable_init): Revert this as nullable reference
20275         types are not valid.
20276         (mono_nullable_box): Ditto.
20278 2006-02-09  Dick Porter  <dick@ximian.com>
20280         * threads.c (mono_thread_detach): Drop a reference to the thread
20281         we're detaching.
20283 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20285         * object.c (mono_nullable_init): Handle nullable reference types.
20286         (mono_nullable_box): Ditto. Fixes #77446.
20288 2006-02-07  Martin Baulig  <martin@ximian.com>
20290         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20292 2006-02-07  Ankit Jain  <jankit@novell.com>
20294         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20295         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20296         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20297         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20298         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20299         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20301 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20303         * class.c (mono_class_create_generic): Set type_token as well.
20305         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20306         compatible with MS.
20308 2006-02-02  Martin Baulig  <martin@ximian.com>
20310         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20311         has never been used so far.
20313 2006-02-02  Martin Baulig  <martin@ximian.com>
20315         * mono-debug-debugger.h: Changed comment at the top of this file;
20316         the header is not installed, but it's safe to #include it from
20317         within the JIT.
20319         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20320         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20322 2006-02-02  Martin Baulig  <martin@ximian.com>
20324         * mono-debug.h
20325         (MonoSymbolTable): Removed the `metadata_info' field.
20327         * mono-debug.c
20328         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20330         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20331         (mono_debugger_add_builtin_types): Removed.
20332         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20333         (mono_debugger_create_notification_function): We now operate on a
20334         pre-allocated area; take a `gpointer' and return `void'.
20336         * mono-debug-debugger.c
20337         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20338         (mono_debugger_add_builtin_types): Removed.
20340 2006-02-02  Martin Baulig  <martin@ximian.com>
20342         * threads.c (mono_debugger_create_all_threads): New public method.
20344 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20346         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20347         breaks on several platforms.
20349 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20351         * assembly.c: the VS.NET build doesn't supply default values for
20352         MONO_ASSEMBLIES and MONO_CFG_DIR.
20354 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20356         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20357         helper function.
20359         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20361         * loader.c (method_from_memberref): Fix a warning.
20363         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20365         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20366         with explicit layout. Fixes #77433.
20368 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20370         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20371         max_interface_id is initialized before using it. Fixes #77398.
20372         (ves_icall_Type_GetInterfaces): Ditto.
20374 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20376         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20377         allocate memory for parameter attributes when parsing memberref
20378         signatures.
20379         * loader.c (mono_loader_set_error_method_load): Don't warn.
20380         (method_from_memberref): Ensure MissingMethodException gets thrown
20381         if method is not found.  Make warning more informative.
20383 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20385         Fix #77397
20386         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20387         return true if is byref.
20388         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20389         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20390         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20392 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20394         Fix tests/find-method.2.il
20395         * loader.c (find_method, find_method_in_class): Remove is_inflated
20396         argument.  Revert 2006-01-18 change.
20397         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20398         is generic, search for method in its generic definition.
20399         * class.c (mono_class_setup_vtable_general): Print generic
20400         arguments of generic types in debugging printf.
20402 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20404         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20406         * threads.c (mono_threads_request_thread_dump): New helper function.
20408 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20410         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20412 2006-01-25  Ankit Jain  <jankit@novell.com>
20414         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20415         move definition to ..
20416         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20417         
20418 2006-01-25  Ankit Jain  <jankit@novell.com>
20419             Raja R Harinath  <rharinath@novell.com>
20421         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20422         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20423         as necessary.
20425 2006-01-25  Martin Baulig  <martin@ximian.com>
20427         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20428         `MonoDebuggerThread' into debug-debugger.c.
20430 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20432         * profiler.c: fix printing of data.
20434 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20436         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20437           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20439 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20441         * object.c: fix deadlock related to string interning.
20443 2006-01-23  Martin Baulig  <martin@ximian.com>
20445         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20447         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20449 2006-01-23  Martin Baulig  <martin@ximian.com>
20451         * mono-debug.h: Moved the prototypes of some functions which are
20452         used by the JIT here from mono-debug-debugger.h.
20454 2006-01-21  Martin Baulig  <martin@ximian.com>
20456         * Makefile.am: Don't install mono-debug-debugger.h.
20458 2006-01-21  Martin Baulig  <martin@ximian.com>
20460         * mono-debug-debugger.h: Enforce the private status of this header
20461         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20462         Moved some stuff from mono-debugger-jit-wrapper.h here.
20464 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20466         * class.c (mono_class_from_typeref): Add a sanity test to help
20467         catch lack of assembly load/search hooks.
20469 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20471         * marshal.c (emit_struct_conv): Relax the fields with same offset
20472         check even more. Fixes #77230.
20474 2006-01-18  Martin Baulig  <martin@ximian.com>
20476         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20477         argument; if false, we compare the uninstantiated signatures.
20478         (method_from_memberref): Compare the uninstantiated signatures;
20479         fixes #76417.
20481 2006-01-18  Robert Jordan  <robertj@gmx.net>
20483         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20484         Clear the weak link. Fixes bug #77170.
20486         * gc.c (mono_gchandle_free):
20487         Reflect *-gc.c changes (tiny optimization).
20489 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20491         * metadata.c (mono_metadata_signature_dup): Applied patch from
20492         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20493         Fixes #77288.
20495 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20497         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20498         marshalling from native to managed code. Fixes #77230.
20500 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20502         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20503         connect. Fixes bug #77020.
20505 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20507         * class.c: fixed id assignement for nested interfaces (bug #77275).
20508         Added also better info for --print-vtable debugging.
20510 2006-01-12  Martin Baulig  <martin@ximian.com>
20512         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20513         interfaces on-the-fly; fixes #76625.
20515         * class-internals.h
20516         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20517         don't need that anymore.
20519 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20521         * socket-io.c
20522         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20523         To avoid initing the nested_classes when not needed I turned the
20524         PeerCredData as a toplevel internal class, as it has to be shared
20525         anyways. 
20527         Fixes the CASA issue.
20529 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20531         * domain.c: Accessors for MonoJitInfo
20533         * profiler-private.h: Add jitinfo to the end jit hook
20535         * profiler.[ch]: Define new hooks, called after jitting which give
20536         the MonoJitInfo that was compiled
20538 2006-01-10  Martin Baulig  <martin@ximian.com>
20540         * class.c (mono_class_setup_events): Add support for generic
20541         classes; fixes #76440.
20543 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20545         Fix #77160.
20546         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20547         on passed-in method.
20549 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20551         * object.c (mono_runtime_invoke_array): Add Nullable support.
20553         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20555 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20557         * file-io.c: Don't consider sockets as directory and avoid an endless
20558         loop. Fix bug #76966.
20560 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20562         * object.c (mono_nullable_init): New helper function.
20563         (mono_nullable_box): Ditto.
20565         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20567         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20569         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20570         
20571 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20573         * class.c (mono_class_is_assignable_from): Make T assignable to 
20574         Nullable<T>.
20576 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20578         * appdomain.c: Bump corlib version to 46.
20579         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20580         serialization purpose) and changed ves_icall_System_Reflection_
20581         Assembly_get_code_base signature to accept a boolean (to escape, or 
20582         not, the assembly code base).
20584 2005-12-23  Dick Porter  <dick@ximian.com>
20586         * icall.c: 
20587         * threads-types.h: 
20588         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20589         CreateEvent icall now returns "created" boolean parameter.
20591 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20593         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20594         #76967.
20596         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20597         when attr_klass is an interface. Fixes #77045.
20599 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20601         * marshal.c (emit_struct_conv): Fix previous patch.
20602         
20603         * marshal.c (emit_struct_conv): Add a check for fields with the same
20604         offset.
20606 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20608         Fix regression in Mono.C5.
20609         * class.c (mono_class_create_generic): If 'klass' is an interface
20610         set up the interface offsets.
20611         (mono_class_is_assignable_from): Don't throw away generic arguments.
20613 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20615         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20616         type parameters.
20618 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20620         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20621         dead store.
20622         (do_mono_metadata_parse_generic_class): Don't pass the current
20623         generic context when parsing the type being instantiated: it
20624         cannot use it, anyway.
20626         * loader.c (method_from_memberref): Don't inflate a signature if
20627         it doesn't contain any type parameters.
20629 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20631         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20633 2005-12-14  Martin Baulig  <martin@ximian.com>
20635         * class.c
20636         (mono_type_get_name_recurse): Don't return null for type
20637         parameters and open generic classes.
20638         (mono_class_setup_methods): Don't exclude generic instances.
20639         (mono_get_unique_iid): Use different IDs for different
20640         instantiations of the same generic type.
20641         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20642         open generic instances; create a normal vtable for closed generic
20643         instances.
20644         (mono_class_setup_vtable_general): We're now also called for
20645         closed generic instances.
20647         * reflection.c
20648         (mono_reflection_bind_generic_parameters): Correctly use
20649         mono_metadata_lookup_generic_inst() everywhere.
20651 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20653         * object.c (mono_class_create_runtime_vtable): Call 
20654         mono_class_setup_vtable ().
20656         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20657         function.
20658         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20659         #76959.
20661         * loader.c (mono_loader_set_error_type_load): Print the type load
20662         warnings to the console so they are more visible to the user.
20663         (mono_loader_set_error_method_load): Ditto.
20665         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20666         is still broken.
20667         
20668         * reflection.c (ensure_runtime_vtable): Fix build.
20670         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20671         doesn't work in all cases.
20673 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20675         * object.c (mono_array_new_full): Treat a single dimensional array
20676         with 0 lower bounds as an szarray. Fixes #76973.
20678         * reflection.c (custom_attr_visible): Really fix this.
20680 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20682         * reflection.c (custom_attr_visible): Allow nested public attributes
20683         as well.
20685         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20686         interface check.
20688 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20690         * class.c (set_generic_param_owner): Delete.
20691         (mono_class_create_from_typedef): Don't set ->owner field of
20692         generic parameters to "param containers" of enclosing classes.
20693         * reflection.c (mono_reflection_initialize_generic_parameter):
20694         Likewise.
20696 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20698         * reflection.c (custom_attr_visible): Fix build.
20700 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20702         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20703         private attributes.
20704         
20705         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20706         handling of null parameter defaults.
20708 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20710         * class.c (mono_class_from_generic_parameter): Don't set
20711         klass->generic_container.
20712         (my_mono_class_from_generic_parameter): Likewise.
20714 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20716         * reflection.c (load_public_key): Fix a warning.
20717         (method_encode_code): Fix unaligned accesses.
20719 2005-12-07  Martin Baulig  <martin@ximian.com>
20721         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20723         * reflection.c
20724         (write_generic_param_entry): Encode our custom attrs.
20726         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20728 2005-12-07  Martin Baulig  <martin@ximian.com>
20730         * reflection.c (encode_new_constraint): Removed; we don't use the
20731         `NewConstraintAttribute' anymore.
20733 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20735         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20736         not fire a TypeResolve event when Assembly.GetType () is called.
20738 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20740         Beginning of support for nullable types in the runtime. Parts of
20741         this patch are from Martin.
20743         * appdomain.c (MONO_CORLIB_VERSION): Bump
20745         * domain.c (mono_init_internal): get the nullable type
20747         * class.c (mono_class_is_nullable): New method
20748         (mono_class_get_nullable_param): New mehod
20749         (mono_class_create_generic): In types T? set cast_class to T
20751         * class-internals.h (MonoDefaults): new nullable default class
20752         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20753         new methods.
20755 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20757         * metadata.c (select_container): New.  Refactor code to select the
20758         appropriate GenericContainer given the type of generic parameter
20759         we are looking for.
20760         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20761         not a MonoGenericContext.  Use select_container.  Update parameters.
20762         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20763         and MONO_TYPE_MVAR.
20764         (unwrap_arrays): Remove duplicate tests.
20765         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20766         generic instantiated class to find any arguments that are generic
20767         parameters.
20768         (mono_type_create_from_typespec_full): Use find_generic_param to
20769         avoid evicting some generic instantiations from the typespec
20770         cache.
20772 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20774         * reflection.c: fixed writing of doubles on ARM FPA.
20776 2005-12-02  Robert Jordan  <robertj@gmx.net>
20778         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20780 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20782         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20783         least on SUSE 10 they are not the same (on debian, they are just the
20784         same thing).
20786 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20788         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20789         DeclaringType for VARs and MVARs.
20790         * class.c (set_generic_param_owner): Fix initialization of owner
20791         fields.
20793 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20795         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20797 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20799         * threadpool.c: workaround for a bug that shows up on the Mac:
20800         select()+connect() on a blocking socket is not like it should
20801         be, so we proceed to connect() in that case, wasting the I/O
20802         threadpool thread until connect succeedes. Fixes bug #75436.
20804 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20806         * threadpool.c: fix typo when setting file descriptor states.
20808 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20810         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20811         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20812         create a temporary signature container.
20813         (mono_metadata_parse_generic_param): Update to changes.
20814         (mono_type_create_from_typespec_full): Update to changes.
20815         * loader.c (method_from_memberref): Don't use a
20816         MonoGenericContainer while parsing a memberref signature.
20817         (method_from_methodspec): Remove dead-store of the 'container'
20818         variable.  It's overwritten before use.
20820         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20821         checks tighter.
20822         (mono_metadata_parse_generic_param): Likewise.
20823         * loader.c (find_method_in_class): Does not need a
20824         MonoGenericContainer.  Use 'mono_method_signature' rather than
20825         'mono_method_signature_full'.
20826         (find_method, mono_get_method_constrained, method_from_memberref):
20827         Update to changes.
20829         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20830         owner-less generic-parameters are never evicted from the typespec
20831         cache.
20833         * loader.c (method_from_memberref): Don't use the current context
20834         when parsing signatures.
20835         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20837         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20838         side-effects in g_assert.
20839         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20840         that we don't potentially lose information.
20842 2005-11-26  Dick Porter  <dick@ximian.com>
20844         * icall.c:
20845         * threads.c: icalls to implement basic (ie, not named)
20846         System.Threading.Semaphore.
20848 2005-11-24  Dick Porter  <dick@ximian.com>
20850         * process.c
20851         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20852         Use GetProcessId() if it's available.
20854 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20856         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20858 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20859             Ankit Jain  <jankit@novell.com>
20861         * loader.c (mono_get_method_from_token): Initialize 'method' field
20862         of all generic parameters before parsing the signature.  Remove
20863         code that "fixed"-up MVAR references.
20865 2005-11-23  Ankit Jain  <jankit@novell.com>
20867         * metadata.c (mono_metadata_has_generic_params):
20868         (mono_metadata_load_generic_param_constraints):
20869         (mono_metadata_load_generic_params): Move duplicate code ...
20870         (mono_metadata_get_generic_param_row): ... here. Returns the
20871         first row-id in GenericParam table for a given owner (token).
20872         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20873         prototype.
20875 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20876             Ankit Jain  <jankit@novell.com>
20878         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20879         comparing VARs too.
20880         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20881         type->data.generic_param only if the type is an MVAR.
20882         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20883         leak owner-less VARs and MVARs into managed space.
20885 2005-11-21  Martin Baulig  <martin@ximian.com>
20887         * class-internals.h
20888         (MonoMethod): Moved the `generic_container' here from
20889         `MonoMethodNormal' since we now also need it for
20890         `MonoMethodPInvoke';
20891         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20892         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20893         an union containing both `MonoMethodNormal' and
20894         `MonoMethodPInvoke'.
20896         * loader.c
20897         (mono_get_method_from_token): Allow implementing generic methods
20898         as interncalls.
20900         * threads.c
20901         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20902         icall.
20904 2005-11-17  Dick Porter  <dick@ximian.com>
20906         * icall.c: 
20907         * process.h: 
20908         * process.c: Split the Process Start_internal icall into
20909         ShellExecuteEx_internal and CreateProcess_internal, which are
20910         called depending on whether UseShellExecute is true.  Fixes bug
20911         76670.
20913         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20915 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20917         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20918         'msize' parameters, use the information in 'mspec' instead.
20919         (emit_object_to_ptr_conv): Ditto.
20921         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20922         fields out of order. Fixes #76733.
20924 2005-11-17  Ankit Jain  <jankit@novell.com>
20926         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20928 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20930         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20931           bug #76575.
20933 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20935         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20936         for types with non-auto layout. Fixes #76717.
20938 2005-11-16  Ankit Jain  <jankit@novell.com>
20940         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20941         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20942         if generic_context is null.
20943           (mono_metadata_generic_param_equal): param->owner can be null.
20944           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20945         null.
20947 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20949         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20950         the correct value.
20952 2005-11-15  Martin Baulig  <martin@ximian.com>
20954         * object.c (set_value): Use mono_class_from_mono_type() instead of
20955         the hack for generic instances; fixes #76136.
20957 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20959         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20960         fields.
20962         * image.c (load_metadata_ptrs): Initialize the new fields.
20964         * reflection.c (create_dynamic_mono_image): Ditto.
20966         * reflection.c (build_compressed_metadata): Use the new fields.
20968         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20969         icall.
20971         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20972         icall.
20973         
20974 2005-11-15  Ankit Jain  <jankit@novell.com>
20975             Raja R Harinath  <harinath@gmail.com>
20977         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20978         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20979         new per-generic_container cache if the cached MonoType's context matches
20980         the current context.
20981           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20982         to the expected context.
20983           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20985 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20987         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20988         we changed the signature of an icall.
20989         * icall.c: Modify to mono_double_ParseImpl return true/false 
20990         depending on the success, instead of throwing the exception. This will
20991         help us in Double.TryParse methods.
20992         
20993 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20995         * marshal.c (emit_marshal_object): Throw an exception when
20996         marshalling 'object' instead of crashing. Fixes #76696.
20998 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21000         * class-internals.h: Add prototype for mono_type_get_full_name ().
21002 2005-11-11  Dick Porter  <dick@ximian.com>
21004         * threads.c (mono_thread_manage): Make sure the main thread has
21005         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
21007 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
21009         * loader.c (mono_loader_set_error_type_load): Log a warning to the
21010         console about the missing type.
21011         (mono_loader_set_error_method_load): Ditto.
21013 2005-11-09  Miguel de Icaza  <miguel@novell.com>
21015         * mono-config.c (mono_get_config_dir): Set the system defaults if
21016         none is specified.
21018         * assembly.c (mono_set_dirs): New API entry point to set the
21019         assembly and the config directory in one call
21021 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
21023         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21024         the ftnptr was created from a delegate in a domain other than the
21025         current domain. Fixes #75377.
21027         * exception.h exception.c: Add mono_get_exception_not_supported ().
21029 2005-11-08  Martin Baulig  <martin@ximian.com>
21031         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21033 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
21035         * security-manager.h: Added definitions to deal with strongname key 
21036         pairs bigger (and smaller) than 1024 bits.
21037         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
21038         adjust wrt the public key length being used.
21040 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
21042         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21043           Windows build (r51396-51397).
21045 2005-11-03  Martin Baulig  <martin@ximian.com>
21047         * class.c (mono_class_setup_vtable_general): Also add generic
21048         methods to the vtable; fixes #76581.
21050 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21052         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21053         sure that we lookup GetString method from the System.Text.Encoding
21054         class, not the derived class or we get an empty method.
21056         Fixed class #76612.
21058 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21060         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21061         if it has been previously set (embedders). 
21063         Make mono_set_rootdir available also on Unix.
21065 005-10-24  Robert Jordan  <robertj@gmx.net>
21067         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21069 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21071         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21072         only calls which are made to native code use this flag.
21074         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21076 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21078         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21079         Add support for FieldBuilders.
21081 2005-10-29  Martin Baulig  <martin@ximian.com>
21083         * mono-debug.c
21084         (mono_debug_using_mono_debugger): New public method; returns
21085         whether we're running inside the debugger.
21087 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21089         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21090         for Method/Constructor/FieldBuilders.
21092 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21094         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21095         and fields as well.
21097 2005-10-26  Martin Baulig  <martin@ximian.com>
21099         * mono-debug-debugger.c
21100         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21102 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21104         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21105         integer to isspace.
21107 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21109         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21110         when passing valuetypes byref. Fixes #76502.
21112 2005-10-19  Jackson Harper  <jackson@ximian.com>
21114         * profiler.c: Don't put a . in front of types that are not in a
21115         namespace.
21117 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21119         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21121 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21123         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21124         #76436.
21125         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21127 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21129         * assembly.c metadata-internals.h icall.c: Define an additional
21130         parameter for mono_assembly_name_parse_full, so we can avoid creating
21131         S.R.AssemblyName.Version when no version info wasn't passed.
21132         
21133 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21135         * class.c (mono_type_get_full_name): Reimplement method that was
21136         removed. 
21138         * image.c: Some docs
21140 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21142         * profiler.c (output_newobj_profile): Fix printing of Total memory
21143         on x86.
21145 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21147         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21149 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21151         * threads.c: remove debug output.
21153 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21155         * threads.c (mono_thread_manage): Fix crashes if more than 64
21156         threads need to be aborted. Hopefully fixes #75899.
21158         * assembly.c (mono_stringify_assembly_name): New helper function.
21160         * class.c: Use mono_stringify_assembly_name instead of the similar
21161         static function.
21163         * assembly.h assembly.c: Add support for calling a postload search 
21164         hook if an assembly cannot be loaded.
21166         * appdomain.c: Register new search hooks which call the AssemblyResolve
21167         events in AppDomain. Fixes #75231
21169 2005-10-07  Martin Baulig  <martin@ximian.com>
21171         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21172         methods without debug info.
21174 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21176         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21177         wrappers.
21179 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21181         * file-io.c: now that we return symlinks, use lstat and, when the file
21182         is a symbolic link, stat, to get the file attributes. Also avoid the
21183         conversion to/from utf16/external.
21185 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21187         * class.c (mono_class_layout_fields): Compute klass->has_references
21188         correctly if an embedded valuetype is not yet initialized. Fixes
21189         #76331.
21191 2005-10-04  Martin Baulig  <martin@ximian.com>
21193         * metadata.c
21194         (mono_metadata_load_generic_param_constraints): New public
21195         function; splitted the constraints loading out from
21196         mono_metadata_load_generic_params().
21198         * class.c (mono_class_create_from_typedef): Call
21199         mono_metadata_load_generic_param_constraints() after setting up
21200         the type and creating our parent; fixes #75329.
21202 2005-10-04  Martin Baulig  <martin@ximian.com>
21204         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21205         non-dynamic parent classes.
21207 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21209         * file-io.c : win32 build fix (ETXTBSY seems not found).
21211 2005-10-04  Martin Baulig  <martin@ximian.com>
21213         * reflection.c
21214         (mono_image_get_methodspec_token): Make the cache actually work;
21215         fixes #75974.
21217 2005-10-04  Martin Baulig  <martin@ximian.com>
21219         * class.c (mono_class_name_from_token): Removed the unneccessary
21220         `MonoGenericContext *' argument.
21222 2005-10-04  Martin Baulig  <martin@ximian.com>
21224         * loader.c
21225         (method_from_methodspec): Make the caching work again; fixes the
21226         performance regression from #76262.
21228 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21230         * file-io.c:
21231         * file-io.h:
21232         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21233         GetFileSystemEntries that performs the same work but without going
21234         into io-layer, locking, etc.
21236 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21238         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21239         ThreadState_Stopped as well. Fixes #76047.
21241 2005-09-29  Martin Baulig  <martin@ximian.com>
21243         * class.c
21244         (inflate_generic_context): If the new context has a `gmethod', set
21245         its `container' that that gmethod's `container'.
21247         * metadata.c
21248         (mono_metadata_parse_generic_param): Simplify things;
21249         `generic_container = generic_context->container;' is just fine.
21251         * loader.c (method_from_methodspec): Code cleanups.
21253 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21255         * decimal.c: fix warning (and let gcc generate correct
21256         code on ARM with optimizations).
21258 2005-09-28  Martin Baulig  <martin@ximian.com>
21260         * loader.c
21261         (method_from_memberref): Added `MonoGenericContext *class_context'
21262         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21263         (method_from_methodspec): If we're a memberref, use the enclosing
21264         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21266 2005-09-28  Martin Baulig  <martin@ximian.com>
21268         * object.c (mono_runtime_invoke_array): Added support for
21269         MONO_TYPE_GENERICINST; fixes #75917.
21271 2005-09-27  Martin Baulig  <martin@ximian.com>
21273         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21274         `k->byval_arg.type' to determine the actual type.
21276         * loader.c (method_from_methodspec): Removed some hacks.
21278 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21280         * class-internals.h (mono_field_is_deleted): Do the test for
21281         rtspecialname before we check the actual name of the field. This
21282         prevents us from dereferencing a pointer into the string table,
21283         saving us from accessing a few pages
21285         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21286         macros. This will allow a deadlock debugger to easily be plugged
21287         in.
21289 2005-09-27  Martin Baulig  <martin@ximian.com>
21291         * loader.c (method_from_methodspec): Create a "signature"
21292         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21294 2005-09-27  Martin Baulig  <martin@ximian.com>
21296         * class.c
21297         (inflate_generic_class): Correctly set the new context's
21298         container.
21300         * loader.c
21301         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21302         instead of a `MonoGenericContext *'.
21303         (mono_method_signature_full): Take a `MonoGenericContainer *'
21304         instead of a `MonoGenericContext *'.
21306         * metadata.c
21307         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21308         instead of a `MonoGenericContext *'.
21309         (mono_metadata_parse_method_signature_full): Likewise.
21311 2005-09-26  Martin Baulig  <martin@ximian.com>
21313         * class.c
21314         (mono_class_from_generic_parameter): Set `klass->generic_container'
21315         (mono_class_from_generic_parameter): Likewise.
21316         (mono_bounded_array_class_get): We inherit the generic container
21317         from the element class.
21319         * loader.c
21320         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21321         argument rather than computing it here.
21322         (method_from_memberref): Correctly set the generic context before
21323         parsing the signature.  Fixes #75681.
21325 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21327         * object.c (mono_class_has_special_static_fields): Fix warnings.
21329 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21331         * assembly.c: Add parse_public_key function, to
21332         par the public keys. Also added mono_assembly_name_parse_full,
21333         to define it the parsed key should be freed or not.
21334         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21335         to parse a long format assembly name.
21336         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21337         private, since calling it to preserve the key requires
21338         freeing it manually.
21339         
21340 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21342         * locales.c : removed HAVE_ICU part.
21344 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21346         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21347         field_is_special_static if the klass has no special static fields.
21349         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21350         (MonoCachedClassInfo): Likewise.
21352         * object.c (mono_class_has_special_static_fields): New helper function.
21354 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21356         * class.c (mono_class_create_from_typedef): Don't call 
21357         interfaces_from_typedef_full for enums.
21358         (mono_class_create_from_typedef): Compute the base types of enums directly
21359         without calling mono_class_setup_fields ().
21360         (mono_class_find_enum_basetype): New helper function.
21362         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21363         one place inside the string heap.
21364         
21365 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21367         * class.c: locking fixes, code cleanups, some docs added.
21368         Allocate some data structures in the image mempool.
21370 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21372         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21373         the example code.
21374         
21375 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21377         * class-internals.h, class.c, reflection.c: reduce memory taken by
21378         MonoClass.
21380 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21382         * metadata.c, metadata.h, loader.h: documentation updates, code and
21383         API cleanups.
21385 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21387         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21388         the example code.
21390         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21391         page faults caused by the runtime while reading metadata.
21393 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21395         * socket-io.c: the field names were changed 3 months ago and no one
21396         realized until bug #76077 got filed!
21398 2005-09-20  Martin Baulig  <martin@ximian.com>
21400         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21402 2005-09-20  Martin Baulig  <martin@ximian.com>
21404         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21405         write the rank into the class entry.
21407 2005-09-20  Martin Baulig  <martin@ximian.com>
21409         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21411 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21413         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21415         * icall.c (custom_attrs_defined_internal): New icall.
21417         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21418         function.
21419         (mono_custom_attrs_construct_by_type): New helper function.
21421 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21423         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21424         terminate the resulting string. Fixes #76123.
21426 2005-09-16  Martin Baulig  <martin@ximian.com>
21428         * mono-debug.c
21429         (mono_debug_add_method): Ignore inflated methods for the moment.
21431 2005-09-14  Martin Baulig  <martin@ximian.com>
21433         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21435 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21437         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21438         return a success/failure indication.
21439         (mono_metadata_interfaces_from_typedef_full): Ditto.
21440         (get_constraints): Ditto.
21442 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21444         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21445         
21446         * marshal.c (emit_marshal_array): Add support for returning string
21447         arrays from delegates. Fixes #76063.
21449         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21451 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21453         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21454         icall.
21456 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21458         * reflection.c icall.c: Fix after mono_get_exception_type_load
21459         signature change.
21461         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21462         (mono_assembly_load_reference): Use the new helper.
21464         * class-internals.h (MonoLoaderError): New structure containing 
21465         information about type loading errors.
21467         * class-internals.h loader.c: Add APIs to store per-thread loader
21468         error information.
21470         * loader.c class.c: Set the loader error if needed.
21472         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21474 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21476         * decimal.c: fixed to handle the broken ARM fp format.
21478 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21480         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21481         broken.
21483 2005-09-06  Martin Baulig  <martin@ximian.com>
21485         * domain.c (supported_runtimes): Added v2.0.50727.
21487 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21489         * culture-info.h: reduce the size of some structures.
21491 2005-09-05  Martin Baulig  <martin@ximian.com>
21493         Reflect latest API changes in the August CTP.
21495         * icall.c
21496         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21497         ("MonoType.HasGenericArguments"): Removed.
21498         ("MonoMethod.BindGenericParameters"): Renamed to
21499         "MakeGenericMethod".
21500         ("MethodBuilder.BindGenericParameters"): Renamed to
21501         "MakeGenericMethod".    
21503 2005-09-05  Martin Baulig  <martin@ximian.com>
21505         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21507 2005-09-05  Martin Baulig  <martin@ximian.com>
21509         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21511         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21512         generic_container is non-NULL.
21514 2005-09-05  Martin Baulig  <martin@ximian.com>
21516         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21518         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21520 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21522         * reflection.c (encode_locals,
21523         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21524         for large generic types.
21526 2005-09-05  Martin Baulig  <martin@ximian.com>
21528         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21530         * class.c (mono_dup_array_type): New public method.
21531         (mono_metadata_signature_deep_dup): New public method.
21532         (dup_type): Correctly duplicate array and function types.
21534 2005-09-05  Martin Baulig  <martin@ximian.com>
21536         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21538         * reflection.c (get_default_param_value_blobs): Handle generic types
21539         and generic methods.
21541 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21543         * class.c: Fixed error reporting (method/class were inversed) for 
21544         inheritance demands.
21545         * security-manager.c|h: Added the AppDomain when calling the managed
21546         System.Security.SecurityManager.InheritanceDemand method.
21548 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21550         * reflection.c (encode_marshal_blob): 'marshaltype' and
21551         'marshaltyperef' are alternate sources for the custom marshaler
21552         name.
21554 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21556         * class.c: fix creation of array classes with rank == 1
21557         (patch by Ankit Jain <jankit@novell.com>).
21559 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21561         * object.c: fix check for creating the bound data for arrays vs
21562         szarrays.
21564 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21566         * object.c: configuration file name is now based on the executable name,
21567         not the image name. Fixes bug #75931.
21569 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21571         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21572         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21574 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21576         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21578 2005-08-24  Ankit Jain  <jankit@novell.com>
21579             Raja R Harinath  <rharinath@novell.com>
21581         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21582           called by it recursively.
21583           (mono_class_init): Remove special case in pending_init handling, since it's
21584           superseded by the fix to mono_class_from_typeref.
21586 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21588         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21589         BROKEN_THREAD_START stuff.
21591 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21593         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21594         trampoline.
21596         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21597         
21598         * object.c (mono_delegate_ctor): Replace the original function address with
21599         a delegate trampoline.
21601 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21603         * icall.c: add boolean argument to base64_to_byte_array and 
21604         InternalFromBase64String to control whether a whitespace-only string
21605         is allowed (or should casue a FormatException to be thrown). We need
21606         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21607         to match the MS behaviour in both profiles.
21608         * appdomain.c: Bump corlib version.
21610 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21612         This patch implements a big portion of publisher policy
21613         support, used to bind assembly versions and redirect
21614         one assembly from version A to version B.
21616         * assembly.c:
21617         New GSList loaded_assembly_bindings, for storing the cached
21618         assembly bindings.
21619         (assembly_binding_maps_name): New static function for checking if a 
21620         assembly binding information maps an assembly name.
21621         (mono_assembly_binding_info_free): New function for freeing
21622         assembly binding information resources.
21623         (get_publisher_policy_info): New static function for retrieving 
21624         assembly binding information from a MonoImage.
21625         (compare_versions): New static function for comparing an assembly
21626         binding information data and the version of an assembly name.
21627         (check_policy_versions): New static function for checking if an
21628         assembly binding info mapping an assembly name is valid for it.
21629         (mono_assembly_load_publisher_policy): New static function for
21630         loading the 'policy.major.minor.MyAssembly' image for an assembly
21631         with an assembly name 'aname'.
21632         (mono_assembly_bind_version): New static function for updating
21633         assembly redirection.
21634         (mono_assembly_apply_binding): New static function for applying
21635         assembly binding.
21636         (search_binding_loaded): New static function for searching 
21637         loaded assembly binding infos in the cache domain.
21638         (mono_assembly_load_full): Don't apply assembly binding for
21639         reflection only assemblies.
21641         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21642         which contains information about assembly binding. Also
21643         declare signature for mono_config_parse_publisher_policy ()
21644         function, used to retrieve pub policy info.
21645         
21646         * mono-config.c:
21647         (publisher_policy_start): New static function used to parse publisher 
21648         policy config files.
21649         (publisher_policy_parser): New static MonoParseHandler containing 
21650         the functions used when parsing config files.
21651         (mono_config_parse_publisher_policy): New function for parsing
21652         publisher policy files.
21653         
21654 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21656         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21658         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21660         * object.c (mono_get_addr_from_ftnptr): New helper function.
21662         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21664         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21666 2005-08-19  Dick Porter  <dick@ximian.com>
21668         * threads.c, threads.h, appdomain.c, appdomain.h,
21669         profiler-private.h, monitor.c, object.c, object-internals.h,
21670         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21671         store the thread ID, so it can hold a 64 bit value if needed.
21673 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21675         * reflection.c (mono_reflection_create_dynamic_method): Store the
21676         handle class into the method references as well so ldtoken works in
21677         dynamic methods.
21679         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21680         types.
21682 2005-08-19  Ankit Jain <jankit@novell.com>
21684         Fix #75847.
21685         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21686           here rather than using the method signature of a arbitrary function
21687           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21688           two arguments.
21689           Hack done with Harinath.
21691 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21693         * threadpool.c: disable printing stack traces when we get a exception
21694         in a threadpool thread. I need to do more testing to figure out which
21695         cases actually print this. Fixes bug #75828.
21697 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21699         * icall.c: there might be ignored whitespace after the last '='. This
21700         fixes length computation and bug #75840.
21702 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21704         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21705         well. Fixes #75809.
21707         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21708         #75784.
21709         
21710         * reflection.c (create_custom_attr_data): Ditto.
21712 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21714         * locales.c, culture-info.h : removed RegionLCIDMap.
21715         * culture-info-tables.h : regenerated.
21717 2005-08-16  Martin Baulig  <martin@ximian.com>
21719         * class.c (mono_type_get_name_recurse): Small fix.
21721 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21723         * locales.c : indentation fixie.
21725 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21727         * object-internals.h,
21728           locales.h,
21729           locales.c,
21730           culture-info.h,
21731           icall.c : added RegionInfo table support.
21732         * culture-info-table.h : regenerated for region support.
21734 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21736         * reflection.c (resolve_object): handle all kinds of MonoMethod
21737         including generic ones
21739 2005-08-12  Ankit Jain <jankit@novell.com>
21741         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21742           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21744 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21746         * process.c: Don't close a thread handle when it's NULL. This is a
21747         workaround for bug #75733.
21749 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21751         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21753 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21755         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21757 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21759         * threadpool.c: if a work item in the thread pool has a callback that
21760         catches a exception, don't propagate it after invoking the callback.
21761         Fixes bug #75336.
21763 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21765         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21767         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21769         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21771         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21773 2005-08-03  Ankit Jain  <jankit@novell.com>
21775         Fix #75683.
21776         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21777           PInvoke calling convention is 0.
21779 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21781         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21782         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21784 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21786         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21787         to handle threads not started by the GC (patch by Michael Meeks
21788         <michael.meeks@novell.com>).
21790 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21792         * reflection.c: Make buffer used in emitting types larger for some
21793         big generic types (patch by Michal Moskal).
21795 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21797         * mono-debug.c: Fix some (not all) alignment problems.
21799 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21801         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21802         Invoke mono_image_load_from_data_full passing the refonly
21803         parameter.
21805         * assembly.c
21806         (mono_assembly_open_from_bundle): Add the refonly argument, 
21807         in order to pass it to other methods it calls to.
21808         (do_mono_assembly_open): Add the refonly argument, in order 
21809         to pass it to other methods it calls to.
21810         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21811         the refonly parameter to it.
21813         * image.c: Add loaded_images_refonly_hash and
21814         loaded_images_refonly_guid_hash to cache the reflection
21815         only loaded images.
21816         (mono_images_init): Initialize the hash tables used for
21817         caching the reflection only images.
21818         (load_modules): Invoke mono_image_open_full passing the refonly
21819         parameter to load the modules the correct way.
21820         (build_guid_table): Add the refonly argument, to re-build the 
21821         correct hash table.
21822         (do_mono_image_open): Added the refonly argument, in order to
21823         define it for the loaded image.
21824         (mono_image_loaded_full): New function, which receives an
21825         additional parameter to look for the image in the refonly or
21826         non-refonly section.
21827         (mono_image_loaded): Updated, using mono_image_loaded_full.
21828         (mono_image_loaded_by_guid_full): The same case that happens
21829         with mono_image_loaded_full.
21830         (mono_image_loaded_by_guid): Likewise.
21831         (register_image): Use the ref_only variable inside MonoImage
21832         to decide in which hash table store the current image.
21833         (mono_image_open_from_data_full): Rename
21834         mono_image_open_from_data to mono_image_open_from_data_full,
21835         adding the refonly argument, to define the ref_only variable 
21836         inside MonoImage.
21837         (mono_image_open_from_data): Return 
21838         mono_image_open_from_data_full.
21839         (mono_image_open_full): Rename mono_image_open to
21840         mono_image_open_full, receiving the new refonly argument,
21841         to pass it to inner methods.
21842         (mono_pe_file_open): Update this function, to open
21843         a MonoImage as a non-refonly image.
21844         (mono_image_close): Use the refonly variable inside
21845         MonoImage to remove the image from the correct caches.
21847         * image.h: Add the signatures of mono_image_open_full,
21848         mono_image_open_from_data_full, mono_image_loaded_full,
21849         mono_image_loaded_by_guid_full.
21851         * metadata-internals.h: Add the ref_only field to 
21852         MonoImage.
21853         
21854 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21856         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21857         Fix the last behavior, which used to load the assemblies and
21858         extract MonoReflectionAssemblyName information, instead of
21859         extract it from the metadata tables. Needed for Reflection
21860         Only assemblies.
21861         
21862 2005-07-29  Martin Baulig  <martin@ximian.com>
21864         * mono-debug-debugger.c
21865         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21866         not initialized.
21868         * mono-debug.c
21869         (mono_debug_address_from_il_offset): Check whether we have
21870         debugging support before attempting to take the lock.
21871         (mono_debug_source_location_from_address): Likewise.
21872         (mono_debug_source_location_from_il_offset): Likewise.
21873         (mono_debug_il_offset_from_address): Likewise.
21874         (mono_debug_address_from_il_offset): Likewise.
21876 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21878         * class.c (mono_class_from_name_case): Add support for dynamic images.
21879         Fixes #75650.
21881         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21882         for #75479.
21884 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21885         
21886         * reflection.c (mono_method_get_object): Fix warning.
21888 2005-07-28  Martin Baulig  <martin@ximian.com>
21890         * mono-debug.c
21891         (mono_debug_add_wrapper): Also write the wrapper type.
21893 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21895         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21896         
21897         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21898         data indicates the class has none.
21900 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21902         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21903         loader lock with the debugger lock. Prevents deadlocks for beagle.
21905         Beagle can now run on an smp box for a weekend without any
21906         issues. Woohoo!
21908 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21910         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21911         in a module. Fixes #75629.
21913 2005-07-26  Martin Baulig  <martin@ximian.com>
21915         * mono-debug.c (mono_debug_add_wrapper): New static method.
21916         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21917         interncall or a wrapper.
21919         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21920         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21921         (MONO_DEBUGGER_VERSION): Bump to 51.
21923         * mono-debug-debugger.c
21924         (mono_debugger_add_type): Removed this empty function.
21925         (mono_debugger_add_method): Likewise.
21927 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21929         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21930         before accessing method->slot.
21932 2005-07-21  Jb Evain  <jbevain@gmail.com>
21934         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21935         Fixes #75010.
21937 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21939         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21940         #75587.
21942 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21944         * image.h image.c: Add mono_image_get_guid () API function.
21946 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21948         There were issues when multiple threads tried to load
21949         assemblies. A deadlock was created between assemblies_mutex and
21950         mono_domain_assemblies_lock. This fixes the issue by making the
21951         assembly ref counting be lock free. See bug 75586.
21952         
21953         * image.c (mono_image_close): The add ref function here was using
21954         Interlocked operations while the unref was using a mutex and a
21955         --. I don't think this was ever a bug that would be exposed in a
21956         non-pendantic way (ie, by an embedder doing a ref on one thread
21957         and an unref on another), but for the sake of correctness, this is
21958         now Interlocked.
21960         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21961         (mono_assembly_load_reference): Call mono_assembly_addref rather
21962         than touching the refcount ourselves.
21963         (mono_assembly_close): Use InterlockedDecrement to unref the
21964         assembly. Don't acquire the lock unless it is actually needed.
21966 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21968         * class.c (mono_class_layout_fields): Fix calculation of has_references
21969         for generic types.
21971 2005-07-12  Martin Baulig  <martin@ximian.com>
21973         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21975         * metadata.c
21976         (mono_type_hash): Provide better hashing for generic instances.
21977         (mono_generic_inst_hash): Improve hashing.
21978         (mono_generic_class_hash): Likewise.
21980         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21981         generic instances.
21983 2005-07-12  Martin Baulig  <martin@ximian.com>
21985         * reflection.c (mono_reflection_create_runtime_class): Remove the
21986         hack for generic type definitions and non-`Run' assemblies.
21987         (mono_reflection_bind_generic_parameters): Also use
21988         `klass->wastypebuilder' to check for TypeBuilders.
21990 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21992         * class.c (mono_class_layout_fields): Fix calculation of has_references
21993         for generic types.
21995         * class.c (inflate_generic_class): Fix a leak.
21996         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21997         for generic types.
21999 2005-07-11  Martin Baulig  <martin@ximian.com>
22001         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
22002         on error.
22004 2005-07-11  Martin Baulig  <martin@ximian.com>
22006         * loader.c (find_method): Also lookup in
22007         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22009 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22011         * appdomain.c (mono_domain_unload): Don't free the error message
22012         before passing it to mono_get_exception_...
22014         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22015         
22016 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22018         * threads.c: try to better guess an available RT signal (bug #75387).
22020 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22022         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22023         and CACHE_OBJECT.
22025 2005-07-07  Martin Baulig  <martin@ximian.com>
22027         * class.c (mono_type_get_name_full): Return NULL for
22028         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22029         fixes #75408.
22031 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
22033         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22034         exit the appdomain as well being aborted.
22036         * threadpool.c: Create all threadpool threads inside the root appdomain, and
22037         change back to the root domain after calling managed code. This enables
22038         appdomains using threadpools to be unloaded.
22040 2005-07-07  Martin Baulig  <martin@ximian.com>
22042         * class-internals.h
22043         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22044         into `MonoDynamicGenericClass' since we only need it for dynamic
22045         types.
22047         * reflection.c (mono_class_bind_generic_parameters): We don't need
22048         to compute the `parent' here.
22050 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22052         * culture-info-table.h : regenerated.
22054 2005-07-06  Martin Baulig  <martin@ximian.com>
22056         * icall.c
22057         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22059         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22061 2005-07-06  Martin Baulig  <martin@ximian.com>
22063         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22064         we're doing a signature-only comparision; fixes #74945.
22066 2005-07-06  Martin Baulig  <martin@ximian.com>
22068         * class-internals.h (MonoGenericClass): Moved some things out into
22069         a new `MonoInflatedGenericClass' type.  
22070         (MonoInflatedGenericClass): New type; the `klass' of a
22071         `MonoGenericClass' is now computed lazyly in
22072         mono_get_inflated_generic_class().      
22074         * class.c (mono_get_inflated_generic_class): New public function.
22075         (mono_class_inflate_generic_method): Removed the unused
22076         `MonoClass *' argument.
22077         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22078         all the methods.
22079         (mono_class_create_generic): Make this static and merge it with
22080         mono_class_create_generic_2(); we're now called automatically from
22081         mono_get_inflated_generic_class().
22083         * loader.c (mono_method_signature): Call
22084         mono_get_inflated_method() here.
22086 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22088         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22089         type of fields with RVA.
22091         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22092         for this pseudo class.
22093         (my_mono_class_from_generic_parameter): Likewise.
22094         (mono_class_init): Allow interfaces to have cctors.
22096 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22098         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22099         lazily for AOT methods.
22101 2005-07-05  Martin Baulig  <martin@ximian.com>
22103         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22104         returns FALSE for a successful match, not TRUE.
22106 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22108         * loader.c (mono_method_get_index): Optimize this a bit.
22110 2005-07-04  Martin Baulig  <martin@ximian.com>
22112         * class.c
22113         (class_compute_field_layout): Move the check for generic type
22114         definitions into mono_class_layout_fields().  Fixes #74684.
22115         (mono_class_from_generic_parameter): Correctly compute
22116         `klass->parent'; fixes #75457.
22118         * reflection.c (register_assembly, register_module): Make sure
22119         `domain->rejobject_hash' is already created.
22121 2005-07-02  Martin Baulig  <martin@ximian.com>
22123         * class-internals.h
22124         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22125         `MonoDynamicGenericClass'.      
22127 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22129         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22130         returned by a field getter is null, since null is a valid value.
22132 2005-07-01  Martin Baulig  <martin@ximian.com>
22134         * reflection.c (mono_reflection_generic_class_initialize): Update
22135         the `dgclass->fields [i].parent' to the correct class.
22136         (mono_image_get_fieldref_token): Use the declaring type, not the
22137         reflected type.
22139 2005-07-01  Martin Baulig  <martin@ximian.com>
22141         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22143 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22145         * threads.c (thread_cleanup): assert that thread != NULL
22146         (wait_for_tids_or_state_change): We were using the wrong variable
22147         when accessing wait->threads. `i' was always out of the bounds of
22148         the array.
22150 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22152         * loader.c: map user32 and kernel32 to libMonoSupportW
22154 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22156         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22158 2005-06-28  Martin Baulig  <martin@ximian.com>
22160         * loader.c (method_from_methodspec): Fix #75334.
22162 2005-06-28  Martin Baulig  <martin@ximian.com>
22164         Fix #74953 - Arrays now implement the generic IList<T> interface
22165         on the 2.0 platform.
22167         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22169         * reflection.c (mono_class_bind_generic_parameters): New public
22170         function; similar to mono_reflection_bind_generic_parameters(),
22171         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22173         * domain.c (mono_init_internal): Try to initialize.
22174         `mono_defaults.generic_array_class' here; this'll only succeed if
22175         we're using the 2.0 corlib.
22177         * icall.c
22178         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22179         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22180         (mono_lookup_internal_call): Added support for nested classes.
22182         * loader.c
22183         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22184         we're an interncall and have generic arguments.
22186         * class.c
22187         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22188         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22189         instance of System.Array.InternalArray<T> for arrays, so they
22190         implement the generic IList<T> interface.
22192 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22194         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22195         (chastamar@yahoo.com). Fixes #75374.    
22197 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22199         * culture-info-table.h: regenerated.
22201 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22203         * icall.c: handle spaces correctly for base64 strings.
22205 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22207         * *.c: Kill some warnings.
22209 2005-06-23  Duncan Mak  <duncan@novell.com>
22211         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22212         that this builds on Solaris 10 (x86).
22214 2005-06-23  Martin Baulig  <martin@ximian.com>
22216         * class.c
22217         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22218         generic type definitions.
22220 2005-06-23  Martin Baulig  <martin@ximian.com>
22222         Fix #75331.
22224         * metadata.c (mono_class_get_overrides): Renamed to
22225         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22226         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22227         pass it to mono_get_method_full().
22229 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22231         * reflection.c (mono_reflection_create_runtime_class): take the
22232         mono_domain_lock in this method. Prevents deadlocks
22234 2005-06-22  Martin Baulig  <martin@ximian.com>
22236         * loader.c (method_from_methodspec): Fix #75330.
22238 2005-06-22  Martin Baulig  <martin@ximian.com>
22240         * reflection.c (type_get_qualified_name): Use
22241         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22242         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22243         argument; use it if we don't have an assembly name.
22245 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22247         * object.c: In mono_message_init, set "copy out" flag for in
22248         parameters with the [Out] flag.
22250 2005-06-21  Martin Baulig  <martin@ximian.com>
22252         * class.c
22253         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22254         and MONO_TYPE_PTR.
22256 2005-06-21  Martin Baulig  <martin@ximian.com>
22258         * class.c (mono_class_init): Don't initialize `class->fields' for
22259         generic instances since they're initialized again in
22260         compute_field_layout(). 
22261         (compute_field_layout): Set the field's `generic_info' here; fix
22262         #75320. 
22264 2005-06-21  Martin Baulig  <martin@ximian.com>
22266         * class-internals.h
22267         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22269         * metadata.c (mono_metadata_generic_method_equal): Also
22270         distinguish the `generic_class'; fixes #75334.
22272 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22274         * domain.c:
22275         * appdomain.c:
22276         * domain-internals.h:
22277         * reflection.c: 'domain_assemblies' field is now protected by its own
22278         lock. Don't call into managed code to run the AssemblyLoad event if we
22279         now there are no registered delegates for it.
22281 2005-06-20  Martin Baulig  <martin@ximian.com>
22283         * class.c (mono_class_is_assignable_from): Use a custom version of
22284         mono_class_has_parent() to make things work for generic instances;
22285         fix #75300.
22287 2005-06-20  Martin Baulig  <martin@ximian.com>
22289         * loader.c (method_from_methodspec): Apply a patch from
22290         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22292 2005-06-20  Martin Baulig  <martin@ximian.com>
22294         * class.c (mono_class_init): Reverted Zoltan's last change; it
22295         breaks generics.
22297 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22299         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22301 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22303         * socket-io.c: fix the index in the socket array for writable/error
22304         sockets. Fixes bug #75306.
22306 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22308         * class.c (mono_class_init): Allow interfaces to have static ctors.
22310 2005-06-17  Martin Baulig  <martin@ximian.com>
22312         * loader.c (method_from_methodspec): Use `context->container' when
22313         parsing the `gmethod->inst'.
22315 2005-06-17  Martin Baulig  <martin@ximian.com>
22317         * class.c (mono_type_get_name_recurse): Don't add the assembly
22318         name for type arguments.
22320 2005-06-15  Martin Baulig  <martin@ximian.com>
22322         * reflection.c (mono_image_get_inflated_method_token): Encode
22323         correct klass; fixes #75260.
22325 2005-06-13 Michal Moskal <malekith@nemerle.org>
22327         * icall.c: Make GetCorrespondingMethod/Constructor take
22328         MonoReflectionMethod method not MonoMethod. Removed
22329         MonoType.GetCorrespondingField, and make
22330         MonoGenericType.GetCorrespondingField take name not
22331         MonoClassField.
22333 2005-06-13  Michal Moskal <malekith@nemerle.org>
22335         * reflection.c (field_encode_signature, encode_locals):
22336          Make sizes of buffers for types larger (for big generic types).
22337          (create_generic_typespec,
22338          mono_reflection_sighelper_get_signature_local,
22339          mono_reflection_sighelper_get_signature_field):
22340          Add asserts for too small buffers.
22342 2005-06-15  Martin Baulig  <martin@ximian.com>
22344         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22345         if our parent is not a dynamic type.
22347 2005-06-15  Martin Baulig  <martin@ximian.com>
22349         * class-internals.h (MonoTypeNameFormat): New enum.
22351         * class.c
22352         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22353         (mono_type_get_full_name): Removed.
22354         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22355         argument instead of the boolean's.
22357         * icall.c (ves_icall_System_MonoType_getFullName):
22358         Added `gboolean assembly_qualified'.    
22360         * reflection.h
22361         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22363         * reflection.c (mono_reflection_parse_type): Parse the new type
22364         name format.
22366 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22368         * icall.c: no need to convert from utf16 to utf8 and then back again
22369         after the call to GetLogicalDrives.
22371 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22373         * icall.c: frombase64. Fix problems exposed by new tests.
22375 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22377         * icall.c: added internal calls for converting char [] and strings in
22378         base64 into byte [].
22380 2005-06-10  Martin Baulig  <martin@ximian.com>
22382         * class.c (mono_class_create_generic_2): Read the nested classes
22383         from the metadata rather than from `gklass->nested_classes' since
22384         `gklass' might not be initialized yet.
22386 2005-06-09  Duncan Mak  <duncan@novell.com>
22388         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22389         all public headers. Fixes #74919.
22391 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22393         * domain.c: The key for proxy_vtable_hash is now a pointer
22394         array. Added new GHashFunc and GCompareFunc functions for this.
22396         * class.h: The list of interfaces in MonoRemoteClass is known in
22397         advance and can't grow (we create a new MonoRemoteClass if needed),
22398         so now the interface array can be allocated together with
22399         MonoRemoteClass.
22400         
22401         * object.c: Added a new method create_remote_class_key.
22402         Fixed mono_remote_class so it does not depend on
22403         mono_upgrade_remote_class.
22404         Removed extend_interface_array.
22405         Added new method clone_remote_class(), which makes a copy of a remote
22406         class and adds a new interface or class to it.
22407         mono_upgrade_remote_class() now creates a new remote class (or gets
22408         it from the cache) if an vtable upgrade is needed. In this way
22409         we make sure that other objects sharing the same remote class
22410         don't get the new vtable with unwanted interfaces.
22411         
22412         * object-internals.h:
22413         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22414         
22415         * marshal.c: Track changes in mono_upgrade_remote_class().
22417 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22418         * icall.c: Add runtime methods for obtaining members of inflated
22419         class, which were created from supplied non-inflated members. It
22420         is used in internal Get{Method,Constructor,Field} methods in
22421         System.Type
22423 2005-06-09  Martin Baulig  <martin@ximian.com>
22425         * reflection.c
22426         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22428 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22429         * reflection.c (mono_image_basic_init): Define
22430         Version in MonoDynamicAssembly. 
22431         
22432 2005-06-08  Martin Baulig  <martin@ximian.com>
22434         Fix #75136.
22436         * loader.c
22437         (mono_method_signature_full): New public method; takes a
22438         `MonoGenericContext *'.
22439         (find_method): Use mono_method_signature_full() and pass the
22440         klass'es context to it.
22442         * class.c (mono_class_is_inflated_method): Use
22443         mono_method_signature_full() and pass the context to it.
22445 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22447         * object.c: add proper locking in mono_remote_class_vtable(),
22448         fixes possible memory corruption.
22450 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22452         * marshal.c (mono_remoting_marshal_init): set
22453         initialized after initialization.
22455 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22457         * locales.c : hush.
22459 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22461         * object.c (extend_interface_array): fix really silly
22462         memory corrupting / comparison bug.
22464 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22466         * reflection.c: Functions added to support the creation
22467         of CustomAttributeData, which includes Attribute data
22468         used by ReflectionOnly methods.
22470         * reflection.h:  mono_reflection_get_custom_attrs_data and
22471          mono_custom_attrs_data_construct added (functions exposed).
22473          * icall.c: Added mono_reflection_get_custom_attrs_data
22474          as icall.
22475         
22476 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22478         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22479         lupus's request.
22481 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22483         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22485         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22486         dynamic DllImportAttribute.
22488         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22489         dynamic DllImportAttribute.
22491         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22492         Fixes #75162.
22494 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22496         * threads.c: avoid segfault when an unstarted thread is aborted.
22498 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22500         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22501         Returns the name and version of the runtime for reporting.
22503 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22505         * appdomain.c: bump corlib version.
22506         * object-internals.h: new field in MonoReflectionAssembly.
22508 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22510         * object-internals.h: Carlos forgot to add this field.
22512 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22514         * icall.c: Added create_version to create instances
22515         of Version of MonoReflectionAssemblyName. This change helps
22516         the AssemblyName tests to keep running fine.
22517         
22518 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22519   
22520         * object.c (mono_method_return_message_restore): A somehow less
22521         intrusive fix for #75138.
22523 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22525         * object.c (mono_method_return_message_restore): Fix computation
22526         of expected number of out args.
22528 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22530         * reflection.c (mono_image_get_method_info): Fix the case when the
22531         charset is empty.
22533 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22535         * object.c: Added missing null check in
22536           mono_method_return_message_restore.
22538 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22540         * reflection.c (mono_image_get_method_info): Handle the case when
22541         dllentry is empty.
22543 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22545         * object.c: When creating the vtable for a proxy, take into account
22546         all inherited interfaces, not only the ones registered in
22547         iclass->interfaces. This fixs bug #74996.
22548         Also, in mono_method_return_message_restore, verify that the array
22549         of out args has the expected lengh.
22551 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22553         * socket-io.c: update the timeout in Poll when the call is interrupte.
22555 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22557         * socket-io.c: support abort/suspend in Select_internal after last
22558         change.
22560 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22562         * threadpool.c: remove warning.
22564 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22566         * icall.c:
22567         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22568         removing the 1024 limit from select(). Runtime part of the fix for
22569         bug #71203.
22571 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22573         * socket-io.c: when resolving the addresses for the same
22574         host returned by gethostname(), get the local IPs from the interface
22575         list. Loopback addresses are discarded if the are interfaces up with
22576         non-loopback ones. Fixes bug #63265.
22578 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22580         * appdomain.c, verify.c, object-internals.h, reflection.c:
22581         bumped corlib number to 36, and added new extra_flags field
22582         to ReflectionMethodBuilder and friends.  Fixes #75060.
22584 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22586         * gc.c: register a new weak link only if the object is non-null
22587         (fixes bug#75047).
22589 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22591         * culture-info.h : short time pattern too.
22593 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22595         * culture-info.h : expand long time pattern string length.
22597 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22599         * culture-info-table.h : update (more French date format; #72788).
22601 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22603         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22604         the method is static. Fixes #75029.
22606 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22608         * reflection.c: Update the table_idx field of method builders after
22609         saving the module, since it can change. This is a workaround for
22610         bug #74914. 
22612 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22614         * culture-info-table.h : update (additional French date format).
22616 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22618         * icall.c (ves_icall_type_Equals): Revert last change.
22619         
22620         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22622         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22624 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22626         * class-internals.h: Added executioncontext_class field to 
22627         MonoDefaults structure.
22628         * domain.c: Cache System.Threading.ExecutionContext class in 
22629         mono_defaults.
22630         * object.c: Capture the ExecutionContext for asynchroneous calls in
22631          mono_async_result_new.
22632         * object-internals.h: Added execution_context and original_context 
22633         fields to MonoAsyncResult. Added execution_context to MonoThread.
22634         * security-manager.c|.h: Added mono_get_context_capture_method to 
22635         return the capture method (if required by the security manager or by
22636         the framework version used).
22637         * threadpool.c: Apply capture (if present) ExecutionContext in 
22638         mono_async_invoke and revert to original context after it completes.
22640 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22642         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22644 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22646         * culture-info-table.h : zh-CHT related workaround.
22648 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22650         * marshal.c (emit_marshal_custom): Add some error checking and call the
22651         methods in the ICustomMarshaler interface. Fixes #74875.
22652         
22653         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22654         native->managed wrappers.
22656 2005-05-12  Martin Baulig  <martin@ximian.com>
22658         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22659         here and use the loader lock.
22661         * mono-debug.c: Properly lock when the debugger is not attached.
22662         (mono_debug_init): Release the initial lock if we're not running
22663         in the debugger.
22665 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22667         * marshal.c (emit_marshal_custom): Pass through NULL values without
22668         calling the custom marshalling routines.
22670         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22671         conversion in structures. Fixes #74882.
22673 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22675         * culture-info-table.h : zh-* cultures were missing.
22677 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22679         * threads.c: Added a new event background_change_event which is signaled
22680         when a thread changes its background mode.
22681         Moved here several checks previously done in managed code. The checks
22682         require the thread lock, and using the thread lock in managed code
22683         can result in deadlocks.
22684         Merged Start_internal and Thread_internal into a single method. Now 
22685         Thread_internal does all work of creating and starting a thread.
22686         Added icalls for setting and getting the state of the object. Moved from
22687         managed code to avoid locking there.
22688         Added wait_for_tids_or_state_change() which is called instad of
22689         wait_for_tids when waiting for non-backround threads to end. This method
22690         will return if one of the threads ends or the background_change_event
22691         is signaled.
22692         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22693         the background mode. This method signals the background_change_event
22694         event.
22695         * icall.c:
22696         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22697         removed Start_internal.
22698         
22699 2005-05-11  Martin Baulig  <martin@ximian.com>
22701         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22702         to order of some fields to get proper alignment on 64-bit machines.
22704 2005-05-11  Martin Baulig  <martin@ximian.com>
22706         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22707         changes as they're broken and completely fuck up the debugger.
22709         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22711 2005-05-10  Martin Baulig  <martin@ximian.com>
22713         * reflection.c (mono_reflection_generic_class_initialize): Don't
22714         call mono_class_setup_parent() here.
22716 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22718         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22719         send/receive timeout use an integer in milliseconds. We were using a
22720         struct timeval.
22722 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22724         * locales.c:
22725         (internal_get_cultures): reserve the first slot of the array for the
22726         InvariantCulture, which will be filled in managed code.
22728 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22730         * reflection.c (mono_image_fill_module_table): Initialize the
22731         GENERATION field as well.
22733 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22735         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22736         Monitor.Enter on the object.
22738 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22740         * threads.c: Enable the wait for running threads when exiting.
22741         * icall.c: Suspend all threads before exiting.
22743 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22745         * assembly.c (mono_assembly_load_reference): Fix warning.
22747 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22749         * threadpool.c: changed the default number of threads per cpu. From now
22750         on, the default will be 20 + (5 * number of cpus) instead of 50.
22752 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22754         * loader.c (mono_method_get_signature_full): Add locking here.
22756 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22758         * appdomain.c: Moved methods for parsing and freeing assembly
22759         names to assembly.c.
22760         * assembly.c, domain-internals.h: Created public methods for parsing
22761         assembly names. Fixed mono_assembly_load_with_partial_name:
22762         it now finds the best match, taking into account the version,
22763         token and culture specified in the partial name. Also return
22764         the latest version if no version information is specified.
22766 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22768         * threadpool.c: replace check for SocketAsyncCall class.
22770 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22772         * threadpool-internals.h:
22773         * Makefile.am: added threadpool-internals.h
22775         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22776         that happen in threadpool threads (tested on MS).
22777         (mono_thread_pool_remove_socket): new function that dispatch any pending
22778         AIO call on a socket that is closing. By now only epoll really needs it,
22779         as select/poll wake up when the socket closes.
22782         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22784 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22786         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22788 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22790         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22792 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22794         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22795         has an abort request, convert it into a suspend request.
22797 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22799         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22800         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22801         is not supported yet.
22803 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22805         * image.c: register assemblies loaded from data (bundles) in the loaded
22806         assemblies hash. Fixes bug #74772.
22808 2005-04-29  Martin Baulig  <martin@ximian.com>
22810         * class.c (mono_type_get_name_recurse): Update to the new naming
22811         schema from the latest .NET 2.x beta2.
22812         (mono_class_setup_vtable_general): If we're a generic instance,
22813         copy the vtable from our generic type definition and inflate all
22814         the methods in it.
22816         * loader.c (find_method): Update to the new naming schema from the
22817         latest .NET 2.x beta2.
22819 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22821         * class.c (mono_class_init): Add a mono_loader_unlock to the
22822         #74734 fix.
22824 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22826         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22827         suspend_all_other_threads () call for the time being, since it can hang.
22829         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22830         the background threads to exit, since it can also hang.
22832         * class.c (mono_class_init): Applied patch from Ankit Jain 
22833         (radical@gmail.com). Avoid pending init errors when a field refers
22834         to a nested class using a typeref. Fixes #74734.
22836         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22837         this for dynamic modules.
22839 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22841         * threads.c: don't wait for threads that are in the process of aborting
22842         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22843         and waiting for background threads to finish. This makes xsp and
22844         mod-mono-server exit without random length delays and/or hangs.
22846 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22848         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22850 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22852         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22853         dynamic types to prevent infinite loops. Fixes #74727.
22855         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22856         ..._is_assignable_to.
22858 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22860         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22862 2005-04-25  Martin Baulig  <martin@ximian.com>
22864         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22866         * domain.c
22867         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22869         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22871         * reflection.c (build_compressed_metadata): Set metadata header
22872         version to 2.0.
22874 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22876         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22877         number into an integral and a decimal part. Fixes #70473.
22879         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22881 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22883         * culture-info-table.h : reflected the latest locale-builder output.
22885 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22887         * threadpool.c: check for SuspendRequested too when deciding if
22888         mono_thread_interruption_checkpoint should be called.
22890 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22892         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22893         * threads.c: remove interruption_mutex and use Interlocked instead. When
22894         suspending all the threads, wait for all the suspended events at once.
22895         If we're shutting down and get an APC that is going to be queued,
22896         call mono_thread_execute_interruption immediately, as the thread might
22897         be sleeping on a pthread condition or mutex.
22899         * icall.c: call mono_runtime_set_shutting_down before suspending the
22900         threads.
22902         Fixes bug #74693. And now xsp is happier when exiting.
22904 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22906         * loader.c (mono_stack_walk): Fix #74690.
22908 2005-04-22  Martin Baulig  <martin@ximian.com>
22910         * mono-debug.h (MonoDebugMethodJitInfo): Added
22911         `MonoDebugMethodJitInfo *jit'.
22913         * mono-debug.c (mono_debug_read_method): Cache the
22914         MonoDebugMethodJitInfo in `address->jit'.
22915         (mono_debug_free_method_jit_info): New public method.
22917 2005-04-22  Martin Baulig  <martin@ximian.com>
22919         * class.c (mono_class_is_assignable_from): Disallow
22920         type parameter -> interface.
22922 2005-04-21  Dick Porter  <dick@ximian.com>
22924         * threads.c (mono_thread_create): Turn an assertion into an error.
22926 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22928         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22929         
22930         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22931         Fix some gcc 4.0 warnings.
22933 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22935         * file-io.c: fix alt dir separator char on unix systems
22936         and cleanup (fixes bug #71214).
22938 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22940         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22941         a call to a remote domain, since the method may be an
22942         interface method in the client domain. This fixes bug #74192.
22944 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22946         * threadpool.c: recv/send are now performed before going back to managed
22947         code to save one transition.
22949 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22951         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22953         * metadata/threadpool.c: removed hack to workaround the bug above.
22955         Fixes bug #74618.
22957 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22959         * reflection.c reflection.h: Fix handling of parameter defaults in
22960         dynamic methods. Also fixes handling of parameter attributes.
22961         Fixes #74609.
22963         * mono-debug.c (mono_debug_close_image): Fix warning.
22965 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22967         * socket-io.h: replaced old unused field with new 'blocking'.
22968         * threadpool.c: restore socket blocking state on windows(tm).
22970 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22972         * icall.c: don't return the codebase in the AssemblyName[] returned by
22973         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22974         * object-internals.h: Removed FIXME (fields were presents) and fixed
22975         versioncompat declaration.
22977 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22979         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22980         not closed, so don't cleanup when it happens.
22982 2005-04-13  Chris Toshok  <toshok@ximian.com>
22984         * mono-debug-debugger.h: change prototype for
22985         mono_debugger_lookup_type.
22987         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22988         this function, although it should probably be named
22989         mono_debugger_init_type.
22991 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22993         * threadpool.c: fix non-AIO case.
22995 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22997         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22998         the built-in profiler to measure just JIT compilation times.
23000 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23002         * threadpool.c: the epollfd might be closed by another thread at
23003         any time, so ignore EBADF at treat it as a "we're closing" sign.
23005 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23007         * threadpool.c: release the semaphores with a count equals to the number
23008         of working threads in both IO and regular pools. Fixed typo that messed
23009         up the count of IO pool threads. Don't initialize the pipe handles if
23010         we're using epoll.
23012 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23014         * threadpool.c: some systems don't like a NULL when deleting the socket
23015         from epoll.
23017 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23019         * threadpool.c: fix semaphore allocation.
23021 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23023         * threadpool.c: added epoll() based implementation for asynchronous IO
23024         that is used instead of the default poll() when available.
23025         It can be disabled by setting MONO_DISABLE_AIO.
23027 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23029         * threadpool.c: windows needs 'closesocket' and instead of returning
23030         0 when the stream is closed while in select, it returns -1. Fixes bug
23031         #74573.
23033 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
23035         * class.c (class_compute_field_layout): Fix the regression caused by
23036         the previous try.
23038 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23040         * threadpool.c: separate pool for socket async. IO.
23041         * threadpool.h: mono_max_worker_threads is not a global any more.
23043 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23045         * class.c (class_compute_field_layout): Fix #74549.
23047 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23049         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23050         use 2 connected sockets instead.
23052 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23054         * mono-config.c: Add new entry point for mkbundle
23055         mono_config_parse_memory. 
23057 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23059         * threadpool.c: removed another unused function.
23061 2005-04-08  Ankit Jain  <radical@corewars.org>
23063         * reflection.c (get_default_param_value_blobs): Add 'types'
23064         parameter to get the types encoded in the constant table.
23065         (mono_param_get_objects): Use the type from the constant table,
23066         not the type of the parameter, when creating default values.
23067         Handle null default values correctly.
23069 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23071         * file-io.c:
23072         * file-io.h:
23073         * threadpool.c:
23074         * threadpool.h:
23075         * icall.c:
23076         * socket-io.c: removed dead code for async IO.
23078 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23080         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23082         * threadpool.c: intercept socket async. calls and pass them to a thread
23083         that is polling and dispatching the job items to the threadpool as
23084         socket become ready. Fixes bugs #71217, #71933.
23086         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23087         between char and short/ushort arrays.
23089         * socket-io.c: remove dead code.
23091 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23093         * locales.c,
23094           icall.c : removed InternalToUpper_Comp() and
23095           InternalToLower_Comp().
23097 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23099         * char-conversions.h : The tables were incorrectly generated. Should
23100           be generated against invariant culture.
23102 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23104         * object.c (mono_runtime_invoke_array): Fix return value when 
23105         passing pre-created valuetype objects to ctors.
23107         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23108         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23109         Fixes #74338.
23111 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23113         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23114         only used with --security and hides the wrong corlib version error.
23116 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23118         * class.c: Changed mono_class_name_from_token so that types
23119         outside of a namespace don't have an initial period.  Improved
23120         the g_warning message used in _mono_class_get when loading
23121         fails.
23122         * assembly.c: In mono_assembly_load_reference, when an assembly
23123         can't be found, "No such file or directory" is misleading and
23124         unhelpful because a few paths were checked for the presence of
23125         the assembly.  When that happens (ENOENT), display a nicer
23126         message indicating the directories that were searched.  In all
23127         cases, the warning is made easier to read for non-hackers.
23129 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23131         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23132         project/solution.
23133         * appdomain.h|domain.c: Removed inline from functions.
23134         * appdomain.c: Reduced warnings when compiling on windows.
23135         * icall.c: Fixed output_debug declaration to gunichar2*.
23136         * mono-config.c: Reduced warnings when compiling on windows.
23137         * rand.c: Added missing "windows.h". Added missing return value.
23138         * rawbuffer.c: Added missing winsock2.h for windows.
23139         * sysmath.h: Added mono-compiler.h header to allow/ease 
23140         compilation with non-GCC compilers.
23141         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23142         Removed cast warnings.
23144         Adapted from the work of J Lothian (for VC6).
23146 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23148         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23149         from default_path.
23151 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23153         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23154         the 2.0 profile.
23156 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23158         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23159         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23160         stuff, and it would probably use $(prefix)/share rather than
23161         $(prefix)/lib.
23163 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23165         * console-io.c: added 2 includes that might be missing.
23167 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23169         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23170         profile.
23172         * reflection.c (create_custom_attr): Allocate the params array using
23173         alloca so it gets GC tracking.
23175 2005-03-23  Chris Toshok  <toshok@ximian.com>
23177         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23178         out some spew.
23180 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23182         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23183         changes to pick up any changes in prefix, etc.
23185 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23187         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23188         
23189         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23190         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23192 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23194         * class-internals.h object-internals.h class.c reflection.c: Extend the
23195         mono_lookup_dynamic_token () function to return the class of the
23196         token as well. 
23198         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23199         well. Fixes #73848.
23201 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23203         * security-manager.c: Skip inheritance checks for intra-corlib
23204         class inheritance and method overrides. This skips a lot of checks
23205         and (anyway) permissions cannot work until corlib is loaded.
23207 2005-03-23  Martin Baulig  <martin@ximian.com>
23209         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23210         MONO_TYPE_GENERICINST.  
23212 2005-03-23  Martin Baulig  <martin@ximian.com>
23214         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23216 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23218         * class.c: added locking comments to some functions.
23219         Cache the interface offsets arrays (saves about 20 KB
23220         of runtime memory in a typical app).
23221         Reduce the time overhead in mono_class_setup_supertypes ().
23223 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23225         * icall.c: speedup and fix leaks in GetMethodsByName and
23226         GetPropertiesByName.
23228 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23230         * reflection.c: some locking fixes.
23232 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23234         * metadata.c: added missing break in case statement.
23236 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23238         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23239         typedbyref return values. Fixes #73941.
23241 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23243         * security-manager.c|h: Added demandunmanaged method and 
23244         suppressunmanagedcodesecurity class to MonoSecurityManager.
23245         Renamed aptc class to allowpartiallytrustedcallers.
23247 2005-03-17  Martin Baulig  <martin@ximian.com>
23249         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23251 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23253         * file-io.c: disabled file async. IO using aio_*. It uses the
23254         threadpool now. Workaround for bug #73718.
23256 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23258         * assembly.h, mono-config.c: added code to deal with bundled configs
23259         for bundled assemblies.
23261 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23263         * *.c, private.h: cleanup, removing old private.h header file.
23265 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23267         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23268         and throw_on_unmappable_char attributes.
23270 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23272         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23273         _ProcessName_internal.
23275 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23277         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23278         #73631.
23280         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23281         are no longer used.
23283 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23285         * object.c (compute_class_bitmap): Add support for generics. Fixes
23286         #73527.
23288 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23290         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23292 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23294         * filewatcher.c: commented out the code for windows watcher, as we don't
23295         use it (we use the managed implementation instead).
23297 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23299         * object-internals.h (MonoThread): Remove 'unused1' field.
23301         * appdomain.c: Bump corlib version.
23303         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23305         * reflection.c (mono_reflection_create_runtime_class): Remove the
23306         AssemblyBuilder.Save optimization since it causes too many problems.
23308 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23310         * exception.c|h: Added mono_get_exception_reflection_type_load to
23311         create a ReflectionTypeLoadException object.
23312         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23313         to return NULL is a InheritanceDemand fails during reflection. Updated
23314         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23315         ReflectionTypeLoadException if an InheritanceDemand fails during 
23316         reflection. Added icall mapping for GetLinkDemandSecurity.
23317         * security-manager.c|h: Added ves_icall_System_Security_
23318         SecurityManager_GetLinkDemandSecurity internal call to return the
23319         class and methods permissions set for a LinkDemand. Removed unused
23320         fields in MonoSecurityManager.
23322 2005-03-10  Martin Baulig  <martin@ximian.com>
23324         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23325         it's a generic instance.
23327 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23329         * reflection.c (mono_get_object_from_blob): Applied patch from
23330         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23332         * class.c (mono_class_is_assignable_from): Another try at fixing 
23333         #73469 without breaking anything.
23335 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23337         * class.c: (mono_class_is_assignable_from): Revert the last changes
23338         since they don't work with generics.
23339         
23340         * class.c (mono_class_is_assignable_from): Fix build bustage.
23342         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23343         the managed IsAssignableFrom method. Fixes #73469.
23345         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23346         function.
23348 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23350         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23351         memory when the remoting callback does not sets the out arguments.
23352         Fixes #73007.
23354         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23355         by mistake.
23357         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23359         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23361         * appdomain.c: Bump corlib version.
23363 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23365         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23366         function.
23368         * threads.c (mono_thread_attach): Detect threads which are not started
23369         by the GC pthread wrappers.
23371 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23373         * icall.c: Added new icall for RNG.
23374         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23375         single handle on Linux to access /dev/urandom and fix #73183.
23377 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23379         * object.c: setting the new vtable in a transparent proxy object must
23380         not change the GC descriptor.
23382 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23384         * object.c: fixed compilation without GCJ support.
23385         * reflection.c: for runtime-created types ensure klass->has_references
23386         is correct (bug #73215).
23388 2005-03-02  Martin Baulig  <martin@ximian.com>
23390         * class.c (mono_class_is_assignable_from): Make this work if
23391         `oklass' is a generic instance; fixes #72831.
23393 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23395         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23396         with hasthis set.
23397         
23398         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23400         * marshal.c: Reorganize native->managed marshalling code to also use
23401         the emit_marshal_... functions.
23403 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23405         * object.c: typed allocs have issues with bitmap sizes > 30,
23406         so check for max_set >= 30.
23408 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23410         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23411         managed code. Fixes #73012.
23413         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23415         * metadata.c reflection.c: Load/Emit elem_mult as well.
23416         
23417         * metadata.h (MonoMarshalSpec): Add comment.
23419         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23421         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23422         num_elem to -1 if not given.
23424         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23426         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23427         given values.
23429 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23431         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23433 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23435         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23437         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23439 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23441         * object.c: generalized the reference bitmap creation
23442         and added hooks for the new GC.
23443         * class-internals.c: removed the gc_bitmap field from MonoClass.
23445 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23447         * domain.c: help the compiler to produce better code
23448         in mono_jit_info_table_find ().
23450 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23452         * object.c: make all allocations look typed.
23454 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23456         * socket-io.c: load Mono.Posix if it's not loaded already
23457         (fixes bug#73033).
23459 2005-02-24  Martin Baulig  <martin@ximian.com>
23461         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23462         * reflection.c (dup_type): Likewise.
23464 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23466         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23467         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23469 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23471         * domain.c, threads.c, object-internals.h: make the critical thread
23472         local vars use the fast access mode (even when we're compiled in
23473         a lib). Provide accessors to be used by the jit during codegen.
23475 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23477         * appdomain.c: Changed hook functios behavior to include
23478         support for the reflection only assemblies. Some icalls were changed
23479         to support the mentioned assemblies too. Signatures of static methods
23480         try_assembly_resolve and real_load now have an additional parameter:
23481         refonly.
23483         * assembly.c: General changes to mono_assembly_ methods to support
23484         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23485         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23486         suffix, to support an additional gbool parameter to specify whether
23487         the assembli is reflection only or not. Created some new hook functions 
23488         to add support for reflection only assemblies. Signatures of static 
23489         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23490         have now an additional parameter: refonly.
23492         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23493         indicating whether the assembly is reflection only or not.
23495         * exception.c: Add mono_get_exception_invalid_operation.
23497         * icall.c: Throw an InvalidOperationException when trying to invoke
23498         a property/method/event, or trying to set/get the value of a field.
23499         Also add an icall to retrieve the ref_only flag to the
23500         MonoReflectionAssembly.
23502 2005-02-23  Chris Toshok  <toshok@ximian.com>
23504         Part of fix for #72827.
23505         * mono-debug.c (mono_debug_add_method): add lexical block data to
23506         the info we write.  Kind of a hack at the moment - we copy the
23507         lexical block info from the MonoDebugMethodInfo to the
23508         MonoDebugMethodJitInfo here, before writing it.
23509         (mono_debug_read_method): read the lexical block info.
23511         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23513         * debug-mono-symfile.h: add lexical block support.
23515         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23516         support.
23518 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23520         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23522         * object.c (mono_runtime_free_method): Call mono_free_method () and
23523         put the TODOs there.
23525         * loader.c (mono_free_method): Free up most memory allocated for 
23526         dynamic methods.
23528 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23530         * reflection.c: properly flag a Type argument to a
23531         named custom attr value (bug #72248).
23533 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23535         * reflection.c: reduce code duplication in named custom
23536         attribute encoding.
23538 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23540         * reflection.c: properly encode custom attrs of type object
23541         (bug #72649).
23543 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23545         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23547 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23549         * socket-io.c: load System.dll if it's not loaded already
23550         (bug #72850 and #70477).
23552 2005-02-21  Martin Baulig  <martin@ximian.com>
23554         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23555         generic instances.
23557 2005-02-21  Martin Baulig  <martin@ximian.com>
23559         * reflection.c (mono_image_build_metadata): We also need to
23560         "fixup" the MethodImpl table after we computed the final method
23561         indices.  Call fixup_methodimpl() to do that.
23562         (fixup_methodimpl): New private method.
23564 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23566         * assembly.c: special case mscorlib.dll (bug#72536),
23567         patch from Carlos Alberto Cortez.
23569 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23571         * threads-types.h threads.c: Fix build bustage.
23573         * threads.c: Use a union for long<->double conversions.
23575         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23576         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23578         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23579         containing the checkpoint call with NOT_TAKEN.
23580         
23581         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23582         checkpoint before pushing the arguments, so they won't have to be
23583         spilled to stack.
23585 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23587         * domain.c, assembly.c, domain-internals.h: make some data
23588         const and relocation-free.
23590 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23592         * object.c, appdomain.c, class-internals.h: introduce the
23593         MonoClassRuntimeInfo structure to hold the info needed to
23594         use a class at runtime. Made mono_class_vtable() lock-free
23595         for all the appdomains.
23597 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23599         * metadata-internals.h, image.c: introduce a per-image mempool to
23600         be used for memory that has the same lifetime as the image.
23602 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23604         * domain.c: In mono_init_internal(), instead of selecting the first
23605         runtime version supported by an executable, get a list of all
23606         supported versions and select the one for which an mscorlib exists
23607         (since even if the runtime supports a given version, it doesn't mean
23608         that the framework for that version is installed).
23609         Modified get_runtimes_from_exe to support this behavior.
23610         In supported_runtimes, added information about additional system
23611         assembly versions.
23612         
23613         * assembly.c: Added support for more than one system assembly version
23614         per runtime version. Updated the assembly list.
23615         In mono_assembly_remap_version, removed the initial version check,
23616         since we don't know to which version we need to compare until we
23617         get the version set on which the assembly is based.
23618         Moved the code for loading corlib into the new method
23619         mono_assembly_load_corlib(), so it can be used by the initialization
23620         code.
23621         
23622         * domain-internals.h: Updated data structures and added declaration
23623         for mono_assembly_load_corlib.
23625 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23627         * reflection.c (resolve_object): Fix the creation of the signature in 
23628         the SignatureHelper case.
23630         * assembly.c (mono_assembly_remap_version): Fix binary search.
23631         
23632 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23634         * class.c: Added inheritance check when a method is overloaded (from a
23635         virtual method or when implementing an interface) and when a class is
23636         inherited. Added functions to set a failure for a class and to 
23637         retreive the exception from a failure.
23638         * class-internals.h: Added fields to MonoClass to keep the exception
23639         information status for inheritance (or other exceptions) to be thrown
23640         later (i.e. not at load time).
23641         * object.c: Throw the inheritance SecurityException when a type is to 
23642         be created with either class or method inheritance violations.
23643         * reflection.c|h: Fix when getting declsec from a class. Removed 
23644         unrequired code for class. Improved sanity in parameter naming.
23645         * security-manager.c|h: Added functions to check for class and method
23646         inheritance.
23648 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23650         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23651         and has_finalize in dynamic types as well.
23653 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23655         * culture-info-table.h : fixed currency format for en-GB (and so on).
23657 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23659         * gc.c: ensure the GC handles never have 0 as a value.
23661 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23663         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23664         a pointer to a struct to unmanaged code. Fixes #72625.
23666 2005-02-16  Martin Baulig  <martin@ximian.com>
23668         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23670 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23672         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23674 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23676         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23678         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23679         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23680         etc. Fixes #71471.
23682         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23684         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23686 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23688         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23689         changes to make the current context a field in MonoThread.
23691 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23693         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23694         the last change.
23695         
23696         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23697         extracted from mono_marshal_get_native_wrapper.
23699         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23700         to create wrappers around native functions.
23702         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23703         delegates for arbitrary function pointers. Fixes #71472.
23705 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23707         * threads.c: cleaned up the code a little.
23709 2005-02-15  Martin Baulig  <martin@ximian.com>
23711         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23712         the data table.
23714         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23715         allocate larger chunks if needed.
23717 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23719         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23720         in by mistake.
23722 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23724         * domain.c: keep the domains in an array and ensure the domain ids
23725         are kept small, so they can be used as indexes to domain-specific data
23726         with a small memory overhead.
23728 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23730         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23732 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23734         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23736 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23738         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23740         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23741         values.
23743         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23744         
23745 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23747         * domain-internals.h: add the hashtable here.
23749         * class-internals.h: Remove `info' from MonoMethod
23751         * domain.c: Add a new hashtable, jit_trampoline_hash
23753 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23755         * object.c: don't set the value of static fields
23756         (fixes bug#72494).
23758 2005-02-11  Martin Baulig  <martin@ximian.com>
23760         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23761         (mono_debug_add_method): Silently ignore the method if it's too big.
23762         (mono_debug_add_type): Likewise.
23764 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23766         * threads.c, appdomain.c: remove #ifdefs from the code.
23768 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23770         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23771         common security informations. This allows us to stay in unmanaged code
23772         when doing LinkDemand and it's special cases (except for the first 
23773         time for initialization). The flags a very much used with --security.
23774         * reflection.c|h: Added code to get declarative security attributes 
23775         for LinkDemand and InheritanceDemand. This required to refactor the
23776         existing code for Demand.
23777         * security-manager.c|h: Added new method fields for the special cases
23778         of LinkDemand.
23780 2005-02-10  Martin Baulig  <martin@ximian.com>
23782         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23783         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23785 2005-02-10  Martin Baulig  <martin@ximian.com>
23787         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23788         debugging code; this is almost a complete rewrite.
23790         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23792 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23794         * domain.c, object.h: expose mono_string_equal () and 
23795         mono_string_hash ().
23796         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23797         it's implemented in managed code.
23799 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23801         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23802         lo leak objects between appdomains.
23804 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23806         * assembly.c: old compilers compilation fix from 
23807         robertj@gmx.net (Robert Jordan).
23809 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23811         * class-internals.h: Little reminder for the future.
23813         * debug-helpers.c: Fix up wrapper_type_names
23815 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23817         * image.c, metadata-internals.h: when loading an image from a file,
23818         mmap all of it and use the same codepaths as when using a
23819         in-memory image: the code is simpler and we use less memory
23820         (both writable and readonly).
23822 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23824         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23825         API to alloc runtime data structures that need to be tracked by the
23826         GC and contain pointers.
23827         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23828         make the code more readable and eventually use a different GC.
23830 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23832         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23833         for out arguments.
23834         
23835 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23837         * object.c: In release_type_locks(), don't release the cctor lock
23838         if it has already been released. This fixes a crash in the
23839         thread5 test.
23841 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23843         * gc.c, marshal.c, icall.c: register a delegate for finalization
23844         only when the native function pointer has been allocated for it.
23846 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23848         * object.c: cleaned up some code, allocate objects that are
23849         pointer free with the atomic malloc variant. Allocate memory
23850         for static data from the mempool if it's pointer-free.
23851         Allocate the bounds array at the end of the array data, when needed.
23852         * object-internals.h, object.h: move a private function in a private
23853         header.
23854         * class.c: handle missing case in tracking references in fields.
23856 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23858         * class.c, class-internals.h: keep track if a type has
23859         reference fields in either the instance or static fields.
23861 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23863         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23864         and renamed to MonoRuntimeInfo. Added fields to store the expected
23865         framework assembly version. Changed mono_get_framework_version and
23866         mono_get_runtime_version for a single mono_get_runtime_info method.
23867         
23868         * assembly.c: Added method to remap system assembly versions to the
23869         current executing runtime version. Removed old mapping code.
23870         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23871         
23872         * icall.c, reflection.c: Track api changes.
23874 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23876         * loader.c (method_from_memberref): Improve error reporting,
23877         produce the class name instead of the typeref/typedef index. 
23879 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23881         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23883 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23885         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23886         stdcall and charset name mangling.  Reorganize the code and add
23887         some tracing stuff.
23889 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23891         * monodiet.c: More iters!
23893         * marshal.c: Iter usage.
23895         * icall.c: Iter usage.
23897         * object.c: Use iters.
23899         * debug-helpers.c: More iters
23901 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23903         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23904         under win32.
23906 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23908         * mono-debug-debugger.c: use iters
23910         * class.c, class-internals.h: mono_class_setup_events is static
23911         now
23913         * All callers: use iters
23915 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23917         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23918         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23920 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23922         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23924         * marshal.h: Add prototypes for ldfld/stfld_remote.
23926         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23927         this is called during startup.
23928         
23929 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23931         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23932         MonoThreadsSync struct private in monitor.c. Changed the way
23933         MonoThreadsSync is allocated so it's faster and there is no
23934         need to keep track of it with a finalizer and it uses less memory.
23935         This also finally allows us to allocate mono objects as ptrfree when
23936         there are no reference fields.
23938 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23940         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23941         disappearing link to the GC interface and use them to simplify
23942         the gchandles code.
23944 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23946         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23947         stfld_remote which call mono_load/store_field_new. This allows methods
23948         calling ldfld/stfld wrappers to be AOTed.
23950         * console-io.c: Include sys/filio.h under solaris.
23951         
23952         * console-io.c: Include curses.h if needed correctly.
23954 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23955         
23956         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23957         method->klass as well.
23959         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23961         * class.c (mono_class_init): Switch on lazy initialization of 
23962         methods.
23964         * class.c (mono_class_get_finalizer): Handle the case when the 
23965         finalizer is inherited.
23967 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23969         * console-io.c: <curses.h> is needed by term.h on solaris.
23971 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23973         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23974         mono_class_setup_properties where possible. Remove this ftn from
23975         the header file, and make it static.
23977 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23979         * loader.c: Add missing setup_... call.
23981         * class.c: Add missing setup_... calls.
23983         * class.c (mono_class_init): Switch on lazy initialization of 
23984         the generic vtable.
23985         
23986         * class.c (mono_class_init): Fix generics broken by the recent changes.
23988         * monodiet.c (handle_type): Add missing setup_... calls.
23990         * class.c: Back out garbage in previous patch.
23991         
23992         * class.c: Add missing setup_... calls.
23994         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23995         mono_class_setup_methods () if possible.
23997         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23999         * class-internals.h (MonoCachedClassInfo): New structure.
24001         * class.c: Initialize properties and events fields of MonoClass lazily.
24003         * class.c: Add infrastructure for lazily initializing the methods and
24004         vtable fields of MonoClass. Not yet used.
24006         * class.c (mono_class_get_finalizer): New helper function.
24008         * class.c: Add infrastructure for loading some class related data from
24009         an AOT file.
24011         * object.c: Add infrastructure for initializing the vtable from data
24012         in the AOT file.
24014         * gc.c (run_finalize): Use mono_class_get_finalizer ().
24016         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24017         appropriate initialization function before accessing parts of the
24018         MonoClass structure.
24020         * marshal.c: Fix warnings.
24021         
24022         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24024         * mono-debug-debugger.c (get_exception_message): Use 
24025         mono_class_get_method_from_name_flags ().
24027 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
24029         * reflection.c, appdomain.c: Replace a few manual searches that
24030         Zoltan missed. (Paolo approved this part of my initial patch).
24032 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24034         * profiler.c: disable recording statistical events at report time.
24036 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24038         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24039         to byteswap arrays of enum values, too (bug #72080).
24041 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
24043         * appdomain.c (set_domain_search_path): Allow this to be called if
24044         domain->setup is not yet set.
24046         * loader.c (mono_method_get_index): New helper function.
24048         * loader.c reflection.c: Use mono_method_get_index ().
24050         * class.c (mono_class_get_method_from_name_flags): New helper method.
24052         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24053         this.
24055         * class.c (mono_class_get_cctor): New helper method.
24057         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24058         mono_class_get_method () to look up methods.
24060 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24062         * console-io.c: Fix the build, this should work on Windows.
24064 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24066         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24067         be set to null to keep things valid
24069 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24071         * icall.c: added Console 2.0 icalls.
24072         * Makefile.am: added console-io.[ch]
24073         * console-io.[ch]: internal calls for Console 2.0 API.
24075 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24077         * class.c: make sure we consider all the interfaces
24078         when calculating max_interface_id (bug found by
24079         Jeroen Frijters running ikvm).
24081 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24083         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24084         valuetype fields to null.
24086         * object.c (set_value): Ditto. Fixes #71669.    
24088 2005-01-31  Martin Baulig  <martin@ximian.com>
24090         * metadata.c (mono_metadata_has_generic_params): New public
24091         function; checks whether something is a generic method.
24093 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24095         * appdomain.c: fix infinite recursion when adding assemblies.
24097 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24099         * object.c: Fix small typo to return all items for Environment.
24100         GetCommandLineArgs.
24102 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24104         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24105         reflection.c: more domain and assembly-unload related fixes
24106         and memory leaks plugs.
24108 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24110         * 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.
24112 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24114         * loader.c (mono_method_signature): Make this method lazy
24115         (mono_get_method_from_token): Don't computate the signature here.
24117         Doing this saves quite a bit of memory. I got 90 kb on starting up
24118         monodoc. It should also save some disk reads on startup.
24120         * *: MonoMethod->signature might be NULL now. You *MUST* use
24121         mono_method_signature.
24123 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24125         * object.c (mono_runtime_get_main_args): Return an array from the
24126         current domain here. Fixes #71938.
24128 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24130         * monitor.c: formatting changes to comply with the
24131         mono coding style and remove #ifdefs from the code.
24133 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24135         * metadata.c, private.h: remove some unneeded data
24136         and use a more compact representation for table schemas.
24138 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24140         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24141         to get a better distribution in hash tables.
24142         * *.c: use mono_aligned_addr_hash() where appropriate.
24143         * assembly.c: make var static.
24145 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24147         * domain-internals.h: Put MonoJitInfo on a diet.
24149         * domain.c: Fix a warning.
24151 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24153         * gc.c: rework the gc handles code to reuse handles
24154         when freed.
24156 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24158         * domain.c: fixed long standing bug in mono_string_equal() which
24159         was brought to light with the ldstr changes.
24161 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24163         * reflection.c: Remove warning by adding missing include for marshal.h
24165 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24167         * domain.c, object.c: change the ldstr_table to hold
24168         MonoString* as keys: makes the runtime isinterned lookup
24169         faster and simplifies memory management.
24171 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24173         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24174         possible to add imperative security checks before calling the icall.
24175         * reflection.c: Return security attributes on the original MonoMethod
24176         (and not the wrapped one). This fix permissions on icalls.
24178 2005-01-25  Dick Porter  <dick@ximian.com>
24180         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24181         the check for mktime() support actually test the mktime() return
24182         value.  "Fixes" bug 71682, though the output is still different to
24183         MS.
24185 2005-01-25  Martin Baulig  <martin@ximian.com>
24187         * class.c (mono_class_is_assignable_from): Make this work for
24188         generic instances.
24190 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24192         * marshal.c (mono_string_utf8_to_builder)
24193         (mono_string_builder_to_utf16): We might not have ownership of the
24194         string. In thise case, we need to create a new buffer.
24196         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24197         be null, in which case, use the default capacity.
24199 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24201         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24202         GC events to the profiler.
24204 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24206         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24207         if you don't want the GC to run.
24209 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24211         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24212         start providing a GC API and keeping different implementations in
24213         their own file.
24214         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24216 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24218         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24219         mmap rather than allocating a huge buffer.
24220         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24221         above.
24223 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24225         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24226         and CheckExecutionRights.
24227         * reflection.c|h: Keep the index of the declarative security to be 
24228         used, instead of the pointer, when AOT compiler is used. Also add 
24229         class initialization when requesting demands.
24230         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24231         CheckExecutionRights. Both properties are now FALSE by default, and
24232         unmodifiable, unless the --security option is used.
24234 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24236         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24237         reflection.c: properly refcount images and assemblies, many leaks fixed.
24239 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24241         * threadpool.c: increase the timeout for threads in the thread pool to
24242         10s.  Fixes bug #67159.
24244 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24246         * class-internals.h: Sun's compiler insists on explicit
24247         signed on bit fields to handle then correctly.
24249 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24251         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24252         Make the size of the array fit only the number of invalid path
24253         chars that we have.
24255         * class.c (_mono_class_get): Improve the error reporting when a
24256         class referenced is not found, to assist debugging. 
24258 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24260         * threads.c: fix off-by-one error.
24261         * domain.c: free data allocated in the domain.
24263 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24265         * reflection.c (mono_method_body_get_object): Fill out exception info
24266         as well.
24268         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24269         structure.
24270         
24271 2005-01-19  Martin Baulig  <martin@ximian.com>
24273         * loader.c (mono_get_method_constrained): Make this work again.
24275 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24277         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24278         guint16 to match the managed side.
24280         * reflection.c (mono_reflection_body_get_object): Fill out local
24281         variables array.
24283         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24284         as well.
24286         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24287         'local_var_sig_token'.
24289 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24291         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24292         System.Drawing.
24294         * reflection.c (mono_method_body_get_object): Handle abstract and
24295         runtime methods.
24297 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24299         * marshal.c, loader.c, class-internals.h, reflection.c:
24300         store the emthod data for a wrapper in an array instead of a list.
24302 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24304         * marshal.c: change the code to allocate memory more
24305         conservatively for method wrappers.
24307 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24309         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24310         fields from MonoClass to the marshal info structure where they belong.
24312 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24314         * class.c, object.c, class-internals.h, marshal.c: rearrange
24315         some fields and tweak some types to lower memory usage.
24317 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24319         * threads.c (signal_thread_state_change): Handle the case when the
24320         target thread is the current thread.
24322         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24324         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24325         emit_ptr_to_object_conv. 
24327         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24328         marshalling. Fixes #71352.
24330 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24332         * metadata.h, blob.h: move table enum to blob.h so it can be included
24333         in any header.
24334         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24335         cut the size of MonoImage/MonoDynamicImage.
24337 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24339         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24341 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24343         * reflection.c, reflection.h, icall.c: add a function to check
24344         if an attribute type is defined for a metadata object.
24346 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24348         * object-internals.h: Added some needed fields from StringBuilder class.
24349         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24351 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24353         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24354         threads before shutting down the runtime.
24356         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24358 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24360         * object-internal.h, threads.c: implement stacksize and 
24361         parameterized thread start functionality (requires
24362         matching corlib). Marked broken code for later removal.
24364 2005-01-12  Martin Baulig  <martin@ximian.com>
24366         * class-internals.h (MonoGenericClass): Moved the `initialized'
24367         flag to MonoDynamicGenericClass, removed `init_pending'.
24368         (MonoGenericInst): Added `is_reference' flag.
24370 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24372         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24373         inside the MSDOS header. Fixes #71201.
24375         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24376         gc thread.
24377         (mono_domain_finalize): Ditto.
24379 2005-01-12  Martin Baulig  <martin@ximian.com>
24381         * class.c (mono_get_shared_generic_class): Use the cache for
24382         non-dynamic generic classes.
24384         * class-internals.h (mono_class_create_generic_2): Removed
24385         function prototype, this function is now static inside class.c.
24387         * class.c (mono_class_create_generic_2): Made this static, only
24388         call it from mono_class_init() and mono_class_setup_parent().
24389         (collect_implemented_interfaces_aux): Call mono_class_init() on
24390         the interfaces we collect.
24391         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24393 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24395         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24396         it a real thread handle.
24398         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24399         MonoJitExceptionInfo, since each catch clause needs its own variable.
24400         
24401 2005-01-11  Dick Porter  <dick@ximian.com>
24403         * image.c (mono_pe_file_open): New variant on mono_image_open()
24404         that does not set up the CLI metadata; used for FileVersionInfo so
24405         it can get the data for windows binaries too.
24406         
24407         * process.c (process_read_string_block): Don't read off the end of
24408         the StringTable block.
24410         These both fix bug 70766.
24412 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24414         * gc.c: set some fields to NULL at GC cleanup time.
24415         * threads.c: if we quit the main thread, call exit ().
24417 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24419         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24421 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24423         * threads.h, threads.c, object.c: added accessor and settor for
24424         main_thread. Handle it specially when exiting from it: wait
24425         for other foreground threads to exit.
24427 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24429         * process.c, verify.c: remove some bloat.
24431 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24433         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24434         the calling convention to cdecl under win32.
24436 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24438         * object.c (mono_object_get_size): New function to get the size of
24439         an object instance.
24441         * profiler.c (simple_allocation): Use above.
24443 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24445         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24446         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24447         get an appdomain by it's id and we can't assume the root's id is 0).
24448         * domain-internals.h: Change the function prototype to match.
24449         * icall.c: Change the icall table for AppDomain.
24451 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24453         * locales.c (string_invariant_compare_char): Only compute
24454         GUnicodeTypes in the case where we need them.  Test for ordinality
24455         first and return if so.
24457         From the commit:
24459                 /*
24460                  * FIXME: here we must use the information from c1type and c2type
24461                  * to find out the proper collation, even on the InvariantCulture, the
24462                  * sorting is not done by computing the unicode values, but their
24463                  * actual sort order.
24464                  */
24466 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24468         * loader.c: for P/Invoke methods, allow the "Internal" shared
24469         library name to refer to the calling process symbol namespace.
24471 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24473         * Makefile.am: Add the security manager to the build.
24474         * security-manager.c|h: New. Initialization of the security manager.
24476 2005-01-07  Dick Porter  <dick@ximian.com>
24478         * threads.c: 
24479         * monitor.c: Update thread state during Monitor and WaitHandle
24480         waits.  Fixes bug 71031.
24482 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24484         * reflection.c (property_encode_signature): Correctly handle when the
24485         property has no methods.
24487 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24489         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24490         
24491         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24492         fields from mb, not rmb. Fixes #71017.
24494         * marshal.c (emit_ptr_to_str_conv): Add support for 
24495         ByValTStr -> string conversion. Fixes #71015.
24497         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24499         * mempool.c (mono_mempool_contains_addr): New helper function.
24501 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24503         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24504         HasSematics encoded fields.
24505         
24506         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24507         invalid string marshalling.
24509         * metadata.c: Fix warnings.
24510         
24511 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24513         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24514         profiler support.
24516 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24518         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24519         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24520         tests.
24522 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24524         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24525         so methods containing these can be AOTed.
24527 2005-01-03  Martin Baulig  <martin@ximian.com>
24529         * loader.c (find_method): Removed the hack for generic instances.
24530         (method_from_memberref): If our parent is a generic instance, pass
24531         its generic type definition to find_method() and then inflate the
24532         method.
24533         (mono_get_method_constrained): Pass the generic type definition to
24534         find_method() and inflate the method later.
24536         * class-internals.h (MonoStats): Added `generic_class_count'.
24538         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24539         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24541         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24542         generic type definitions.
24544 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24546         * loader.c icall.c: Fix warnings.
24548 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24550         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24551         blittable types. Fixes #70864.
24553 2004-12-29  Martin Baulig  <martin@ximian.com>
24555         * icall.c
24556         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24558         * reflection.c (mono_method_get_object): Create a
24559         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24560         call mono_get_inflated_method().
24562         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24564 2004-12-27  Martin Baulig  <martin@ximian.com>
24566         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24567         (MonoMethodInflated): Added `inflated' field.
24569         * class.c (mono_class_inflate_generic_method): Don't really
24570         inflate the method here; just set the `is_inflated' flag in the
24571         MonoMethod.
24572         (mono_class_get_inflated_method): Actually inflate the method here
24573         if it's not already inflated; we use the MonoMethodInflated's new
24574         `inflated' field as a cache.
24576 2004-12-26  Martin Baulig  <martin@ximian.com>
24578         * class.c
24579         (inflate_generic_class): Moved some code out of inflate_generic_type().
24580         (mono_class_inflate_generic_method): If we're already inflated,
24581         inflate the context and use the declaring method; ie. make sure
24582         the declaring method of an inflated method is always the generic
24583         method definition.
24584         (mono_class_create_from_typedef): Create
24585         `class->generic_container->context->gclass'.
24587 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24589         * metadata-internals.h, marshal.c, reflection.c: More
24590         MonoGHashTable->GHashTable.
24592         * domain-internals.h, class.c: Change MonoGHashTable's into
24593         GHashTables for some cases where no gc stuff is used
24595         All users: update apis
24597 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24599         * metadata.c (builtin_types): Make this `const'. Makes this get
24600         put into the shareable section.
24601         (mono_metadata_init): Casts to make gcc happy.
24603 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24605         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24607 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24609         * icall.c: Added an internal call to retrieve the position and length
24610         of assembly-level declarative security attributes (RequestMinimum, 
24611         RequestOptional and RequestRefuse). This is used by the Assembly class
24612         to re-create the corresponding permission sets.
24614 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24616         * marshal.c: fix the stelemref wrapper to be type correct
24617         (and faster).
24619 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24621         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24622         to do key & 0x7fffffff. Hashtable already does this. It just
24623         results in longer code.
24625 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24627         * appdomain.c: Bump corlib version.
24628         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24629         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24630         * reflection.c|h: Add functions to get declarative security infos
24631         (blob position and length) for assemblies, classes and methods.
24633 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24635         * reflection.c: sort the constant table (bug #70693).
24637 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24639         * object-internals.h, threads.c, domain.c: add accessors for
24640         the MonoThread and MonoDomain tls keys.
24642 2004-12-18  Martin Baulig  <martin@ximian.com>
24644         * class.c (inflate_generic_type): If we're inflating a generic
24645         instance, set `ngclass->context->container = context->container';
24646         ie. the container we inflated into.
24648         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24649         inflate_generic_type() changes.
24651 2004-12-17  Martin Baulig  <martin@ximian.com>
24653         * class-internals.h
24654         (MonoGenericClass): Replaced `MonoType *generic_type' with
24655         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24656         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24657         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24659 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24661         * exception.c (mono_exception_from_token): New helper function.
24663 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24665         * assembly.c (mono_assembly_load_with_partial_name): Call 
24666         mono_assembly_loaded before invoking the preload hooks. Fixes
24667         #70564.
24669         * object-internals.h (MonoThread): Change culture_info and 
24670         ui_culture_info into an array.
24672         * threads.c: Cache culture info objects from more than one appdomain.
24674         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24675         current UI culture.
24677 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24679         * threads.h threads.c appdomain.c: Clear the culture_info field of
24680         all threads during unloading if they point to an object in the dying
24681         appdomain.
24683 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24685         * culture-info.h (TextInfoEntry): New struct
24686         * object-internals.h: sync with managed
24687         * locales.c: fill the `text_info_data' field
24688         * culture-info-tables.h: update
24690 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24692         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24693         collector.
24695 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24697         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24698         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24700 2004-12-12  Martin Baulig  <martin@ximian.com>
24702         * mono-debug-debugger.c (write_type): If we're an enum and the
24703         builtin types have already been initialized, call mono_class_init().
24705 2004-12-11  Martin Baulig  <martin@ximian.com>
24707         * metadata.c (mono_metadata_load_generic_params): Added
24708         `MonoGenericContainer *parent_container' argument; automatically
24709         compute `container->is_method'; pass the correct owner to
24710         get_constraints().      
24712         * reflection.c (compare_genericparam): Sort the GenericParam table
24713         according to increasing owners. 
24715 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24717         * profiler.c: allow disabling the default profiler.
24719 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24721         * decimal.c, icall.c: allow disabling System.Decimal support.
24723 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24725         * reflection.c: Add support for null attribute arguments.
24727 2004-12-09  Martin Baulig  <martin@ximian.com>
24729         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24730         names to get rid of compiler warnings.
24732 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24734         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24735         mono_marshal_load_type_info (). Fixes #69625.
24736         (mono_marshal_get_ptr_to_struct): Likewise.
24738 2004-12-08  Martin Baulig  <martin@ximian.com>
24740         * mono-debug.h: Bumped version number to 47.
24742         * mono-debug-debugger.c
24743         (mono_debugger_event_handler, mono_debugger_event): Take two
24744         guint64 arguments insteed of a gpointer and a guint32.  
24746 2004-12-08  Martin Baulig  <martin@ximian.com>
24748         * debug-mono-symfile.h
24749         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24750         `address' to `native_offset'.
24752 2004-12-08  Martin Baulig  <martin@ximian.com>
24754         * class.c (mono_class_create_from_typespec): Only inflate if we
24755         either have `context->gclass' or `context->gmethod'.
24757 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24759         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24761         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24763         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24765         * reflection.c (mono_assembly_get_object): Remove the workaround put
24766         in for the release.
24767         
24768         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24770         * appdomain.c: Bump corlib version.
24772         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24773         be visible in other appdomains.
24775 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24777         * threads.c: Interlocked inc and dec for longs were messed up,
24778         use a KISS based impl for this. Fixes 70234
24780 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24782         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24784 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24786         * icall.c: fix to follow policy not to allow struct
24787         arguments in icalls.
24789 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24791         * process.c: make the patch that handles spaces in file paths work
24792         on mono/windows too.
24794 2004-12-06  Martin Baulig  <martin@ximian.com>
24796         * class.c (mono_class_create_generic): Call
24797         mono_class_setup_supertypes() if we're dynamic.
24798         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24800 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24802         * object-internals.h: Add new fields to MonoThread.
24804         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24806         * icall.c threads-types.h threads.c: Add new icalls.
24808         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24810         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24811         managed side.
24813         * appdomain.c: Bump corlib version.
24815         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24816         internal assemblies. Fixes #69181.
24818 2004-12-05  Martin Baulig  <martin@ximian.com>
24820         * class.c (mono_class_inflate_generic_signature): Make this a
24821         no-op if `context' is NULL or we don't have any type parameters;
24822         also copy `sentinelpos'.        
24824 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24826         * image.c: Add unbox_wrapper_cache.
24828         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24830         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24831         function generator.
24832         
24833         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24834         Fixes #70173.
24836         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24837         
24838 2004-12-04  Martin Baulig  <martin@ximian.com>
24840         * loader.c (mono_method_get_signature_full): New public function;
24841         like mono_method_get_signature(), but with an additional
24842         `MonoGenericContext *' argument.
24844         * class.c (mono_class_inflate_generic_signature): Formerly known
24845         as inflate_generic_signature(); make this public.
24847 2004-12-04  Martin Baulig  <martin@ximian.com>
24849         * metadata.c
24850         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24851         instead of a `MonoGenericContainer *'.  
24852         (mono_metadata_parse_array_full): Likewise.
24853         (mono_metadata_parse_signature_full): Likewise.
24854         (mono_metadata_parse_method_signature_full): Likewise.
24855         (mono_metadata_parse_generic_inst): Likewise.
24856         (mono_metadata_parse_generic_param): Likewise.
24857         (mono_metadata_parse_mh_full): Likewise.
24858         (mono_type_create_from_typespec_full): Likewise.
24860 2004-12-03  Martin Baulig  <martin@ximian.com>
24862         * class-internals.h (MonoGenericContainer): Replaced the
24863         `MonoGenericContext * pointer with a `MonoGenericContext'
24864         structure and made it the first element.
24866 2004-12-03  Martin Baulig  <martin@ximian.com>
24868         * class.c
24869         (inflate_generic_type): Set the `context->container' when creating
24870         a new MonoGenericContext.
24871         (mono_class_inflate_generic_method): Likewise.
24872         (mono_class_create_from_typespec): Just use `context->container'
24873         to get the container.
24875         * loader.c (method_from_methodspec): Set `context->parent' from
24876         `context->container' - and if that's a method container, use its
24877         parent.  Also set the `context->container' when creating a new
24878         MonoGenericContext.
24879         (mono_get_method_from_token): Use just `context->container' to get
24880         the container.
24882         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24883         `gclass->context->container'.
24885         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24886         the `context->container' when creating a new MonoGenericContext.
24888 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24890         * reflection.c (compare_genericparam): Sort params with identical
24891         owner by their number. Fixes gen-111 on sparc.
24893 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24895         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24896         around the domain changes.
24898         * appdomain.c (mono_domain_unload): Handle the case when the thread
24899         calling Unload is itself being aborted during unloading. Fixes #70022.
24901         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24903         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24904         checkpoint_func as an icall so it gets a wrapper.
24905         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24906         in the cross-appdomain wrappers too.
24908         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24910         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24912         * reflection.c: Fix some memory leaks.
24913         
24914 2004-12-02  Martin Baulig  <martin@ximian.com>
24916         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24918         * metadata.c (generic_class_cache): New static hashtable.
24919         (mono_metadata_lookup_generic_class): New public method.
24921 2004-12-02  Martin Baulig  <martin@ximian.com>
24923         * class.c (mono_class_create_from_typedef): Call
24924         mono_class_setup_parent() and mono_class_create_mono_type() before
24925         parsing the interfaces.
24927 2004-12-02  Martin Baulig  <martin@ximian.com>
24929         * metadata.c (generic_inst_cache): New static hashtable.
24930         (mono_metadata_lookup_generic_inst): New public function.
24931         (mono_metadata_inflate_generic_inst): New public function.
24932         (mono_metadata_parse_generic_inst): New public function.
24933         (do_mono_metadata_parse_generic_class): Use the new
24934         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24935         since this'll also use the cache.
24937         * reflection.c (mono_reflection_bind_generic_method_parameters):
24938         Use mono_metadata_lookup_generic_inst() to use the new cache.
24940         * class.c (inflate_mono_type): Use
24941         mono_metadata_inflate_generic_inst() to inflate a generic
24942         instance; this'll also use the new cache.
24944         * loader.c (method_from_methodspec): Use
24945         mono_metadata_parse_generic_inst() and
24946         mono_metadata_inflate_generic_inst() rather than parsing it
24947         manually, so we can use the new cache.
24949 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24951         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24952         the wait times out.
24954 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24956         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24957         iter->args based on whether parameters are passed in registers (i.e.
24958         MONO_ARCH_REGPARMS is defined)
24960 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24962         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24963         the exception message. Fixes #70070.
24964         (method_from_methodspec): Fix warnings.
24966 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24968         * process.c: (complete_path) return the path quoted
24970 2004-12-01  Martin Baulig  <martin@ximian.com>
24972         * class-internals.h (MonoGenericInst): New structure.
24973         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24974         `is_open' with `MonoGenericInst *inst'.
24975         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24976         `is_open' with `MonoGenericInst *inst'.
24978 2004-11-30  Martin Baulig  <martin@ximian.com>
24980         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24982         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24983         to `generic_class_cache'.
24985         * metadata.c
24986         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24987         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24988         (mono_generic_inst_is_valuetype): Renamed to
24989         mono_generic_class_is_valuetype().
24991         * class-internals.h
24992         (MonoGenericInst): Renamed to MonoGenericClass.
24993         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24994         (MonoClass): Renamed `generic_inst' to `generic_class'.
24995         (MonoGenericContext): Renamed `ginst' to `gclass'.
24997         * object-internals.h
24998         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
25000         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
25001         mono_reflection_generic_class_initialize().
25003         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
25004         now known as "System.Reflection.MonoGenericClass".
25005         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
25007 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
25009         * class-internals.h: Added a flag field to MonoClass to cache the
25010         declarative security attributes actions associated with the class.
25011         * domain-internals.h: Added booleans to MonoJitInfo to cache the
25012         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25013         applicable to the JITted method.
25014         * reflection.c|h: Added functions to extract (as flags) which security
25015         actions are available (declaratively) for a method, class or assembly.
25016         * metadata.c|h: Added functions to search the declarative security
25017         table in the metadata.
25018         
25019 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
25021         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25022         EXPORTEDTYPES are already in the class name cache, so there is no
25023         need to add extra code here to look at them. Just removes a bit of
25024         cruft.
25026         (ves_icall_System_Environment_get_TickCount): No need for #if
25027         WINDOWS. We already have the code in io-layer.
25029 2004-11-28  Martin Baulig  <martin@ximian.com>
25031         * loader.c
25032         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25033         Fixes gen-112.cs.
25035 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
25037         * assembly.c (do_mono_assembly_open): Instead of having a
25038         conditional WITH_BUNDLE, incorporate support for bundles here, by
25039         having a global `bundles' variable holding a pointer to the actual
25040         bundles. 
25042         (mono_register_bundled_assemblies): New API call used by the
25043         bundle code. 
25045         See mkbundle.1 for details.
25046         
25047 2004-11-27  Martin Baulig  <martin@ximian.com>
25049         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25050         the vtable for generic methods.
25052 2004-11-26  Martin Baulig  <martin@ximian.com>
25054         * metadata.c
25055         (mono_metadata_generic_method_hash): New public function.
25056         (mono_metadata_generic_method_equal): Likewise.
25058         * class-internals.h
25059         (MonoGenericContainer): Added `GHashTable *method_hash'.
25061         * reflection.c (ReflectionMethodBuilder): Added
25062         `MonoGenericContainer *generic_container'.
25063         (reflection_methodbuilder_to_mono_method): Don't create a new
25064         MonoGenericContainer each time we're called.
25065         (mono_reflection_bind_generic_method_parameters): Use
25066         `container->method_hash' to cache the results so we don't create a
25067         different method if we're called several times with the same
25068         arguments.
25070         * loader.c (method_from_methodspec): Use the new
25071         `container->method_hash' here, too.
25073 2004-11-26  Martin Baulig  <martin@ximian.com>
25075         * class.c (inflate_generic_signature): Correctly compute
25076         `res->has_type_parameters'.
25077         (mono_class_vtable): Use the `has_type_parameters' flag to
25078         determine whether we're a generic method.
25080         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25082 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25084         * object.c (mono_runtime_run_main): Fix a small memory leak.
25086 2004-11-25  Martin Baulig  <martin@ximian.com>
25088         * class.c (set_generic_param_owner): Fixed the loop.
25090 2004-11-25  Martin Baulig  <martin@ximian.com>
25092         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25093         generic methods.
25095 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25097         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25098         names. Fixes #69787.
25100 2004-11-24  Martin Baulig  <martin@ximian.com>
25102         * class.c (mono_class_create_generic_2): If we don't have a
25103         `ginst->parent', inflate `gklass->parent' to get our parent.
25105 2004-11-24  Martin Baulig  <martin@ximian.com>
25107         * reflection.c (compare_genericparam): Correctly sort the
25108         GenericParam table; fixes #69779.
25110 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25112         * reflection.c: When writing a PE file, don't create a huge
25113         buffer in memory. Just write the arrays we have to the file.
25114         This reduces memory usage.
25116         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25117         globally.
25119 2004-11-17  Martin Baulig  <martin@ximian.com>
25121         * class.c (mono_class_init): Don't setup `class->parent' for
25122         dynamic instances; moved this to mono_class_generic_2().
25123         (mono_class_create_generic): Also set `klass->inited' for dynamic
25124         generic instances.
25125         (mono_class_create_generic_2): Don't do anything for dynamic
25126         generic instances.  Set `klass->parent' here and also call
25127         mono_class_setup_parent() here. 
25129         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25130         `MonoType *parent' argument; set `ginst->parent' before calling
25131         mono_class_create_generic_2(), so we set the correct parent.
25133 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25135         * reflection.c: allow getting attributes from ModuleBuilder
25136         (used by ikvm).
25138 2004-11-17  Martin Baulig  <martin@ximian.com>
25140         * class.c (mono_class_create_from_typedef): If a type parameter is
25141         inherited from an outer class, set its owner to that class.
25143 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25145         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25146           for (int*) written size. This fixes bug #69592.
25148 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25150         * icall.c: Added IsAuthenticodePresnet internal call.
25151         * image.c|h: New function that check a MonoImage for an Authenticode
25152         signature in the certificate PE data directory.
25153         * security.c|h: New internal call to ask the runtime if an 
25154         Authenticode signature seems referenced in the PE header.
25156 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25158         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25160         * reflection.c (mono_image_create_pefile): Free the assembly streams
25161         after writing out the assembly file.
25163         * object.c (mono_runtime_run_main): Fix small memory leak.
25165         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25166         property access modifiers. Fixes #69389.
25168 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25170         * domain.c, object.c, object-internals.h, domain-internals.h,
25171         object.h, marshal.c: keep dynamic code info per domain.
25173 2004-11-15  Martin Baulig  <martin@ximian.com>
25175         * class.c (mono_type_get_name_recurse): Put type arguments in
25176         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25177         see bug #68387.
25179 2004-11-15  Martin Baulig  <martin@ximian.com>
25181         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25182         (mono_class_setup_vtable): When computing `the_cname' for a
25183         generic instance, don't include the namespace since we'd otherwise
25184         add it twice.
25186 2004-11-15  Martin Baulig  <martin@ximian.com>
25188         * class.c (mono_class_create_generic): Changed return type to void.
25189         (mono_class_create_generic_2): New public function; setup
25190         `class->method', `class->field' and `class->interfaces' here
25191         instead of in mono_class_init().
25193         * class.h (mono_class_create_generic): Moved to class-internals.h.
25195 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25197         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25198         rather than writing to memory, write to this file. Right now,
25199         we are just writting into a buffer, and copying that. However
25200         we can avoid the buffer later.
25202         (mono_dynamic_stream_reset): new function
25204         * icall.c, object-internals.h: update for the above.
25206 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25208         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25209         have been using gc'd memory. First it is slower, unlikely
25210         the comment in the source code said, secondly, it increases
25211         our footprint to do it in the gc.
25213         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25214         the method so that it does not have to copy to managed code.
25216 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25218         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25220 2004-11-12  Martin Baulig  <martin@localhost>
25222         * reflection.c (mono_image_create_token): Allow generic method
25223         definitions here, since they may appear in an `.override'; see
25224         gen-98/gen-99 for an example.
25226 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25228         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25229         #69365.
25231         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25232         descriptive.
25234 2004-11-11  Martin Baulig  <martin@ximian.com>
25236         * class.c (mono_class_setup_vtable): In an explicit interface
25237         implementation, the method name now includes the arity.
25239 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25241         * object.c (mono_array_full_copy): Fix warning.
25243 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25245         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25246         mono_class_get_method_from_name() instead.
25247         
25248         * class-internals.h: Added two new types of wrappers. 
25249         Added MonoRemotingTarget enum. Added new trampoline function type, which
25250         takes an additional MonoRemotingTarget value as parameter, so it is
25251         possible to request a trampoline for a specific target.
25252         
25253         * class.c: Added new mono_class_get_method_from_name() method.
25254         
25255         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25256         general remoting sinks and one specific for cross domain calls.
25257         
25258         * debug-helpers.c: Added new wrapper names.
25259         
25260         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25261         of a remote class.
25262         
25263         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25264         
25265         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25266         with several other methods (mono_marshal_get_xappdomain_dispatch,
25267         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25268         and others) can generate a fast remoting wrapper for cross domain calls.
25269         More information can be found in docs/remoting.
25270         Other changes: Removed mono_find_method_by_name, and used
25271         mono_class_get_method_from_name instead.
25272         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25273         is stored in the remoting invoke hashtable.
25274         
25275         * marshal.h: published the new method for getting the xdomain wrapper,
25276         and also added a method for getting the adequate wrapper for a given
25277         method and target.
25278         
25279         * object-internals.h, object.c: Added a couple of methods for capying and
25280         cloning arrays.
25281         Modified mono_install_remoting_trampoline, which takes the new remoting
25282         trampoline that has a remoting target as parameter.
25283         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25284         will return the most suitable vtable for the target.
25285         Added mono_remote_class_vtable, which returns the vtable of a remote class
25286         (which can be the normal remoting vtable or the xdomain vtable).
25287         
25288         * threads.c: the xdomain invoke and dispatch wrappers must also be
25289         protected against interruptions.
25291 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25293         * icall.c: use memmove in BlockCopyInternal when the source and
25294         destination arrays are the same.
25296 2004-11-09  Martin Baulig  <martin@ximian.com>
25298         * class-internals.h (MonoGenericContainer): Removed `method' and
25299         `signature', replaced them with `is_method' and `is_signature'
25300         flags.  Added `context'.
25302         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25303         instead of a `MonoGenericContainer *'.
25305         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25306         for dynamic type parameters.
25307         (mono_metadata_load_generic_params): Setup `container->context'.
25309         * reflection.c (mono_reflection_setup_generic_class): Setup
25310         `tb->generic_container->context'.
25311         (do_mono_reflection_bind_generic_parameters): Use
25312         mono_class_inflate_generic_type() to correctly inflate types,
25313         rather than using our own hack just for MONO_TYPE_VAR.
25315 2004-11-09  Martin Baulig  <martin@ximian.com>
25317         * class.c (mono_class_inflate_generic_method): Small fix; don't
25318         crash here.
25320         * icall.c
25321         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25322         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25323         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25324         (ves_icall_Type_BindGenericParameters): Likewise.
25325         (ves_icall_Type_get_IsGenericInstance): Likewise.
25326         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25327         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25328         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25329         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25331 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25333         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25334         assembly versions and public key tokens. Fixes #69113.
25336 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25338         * metadata.c: fix bug introduced with the type cache changes
25339         on 2004-11-06.
25341 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25343         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25344         the MonoClass pointer instead of the token in exception clauses.
25345         * reflection.c: updates for the above and make the code not depend
25346         on the structure of MonoExceptionClause.
25348 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25350         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25351         Add support for dynamic assemblies. Fixes #69114.
25353         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25355 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25357         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25358         since most only those methods use it. the code member of
25359         MonoMethodPInvoke was dead, so that can be removed too. Also,
25360         remove inline_count (again, not used), and move slot so that it
25361         can share bits with some other flags. This saves 8 bytes in the
25362         structure and gives us about 50 kb back for mcs helloworld.cs
25364         * *.[ch]: Do naming changes for the above.
25366         * loader.c (mono_method_get_header): Lazily init the header
25367         on first access.
25368         (mono_get_method_from_token): don't init the header here
25369         (mono_free_method): the header may never be allocated
25371         Overall, this saves 150 kb of unmanaged allocations
25372         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25373         memory at runtime.
25374         
25375         * loader.c, loader.h (mono_method_get_header): new accessor.
25377         * *.[ch]: use the above method. Prepares us to lazily load
25378         the header.
25380         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25381         three warnings, which are actual bugs (see 69206).
25383         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25384         unused. Saves a cool 4 bytes / method.
25386 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25388         * metadata.c (builtin_types): Add types for System.Object here.
25389         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25390         for a class or valuetype from klass->this_arg or klass->byval_arg.
25392         On mcs for a hello world, this gets us down from 21836 MonoType's
25393         to 14560.
25395         (mono_metadata_free_type): Account for the above change.
25397 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25399         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25400         exception instead of asserting if name is null.
25401         (ves_icall_System_AppDomain_GetData): Ditto.
25403 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25405         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25406         EnumBuilder.
25408         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25409         Return NULL when the domain does not have entry_assembly set.
25411         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25412         Add a 'resource_modules' argument.
25413         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25415         * reflection.c (mono_reflection_create_runtime_class): Move setting
25416         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25417         for enums too.
25419         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25420         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25421         Throw an ArgumentNullException if 'ptr' is null.
25423         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25424         assemblies here. Fixes #69020.
25426 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25428         * reflection.c (build_compressed_metadata): Fix the previous patch for
25429         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25430         the stack.
25432 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25434         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25435         the cultures is false. Fixes #69090.
25437         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25438         detected by valgrind.
25439         
25440         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25441         TypeResolve multiple times for the same type. Fixes #65577.
25443 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25445         * marshal.c: Avoid using ldftn to call managed functions. It is
25446         much slower than just a call.
25448         * reflection.c (mono_module_get_object): free the basename we
25449         allocate here from glib.
25450         
25451         * reflection.c (ensure_runtime_vtable): make sure to free
25452         overrides.  Also, we were allocating an array of MonoMethod not an
25453         array of MonoMethod*.
25455         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25457         * image.c (mono_image_close): free image->guid here.
25459 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25461         * reflection.c: Fix some spec conformance issues with the PE file
25462         structures so mcs compiled apps run on the Net 2.0 beta.
25464 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25466         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25467         Implement this. Fixes #67264.
25469         * debug-helpers.h debug-helpers.c marshal.c: Move 
25470         mono_find_method_by_name to debug-helpers.c.
25472 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25474         * object.c (mono_release_type_locks): type_initialization_hash is
25475         a GHashTable.
25477         * reflection.c object.c object-internals.h: Fix warnings.
25479         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25480         without accessors. Fixes #61561.
25482         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25483         application base from the root domain if not set. Fixes #65641.
25484         (mono_runtime_init): Fix warning.
25486 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25488         * appdomain.c: call mono_thread_pool_init.
25489         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25490         of worker threads based on the number of CPUs and the environment
25491         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25492         for non-windows (windows) systems.
25494 2004-10-27  Chris Toshok  <toshok@ximian.com>
25496         * mono-debug-debugger.c (write_class): don't call mono_class_init
25497         here, as even with the check for (!klass->init_pending), we get
25498         into a situation where we're hitting cycles in class
25499         initialization.  Fixes #68816.
25501 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25503         * image.c: Avoid overwriting values in the loaded_images_hash when an
25504         assembly is loaded multiple times. Fixes #61152.
25506         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25507         so multiple satellite assemblies for the same name can be loaded.
25508         Fixes #68259.
25510         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25511         not NULL.
25513         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25514         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25516         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25517         pending finalizers are not invoked after the appdomain has been 
25518         unloaded. Fixes #67862.
25520 2004-10-22  Martin Baulig  <martin@ximian.com>
25522         * mono-debug-debugger.c
25523         (mono_debugger_runtime_invoke): Don't box valuetypes.
25525 2004-10-22  Chris Toshok  <toshok@ximian.com>
25527         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25528         don't hide private methods.
25530 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25532         * icall.c: Allows the runtime to "share" (when known) the public key
25533         token of an assembly. This avoid the need to recalculate the token 
25534         (from the public key) in managed code.
25536 2004-10-21  Chris Toshok  <toshok@ximian.com>
25538         * debug-helpers.c (append_class_name): argh, revert last patch.
25539         
25540 2004-10-21  Chris Toshok  <toshok@ximian.com>
25542         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25543         not '/', so that it matches what the debugger uses to look up
25544         methods.
25546 2004-10-21  Martin Baulig  <martin@ximian.com>
25548         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25549         public method; this is called each time an exception is thrown and
25550         allows the debugger to use exception catch points.
25552 2004-10-21  Martin Baulig  <martin@ximian.com>
25554         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25555         the stack pointer and the exception object in some struct and pass
25556         that to the debugger.
25558 2004-10-21  Chris Toshok  <toshok@ximian.com>
25560         * mono-debug-debugger.c (do_write_class): add instance/static
25561         event support.  We don't expose "raise" or "other" yet.
25562         (event_is_static): new method.
25564 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25566         * mono-debug-debugger.c
25567         (mono_debugger_handle_exception): Remove
25568         bogus return value for fussy compilers.
25570 2004-10-20  Martin Baulig  <martin@ximian.com>
25572         * mono-debug-debugger.c
25573         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25574         (mono_debugger_handled_exception): Likewise.
25576 2004-10-20  Martin Baulig  <martin@ximian.com>
25578         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25579         MONO_DEBUGGER_EVENT_EXCEPTION.
25581         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25582         public function to send the debugger a notification for an
25583         exception and inform it about a catch/finally clause.
25585 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25587         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25588         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25589         fix 2.95 build. 
25591         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25593 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25595         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25596         marshalled as [In,Out]. Fixes #58325.
25598 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25600         * reflection.c (mono_method_body_get_object): Implement some fields.
25602 2004-10-12  Martin Baulig  <martin@ximian.com>
25604         * reflection.c (mono_reflection_bind_generic_parameters): Small
25605         fix, correctly retrieve our parent from a generic instance.
25607 2004-10-12  Martin Baulig  <martin@ximian.com>
25609         * metadata.c (mono_metadata_generic_param_equal): We always have
25610         an owner.
25612         * class.c
25613         (mono_class_from_generic_parameter): We need to have an owner.
25614         (my_mono_class_from_generic_parameter): Likewise.
25616         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25617         mono_reflection_create_generic_class() and added a new
25618         mono_reflection_setup_generic_class().  
25619         (mono_reflection_initialize_generic_param): If we're a nested
25620         generic type and inherited from the containing class, set our
25621         owner to the outer class.
25623 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25625         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25627         * reflection.c (mono_method_body_get_object): New function to create
25628         a MethodBody object.
25630         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25632 2004-10-11  Martin Baulig  <martin@ximian.com>
25634         * metadata.c (_mono_metadata_type_equal): Renamed to
25635         do_mono_metadata_type_equal() and made static.
25637 2004-10-11  Martin Baulig  <martin@ximian.com>
25639         * appdomain.c: Bump corlib version number to 28.
25641 2004-10-10  Martin Baulig  <martin@ximian.com>
25643         * class-internals.h
25644         (MonoGenericInst): Added `MonoGenericContainer *container'.
25645         (MonoGenericMethod): Likewise.
25646         (MonoGenericContext): Likewise.
25647         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25649         * metadata.c
25650         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25651         (do_mono_metadata_parse_generic_inst): Likewise.
25652         (mono_metadata_parse_type_full): New public method.  This is the actual
25653         mono_metadata_parse_type() implementation - with an additional
25654         `MonoGenericContainer *' argument.
25655         (mono_metadata_parse_array_full): Likewise.
25656         (mono_metadata_parse_signature_full): Likewise.
25657         (mono_metadata_parse_method_signature_full): Likewise.
25658         (mono_metadata_parse_mh_full): Likewise.
25659         (mono_type_create_from_typespec): Likewise.
25660         (mono_metadata_interfaces_from_typedef_full): New public method;
25661         this is similar to the other _full() methods, but we take a
25662         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25663         (mono_metadata_parse_generic_param): Take an additional
25664         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25665         from that container.
25666         (mono_metadata_generic_param_equal): New static method to compare
25667         two type parameters.
25668         (_mono_metadata_type_equal): New static method; takes an
25669         additional `gboolean signature_only' argument - if true, we don't
25670         compare the owners of generic parameters.
25671         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25672         with a TRUE argument - do a signature-only comparision.
25674         * loader.c: Use the new _full() methods and pass the
25675         MonoGenericContainer to them.
25677         * object-internals.h (MonoReflectionTypeBuilder): Added
25678         `MonoGenericContainer *generic_container' field.
25679         (MonoReflectionMethodBuilder): Likewise.
25681 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25683         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25684         case initial images of dynamic assemblies.
25686         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25688         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25690         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25691         length of event->other array.
25692         (typebuilder_setup_events): Ditto.
25694         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25695         'assembly_by_name' and add an 'assemblies' list.
25697         * assembly.h assembly.c: Add a new search hook for determining whenever
25698         an assembly is already loaded. Use this instead of searching in the
25699         loaded_assemblies list.
25701         * domain.c appdomain.c: Implement the new search hook so loaded 
25702         assemblies are now scoped by appdomain. Fixes #67727.
25704 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25706         * threads.c (mono_thread_attach): Initialize synch_lock field so
25707         mono_thread_detach works again.
25709         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25710         'lib' too. Fixes #63130.
25712 2004-10-06  Jackson Harper  <jackson@ximian.com>
25714         * culture-info-tables.h: regenerated.
25716 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25718         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25719         implemented by other interfaces in the result. Fixes #65764.
25720         
25721         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25722         Handle unloadable modules without crashing.
25724         * image.c (load_modules): Revert the previous patch since modules must
25725         have a fixed index inside the array.
25726         
25727         * image.c (load_modules): Don't include native modules in the modules
25728         array.
25730 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25732         * reflection.h: Add param_defaults field.
25734         * reflection.c: Add support for parameter defaults in dynamic methods.
25735         Fixes #64595.
25737         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25738         an empty string when a type has no namespace. Fixes #64230.
25740 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25742         * tabledefs.h: Added "internal" security actions to support non-CAS
25743         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25744         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25746 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25748         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25749         constructor of abstract class. Fixes #61689.
25751 2004-10-04  Martin Baulig  <martin@ximian.com>
25753         * class-internals.h (MonoGenericContainer): New type.
25754         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25755         `MonoGenericContainer *generic_container'.
25756         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25757         `MonoGenericContainer *generic_container'.
25759         * metadata.c (mono_metadata_load_generic_params): Return a
25760         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25761         removed the `num' argument.
25763 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25765         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25766         for dynamic images.
25768         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25769         machine fields.
25771         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25773         * reflection.c: Save pe_kind and machine values into the generated
25774         image file.
25776         * appdomain.c: Bump corlib version number.
25778         * object-internals.h: Reorganize layout of LocalBuilder.
25780         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25781         New helper function.
25783         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25784         created MonoType for dynamic types. Fixes #66180.
25786 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25788         * threadpool.c: the ares hashtable needs a critical section around it.
25789         this prevents some nasty segfaults
25791 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25793         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25794         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25795         bug 67324).
25796         
25797 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25799         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25800         
25801 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25803         * image.c: Always canonicalize image file names, to avoid loading
25804         the same assembly twice when referenced using a relative path.
25806 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25808         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25810         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25812         * marshal.c: Fix warnings.
25814 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25816         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25817         attempting to marshal the delegate_trampoline as the method_addr.
25818         This patch has a static hashtable of marshalled delegates so that 
25819         we can map delegate_trampoline addresses back to delegates.  This
25820         allows a delegate passed to managed code to be passed back into native
25821         code.  Fixes #67039
25823 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25825         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25827         * reflection.c (method_encode_code): Align method headers properly.
25828         Fixes #66025.
25830 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25832         * marshal.c: In the runtime invoke wrapper, reset the abort
25833         exception if it is cached. This avoids the automatic rethrowal of 
25834         the exception after the catch of the wrapper. Also check for pending
25835         interruptions before calling the managed method. This is done using
25836         the new method emit_thread_force_interrupt_checkpoint, since the
25837         normal checkpoint method is ignored when running the invoke wrapper.
25838         * object.c: If the abort exception is rethrown, set the abort_exc
25839         field of the thread, so it will be rethrown aftere every catch.
25840         * threadpool.c: Only run an interruption checkpoint if what has been
25841         requested is a stop of the thread (aborts will be ignored).
25842         * threads.c: By default, a thread will now never be interrumped while
25843         running the runtime invoke wrapper (this ensures that runtime_invoke
25844         will always return to the caller if an exception pointer is provided).
25845         There is a new special method mono_thread_force_interruption_checkpoint()
25846         to force an interruption checkpoint even if running a protected
25847         wrapper, which is used by the same runtime invoke wrapper to do a check
25848         at a safe point.
25850 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25852         * object.c, object-internals.h: Implemented mono_release_type_locks,
25853         which releases the cctor locks held by a thread.
25854         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25855         by a thread. Added mono_thread_exit() method to be used to safely stop
25856         a thread.
25858 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25860         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25861         Move null check before dereference.  Avoid indexing beyond the end
25862         of the 'modules' array.
25864 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25866         * metadata-internals.h (MonoImage): Add module_count field.
25867         * image.c (load_modules): Set image->module_count.
25868         (mono_image_load_file_for_image): Use image->module_count.
25869         * reflection.c (mono_image_load_module): Append to image->modules array 
25870         of dynamic assembly.
25871         (mono_module_get_object): Fix loop to actually increment index.
25872         Use image->module_count.
25873         * assembly.c (mono_assembly_load_references): Use image->module_count.
25874         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25875         Likewise.
25877 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25879         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25880         Avoid assert on generic types.
25882 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25884         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25886         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25888         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25889         function to convert a MarshalSpec structure to its managed counterpart.
25891         * reflection.c: Fix warnings.
25892         
25893         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25894         field.
25896         * icall.c (mono_create_icall_signature): Fix build.
25898 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25900         * icall.c: Add MakePointType icall.
25902         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25903         warnings.
25905 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25907         * threadpool.c: reuse allocated slots in the queue.
25909 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25911         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25913         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25915         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25916         previous change.
25918         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25919         ThrowOnUnmappableChar.
25921         * icall.c (ves_icall_Type_GetPacking): New icall.
25923 2004-09-24  Martin Baulig  <martin@ximian.com>
25925         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25927 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25929         * appdomain.c:
25930         (mono_domain_set): allow setting a domain that is being unloaded.
25931         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25932         being unloaded.
25934 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25936         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25937         the GetCustomAttributes icall.
25939 2004-09-23  Martin Baulig  <martin@ximian.com>
25941         * object-internals.h (MonoReflectionGenericParam): Replaced
25942         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25943         with `guint32 attrs'.
25945 2004-09-23  Martin Baulig  <martin@ximian.com>
25947         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25949 2004-09-23  Martin Baulig  <martin@ximian.com>
25951         * object-internals.h (GenericParameterAttributes): New enum.
25953 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25955         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25956         
25957         * class.c (init_events): Fill out event->other field.
25959         * class.c: Fix warnings.
25961         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25963 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25965         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25966         walk which doesn't supply the IL offset.
25968 2004-09-22  Martin Baulig  <martin@ximian.com>
25970         * reflection.c (mono_reflection_setup_internal_class): If we're
25971         System.ValueType, System.Object or System.Enum, set
25972         `klass->instance_size' and create the vtable.
25973         (mono_reflection_create_internal_class): If we're an enum type,
25974         get the base class from our current corlib.
25976 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25978         * reflection.h (MonoResolveTokenError): New type.
25980         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25981         icall.
25983         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25985 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25987         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25988         Support also calling constructors, but only for already allocated objects.
25990 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25992         * reflection.c (type_get_qualified_name): If the klass is null
25993         return the typename to avoid a NullRefEx.
25994         (encode_cattr_value): Get the qualified name of the boxed type,
25995         not the underlying enumtype.  Fixes #62984.
25997 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25999         * marshal.c: Fix problems with previous checkin.
26001 2004-09-21    <vargaz@freemail.hu>
26003         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
26004         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
26006         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
26008 2004-09-21  Geoff Norton <gnorton@customerdna.com>
26010         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26011         should only return a type for pointers, arrays, and passbyref types.
26012         Fixes bug #63841.
26014 2004-09-21  Martin Baulig  <martin@ximian.com>
26016         * domain.c (mono_debugger_check_runtime_version): New public
26017         function.
26019         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
26021 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
26023         * reflection.c: Added missing sort to the declarative security 
26024         attributes table. MS implementation stops seeing the attributes if the
26025         token number regress in the table (as shown by ildasm and permview).
26027 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
26029         * object-internals.h (MonoReflectionModule): Add 'token' field.
26030         
26031         * reflection.c (mono_reflection_get_token): Add support for Module
26032         and Assembly.
26033         (mono_module_get_object): Set 'token' field.
26034         (mono_module_file_get_object): Set 'token' field.
26036         * icall.c: Add new Assembly and Module icalls.
26038         * appdomain.c: Bump corlib version.
26040 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
26042         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26043         tokens of metadata objects.
26045         * reflection.h reflection.c (mono_reflection_get_token): New function
26046         to obtain the token of a metadata object.
26048         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26050 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26052         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26053         
26054         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26056 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26058         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26059         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26060         AssemblyBuilder to access the permissions set in the class lib.
26061         * reflection.c: Added security attributes encoding step in 
26062         mono_image_build_metadata.
26063         * tabledefs.h: Added new security actions defined in 2.0:
26064         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26066 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26068         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26069         macro parameter.
26071 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26073         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26074           finalized. There where random SIGSEVs at program termination, when
26075           an object being finalized was trying to do a string comparison and
26076           the current culture was already finalized.
26078 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26080         * threads.c: call thread_cleanup before finishing the thread if we get
26081         there.
26083 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26085         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26086         assemblies from the parent. Fixes #65665.
26088 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26090         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26091         modifiers.
26093 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26095         * reflection.h: add prototype for mono_get_dbnull_object
26096         * reflection.c: add prototypes for get_default_param_value_blobs 
26097         and mono_get_object_from_blob for fussier compilers
26099 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26101         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26102         false deadlock checks in class initialization.
26104 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26106         * image.c (mono_image_addref): Fix comment.
26108         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26109         possible.
26111 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26113         * reflection.c (mono_param_get_objects): Modified to return
26114         ParameterInfo.DefaultValue object.
26116         (get_default_param_value_blobs):
26117         (mono_get_object_from_blob):
26118         (mono_get_dbnull_object): New helper routines. 
26120         * object.c (mono_get_constant_value_from_blob): New helper routine
26121         carved out from get_default_field_value ()
26123         * object-internals.h (mono_get_constant_value_from_blob): Added
26124         function declaration.
26126 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26128         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26129         referenced assemblies. Fixes #62135.
26131         * exception.h exception.c (mono_get_exception_file_not_found2): New
26132         helper function.
26134 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26136         * class.h class.c: Add mono_type_get_underlying_type ().
26138 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26140         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26141         Fix GetTypes() to support dynamically created assemblies.
26143 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26145         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26146         
26147         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26148         previous patch.
26150         * reflection.h reflection.c loader.c: Allow dynamic construction of
26151         pinvoke methods. Fixes #65571.
26152         
26153         * reflection.c (mono_reflection_get_type): Revert previous change since
26154         it causes regressions.
26156 2004-09-08  Martin Baulig  <martin@ximian.com>
26158         * class.c (class_compute_field_layout): Don't call
26159         mono_class_layout_fields() for open generic instances.
26161 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26162         * threads.c appdomain.c: fix typo in GC macro
26164 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26166         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26167         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26169 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26171         * image.c (mono_image_close): Applied patch from 
26172         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26173         assembly is loaded multiple times from data.
26174         
26175         * image.c (mono_image_open): Fix warning.
26177 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26179         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26180         once. Fixes #58334.
26181         
26182         * reflection.c (mono_reflection_create_runtime_class): Initialize
26183         klass->nested_classes. Fixes #61224.
26185 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26187         * threads.c: sched_yield() on exit, to allow threads to quit.
26189 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26191         * object.c (mono_unhandled_exception): Remove leftover debug code.
26193 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26195         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26197 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26199         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26200         
26201         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26203 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26205         * marshal.c (emit_marshal_array): Null terminate string arrays.
26206         
26207         * marshal.c (raise_auto_layout_exception): Fix warning.
26209         * reflection.c (mono_param_get_objects): Initialize the default value
26210         with DBNull.Value, not null. Fixes #62123.
26212 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26214         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26215         throw an exception with a cute explanation.
26217 2004-09-06  Dick Porter  <dick@ximian.com>
26219         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26220         Close the new process's thread handle, as we don't use it.  The
26221         handle stays around forever otherwise.
26223 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26225         * object.c (arith_overflow): Fix warning.
26227         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26228         calling conventions in method refs. Fixes #65352.
26230         * reflection.c: Fix warnings.
26232 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26234         * icall.c: Add a new icall for Array.Clear
26236 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26238         * object.c: When allocating an array, we have to throw
26239         an overflow exception if any of the lengths are < 0.
26241 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26243         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26244         properly. Also move implementation of string array marshalling to 
26245         managed code. Fixes #42316.
26247 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26249         * assembly.c: provide more information when loading an assembly fails.
26251 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26253         * filewatcher.c: don't expect the development fam package to be
26254         installed.
26256 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26258         * marshal.c: Make a copy of the signature cookie since it will be
26259         freed by the caller.
26260         
26261         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26263         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26265         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26266         marshal specs.
26268         * marshal.c: More refactoring.
26269         
26270         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26271         smaller functions.
26273 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26275         * object.c: In mono_message_invoke, fill the output parameter array after
26276           calling the managed method (it was done before the call). This fixes
26277           bug #59299.
26279 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26281         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26282         as well.
26284 2004-09-02  Martin Baulig  <martin@ximian.com>
26286         * class.c (mono_class_instance_size): Don't allow generic type
26287         definitions or open generic instances.
26288         (mono_class_array_element_size): If we're a value type, call
26289         mono_class_instance_size() on the original class.
26291         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26292         handle generic instances.
26294         * mono-debug-debugger.c (write_type): Handle generic instances
26295         like classes.
26297 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26299         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26300         the allocation request fails. Fixes #65089.
26302         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26303         
26304         * object.c (mono_runtime_free_method): New function to free a dynamic
26305         method.
26307         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26308         delegate trampoline.
26310         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26311         with hasthis as dynamic,
26313         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26315         * domain.c (mono_jit_info_table_remove): New function to remove an
26316         entry from the jit info table.
26318         * class-internals.h (MonoMethod): Add 'dynamic' field.
26320         * loader.c: Fix warnings.
26322 2004-09-01  Martin Baulig  <martin@ximian.com>
26324         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26325         instead of mono_debugger_lock() because the latter one is a no-op
26326         unless running in the debugger.
26328 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26330         * class.c (class_compute_field_layout): Classes with auto-layout or
26331         reference fields are not blittable.
26332         
26333 2004-09-01  Dick Porter  <dick@ximian.com>
26335         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26336         mono_image_get_filename() to get the assembly location.
26338         * icall.c:
26339         * metadata.h: Fix compile warnings
26341 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26343         * class.c (class_compute_field_layout): System.Object is blittable.
26345         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26346         as in/out. Fixes #59909.
26348 2004-09-01  Martin Baulig  <martin@ximian.com>
26350         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26351         mono_metadata_generic_inst_is_valuetype() if we're a generic
26352         instance to check whether our underlying type is a reference type.
26354 2004-09-01  Martin Baulig  <martin@ximian.com>
26356         * metadata.c (mono_type_size): If we're a generic instance, call
26357         mono_class_value_size() for value types.
26359 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26361         * marshal.c: Implement more custom marshalling functionality. Fixes
26362         #64915.
26364 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26366         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26368 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26370         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26372         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26374         * icall.c: Fix some warnings.
26376         * threads.c (abort_appdomain_thread): Fix unref errors.
26377         (mono_thread_current): Fix THREAD_DEBUG define.
26379 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26381         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26383         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26385 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26387         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26388         string arrays.
26390 2004-08-28  Martin Baulig  <martin@ximian.com>
26392         * metadata.c
26393         (mono_metadata_generic_inst_is_valuetype): New public function.
26395         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26396         mono_metadata_generic_inst_is_valuetype() if we're a generic
26397         instance to check whether our underlying type is a valuetype.
26399 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26401         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26402         #63768.
26404 2004-08-25  Martin Baulig  <martin@ximian.com>
26406         * loader.c (mono_get_method_from_token): Abstract methods can also
26407         be generic and thus have type parameters.
26409         * metadata-internals.h
26410         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26412         * reflection.c (mono_image_get_generic_param_info): Don't create a
26413         metadata row, just add an entry to the `gen_params' array.
26414         (build_compressed_metadata): Sort the `gen_params' array and then
26415         actually create the metadata.
26417 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26419         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26421 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26423         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26425 2004-08-24  Martin Baulig  <martin@ximian.com>
26427         * class.cs (mono_class_is_subclass_of): Like an interface, a
26428         generic instance also derives from System.Object.
26430 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26432         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26433         custom modifiers to be in any order. Fixes #61990.
26435 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26437         * object.c: Register mono_object_new_fast icall.
26438         
26439         * object.c (mono_class_get_allocation_ftn): Return to calling
26440         mono_object_new_fast, since it seems faster to compute the object 
26441         size in unmanaged code than passing it as a parameter.
26443         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26445         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26446         this function with Boehm as the oom handler, so we don't have to check
26447         the result of GC_malloc.
26449         * object.c: Remove checks for oom.
26451         * object.h object.c (mono_class_get_allocation_ftn): New function to
26452         return the icall which can be used to allocate an instance of a given
26453         class. 
26455         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26457         * class-internals.h: Add 'enabled' field.
26459 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26461         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26463 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26464         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26465         value 0x0010.
26467 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26469         * appdomain.c: use the Tls function for appdomain too,
26470         at Zoltan's request. Actually return in mono_context_get
26472         * appdomain.c, profiler.c, threads.c: use __thread
26474 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26476         * appdomain.c threads.c: Call GC_CreateThread on windows.
26478         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26479         multiple libraries since this don't work on windows.
26481 2004-08-18  Martin Baulig  <martin@ximian.com>
26483         * class-internals.h
26484         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26485         MonoMethodHeader.
26487         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26488         MonoMethodNormal since we also need it for abstract and interface
26489         methods.
26491         * reflection.c
26492         (build_compressed_metadata): Sort the GenericParam table.
26493         (mono_image_create_token): Added `gboolean create_methodspec'
26494         argument; this is false when generating a MethodImpl token.
26495         (reflection_methodbuilder_to_mono_method): Abstract and interface
26496         methods may also have generic parameters.
26498 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26500         * appdomain.c: thread local alloc
26502 2004-08-17  Martin Baulig  <martin@ximian.com>
26504         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26506         * icall.c
26507         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26508         argument.
26510         * class.c (mono_type_get_full_name): New public function.
26511         (mono_type_get_name): Don't include the type arguments.
26513 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26515         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26516         for inclusion into the mono executable.
26518 2004-08-16  Martin Baulig  <martin@ximian.com>
26520         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26521         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26523 2004-08-14  Martin Baulig  <martin@ximian.com>
26525         * class.c (dup_type): Also copy the `byref' field.
26527 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26529         * reflection.c (create_dynamic_mono_image): Revert the last change 
26530         since it breaks bootstrap.
26532 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26534         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26536         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26537         not free them with g_free.
26539 2004-08-11  Martin Baulig  <martin@ximian.com>
26541         * reflection.c (mono_reflection_setup_internal_class): Also call
26542         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26544 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26546         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26547         called during default (first) AppDomain creation. Keep track of
26548         Evidence when loading assemblies.
26550 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26552         * opcodes.c, opcodes.h: reduce runtime relocations.
26554 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26556         * culture-info.h, locales.c: fixes and chages to sue the new
26557         optimized format of the locale data.
26558         * culture-info-tables.h: regenerated.
26560 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26561         
26562         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26564 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26566         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26567         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26568         * domain-internals.h: icall declaration.
26569         * icall.c: icall registration.
26570         * object-internals.h: New fields in MonoAssembly for CAS.
26572 2004-08-05  Duncan Mak  <duncan@ximian.com>
26574         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26575         CEE_LDELEM_ANY.
26577 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26579         * reflection.c: fix to deal with object[] arrays in custom ctors
26580         (bug #62550).
26582 2004-08-05  Martin Baulig  <martin@ximian.com>
26584         * class.c (mono_class_array_element_size): Added support for
26585         generic instances and correctly handle "recursive" types.
26587 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26589         * assembly.c: Fix warnings.
26591 2004-08-04  Martin Baulig  <martin@ximian.com>
26593         * class.c
26594         (mono_type_get_name_recurse): Added `gboolean include_arity'
26595         argument specifying whether or not we should include the generic
26596         arity in the type name.
26597         (_mono_type_get_name): New static function.
26598         (mono_class_setup_vtable): If we're a generic instance, don't
26599         include the generic arity in the names of explicit method
26600         implementations.        
26602 2004-08-03  Martin Baulig  <martin@ximian.com>
26604         * class.c (mono_type_get_name_recurse): Enclose the generic type
26605         arguments in `<', '>'.
26607 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26609         * gc.c: make GC warning messages use the trace API, they are just
26610         noise to most of the users.
26612 2004-08-03  Martin Baulig  <martin@ximian.com>
26614         * debug-mono-symfile.c (read_string): Correctly read the string.
26616 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26618         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26619         
26620         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26621         icalls.
26622         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26624 2004-07-30  Martin Baulig  <martin@ximian.com>
26626         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26627         Reflect latest symbol writer changes.   
26629 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26631         * object.c: always create an object if null is passed
26632         to Invoke() where a valuetype is expected.
26634 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26636         * marshal.c (mono_marshal_init): make managed
26637         signatures match native ones better for 64bits.
26639 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26641         * appdomain.c: hack to build correctly the private bin path on windows.
26642         Fixes bug #61991.
26644 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26646         * assembly.c: Load mscorlib from the correct framework directory
26647           (mono/<version>/mscorlib.dll).
26648         * appdomain.h: Added prototypes for new functions.
26649         * internals.h: Added some prototypes.
26650         * domain.c: When initializing the runtime, get from the executable and
26651           the configuration files the runtime version that the app supports.
26652           Added support methods for reading app.exe.config. Added list of versions
26653           supported by the JIT. Added two new methods: mono_init_from_assembly,
26654           which initializes the runtime and determines the required version from
26655           the provided exe file, and mono_init_version, which initializes
26656           the runtime using the provided version.
26657         * icall.c: Get machine.config from version-specific directory.
26658         * reflection.c: When generating an image, embed the version number
26659           of the current runtime.
26661 2004-07-28  Dick Porter  <dick@ximian.com>
26663         * socket-io.c
26664         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26665         returned sockaddr size before creating the remote address object.
26666         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26667         61608.
26669 2004-07-28  Dick Porter  <dick@ximian.com>
26671         * locales.c (string_invariant_compare_char): Fix invariant char
26672         compares between upper and lower cases.  Fixes bug 61458.
26674 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26675         
26676         * marshal.c: actually cache stelem.ref wrappers.
26677         
26678 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26680         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26681         sections and remove the mono_cli_rva_map () function.
26683 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26685         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26686         by Geoff Norton (<gnorton@customerdna.com>).
26688 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26690         * class.c: fix class loads for pointer types (typeof(int) !=
26691         typeof(int*)).
26693 2004-07-27  Martin Baulig  <martin@ximian.com>
26695         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26696         reading the debugging information from an external ".mdb" file.
26698 2004-07-24  Martin Baulig  <martin@ximian.com>
26700         * reflection.c (mono_image_get_type_info): Only write a class
26701         layout entry if we actually have a size or a packing size.
26703 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26705         * reflection.c (type_get_fully_qualified_name): 
26706         insert cast to get type checking of ?: with non-gcc compilers
26708 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26710         * rand.c: use g_getenv for both lookups of
26711         MONO_EGD_SOCKET
26713 2004-07-17  Martin Baulig  <martin@ximian.com>
26715         * reflection.c (mono_reflection_bind_generic_method_parameters):
26716         Set `gmethod->reflection_info'.
26718 2004-07-17  Martin Baulig  <martin@ximian.com>
26720         * class.c (mono_class_create_from_typedef): Insert the newly
26721         created class into the hash table before computing the interfaces
26722         since we could be called recursively.
26724 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26726         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26727         function to implement stelem.ref in managed code
26728         * class-internals.h, debug-helpers.c: a new wrapper type
26729         for the above.
26731 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26733         * gc.c: allow GC handles to work even when no GC is compiled in.
26734         Fix part of bug #61134 (GetAddrOfPinnedObject).
26736 2004-07-13  Peter Williams  <peter@newton.cx>
26738         * process.c (complete_path): Make sure we don't attempt to execute
26739         directories.
26741 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26743         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26744           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26745           and will add/subtract the hour if needed
26747 2004-07-12  Martin Baulig  <martin@ximian.com>
26749         * reflection.c (mono_field_get_object): If we have
26750         `field->generic_info', take the attributes from
26751         `field->generic_info->generic_type'.    
26753 2004-07-12  Martin Baulig  <martin@ximian.com>
26755         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26756         This function must be called before initializing the runtime.
26757         (mono_debug_init_1): New function; call this after initializing
26758         the runtime, but before loading the assembly.  It tells the
26759         debugger to load corlib and the builtin types.
26761         * mono-debug-debugger.c: Did some larger changes in the debugging
26762         code; support recursive class declarations, make sure we actually
26763         add all classes.
26765 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26767         * debug-helpers.c: undo my previous patch and fixed the real issue in
26768         ../mini/exceptions-x86.c
26770 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26772         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26773         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26774         called from other .cctors.
26776 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26778         * loader.c: Removed the mono_loader_wine_init hack now that we are
26779         doing a managed version of Windows.Forms.
26781 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26783         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26784         threadpool.c, threads.c: remove static data from rootset.
26786 2004-07-09  Dick Porter  <dick@ximian.com>
26788         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26789         Don't do any more processing if the matched length was 0.  It was
26790         increasing the size of the string before.  Fixes bug 61167.
26792 2004-07-09  Dick Porter  <dick@ximian.com>
26794         * socket-io.h:
26795         * socket-io.c
26796         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26797         Add support for SO_PEERCRED if its available.
26799 2004-07-09  Peter Bartok <pbartok@novell.com>
26800         * loader.c: winelib.exe.so error message is now only displayed if
26801         MONO_DEBUG is set. To help us avoid questions when people are trying
26802         out the new Managed.Windows.Forms.
26804 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26806         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26807         for isinst and castclass wrappers.
26809         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26810         to libmetadata from the JIT, so they could be used by the marshalling
26811         code and the interpreter.
26813         * marshal.c: Register marshalling related JIT icalls here instead of
26814         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26815         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26817         * metadata.h: Remove unneeded marshalling conversions.
26819         * opcodes.c: Update for new opcodes.
26820         
26821 2004-07-08  Martin Baulig  <martin@ximian.com>
26823         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26824         (mono_debug_get_domain_data): Make this function static.
26826 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26828         * gc.c, object.h: add nice GC handle API for embedders.
26830 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26832         * reflection.c: more changes for the new api
26834         * object.c: When we reflect on a field w/ a constant value, it
26835         will not have a memory location, so we must access metadata. Also,
26836         allow easier reading of strings so that we can read them from
26837         the constant data.
26839         * class.c (mono_class_layout_fields): no need for literal fields here.
26841         * class-internals.h: api changes for const fields
26843         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26845 2004-07-06  Martin Baulig  <martin@ximian.com>
26847         * mono-debug.h: Increment version number to 44.
26849         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26850         now a gpointer, rewrote this whole method.
26852         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26853         function.  Add information about the wrapper in a new "misc table".
26855         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26856         for the new misc table.
26858 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26860         * metadata-internals.h image.c: Add a cache for helper signatures.
26862         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26864 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26866         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26867         delegates from a delegate. Fixes #61033.
26868         
26869         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26870         marshalling of stringbuilder arrays. Fixes #59900.
26872 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26874         * icall.c: Add EnumBuilder:setup_enum_type icall.
26876 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26878         * icall.c: Added a new icall for the property version of
26879         OffsetOfStringData.
26881 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26883         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26884         it has a constant size across platforms.
26886         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26887         stack trace.
26889 2004-06-29  Martin Baulig  <martin@ximian.com>
26891         * mono-debug.c (mono_debug_add_method): Protect the whole function
26892         in mono_debugger_lock(), not just parts of it.
26894 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26896         * reflection.c: make sure padding bytes in heaps are zeroed.
26898 2004-06-24  David Waite  <mass@akuma.org>
26900         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26901         image.c, loader.c, locales.c, marshal.c, metadata.c,
26902         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26903         string-icalls.c, threads.c: change to C90-style comments from C99 /
26904         C++ -style
26906 2004-06-24  Dick Porter  <dick@ximian.com>
26908         * threads.c
26909         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26910         return createdNew.  Fixes bug 60412.
26912         * threads-types.h: 
26913         * icall.c: Add createdNew parameter to CreateMutex icall
26915 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26917         * reflection.c, object-internals.h: save default value in params.
26919 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26921         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26922         no need to build a new path combining that with the application base.
26923         Fixes bug #60442.
26925 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26927         * reflection.c: fixed minor standard compliance issues.
26929 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26931         * reflection.c: fixed issue with encoding some custom attributes
26932         (arrays in properties and fields, bug #60411).
26934 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26936         * reflection.c: fix start address when copying the public key token.
26938 2004-06-23  Martin Baulig  <martin@ximian.com>
26940         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26941         the `exc' object in a static object to put it into the GC's root set.
26943 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26945         * reflection.c: make mono_reflection_setup_internal_class ()
26946         callable a second time to setup a new parent class.
26948 2004-06-23  Dick Porter  <dick@ximian.com>
26950         * threads.c: Check for WAIT_IO_COMPLETION return values.
26952 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26954         * appdomain.c: Removed the g_free on the public key token. Now copy 
26955         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26956         * assembly.c: Added public key token string value when loading 
26957         assemblies. Fix bug #60439.
26958         * icall.c: Added missing informations (like public key) in 
26959         GetReferencedAssemblies. Fix #60519.
26960         * image.h: Changed definition for public key token from const char*
26961         public_tok_value to guchar public_key_token [17];
26962         * reflection.c: Updated for changes to public key token.
26964 2004-06-22  Lluis Sanchez Gual
26966         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26967         for the field in base classes.
26969 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26971         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26972         mark headers as not supported, they are installed only for use by the
26973         debugger.
26975 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26977         * *.c, *.h: avoid namespace pollution in public headers.
26979 2004-06-21  Martin Baulig  <martin@ximian.com>
26981         * exception.c (mono_get_exception_security): It's in
26982         "System.Security", not in "System".
26984         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26985         the exception classes.
26987 2004-06-21  Martin Baulig  <martin@ximian.com>
26989         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26990         Protect the exception object from being finalized.
26992 2004-06-21  Martin Baulig  <martin@ximian.com>
26994         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26995         public function.
26997 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26999         * reflection.c: Load the assembly in mono_reflection_type_from_name,
27000         if it was not loaded before. Fix parts of #60439.
27002 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
27004         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
27005         code that was broken since Ben's change: wrappers are now
27006         dependent on the method signature only again.
27008 2004-06-21  Martin Baulig  <martin@ximian.com>
27010         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27011         added interface support.
27013 2004-06-21  Martin Baulig  <martin@ximian.com>
27015         * class.c (mono_vtable_get_static_field_data): New public method.
27017 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
27019         * filewatcher.c : Windows build fix to be compliant with API changes.
27021 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27023         * class.h, class.c: more accessors.
27024         * metadata.h, metadata.c: prepare for hiding MonoType and
27025         MonoMethodSignature: people should use the accessors from now on
27026         outside of the tree.
27028 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27030         * *.c, *.h: more API cleanups.
27032 2004-06-18  Jackson Harper  <jackson@ximian.com>
27034         * assembly.c: Trace loading assemblies.
27035         * loader.c: Trace loading native libraries.
27036         * mono-config.c: Trace loading config files.
27037         
27038 2004-06-18  Dick Porter  <dick@ximian.com>
27040         * locales.c: Tell ICU the lengths of strings, it can cope with
27041         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
27043 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27045         * image.c: swapped name/filename;
27047 2004-06-18  Martin Baulig  <martin@ximian.com>
27049         * mono-debug-debugger.c (write_class): Write the parent class at
27050         the end of the header.
27052 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27054         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27056 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27058         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27059         (bundle_obj): New conditional define.
27060         (BUILT_SOURCES): Remove.
27061         ($(bundle_srcs)): Make parallel-make safe.
27062         (libmonoruntime_la_LIBADD): Make unconditional.
27063         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27064         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27066 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27068         * culture-info-tables.h: It was inconsistent with the latest
27069           supp info files.
27071 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27073         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27074         be loaded.
27076         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27077         with gcc 2.95.
27079 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27081         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27082         cleaned up public header threads.h.
27084 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27086         * Makefile.am, *.c, *.h: more API cleanups.
27088 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27090         * Makefile.am: removed monosn from compilation.
27091         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27092         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27093         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27094         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27095         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27096         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27098 2004-06-15  Jackson Harper  <jackson@ximian.com>
27100         * assembly.c: Make locales lower case when searching the GAC for
27101         assemblies. gacutil will always make locales lowercase when
27102         installing so this effectively makes them case insensitive.
27103         
27104 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27106         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27107         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27108           parameter which allows to choose whether the wait can be interrupted or 
27109           not. Also added the method mono_monitor_enter(), which locks the monitor
27110           using an infinite wait and without allowing interruption.
27111           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27112           interrupted.
27113         * object.h: Added new fields in MonoThread. suspend_event holds the event
27114           used to susped/resume the thread. synch_lock is the lock object to use for
27115           modifying the thread state.
27116         * threads.c: Use the new synch_lock object for locking, instead of "this",
27117           which can generate deadlocks.
27118           Moved thread state change in Thread.Sleep and Thread.Join from managed
27119           to unmanaged code. This avoids a deadlock when the thread was suspended
27120           just after acquiring the thread lock.
27121           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27122           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27123           which is not fully implemented in the io-layer.
27124         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27126 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27128         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27129         threads-types.h: more API cleanups.
27131 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27133         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27134         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27135         threadpool.c, threads.c: first pass at the exported API cleanup.
27137 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27139         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27141 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27143         * icall.c: added internalGetHome.
27145 2004-06-14  Dick Porter  <dick@ximian.com>
27147         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27148         possible to return successfully when '.' or '..' were the only
27149         entries in a directory, but were skipped.  The MonoIOStat was not
27150         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27151         Fixes bug 59574.
27153 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27155         * reflection.c: make binaries run on .Net 1.1 by default.
27157 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27159         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27161 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27163         * marshal.c: keep track of struct size with explicit layout
27164         (bug #59979).
27166 2004-06-12  Martin Baulig  <martin@ximian.com>
27168         * mono-debug-debugger.c: Comment out a debugging g_message().
27170 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27172         * reflection.c, reflection.h: do not free custom attrs that are cached.
27173         * icall.c: use braces to make code clearer.
27175 2004-06-11  Martin Baulig  <martin@ximian.com>
27177         * class.h (MonoInflatedField): New type.
27178         (MonoClassField): Replaced `MonoType *generic_type' with
27179         `MonoInflatedField *generic_info'.
27181         * icall.c
27182         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27184 2004-06-11  Martin Baulig  <martin@ximian.com>
27186         * reflection.c (mono_image_create_method_token): Correctly encode
27187         varargs methods.
27189 2004-06-11  Martin Baulig  <martin@ximian.com>
27191         * metadata.c (mono_metadata_parse_method_signature): When parsing
27192         a MethodDef which has VarArgs, also set sentinelpos if we don't
27193         have any parameters.
27195 2004-06-11  Martin Baulig  <martin@ximian.com>
27197         * verify.c (mono_method_verify): In CEE_CALL, use
27198         mono_method_get_signature() to get the method's signature, unless
27199         we're a PInvoke method.
27201 2004-06-10  Jackson Harper  <jackson@ximian.com>
27203         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27204         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27205         logical name as the supplied path is just a prefix to the gac not
27206         the direct path to it.
27207         
27208 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27210         * reflection.c: make the token for a created method match
27211         the token of the MethodBuilder it was created from
27212         (IKVM requires this behaviour now).
27214 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27216         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27217         reflection.c, socket-io.c: leak fixes.
27219 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27221         * icall.c: handle sentinel pos in vararg methods in position different
27222         from 0.
27224 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27226         * culture-info-tables.h: freshly generated.
27228 2004-06-09  Martin Baulig  <martin@ximian.com>
27230         * loader.c (mono_get_method_constrained): Call `mono_class_init
27231         (constrained_class)'.   
27233 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27235         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27236         any methods. Fixes #59629.
27238 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27240         * culture-info-tables.h: reflecting locale-builder updates.
27242 2004-06-08  Dick Porter  <dick@ximian.com>
27244         * object.h:
27245         * locales.c: Fixed compile warnings, including a real bug in
27246         CompareInfo_internal_compare.
27247         
27248 2004-06-08  Dick Porter  <dick@ximian.com>
27250         * locales.c
27251         (ves_icall_System_Globalization_CompareInfo_internal_index):
27252         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27253         Double-check the resuls of usearches, because ICU currently
27254         ignores most of the collator settings here.  Fixes bug 59720.
27255         
27256 2004-06-08  Dick Porter  <dick@ximian.com>
27258         * locales.c
27259         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27260         Fix memory leak and segfault-causing typo.  No idea how this one
27261         lasted so long without being noticed.
27263 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27265         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27266         any methods. Fixes #59629.
27268 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27270         * assembly.c:
27271         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27272         own the critical section before). Removed dead code (that's done
27273         in the preload hook).
27275         (mono_assembly_load_with_partial_name): call the preload hook.
27277 2004-06-08  Martin Baulig  <martin@ximian.com>
27279         * metadata.c (mono_metadata_signature_alloc): Default
27280         `sentinelpos' to -1.
27282         * reflection.c (mono_image_get_array_token): Likewise.
27284 2004-06-08  Martin Baulig  <martin@ximian.com>
27286         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27288         * metadata.c (mono_metadata_parse_method_signature): When parsing
27289         a MethodDef which has VarArgs, set sentinelpos.
27291         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27292         `gint16' since we're using -1 for non-varargs methods.
27294         * reflection.c
27295         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27296         (method_encode_signature): Added varargs support.
27297         (method_builder_encode_signature): Likewise.
27298         (mono_image_get_varargs_method_token): New static method.
27299         (mono_image_create_method_token): New public method; this is
27300         called via an icall instead of mono_image_create_token() when
27301         calling a varargs method.       
27303 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27305         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27307 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27309         * culture-info-tables.h : Reflecting the latest locale-builder that
27310           fixed empty array representation ({} to {0}).
27312 2004-06-07  Jackson Harper  <jackson@ximian.com>
27314         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27315         looking up extra gac paths. This allows MONO_GAC_PATH to act
27316         exactly like a prefix.
27317         
27318 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27320         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27321         type name before modifying it. Fixes #59405.
27323 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27325         * culture-info.h: added fields for "all datetime patterns".
27326         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27327           _construct_datetime_format ()): fill xxx_patterns fields.
27328         * object.h: added fields for "all datetime patterns" to
27329           MonoDateTimeFormatInfo.
27330         * culture-info-tables.h: reflecting locale-builder updates.
27332 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27334         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27335         the event has no add and remove methods. Fixes #59629.
27337 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27339         * object.c: Fixed possible integer overflow when allocating large
27340         strings.
27342 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27344         * culture-info-tables.h: reflecting locale-builder updates.
27346 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27348         * culture-info-tables.h: reflecting locale-builder updates.
27350 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27352         * culture-info-tables.h: reflecting locale-builder updates.
27354 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27356         * threads.c: Made Thread.Sleep abortable.
27358 2004-06-02  Martin Baulig  <martin@ximian.com>
27360         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27362         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27364 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27366         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27368 2004-05-30  Jackson Harper  <jackson@ximian.com>
27370         * reflection.c: Do not hardcode assembly versions or public key
27371         tokens anymore. All of this except the corlib section was dead
27372         code anyways.
27373         
27374 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27376         * object.c (mono_runtime_invoke_array): Automatically create boxed
27377         objects for byref valuetypes if needed. Fixes #59300.
27378         
27379         * object.c (mono_method_return_message_restore): Handle 
27380         MONO_TYPE_OBJECT as well.
27382 2004-05-28  Jackson Harper  <jackson@ximian.com>
27384         * reflection.c: The modified type encoding was causing build
27385         problems. Reverted for now.
27386         
27387 2004-05-28  Jackson Harper  <jackson@ximian.com>
27389         * reflection.c/h: Take an assembly ref so that we dont create
27390         fully qualified names when encoding types in the same assembly as
27391         the custom attribute being emitted.
27392         * appdomain.c: Increment version number.
27393         
27394 2004-05-26  Duncan Mak  <duncan@ximian.com>
27396         * icall.c
27397         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27398         Set the full version number (major, minor, build, revision).
27400 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27402         * marshal.c (emit_struct_conv): increment src/dst after blit
27403         (mono_marshal_get_managed_wrapper,
27404         mono_marshal_get_native_wrapper): make sure we have marshalling
27405         info before marshalling params (info computation affects
27406         blittable)
27408         * class.c (class_compute_field_layout): correctly deal with
27409         blittable
27410         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27411         value types (as per what windows dows by default)
27412         (mono_class_setup_mono_type): System.ValueType is blittable
27413         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27414         blittable
27416         * marshal.c (mono_marshal_load_type_info): flag types  as
27417         non-blittable if the native layout doesn't match the managed
27418         layout
27420 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27422         * appdomain.c: don't add stuff in the private search path that is
27423         above the application base. If application base is not set, there's
27424         no private search path.
27426 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27428         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27429         byref struct arguments in native->managed marshalling.
27431 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27433         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27434         cache methods using signature (special case for methods
27435         that are value type or string class)
27436         
27437         * image.c (mono_image_close): clean up allocated GSList's
27438         in runtime_invoke_cache.
27440 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27442         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27443         there's no MONO_CFG_DIR environment variable defined.
27445 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27447         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27449 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27451         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27452           is interrumped.
27453         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27454           before waiting for it, and call CloseHandle after the wait to unref it.
27455           This will make sure that handles are not disposed too early.
27457 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27459         * appdomain.c:
27460         * appdomain.h:
27461         * icall.c: removed
27462         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27463         needed now.
27465         * object.c: se the application_base only for the domain that runs
27466         Main. Fixes bug #59216,
27468 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27470         * appdomain.c:
27471         * object.c: only the domain in which Main is run have
27472         SetupInformation.ConfigurationFile set, so moved a few lines from
27473         appdomain.c to object.c.
27475 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27477         * appdomain.c: we tried to load [name].(dll|exe), but according
27478         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27479         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27480         There's a test case attached to bug #58922.
27482 2004-05-27  Dick Porter  <dick@ximian.com>
27484         * icall.c:
27485         * file-io.c: Implemented icalls for locking and unlocking regions
27486         in a file.
27487         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27488         FALSE on error (fixes both compiler warning and real bug.)
27490 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27492         * culture-info-tables.h: reflecting locale-builder updates.
27494           (Added missing ChangeLog entry for 05/26)
27496 2004-05-27  Jackson Harper  <jackson@ximian.com>
27498         * locales.c: Fix some cut and paste errors.
27499         
27500 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27502         * mono-config.c: set the correct path for config. directory on windows.
27504 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27506         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27507           on win32.
27509 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27511         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27512         from pinvoke functions.
27513         
27514         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27516 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27518         * culture-info-tables.h: reflecting locale-builder updates.
27520 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27522         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27523         #59086.
27525 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27527         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27528         * icall.c: Modified icalls for RNG.
27529         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27530         Windows (CryptoAPI).
27532 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27534         * locales.c: Fix build.
27536 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27538         * culture-info-tables.h: reflecting locale-builder updates.
27540 2004-05-25  Jackson Harper  <jackson@ximian.com>
27542         * locales.c: When creating the current culture use the $LANGs
27543         specific culture. So DateTimeFormat and NumberFormat entries are created.
27544         
27545 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27547         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27548         a char array as parameter.
27550 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27552         * image.c: In mono_image_open(), always use an absolute path name to
27553           look for already loaded images.
27555 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27557         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27558         missing in the windows build (like older cygwin include files).
27560 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27562         * icall.c: Fixed check for possible integer overflow in Buffer_
27563         BlockCopy icall. Replaced comments style // by /* */.
27565 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27567         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27568         
27569         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27570         check after MONO_VTADDR. Fixes pinvoke2.exe.
27572         * marshal.h marshal.c metadata.h: Add beginnings of support for
27573         ftnptr -> delegate marshalling.
27575 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27577         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27578         * threads.c: Fix warnings.
27580 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27582         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27583         * icall.c: Registered icalls for Suspend and Resume.
27584         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27585           Thread.Abort.
27586         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27587         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27588         * process.c: Use WaitForSingleObjectEx.
27589         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27590           checkpoints.
27591         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27592           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27593           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27594           background threads. Added basic support for Abort in Windows.
27595           Start new threads using a managed delegate invoke wrapper. This wrapper
27596           has an interruption checkpoint that is needed since an interruption
27597           can be requested before the thread leaves the unmanaged code that starts 
27598           the thread.
27599         * marshal.c: Added interruption checkpoint after every native call, and
27600           also before managed calls for wrappers called from unmanaged code to
27601           go into managed code.
27602         * object.h: Added new field in MonoThread to keep track of interruption
27603           requests.
27605 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27607         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27608         calls.
27610 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27612         * appdomain.c:
27613         * assembly.c:
27614         * gc.c:
27615         * locales.c:
27616         * mono-config.c:
27617         * rand.c: getenv -> g_getenv (windows!)
27619         * process.c: complete_path is also used on non-windows platforms.
27621 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27623         * icall.c: new signature for Process_Start.
27625         * process.[ch]: new signature for Process_Start. If we're on windows
27626         and UseShellExecute is false, we have to search for the program by
27627         ourselves if we don't get a full path.
27629 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27631         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27632         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27634 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27636         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27637         Fixes bug #58373.
27639 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27641         * process.c: use double quotes to quote program name and arguments on
27642         windows. Fixes bug #58575.
27644 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27646         * file-io.c: don't return "." and ".." when using windows Find*File.
27648 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27650         * marshal.c: Don't pass wrappers to message init because method 
27651         addressed used to lookup metadata. part of remoting[2|3] fix.
27653 2004-05-15  Jackson Harper  <jackson@ximian.com>
27655         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27656         path is essentially the same as MONO_PATH except that it points to
27657         GACs instead of lib directories.
27658         * loader.h: The user gac is gone so we dont need function to
27659         enable/disable it.
27660         * mono-config.c: user gac option is now gone.
27661         
27662 2004-05-15  Jackson Harper  <jackson@ximian.com>
27664         * culture-info.h: Make defines more consistent, add calendar data
27665         to the culture info table.
27666         * culture-info-tables.h: Add basic calendar data. Basically
27667         everyone gets default gregorian until all the data is
27668         updated.
27669         * locales.c: Use the new consistent defines. Set calendar data for
27670         culture info objects.
27671         * object.h: add a field for calendar data to CultureInfo
27672         
27673 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27675         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27676         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27677         a signature.
27678         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27679         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27680         an extra param that is the pointer of the method to invoke. The IL for
27681         the invoke method is no longer specific to the method, but to the
27682         signature of the method. Thus, we can share the same code for multiple
27683         methods. This reduces the number of methods that have to be compiled.
27685 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27687         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27689         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27691         * icall.c: Optimize Buffer.BlockCopy.
27693 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27695         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27696         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27697         quote). Changed them to "MMMM yyyy".
27699 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27701         * rand.c
27702         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27704 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27706         * reflection.h: Updated after changes to managed structures.
27708         * appdomain.c: Bump corlib version.
27710 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27712         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27713         windows.
27715 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27717         * Makefile.am: link to ../os/libmonoos.la on windows.
27719         * assembly.c:
27720                 -If MONO_DEBUG, warn about non-existing directories in
27721                 MONO_PATH.
27722                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27723                 compile time variable.
27724                 -Removed init_default_path and call mono_set_rootdir from
27725                 libmonoos.a instead (windows only).
27727         * assembly.h: declare mono_assembly_getrootdir().
27729         * domain.c:
27730         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27732         * loader.c: s/getenv/g_getenv/
27734 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27736         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27738         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27740         * metadata.h: Add new marshalling conversions.
27742         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27743         function.
27745         * reflection.c (mono_reflection_get_type): Lookup the type in all
27746         modules of a multi-module assembly. Fixes #58291.
27748 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27750         * threads.c: Before aborting a background, set the StopRequested
27751         state.  This avoids throwing the Abort exception.
27752         In mono_thread_manage, don't continue with the shutdown until all
27753         aborted threads have actually stopped.
27755 2004-05-10  Jackson Harper  <jackson@ximian.com>
27757         * locales.c: Remove the modifier from culture names.
27758         
27759 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27761         * Makefile.am: monosn is not installed any more. It has been deprecated
27762         in favor of sn.
27764 2004-05-07  Jackson Harper  <jackson@ximian.com>
27766         * locales.c
27767         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27768         Fix array construction, add bailout if the length is 0.
27770 2004-05-07  Dick Porter  <dick@ximian.com>
27772         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27773         machine doesn't have a DNS entry.  Patch by Urs Muff
27774         (umuff@quark.com), fixes bug 57928.
27776 2004-05-06  Jackson Harper  <jackson@ximian.com>
27778         * reflection.c: Handle null PublicTokens properly. alloc mem for
27779         assembly names culture so we dont crash when freeing it.
27780         
27781 2004-05-06  Jackson Harper  <jackson@ximian.com>
27783         * assembly.c: Check the usergac when loading with partial names.
27784         
27785 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27787         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27788         does nothing for now (not required for Linux/Windows) but the class
27789         library can call it (and a newer or modified runtime could need it).
27790         * icall.c: Registred icall.
27792 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27794         * loader.c: prints a message on module loading error we set MONO_DEBUG
27795         environment variable.
27797 2004-05-05  Jackson Harper  <jackson@ximian.com>
27799         * appdomain.c: Handle PublicKeyToken=null properly.
27800         
27801 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27803         * environment.c|h: Added icall ves_icall_System_Environment_
27804         GetOSVersionString to get the current OS version as a string.
27805         * icall.c: Registred icall.
27807 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27809         * object.c: in mono_object_get_virtual_method(), take into account that
27810         non-virtual methods don't have a slot in the vtable. Check needed when
27811         the object is a proxy.
27813 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27815         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27816         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27818         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27820         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27821         passed when a valuetype is expected.
27823         * object.c (mono_unhandled_exception): Only set the exit code if the
27824         exception happens in the main thread. Fixes thread5.exe.
27826         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27827         invalid names. Fixes #58047.
27829 2004-05-03  Jackson Harper  <jackson@ximian.com>
27831         * assembly.c: This line was committed accidently and is unneeded.
27832         
27833 2004-05-03  Jackson Harper  <jackson@ximian.com>
27835         * icall.c: Add new icall for Assembly::LoadWithPartialName
27836         * assembly.c/.h: new function that probes the GAC to load partial
27837         assembly names by Paolo Molaro.
27838         
27839 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27841         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27842         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27843         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27844         full type name.
27846 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27848         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27849         * reflection.c: fix bug when parsing a full type name and Version is not
27850         the last thing in the string.
27852 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27854         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27855         crashes when it is freed.
27857 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27859         * assembly.c: print the compat warning to stderr.
27861 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27863         * assembly.c (mono_assembly_load_references): Add a compatibility
27864         hack to run old applications that might be still referencing the
27865         3300-based assemblies, only do this for System.xxx.
27867 2004-05-01  Jackson Harper  <jackson@ximian.com>
27869         * appdomain.c: If the culture is neutral we set it to "".
27870         
27871 2004-04-29  Jackson Harper  <jackson@ximian.com>
27873         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27875 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27877         * string-icalls.c: added low overhead function for copying chars
27878         * icall.c: added needed icall for the above function
27880 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27882         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27883         Environment.GetLogicalDrives.
27885 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27887         * rand.c: try and talk to egd or prngd
27888         for random bytes if opening devices fail.
27890 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27892         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27893         alignment for the type using the native alignment of its members 
27894         instead of using klass->min_align.
27896         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27898 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27900         * file-io.c:
27901         * socket-io.c: added check for sys/aio.h.
27903 2004-04-28  Dick Porter  <dick@ximian.com>
27905         * threads.c: Don't abort a thread thats already aborting, when
27906         terminating everything.
27908 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27910         * icall.c: added 2 new async calls for Socket.
27912         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27913         IO on *nix systems.
27915         * threadpool.c: removed unused variable.
27917 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27919         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27921 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27923         * locales.c: put back string_invariant_tolower () and
27924         string_invariant_toupper ().
27926 2004-04-26 David Waite <mass@akuma.org>
27928         * file-io.h:
27929         * socket-io.h:
27930         * threads.h:
27931         * unicode.h: remove comma from end of enumeration declarations
27933 2004-04-26 David Waite <mass@akuma.org>
27935         * debug-mono-symfile.h:
27936         * decimal.c:
27937         * mono_debug.h:
27938         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27941 2004-04-26  Jackson Harper  <jackson@ximian.com>
27943         * appdomain.c: Increment version number.
27944         
27945 2004-04-26  Jackson Harper  <jackson@ximian.com>
27947         * appdomain.c: Set assembly references public token value when
27948         PublicKeyToken is specified, not the hash_value. Free public token
27949         values when free assembly name data. Previously the public key
27950         token was hex decoded, however we are using hex encoded public key
27951         tokens, so this is not neccasary.
27952         * assembly.c: Lookup assemblies in the gac if their public token
27953         value is set. Add function to allow enabling user gac
27954         lookups. Specify whether or not the assembly was loaded from the
27955         GAC. Compare full assembly names when checking the cache for
27956         assemblies (Temporarily disabled see comment in code). Remove
27957         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27958         specifies trace-loader they get extra info to stdout on the
27959         loading of assemblies.
27960         * image.h: Add a field for an assembly references public token
27961         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27962         whether an assembly has been loaded from the GAC.
27963         * image.c: Remove a corlib -> mscorlib name mapping.
27964         * loader.h: Add function to enable/disable the user gac.
27965         * mono-config.c: Check if the usergac is enabled in the config
27966         file.
27967         * icall.c: New icall to determine whether or not an assembly has
27968         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27969         * tabldefs.h: Add constant for assemblyref flag that specifies a
27970         full public key is used instead of a public token.
27971         * reflection.c: Remove mscorlib -> corlib mappings. Set
27972         PublicTokenValue instead of hash value. This value is a hex
27973         string so it does not need to be expanded.
27975 2004-04-26  Martin Baulig  <martin@ximian.com>
27977         * mono-debug-debugger.c (mono_debugger_initialize): Set
27978         `mono_debugger_initialized' before calling mono_debug_lock().
27980 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27982         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27983           InternalToUpper/InternalToLower.
27984         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27985           removed invariant culture shortcut.  This is now done in managed code.
27986         * locales.c: (string_invariant_toupper/tolower) removed.
27988 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27990         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27991         Added Poll internal call.
27993         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27994         call for Poll. Select was too heavy for polling a single socket.
27996         * threadpool.[ch]: added mono_threadpool_cleanup.
27997         * threads.c: use it. Don't use Thread_Abort on windows.
27999 2004-04-23  Martin Baulig  <martin@ximian.com>
28001         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
28003 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
28005         * icall.c: Registred new icalls for key pair protection and added an
28006         icall for Environment.GetFolderPath on Windows.
28007         * security.c|h: Added new icalls for key pair protection.
28009 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28011         * socket-io.c: don't display the non-supported family warning for known
28012         families. Now this is not displayed on windows when checking support
28013         for IPv4/IPv6.
28015 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28017         * class.c: don't display the layout warning for static fields.
28019 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
28021         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28022         * locales.c, locales.h: Added new icalls for culture-specific
28023         Char.ToLower and Char.ToUpper.
28025 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28027         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28028         by David Waite.
28030 2004-04-20  Martin Baulig  <martin@ximian.com>
28032         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28033         of the type name before passing it to mono_reflection_type_from_name().
28035 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
28037         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28038         encodings here. Fixes #56965.
28040 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
28042         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28043         fix test on strstr result not that I can see anything that
28044         relies on the result.
28046 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28048         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28049         Fixes #57081.
28051         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28053         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28054         function to determine which marshalling to use for strings. Fixes
28055         #56965.
28057         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28059         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28061 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28063         * icall.c: #include mono-config.h
28065 2004-04-15  Jackson Harper  <jackson@ximian.com>
28067         * culture-info-tables.h: Fix date formats for en-US culture.
28068         
28069 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28071         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28072         ThreadPool.SetMinThreads.
28073         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28074         ThreadPool.SetMinThreads.
28076 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28078         * mono-config.c: also load the .config file in the directory
28079         where the assembly was found.
28081 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28083         * assembly.c: load per-assembly config files.
28084         * icall.c: decrapified code to get the config dir and moved to
28085         mono-config.c.
28086         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28087         per-assembly config files. When doing a dll map lookup give precedence
28088         to the per-assembly data.
28090 2004-04-14  Martin Baulig  <martin@ximian.com>
28092         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28093         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28094         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28096         * mono-debugger-debugger.c: While the debugger is locked, remember
28097         whether the symbol tables have changes and send one single
28098         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28100 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28102         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28104         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28105         function.
28107         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28108         account when marshalling string arrays. Fixes #56965.
28110 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28112         * icall.c: Add new icalls mapping for security.
28113         * security.c|h: Add internal calls for WindowsIdentity,
28114         WindowsImpersonationContext and WindowsPrincipal.
28116 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28118         * class.c: Added comment to ensure the System.MonoDummy class
28119         is removed when no longer necessary
28121 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28123         * appdomain.c: Pass arguments to the bootstraping exceptions to
28124         minimize JITed methods at boot
28126         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28127         second string to be null.
28129         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28130         Change the protocol to minimize the JIT methods at startup.  Now
28131         it Returns the internal codepage, if the value of "int_code_page"
28132         is 1 at entry, and we can not compute a suitable code page
28133         number, returns the code page as a string.
28135 2004-04-13  Jackson Harper  <jackson@ximian.com>
28137         * culture-info-tables.h: Fix number of decimal digits for all
28138         english locales.
28140 2004-04-13  Jackson Harper  <jackson@ximian.com>
28142         * icall.c: Clairfy out of sync error message. It is not always
28143         your corlib that is out of sync.
28145 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28147         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28148         properties when only the set accessor is overriden. Fixes #55874.
28150 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28152         * assembly.c (mono_assembly_load_references): Make this thread safe.
28153         Fixes #56327.
28155 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28157         * monosn.c: Add missing initialization calls.
28159 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28161         * locales.c:
28162         ves_icall_System_Globalization_CultureInfo_construct_number_format
28163         Fix g_assert so it compiles on fussier compilers re int/ptr
28164         mismatch
28166 2004-04-08  Dick Porter  <dick@ximian.com>
28168         * socket-io.h:
28169         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28170         53992.  Also rearrange the code so that the internal calls return
28171         an error value and exceptions are thrown from managed code.
28173         * icall.c: Add type info to the socket icalls.
28175 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28177         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28178         owes me a beer.
28180 2004-04-07  Martin Baulig  <martin@ximian.com>
28182         * class.c (mono_class_from_generic_parameter): Don't default
28183         `klass->parent' to `mono_defaults.object_type'.
28185 2004-04-07  Martin Baulig  <martin@ximian.com>
28187         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28188         `param->pklass->reflection_info'.       
28190 2004-04-07  Jackson Harper  <jackson@ximian.com>
28192         * culture-info-tables.h: Fix date separator symbol.
28193         
28194 2004-04-07  Martin Baulig  <martin@ximian.com>
28196         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28197         from System.Type to System.MonoType.
28199 2004-04-07  Martin Baulig  <martin@ximian.com>
28201         * reflection.h
28202         (MonoReflectionGenericParam): Added `has_reference_type' and
28203         `has_value_type' fields.
28205         * reflection.c (mono_image_get_generic_param_info): Encode the
28206         correct flags if we have the `class' or `struct' constraint.
28208 2004-04-07  Martin Baulig  <martin@ximian.com>
28210         * reflection.h
28211         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28213 2004-04-07  Jackson Harper  <jackson@ximian.com>
28215         * appdomain.c: Revert extra patches, just wanted to bump the
28216         version number.
28217         
28218 2004-04-07  Jackson Harper  <jackson@ximian.com>
28220         * Makefile.am: Add culture-info private headers.
28221         * icall.c: Add new icalls for contructing locales.
28222         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28223         * locales.h: Declare new culture info construction methods.
28224         * object.h: Add new fields used to avoid the CultureMap to
28225         MonoCultureInfo.
28226         * culture-info.h: Definition of structs used in the culture info
28227         tables.
28228         * culture-info-tables.h: Autogenerated tables that contain culture
28229         info data. This file was generated with the locale-builder tool.
28230         * appdomain.c: Incement corlib version number.
28231         
28232 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28234         * appdomain.c: (mono_runtime_init) move mono_thread_init
28235         to before mono_object_new calls so critical sections
28236         are initialized before use.
28238 2004-04-07  Martin Baulig  <martin@ximian.com>
28240         * icall.c
28241         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28242         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28243         (ves_icall_MonoGenericParam_initialize): Removed.
28244         (monogenericparam_icalls): Removed.
28245         (generictypeparambuilder_icalls): Added new table for
28246         System.Reflection.Emit.GenericTypeParameterBuilder.
28248         * reflection.c
28249         (mono_reflection_define_generic_parameter): Removed.
28250         (mono_reflection_initialize_generic_parameter): This is now called
28251         from GenericTypeParameterBuilder's .ctor.
28253 2004-04-06  Martin Baulig  <martin@ximian.com>
28255         * class.c (mono_class_init): Don't inflate nested classes in a
28256         generic instance.
28257         (mono_type_get_name_recurse): Include the generic arguments for
28258         generic instances and generic type declarations.
28259         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28260         (_mono_class_get_instantiation_name): Removed.
28261         (mono_class_create_generic): Always use `gklass->name' as our name.
28263         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28265         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28266         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28267         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28268         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28269         closed generic methods here.
28271         * reflection.c
28272         (mono_reflection_generic_inst_get_nested_types): Removed.
28273         (inflate_mono_method): Copy the generic parameters from the
28274         MonoMethodHeader into out MonoGenericMethod.
28276 2004-04-06  Martin Baulig  <martin@ximian.com>
28278         * row-indexes.h
28279         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28281         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28283         * reflection.c (build_compressed_metadata): If we have any entries
28284         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28285         set the header version to 1.1.
28287 2004-04-06  Martin Baulig  <martin@ximian.com>
28289         * class.c (mono_class_init): If we're a generic instance,
28290         initialize our nested classes, too.
28291         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28292         suffix. 
28294 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28296         * process.c: quote the argument passed to the shell on windows.
28298 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28300         * threads.c (mono_alloc_special_static_data): Allow this to be
28301         called during startup.
28303 2004-04-02  Martin Baulig  <martin@ximian.com>
28305         * icall.c
28306         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28308 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28310         * icall.c: Fix build.
28312 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28314         * Makefile.am: Added security.c|h.
28315         * icall.c: Added icall for get_UserName;
28316         * security.c: New file for security related icalls. Added function
28317         get_UserName for System.Environment (fix #56144).
28318         * security.h: New. Header file for security.c
28320 2004-04-02  Dick Porter  <dick@ximian.com>
28322         * icall.c: Deleted the icalls that were obsoleted some time ago
28323         by the ICU string code, and which were mixed into the icall
28324         rearranging.  Fixes bug 55969.
28326         * string-icalls.h: 
28327         * string-icalls.c: Deleted the code that those icalls reference.
28329 2004-04-01  Martin Baulig  <martin@ximian.com>
28331         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28333         * class.c (mono_class_from_generic_parameter): Don't set 
28334         TYPE_ATTRIBUTE_INTERFACE.
28335         (my_mono_class_from_generic_parameter): Likewise.
28337 2004-04-01  Martin Baulig  <martin@ximian.com>
28339         * loader.c (find_method): Added an optional `MonoClass *ic'
28340         argument to search in a specific interface.
28341         (mono_get_method_constrained): New public function.
28343 2004-04-01  Martin Baulig  <martin@ximian.com>
28345         * reflection.c (mono_image_get_generic_field_token): Use the
28346         `handleref' cache here.
28348 2004-04-01  Martin Baulig  <martin@ximian.com>
28350         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28352         * reflection.c (create_generic_typespec): Use the `typespec' hash
28353         here, not the `typeref' one.    
28355 2004-04-01  Martin Baulig  <martin@ximian.com>
28357         * class.c (mono_class_inflate_generic_type): Moved the
28358         functionality into a new static inflate_generic_type() which
28359         returns NULL if it didn't do anything.  Only increment the
28360         `mono_stats.inflated_type_count' if we actually inflated
28361         something.
28362         (mono_class_get_full): Check the classes type to see whether we
28363         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28365 2004-04-01  Jackson Harper  <jackson@ximian.com>
28367         * reflection.c: Set culture for assembly references.
28368         
28369 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28371         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28373 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28375         * assembly.c:
28376         (do_mono_assembly_open): the critical section also covers
28377         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28379 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28381         * threads.c:
28382         (mono_manage_threads): abort the background threads when finishing.
28383         Fixes bug #47232.
28385 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28387         * gc.c: only close the done_event handle if there was no timeout.
28388         C-ified comments.
28390 2004-03-30  Martin Baulig  <martin@ximian.com>
28392         * icall.c (icall_entries): It's called "System.Activator", not
28393         "System.Activation".    
28395 2004-03-30  Martin Baulig  <martin@ximian.com>
28397         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28398         (mono_class_create_from_typespec): Likewise.
28400 2004-03-30  Martin Baulig  <martin@ximian.com>
28402         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28403         `has_ctor_constraint' and `initialized'.
28405 2004-03-30  Martin Baulig  <martin@ximian.com>
28407         * reflection.c (encode_new_constraint): New static function to add
28408         the constructor constraint attribute to a type parameter.
28409         (encode_constraints): Call encode_new_constraint() if necessary.
28411         * reflection.h
28412         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28414         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28415         
28416 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28418         * reflection.c, icall.c: add support for pinning variables. 
28420 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28422         * marshal.c (mono_marshal_get_managed_wrapper):
28423         init bool local with zero rather than null.
28425 2004-03-29  Martin Baulig  <martin@ximian.com>
28427         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28428         the "official" behavior here.
28429         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28431 2004-03-29  Martin Baulig  <martin@ximian.com>
28433         * icall.c: Reflect latest API changes.
28435 2004-03-29  Martin Baulig  <martin@ximian.com>
28437         * loader.c (mono_get_method_from_token): Also call
28438         mono_metadata_load_generic_params () for abstract and interface
28439         methods; replace the type arguments in the method signature with
28440         the ones which are loaded from the metadata.
28442 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28444         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28445         of the lock is not the current thread. MS.NET don't do it, in spite of
28446         what the documentation says. See bug #56157.
28448 2004-03-28  Martin Baulig  <martin@ximian.com>
28450         * class.c (mono_class_init): Don't call init_properties() and
28451         init_events() for generic instances; set `prop->parent' when
28452         inflating properties.
28454         * reflection.c (mono_generic_inst_get_object): Call
28455         `mono_class_init (ginst->klass)'.
28456         (mono_type_get_object): Only create a MonoGenericInst if your
28457         generic type is a TypeBuilder.
28458         (do_mono_reflection_bind_generic_parameters): Only set
28459         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28461 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28463         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28464         Fixes #56091.
28466 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28468         * icall.c: added Kill_internal icall.
28469         * process.[ch]: added Kill_internal icall.
28471 2004-03-25  Martin Baulig  <martin@ximian.com>
28473         * class.h (MonoStats): Added `generic_instance_count',
28474         `inflated_method_count', `inflated_type_count' and
28475         `generics_metadata_size'.       
28477 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28479         * reflection.c: no warnings now.
28481 2004-03-25  Martin Baulig  <martin@ximian.com>
28483         * class.c (mono_class_get_full): New public function; does a
28484         mono_class_get(), but also takes a `MonoGenericContext *'.
28486         * loader.c (mono_field_from_memberref): Renamed to
28487         `field_from_memberref', made static and added `MonoGenericContext *'
28488         argument.
28489         (mono_field_from_token): Added `MonoGenericInst *' argument.
28490         (method_from_memberef): Likewise.
28491         (mono_get_method_from_token): Likewise.
28492         (mono_get_method_full): New public function; does a
28493         mono_get_method(), but also takes a `MonoGenericContext *'.
28495         * verify.c (mono_method_verify): Get the method's generic context
28496         and pass it to mono_field_from_token(), mono_get_method_full() and
28497         mono_class_get_full().
28499 2004-03-25  Martin Baulig  <martin@ximian.com>
28501         * class.c (mono_class_inflate_generic_type): Take a
28502         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28503         `MonoGenericMethod *'.
28505 2004-03-25  Martin Baulig  <martin@ximian.com>
28507         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28508         instead of the MonoGenericMethod here.
28510 2004-03-25  Martin Baulig  <martin@ximian.com>
28512         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28513         each time we create a new MonoGenericInst, we also create a new
28514         context which points back to us.
28516         * class.c (inflate_method): Use `ginst->context' instead of
28517         creating a new context.
28519         * loader.c (method_from_memberref): Use
28520         `klass->generic_inst->context' instead of creating a new context.
28522 2004-03-25  Martin Baulig  <martin@ximian.com>
28524         * class.h (MonoGenericContext): New struct.
28525         (MonoGenericMethod): Removed `generic_inst'.
28527         * class.c (mono_class_inflate_generic_method): Take a
28528         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28530 2004-03-25  Martin Baulig  <martin@ximian.com>
28532         * loader.h (MonoMethodInflated): New typedef.
28534         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28535         `generic_param_count' consume just 30 bits, added `is_inflated'
28536         and `has_type_parameters' flags (one bit each).
28538         * class.c (mono_class_inflate_generic_method): Create a
28539         MonoMethodInflated instead of a MonoMethodNormal and set
28540         `is_inflated' in the method signature.
28542         * class.h (MonoGenericMethod): Removed `generic_method'.
28544 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28546         * image.c: Make sure the name of a MonoImage is always an absolute path.
28547           This fixes bug #54415.
28549 2004-03-24  Martin Baulig  <martin@ximian.com>
28551         * class.c (mono_class_setup_vtable): If we're a generic instance,
28552         use our generic type's vtable size.
28554 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28556         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28557         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28558         problems.
28560 2004-03-23  Martin Baulig  <martin@ximian.com>
28562         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28563         `MonoEvent *events'.
28565         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28566         (typebuilder_icalls): Added "get_event_info"; calls
28567         mono_reflection_event_builder_get_event_info(). 
28569         * reflection.c (mono_reflection_generic_inst_initialize): Added
28570         `MonoArray *events'.
28571         (mono_reflection_event_builder_get_event_info): New function.
28573 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28575         * object.h: add mono_type_initialization_init
28577         * object.c (mono_runtime_class_init): 
28578         implement class constructor synchronization rules
28579         to cope with threading issues.  
28580         add mono_type_initialization_init
28582         * appdomain.c (mono_runtime_init): call 
28583         mono_type_initialization_init
28585         * class.h: removing initializing field from MonoVTable
28587 2004-03-23  Martin Baulig  <martin@ximian.com>
28589         * class.c (my_mono_class_from_generic_parameter): Use
28590         `param->name' if it's not NULL. 
28592 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28594         * class.c: do not insert non-virtual methods in the vtable.
28595         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28596         that means the method is non-virtual. This never would have
28597         happened before.
28599 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28601         * profiler.c: Added lock for accessing coverage_hash.
28603 2004-03-22  Martin Baulig  <martin@ximian.com>
28605         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28606         `method->method->signature->generic_param_count != 0' to make it
28607         work for interface methods.
28609 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28611         * process.c: quote the string passed to the shell using g_shell_quote.
28613 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28615         * threads.c:
28616         (mono_threads_manage): don't remove the finalizer thread and self
28617         from the threads hash table so that mono_thread_manage can be called
28618         more than once.
28620 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28622         * process.c: quote the arguments when UseShellExecute is true. Fixes
28623         bug #55790.
28625 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28627         * threads.c: set mono_thread_detach as a cleanup routine for every
28628         thread. This way it's always executed upon thread termination, either
28629         aborted or finished normally. No more xsp hangs!
28631 2004-03-17  Martin Baulig  <martin@ximian.com>
28633         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28634         `int count_nested' and a `MonoType **nested'.
28636         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28637         most of the functionality into a new static
28638         do_mono_reflection_bind_generic_parameters() and don't take a
28639         `MonoType *nested_in' argument any more.  Don't compute nested
28640         types here.
28641         (mono_reflection_generic_inst_get_nested_types): New public method
28642         to get nested types.
28644         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28645         we're a nested class.
28647         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28648         mono_reflection_generic_inst_get_nested_types() to compute the
28649         nested types.
28651 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28653         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28654         descriptive error message under windows.
28655         
28656 2004-03-17  Martin Baulig  <martin@ximian.com>
28658         * class.c (dup_type): Added `const MonoType *original' argument;
28659         copy the attrs from the original type.
28661 2004-03-17  Martin Baulig  <martin@ximian.com>
28663         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28664         `m->generic_inst_cache' here.
28666 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28668         * exception.h exception.c: Add stack_overflow_exception.
28670 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28672         * threadpool.c:
28673         (overlapped_callback): call SetEvent *after* invoking the callback.
28674         No need to call CloseHandle.
28676 2004-03-16  Martin Baulig  <martin@ximian.com>
28678         * reflection.c (mono_image_get_fieldref_token): Take a
28679         `MonoReflectionField *' instead of a `MonoClassField *' and a
28680         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28682 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28684         * appdomain.c: don't add the culture to the filename we're looking for
28685         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28687 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28689         * locales.c: don't ignore symbols when doing case insensitive compares.
28690         Thanks Dick! Fixes bug #54046.
28692         * threads.c: surround 'threads' usage with enter/leave in
28693         mono_thread_manage.
28695 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28697         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28698         implicitly marshalled as [Out]. Fixes #55450.
28700         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28701         an exception.
28703 2004-03-16  Martin Baulig  <martin@ximian.com>
28705         * class.c (mono_class_from_generic_parameter): Use the actual
28706         parameter name. 
28708 2004-03-16  Martin Baulig  <martin@ximian.com>
28710         * reflection.c (type_get_signature_size): New static function.
28711         Compues the size of the type in a method signature.
28712         (method_get_signature_size): New static function; calls
28713         type_get_signature_size() to compute the actual size of the
28714         method's signature.
28715         (method_encode_signature): Use method_get_signature_size() to get
28716         the signature's size rather than using `nparams * 10'.
28718 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28720         * file-io.h: define here WapiOverlapped on windows. I don't want the
28721         regular OVERLAPPED one.
28723         * file-io.c:
28724         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28725         Disabling AIO on windows.
28727 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28729         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28730         bug #55385.
28732 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28734         * appdomain.c: upgraded corlib version.
28736         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28737         and BeginWrite. Allow opening files for asynchrnous operations.
28739         * file-io.h: new struct that maps FileStreamAsyncResult.
28740         * icall.c: added new icalls.
28741         * process.[ch]: support setting child process environment variables
28742         and use the SHELL or COMSPEC when UseShellExecute is true.
28744         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28745         callback for async. IO is here and also BindHandle.
28747         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28748         from here.
28750 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28752         * reflection.c (create_custom_attr): Allow len == 0.
28754         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28755         computation on big-endian machines.
28757 2004-03-13  Martin Baulig  <martin@ximian.com>
28759         * class.h (MonoGenericInst): Added `int count_ifaces'.
28761         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28762         `ginst->count_ifaces' instead `klass->interface_count' since we
28763         may get called before the vtable is created.
28765         * loader.c (mono_method_get_param_names): If we're a generic
28766         instance, return and don't initialize the class.
28768         * reflection.c (mono_reflection_setup_generic_class): Don't call
28769         ensure_runtime_vtable().
28770         (mono_reflection_bind_generic_parameters): Set
28771         `ginst->count_ifaces'.
28773 2004-03-11  Jackson Harper <jackson@ximian.com>
28775         * icall.c:
28776         * unicode.c:
28777         * unicode.h: Remove unused System.Char icalls.
28778         
28779 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28781         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28782         code when we P/Invoke the first library in Windows.Forms, instead
28783         of when we first open the assembly.
28785         * assembly.c: Drop the lookup from here.
28787 2004-03-10  Martin Baulig  <martin@ximian.com>
28789         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28790         class for properties, fields and events.  Finally fixes #54945.
28792 2004-03-10  Martin Baulig  <martin@ximian.com>
28794         * metadata.c (mono_metadata_class_equal): New static function;
28795         checks whether two generic instances or two generic parameters are
28796         equal.
28797         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28798         compare classes.        
28800 2004-03-10  Martin Baulig  <martin@ximian.com>
28802         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28804         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28805         argument and write it into the `reflection_info' field.
28807         * icall.c
28808         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28809         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28811 2004-03-09  Jackson Harper  <jackson@ximian.com>
28813         * char-conversions.h: use 8 bits for numeric data its all we need
28814         * icall.c: numeric data is only 8 bits now.
28816 2004-03-09  Martin Baulig  <martin@ximian.com>
28818         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28820         * class.c (init_properties, init_events): Initialize the new
28821         `parent' field.
28823         * reflection.c (typebuilder_setup_properties): Likewise.
28824         (typebuilder_setup_events): Likewise.
28826         * reflection.h (MonoEventInfo): Replaced `parent with
28827         `declaring_type' and `reflected_type'.
28829         * icall.c (ves_icall_get_property_info): Distinguish between
28830         declaring and reflected type.
28831         (ves_icall_get_event_info): Likewise.
28833 2004-03-09  Martin Baulig  <martin@ximian.com>
28835         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28836         (ves_icall_Type_GetField): Correctly set field->klass.
28838 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28840         * loader.h: Fix warning.
28842 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28844         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28845         library routine if present.  Notice that it will still continue
28846         executing even if its missing, for those working on the Gtk#
28847         edition of Windows.Forms.
28849         * assembly.c (do_mono_assembly_open): If loading the
28850         System.Windows.Forms call mono_loader_wini_init.
28852 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28854         * class.h: Added MonoRemoteClass struct.
28855         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28856         function for MonoStrings.
28857         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28858         Added internal call for getting the proxy type.
28859         * marshal.c: Get the type of transparent proxies from its remote_class.
28860         Added methods that generate the IL for type checks and casts:
28861         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28862         mono_marshal_get_proxy_cancast.
28863         * marshal.h: Declaration of the previous new methods.
28864         * object.c: Added new moethods for creating and updating MonoRemoteClass
28865         instances: mono_remote_class, mono_upgrade_remote_class, 
28866         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28867         * verify.c: FIx transparent_proxy_fields layout.
28868         * appdomain.c: Bump corlib version.
28870 2004-03-04  Jackson Harper  <jackson@ximian.com>
28872         * icall.c: Add icall to access char conversion tables.
28873         * char-conversions.h: Character conversion tables.
28874         * Makefile.am: Add char-conversions.h private header file.
28875         
28876 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28878         * appdomain.c (unload_thread_main): Increase unloading timeout to
28879         10 sec as a temporary workaround for Nant problems.
28881 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28883         * gc.c: Add checks for GC_enable and GC_disable.
28885         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28886         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28887         (bug #54988).
28888         
28889 2004-02-27  Martin Baulig  <martin@ximian.com>
28891         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28892         `MonoReflectionType *' instead of a `MonoType *'.
28894 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28896         * gc.c (run_finalize): Avoid finalizing the object representing the
28897         finalizer thread.
28898         (finalizer_thread): Fix warning.
28900 2004-02-25  Martin Baulig  <martin@ximian.com>
28902         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28903         argument for nested types.
28904         (mono_class_create_generic): Added support for nested generictypes.
28906         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28907         `GList *nested'.
28909         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28911         * reflection.c (method_encode_signature): Increase the minimum
28912         value of `size' from 10 to 11.
28913         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28914         and `MonoType **types' arguments instead of the `MonoArray
28915         *types'; added `MonoType *nested_in'.  Recursively instantiate
28916         nested classes. 
28918 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28920         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28921         stack_overflow_ex members which are used by exception handling.
28923         * appdomain.c (mono_runtime_init): Initialize the new members.
28925         * gc.c (mono_gc_enable): New helper function.
28926         * gc.c (mono_gc_disable): New helper function.
28928 2004-02-23  Martin Baulig  <martin@ximian.com>
28930         * icall.c: I must have been really stupid - make it actually work
28931         this time ;-)
28933 2004-02-23  Martin Baulig  <martin@ximian.com>
28935         * loader.c (method_from_memberref): Only inflate the method if
28936         it's in another klass.
28938 2004-02-23  Martin Baulig  <martin@ximian.com>
28940         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28941         (mono_class_init): If we're a generic instance and an interface,
28942         compute `class->interface_id'; also create `class->interfaces'
28943         here and inflate them.
28945         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28946         `ginst->is_open'.
28947         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28949         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28951 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28953         * reflection.c (method_encode_code): Improved the error message
28954         generated by the exception.
28956 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28958         * icall.c: Martin did not do what he said in the ChangeLog for
28959         2004-02-18, but put back the changes for properties and events.
28960         Commenting those changes out again and adding comment to bug #54518.
28961         
28962         * process.c: removed warning.
28964 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28966         * marshal.c (emit_struct_conv): Print an error message instead of
28967         asserting when a type does not have the StructLayout attribute.
28969 2004-02-20  Martin Baulig  <martin@ximian.com>
28971         * reflection.c (mono_type_get_object): Also use the cache for
28972         generic instances.
28973         (mono_reflection_bind_generic_parameters): Always compute
28974         `ginst->ifaces'.        
28976 2004-02-20  Martin Baulig  <martin@ximian.com>
28978         * class.h (MonoGenericMethod): Removed `klass'.
28980         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28981         *klass' argument.
28983 2004-02-20  Martin Baulig  <martin@ximian.com>
28985         * reflection.c (method_encode_methodspec): Actually use the
28986         uninflated signature for the memberref.
28988 2004-02-20  Martin Baulig  <martin@ximian.com>
28990         * class.h (MonoGenericMethod): Removed `declaring'.
28992         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28993         is NULL, compute it here.
28995 2004-02-20  Martin Baulig  <martin@ximian.com>
28997         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28999         * metadata.c (mono_metadata_generic_inst_hash): New method.
29000         (mono_metadata_generic_inst_equal): New method.
29002         * reflection.c (mono_reflection_bind_generic_parameters): Use the
29003         `klass->image->generic_inst_cache' cache to avoid creating
29004         duplicate MonoGenericInst's.
29006         * class.c (mono_class_inflate_generic_type): Use the cache.
29008 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29010         * object.c: fixed gc descriptor calculation for embedded valuetypes.
29012 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29014         * icall.c: added Socket.WSAIoctl icall.
29016         * socket-io.[ch]: implemented
29017         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29019 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
29021         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29023 2004-02-18  Urs C Muff  <umuff@quark.com>
29025         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29026         this work on PPC and other big-endian architectures.
29028         * debug-mono-symfile.h: Prepended the names of all the `guint32'
29029         fields with an underscore to make sure they're only accessed by
29030         the read32() macro.
29032 2004-02-18  Martin Baulig  <martin@ximian.com>
29034         * icall.c: Put the klass->refclass changes back for methods and
29035         fields, but not for properties and events.  We're currently not
29036         distinguishing between DeclaringType and ReflectedType for
29037         properties and events, that's what caused the regressions.
29039 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29041         * object.c:
29042         (mono_async_result_new): the handle can be NULL.
29044         * threadpool.c: Use an event instead of a semaphore, don't initialize
29045         it until needed. This saves quite a few semaphores from being created
29046         when using the threadpool.
29048 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29050         * object.c (mono_string_is_interned_lookup): Fix interning of long
29051         strings. Fixes #54473.
29053         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29055         * icall.c: Revert the klass->refclass changes since they introduce
29056         regressions (bug #54518).
29058 2004-02-18  Martin Baulig  <martin@ximian.com>
29060         * class.c (mono_class_init): If we're a generic instance and don't
29061         come from a TypeBuilder, inflate our members here.
29062         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29063         (mono_class_create_generic): New public method.
29064         (mono_class_initialize_generic): Removed.
29065         (get_instantiation_name): Renamed to
29066         _mono_class_get_instantiation_name() and made it public.
29068 2004-02-18  Martin Baulig  <martin@ximian.com>
29070         * class.c (mono_class_inflate_generic_type): Clear the new
29071         instance's `nginst->klass' when inflating a generic instance.
29072         (mono_class_is_subclass_of): Added (basic) support for generic
29073         instances.
29075 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29077         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29078         MonoMempool to hold compiled native code.
29080 2004-02-17  Martin Baulig  <martin@ximian.com>
29082         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29083         `properties'.
29085         * reflection.c (mono_reflection_generic_inst_initialize): Added
29086         `MonoArray *properties' argument.
29088         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29090 2004-02-17  Martin Baulig  <martin@ximian.com>
29092         * icall.c (ves_icall_Type_GetFields): Renamed to
29093         ves_icall_Type_GetFields_internal() and added a
29094         `MonoReflectionType *rtype' argument; pass it to
29095         mono_field_get_object() to set the field's "reflected" type.
29096         (ves_icall_Type_GetConstructors): Likewise.
29097         (ves_icall_Type_GetEvents): Likewise.
29098         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29099         argument; pass it to mono_method_get_object() to set the method's
29100         "reflected" type.       
29102 2004-02-17  Martin Baulig  <martin@ximian.com>
29104         * class.h (MonoDynamicGenericInst): New type.
29105         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29107         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29108         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29109         (ves_icall_MonoGenericInst_GetFields): New interncall.
29111         * class.c (mono_class_from_generic): Don't call
29112         mono_class_initialize_generic() if this is a dynamic instance;
29113         ie. it's being created from a TypeBuilder.
29114         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29115         `class->byval_arg.type'.
29117         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29118         to `inflate_method' and made static.
29119         (mono_reflection_inflate_field): Removed.
29120         (mono_reflection_generic_inst_initialize): New public method.
29122         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29123         `ctors' and `fields'; added `initialized'.
29125 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29127         * debug-helpers.c (mono_method_full_name): Fix output for empty
29128         namespaces.
29130 2004-02-12  Martin Baulig  <martin@ximian.com>
29132         * class.h (MonoClassField): Added `MonoType *generic_type'.
29134         * reflection.c (mono_image_get_fieldref_token): Added support for
29135         instantiated generic types.
29136         (field_encode_inflated_field): Removed.
29137         (mono_image_get_inflated_field_token): Removed.
29138         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29140         * reflection.h (MonoReflectionInflatedField): Removed.
29142 2004-02-12  Martin Baulig  <martin@ximian.com>
29144         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29145         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29147         * reflection.c (mono_image_get_methodspec_token): Take a
29148         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29149         (mono_image_create_token): Check whether we have a
29150         `method->signature->gen_method' and call
29151         mono_image_get_methodspec_token() if appropriate.
29152         (inflated_method_get_object): Removed.
29153         (mono_reflection_bind_generic_method_parameters): Return a
29154         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29155         (mono_reflection_inflate_method_or_ctor): Likewise.
29157         * reflection.h (MonoReflectionInflatedMethod): Removed.
29159 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29161         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29162         for custom valuetype marshalling.
29164         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29166 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29168         * icall.c: fixed WSAGetLastError_internal name.
29170 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29172         * threads.c (mono_thread_attach): Allow this to be called multiple
29173         times for a thread.
29174         
29175         * threads.c (build_wait_tids): Do not wait for ourselves.
29177         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29178         appdomain list is empty.
29180         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29181         memory returned by mono_string_builder_to_utf16, since it points into
29182         managed memory. Thanks to Bernie Solomon for noticing this.
29184         * icall.c: Add AppDomainSetup icalls.
29186         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29188         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29189         types.
29191         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29192         custom attributes to the method_aux struct. Also fix array indexes etc.
29194         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29195         
29196 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29198         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29199         (both static and runtime) and reduce startup time.
29201 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29203         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29204         AsAny marshalling conversion instead of crashing.
29206         * marshal.c: Fix warnings.
29208 2004-02-09  Martin Baulig  <martin@ximian.com>
29210         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29212         * reflection.h (MonoReflectionInflatedMethod): Removed the
29213         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29215         * reflection.c (method_encode_methodspec): Removed the `method'
29216         argument; we get it from `gmethod->declaring'.
29217         (inflated_method_get_object): Removed the `declaring' argument.
29219 2004-02-09  Martin Baulig  <martin@ximian.com>
29221         * class.h (MonoGenericMethod): New type.
29222         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29223         `generic_method'.
29225         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29226         a `MonoGenericMethod *gen_method' one.
29228         * class.c (mono_class_inflate_generic_type): Take an additional
29229         `MonoGenericMethod * argument.  This is only non-NULL if we're
29230         inflating types for a generic method.   
29231         (mono_class_inflate_generic_signature): Renamed to
29232         inflate_generic_signature() and made static; take a
29233         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29234         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29235         instead of a `MonoGenericInst *' one.
29236         (mono_class_inflate_generic_method): Likewise.
29238         * reflection.c (encode_generic_method_sig): Take a
29239         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29240         (method_encode_methodspec): Likewise.
29241         (inflated_method_get_object): Likewise. 
29243         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29244         field with a `MonoGenericMethod *gmethod' one.  
29246 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29248         * class.h (mono_class_has_parent): add parens to expansion
29249         so you can ! this.
29251 2004-02-08  Martin Baulig  <martin@ximian.com>
29253         * image.h (MonoImage): Removed `generics_cache'.
29255         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29256         instead of a `MonoType *' argument; removed the `inflate_methods'
29257         argument.  Don't inflate methods here.
29259         * loader.c (find_method): If it's a generic instance, call
29260         mono_class_init() on the `sclass->generic_inst->generic_type'.
29262         * metadata.c (mono_type_size): Make this work on uninitialized
29263         generic instances; call it on the `ginst->generic_type's class.
29265         * reflection.c (mono_reflection_bind_generic_parameters): Call
29266         mono_class_from_generic() to create the `ginst->klass'.
29268 2004-02-08  Martin Baulig  <martin@ximian.com>
29270         * class.h (MonoClass): Changed type of `generic_inst' from
29271         `MonoType *' to `MonoGenericInst *'.
29273 2004-02-08  Martin Baulig  <martin@ximian.com>
29275         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29276         mono_type_get_object(), this is now creating a `MonoGenericInst'
29277         for MONO_TYPE_GENERICINST.
29278         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29279         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29281         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29282         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29283         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29284         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29285         and reflected type.
29287         * reflection.h (MonoReflectionInflatedMethod): Removed
29288         `declaring_type' and `reflected_type'.
29290 2004-02-08  Martin Baulig  <martin@ximian.com>
29292         * class.h (MonoGenericInst): Added `MonoType *parent' and
29293         `MonoType **ifaces'.
29295         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29296         `parent' and `interfaces'.
29298         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29299         `MonoType *' argument and return a `MonoType *'.
29301         * icall.c
29302         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29303         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29305 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29307         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29308         valuetype marshalling.
29310 2004-02-06  Martin Baulig  <martin@ximian.com>
29312         * class.c
29313         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29314         (my_mono_class_from_generic_parameter): Likewise.
29316 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29318         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29319         contents of the symbol files lazily.
29321         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29323         * threads.h threads.c icall.c: New icalls for getting and setting the
29324         threads name.
29326 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29328         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29329         Raise an exception when the domain is not found.
29331 2004-02-03  Martin Baulig  <martin@ximian.com>
29333         * reflection.c (mono_image_get_methodspec_token): Use the
29334         uninflated signature; fixes gen-33.
29336 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29338         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29339         the finalizer code can use thread functionality.
29341         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29342         the finalizer thread.
29344         * threads.c: Make some functions more robust.
29346         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29348         * metadata.h: Add new marshalling conventions.
29350         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29351         stringbuilder marshalling. Fixes #53700.
29353         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29355         * reflection.c (mono_image_get_type_info): Save declarative security
29356         info.
29358         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29359         unmanaged fields as well.
29361         * appdomain.c: Bump corlib version.
29363 2004-02-01  Martin Baulig  <martin@ximian.com>
29365         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29366         method type arguments.  
29368 2004-01-30  Duncan Mak  <duncan@ximian.com>
29370         * marshal.h: Add prototype for
29371         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29372         and
29373         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29374         fix the build.
29376 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29378         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29379         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29381 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29383         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29384         custom marshalling of valuetypes.
29386         * marshal.c: Fix some warnings.
29388 2004-01-29  Martin Baulig  <martin@ximian.com>
29390         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29391         for generic method parameters.
29393         * reflection.c (method_encode_methodspec): Write the uninflated
29394         signature into the methodspec table.
29395         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29396         is always the uninflated method.
29397         (reflection_methodbuilder_to_mono_method): Copy the generic
29398         parameters from the MethodBuilder into `header->gen_params'.
29400 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29402         * class.c (mono_class_from_generic_parameter): Fix warning.
29404 2004-01-27  Martin Baulig  <martin@ximian.com>
29406         * class.c (mono_class_from_generic_parameter): Don't create
29407         `klass->methods' here.  
29409 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29411         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29412         extension since it does not work with libraries named lib<FOO>.dll.so.
29414 2004-01-25  Martin Baulig  <martin@ximian.com>
29416         * class.c (mono_class_inflate_generic_type): Added support for
29417         MONO_TYPE_GENERICINST.
29419         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29420         inflate methods on open constructed types.      
29422 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29424         * object.c: fire ProcessExit event in the root AppDomain after running
29425         Main. Fixes bug #53299.
29427 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29429         * socket-io.c: include the new socket-wrappers.h header.
29430         Use the wrappers instead of the unix socket functions to make the code
29431         more clear.
29433 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29435         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29437         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29438         Fixes #22532.
29440 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29442         * reflection.c (mono_image_create_pefile): Handle the case when the
29443         entry point is not a MethodBuilder.
29445         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29446         field to ReflectionMethod since it is not allways a builder.
29448         * reflection.c (type_get_fully_qualified_name): New helper function to
29449         return the fully qualified name of a type.
29451         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29452         type name for custom marshallers.
29454         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29456         * class.c (mono_class_setup_vtable): If a parent class already 
29457         implements an interface, use the implementing methods from that class.
29458         Fixes #53148.
29460 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29462         * threadpool.c: just return instead of ExitThread to allow for thread
29463         clean up earlier.
29465 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29467         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29468         when closing resource modules.
29470         * reflection.c (mono_image_create_pefile): Handle the case when the
29471         entry point is not a MethodBuilder.
29473         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29474         field to ReflectionMethod since it is not allways a builder.
29476 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29478         * marshal.c (mono_marshal_get_managed_wrapper): 
29479         mono_marshal_alloc takes native int so CONV_I
29480         the arg for 64bits.
29482 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29484         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29485         tokens in the cattr table. Fixes #53108.
29487 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29489         * loader.c: don't trim ".dll" before looking up in the config file.
29490         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29492 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29494         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29495         Return the module which contains the resource as well.
29496         (ves_icall_System_Reflection_Module_Close): New icall.
29498         * appdomain.c: Bump corlib version number.
29500         * image.c (mono_image_addref): New public function.
29502         * assembly.c: Call mono_image_addref.
29504         * reflection.c (mono_module_get_object): Increase reference count of 
29505         the image.
29507         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29508         Fixes #22532.
29510         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29511         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29512         proper exceptions on DllImport problems.
29514 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29516         * class.c, metadata.c: eliminate CSIZE macro.
29518 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29520         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29521         * object.h: Added async_callback field in MonoAsyncResult.
29522         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29523         * verify.c: Added async_callback in MonoAsyncResult layout.
29525 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29527         * reflection.c (mono_reflection_get_custom_attrs): Add support
29528         for Modules.
29530 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29532         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29533         marshalling.
29534         (mono_marshal_method_from_wrapper): Add null pointer check.
29536 2004-01-16  Martin Baulig  <martin@ximian.com>
29538         * debug-mono-symfile.h: Set version number to 36 and reflect
29539         latest symbol writer changes.
29541 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29543         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29544         multi-dimensional arrays.
29545         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29546         (mono_class_from_mono_type): Use bounded_array_class_get.
29547         
29548         * class.c (mono_bounded_array_class_get): New function which takes
29549         a 'bounded' bool argument to distinguish vectors from one dimensional
29550         arrays.
29552         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29553         bounded_array_class_get if the array has bounds.
29555         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29556         Search modules loaded using AssemblyBuilder:AddModule as well.
29558 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29560         * appdomain.c: increased corlib version.
29561         * filewatcher.c: removed g_print.
29562         * icall.c:
29563         (get_property_info): only allocate what is actually requested.
29564         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29566 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29568         * Makefile.am: added filewatcher.[ch]
29569         * filewatcher.[ch]: FileSystemWatcher runtime support.
29570         * icall.c: added new FSW icalls.
29572 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29574         * string-icalls.c: fix stringbuilder regression as suggested by
29575         Iain McCoy <iain@mccoy.id.au>.
29577 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29579         * process.c (process_read_stringtable_block): Recognize '007f' as
29580         a language neutral stringtable block.
29582 2004-01-12  Patrik Torstensson
29584         * object.h (MonoStringBuilder) : Changed layout to support our
29585         new stringbuilder class.
29586         * marshal.c: Change marshalling to support the new layout of 
29587         string builder.
29588         * appdomain.c: increased version number because new layout of
29589         string builder.
29591 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29593         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29594         assembly name as an string instead of an AssemblyName, since it is
29595         easier to extract info from it.
29597         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29598         the culture subdirectories too. Fixes #52231.
29600 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29602         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29603         It takes 2 new parameters with an optional name for the method to look
29604         for and case ignoring info.
29606         * threadpool.c: removed unused variable.
29608 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29610         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29611         It takes 2 new parameters with an optional name for the property to look
29612         for and case ignoring info.
29613         Fixes bug #52753.
29615 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29617         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29618         Fix #52451.
29620 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29622         * appdomain.c:
29623         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29624         Fixes bug #52630.
29626 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29628         * reflection.c: Add support for more than one unmanaged resource.
29630         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29631         in field->def_value, as done in all other cases.
29633         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29634         TypeBuilders.
29636         * reflection.c (mono_reflection_create_runtime_class): Remove 
29637         errorneous assignment to klass->element_class, since it is already
29638         done in mono_reflection_setup_internal_class.
29640 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29642         * gc.c: added missing LeaveCriticalSection.
29643         * icall.c: indented a couple of lines.
29644         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29645         if we call EndInvoke inside a callback. Fixes bug #52601.
29647 2004-01-07  Martin Baulig  <martin@ximian.com>
29649         * mono-debug-debugger.h
29650         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29652 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29654         * appdomain.c: Use messages in NotImplementedException.
29656         * exception.c (mono_get_exception_not_implemented): Now this takes
29657         a message argument.
29659         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29660         exception instead of g_asserting an aborting when something is not
29661         implemented.
29663         Add some inline docs.
29665 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29667         * reflection.h: Update after changes to object layout.
29669         * reflection.c: Implement saving of unmanaged aka win32 resources.
29671         * appdomain.c: Bump version number.
29673         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29674         Handle missing domains gracefully.
29676 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29678         * file-io.c : On Windows, there are much more invalid_path_chars.
29680 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29682         * class.h, object.c: prepare for GetType () speedup.
29684 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29686         * profiler.c: workaround for --profile null reference exception on
29687           cygwin. Patch by Patrik Torstensson.
29689 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29691         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29692         make work for unaligned access.
29694 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29696         * class.c: small cleanup (class->fields [i] -> field).
29697         * image.c: check address of metadata is valid.
29699 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29701         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29702         search the list of loaded assemblies.
29704         * reflection.c (mono_reflection_type_from_name): Use 
29705         mono_assembly_loaded instead of mono_image_loaded.
29707         * reflection.c: Fix warnings.
29709 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29711         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29712         is dynamic. This is needed since an assembly can contain both dynamic and
29713         non-dynamic images.
29715         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29716         assembly->dynamic.
29718         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29720         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29721         to store modules loaded using AddModule.
29723         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29724         on Modules.
29726         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29728         * reflection.c (mono_image_fill_export_table_from_module): New function to
29729         fill out the EXPORTEDTYPES table from a module.
29731         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29732         into a separate function. Also handle loaded non-dynamic modules.
29734         * reflection.c (mono_image_basic_init): Fix memory allocation.
29736         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29738         * assembly.c (mono_assembly_load_references): Make this public.
29740 2003-12-19  Martin Baulig  <martin@ximian.com>
29742         * class.c (mono_class_initialize_generic): Made this static, take
29743         a `MonoGenericInst *' instead of a `MonoClass *'.
29744         (mono_class_from_generic): Call mono_class_initialize_generic()
29745         unless we're already initialized or being called from
29746         do_mono_metadata_parse_generic_inst().
29748         * class.h (MonoGenericInst): Added `initialized' and
29749         `init_pending' flags.
29751         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29752         `mono_class_init (gklass)' or mono_class_initialize_generic()
29753         here; set `generic_inst->init_pending' while parsing the
29754         `type_argv'.
29756 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29758         * locales.c: include string.h for memxxx prototypes
29760 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29762         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29763         constructor when accessing literal fields.
29765 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29767         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29769         * reflection.c (assembly_add_resource_manifest): New function to fill
29770         the MANIFESTRESOURCE table.
29772         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29774         * reflection.h: Update to changes in class layout.
29776         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29777         Reenable call to mono_runtime_is_shutting_down ().
29779         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29780         determine if the runtime is shutting down.
29782 2003-12-16  Jackson Harper <jackson@ximian.com>
29784         * icall.c: comment out call to mono_runtime_is_shutting_down to
29785         fix build.
29786         
29787 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29789         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29790         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29792 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29794         * reflection.c: move definition of swap_with_size
29795         to before its first call
29797 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29799         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29801         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29802         icall.
29804         * object.c: Fix warnings.
29806         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29807         members if FlattenHierarchy is set.
29809         * reflection.c (mono_image_add_decl_security): New function to emit
29810         declarative security.
29812         * reflection.h reflection.c: Add support for declarative security.
29814         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29815         
29816 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29818         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29819         
29820         * appdomain.c verify.c: Moved corlib version checking into its own
29821         function in appdomain.c since it needs to create vtables etc.
29823 2003-12-13  Patrik Torstensson <p@rxc.se>
29825         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29826         instead of unwrapped server.
29828 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29830         * verify.c (check_corlib): Fix field index.
29832 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29834         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29835         GetGacPath icall.
29837 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29839         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29840         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29841         cope with sizeof(size_t) != sizeof(guint32).
29843 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29845         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29846         in case of failure.
29848 2003-12-10  Mark Crichton <crichton@gimp.org>
29850         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29851         in managed code.
29853         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29855 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29857         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29858         marked as deleted.
29860 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29862         * verify.c (check_corlib): Handle the case when the version field is 
29863         initialized by a static constructor.
29865 2003-12-08  Patrik Torstensson  <p@rxc.se>
29867     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29869 2003-12-08  Martin Baulig  <martin@ximian.com>
29871         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29872         a MonoReflectionGenericParameter, also take the parameter index
29873         and name as arguments.
29874         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29875         (ves_icall_MonoGenericParam_initialize): New interncall.
29876         (ves_icall_Type_make_byref_type): New interncall.
29878         * reflection.h (MonoReflectionGenericParam): Derive from
29879         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29880         `index' fields.
29882         * reflection.c (mono_reflection_define_generic_parameter): Create
29883         and return a new MonoReflectionGenericParam; don't initialize the
29884         constraints here.
29885         (mono_reflection_initialize_generic_parameter): New public method;
29886         initializes the constraints and creates the `param->pklass'.
29888 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29890         * reflection.h reflection.c: Use the new fields 'num_types', 
29891         'num_fields' and 'num_methods' to track the number of types etc.
29893         * verify.c (check_corlib): Check corlib version number.
29895 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29897         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29898         function works on all methods.
29900 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29902         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29903         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29904         the custom_type_info flag of the transparent proxy.
29905         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29906         objects that supports IRemotingTypeInfo.
29907         * object.h: Added custom_type_info field in transparent proxy.
29909 2003-12-06  Martin Baulig  <martin@ximian.com>
29911         * class.c (mono_class_create_from_generic): Removed.
29912         (mono_class_from_generic): Check `ginst->klass' before doing
29913         anything else.  This is important to fully support "recursive"
29914         generic types.
29916         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29917         empty `generic_inst->klass' before doing anything else.
29919 2003-12-06  Dick Porter  <dick@ximian.com>
29921         * verify.c: 
29922         * object.h:
29923         * icall.c:
29924         * locales.c: Use C structs to access class fields.  Don't do a
29925         conversion between MonoString and UChar because both are
29926         platform-endian UTF-16.  Compare now takes startindex and count
29927         parameters.  Add a char overload for IndexOf.  Speed up the
29928         invariant string IndexOf.
29930 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29932         * Makefile.am (monosn_LDADD): Fix parallel build.
29934 2003-12-04  Martin Baulig  <martin@ximian.com>
29936         * icall.c
29937         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29938         (ves_icall_Type_make_array_type): New interncall.       
29940 2003-12-04  Martin Baulig  <martin@ximian.com>
29942         * locales.c: also change it in the !HAVE_ICU case.
29944 2003-12-04  Dick Porter  <dick@ximian.com>
29946         * icall.c:
29947         * locales.c: construct_compareinfo is now in CompareInfo, not
29948         CultureInfo.
29950 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29952         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29953         image->files array.
29955         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29956         table as well.
29958         * assembly.c (mono_assembly_load_references): Only load references
29959         once.
29961         * class.c (mono_class_from_name): Avoid linear search of the 
29962         EXPORTEDTYPE table.
29964         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29966 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29968         * image.h (MonoImage): Add 'field_cache' field.
29970         * loader.c (mono_field_from_token): Cache field lookups.
29971         
29972         * reflection.c (mono_module_get_object): Fix name property.
29974         * icall.c (ves_icall_get_enum_info): Update after changes to 
29975         mono_metadata_get_constant_index ().
29977         * icall.c: Get rid of get_type_info icall, use a separate icall for
29978         each type property to avoid needless memory allocations. Fixes #51514.
29980         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29981         to avoid needless binary searches.
29983         * class.c (class_compute_field_layout): Move the initialization of
29984         field->def_value to mono_class_vtable ().
29986         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29987         non-corlib types.
29989         * object.c (mono_object_allocate): Make it inline.
29991         * object.c (mono_object_allocate_spec): Make it inline.
29992         
29993 2003-12-02  Dick Porter  <dick@ximian.com>
29995         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29996         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29998 2003-12-01  Dick Porter  <dick@ximian.com>
30000         * threads.c: Fix signature and call in CreateMutex and
30001         CreateEvent.
30003 2003-12-01  Dick Porter  <dick@ximian.com>
30005         * icall.c: 
30006         * locales.c: Implement string compares and searching
30008         * object.h: Add extra Thread field
30010 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
30012         * reflection.c (fixup_method): Add support for MonoCMethod.
30014 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
30016         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30018         * reflection.c (assembly_name_to_aname): Allow extra characters in
30019         assembly names. Fixes #51468.
30021 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
30023         * exception.c (mono_exception_from_name_domain): New helper function.
30025         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30026         exception object in the correct domain.
30028         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
30029         formatting + make a copy a the input data.
30031         * loader.c (mono_get_method_from_token): Methods which contain
30032         native code do not have entries in the ImplMap.
30034         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30035         Thanks to Gonzalo for spotting this.
30036         
30037         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30038         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30040         * assembly.h (mono_assembly_load_from): Split the second part of 
30041         assembly loading into a new public function.
30043         * exception.h (mono_get_exception_bad_image_format): New function.
30045 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30047         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30048         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30049         
30050         * icall.c: Add new icall for creating dynamic methods.
30052         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30054         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30056         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30057         create a dynamic method.
30059         * reflection.c (resolve_object): New helper function.
30061         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30062         which manipulate it so they can also work on dynamic methods.
30064         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30065         creating the MonoReflectionMethodAux structure if it is not needed.
30066         
30067         * reflection.h verify.c: Update after changes to object layout.
30069         * reflection.c (method_builder_encode_signature): Fix compilation on
30070         gcc 2.95.x.
30072 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30074         * appdomain.h: Added support for context static fields. Added static_data
30075           field to MonoAppContext and renamed thread_static_fields to a more
30076           generic special_static_fields in MonoAppDomain, since it can now contain
30077           context static fields.
30078         * domain.c: Updated hashtable name.
30079         * object.c: Replaced field_is_thread_static() for a more generic
30080           field_is_special_static() which also checks for context static attribute.
30081           In mono_class_vtable(), added support for static context fields.
30082         * threads.c: Changed methods that manage thread static fields to more
30083           generic methods so they can be reused both for thread and context static
30084           data.
30085         * threads.h: Declared some new methods.
30087 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30089         * reflection.h: Update after changes to the managed types.
30091         * reflection.c (encode_custom_modifiers): New helper function.
30093         * reflection.c (method_encode_signature): Emit custom modifiers.
30095         * reflection.c (field_encode_signature): Emit custom modifiers.
30097 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30099         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30101         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30102         implementation.
30104         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30105         icall.
30107         * object.c (mono_field_get_value_object): New function.
30109         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30110         specific.
30112 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30114         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30115         return a preallocated out-of-memory exception instance.
30117         * object.c (out_of_memory): Use the new function.
30119         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30120         flag is before the custom modifiers. Fixes #49802.
30122 2003-11-16  Martin Baulig  <martin@ximian.com>
30124         * class.c (mono_class_is_open_constructed_type): Implemented the
30125         MONO_TYPE_GENERICINST case.
30127 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30129         * assembly.c (mono_assembly_fill_assembly_name): New function to
30130         fill out the MonoAssemblyName structure.
30131         (mono_assembly_open): Use the new function.
30133         * icall.c (fill_reflection_assembly_name): New helper function.
30135         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30136         new function.
30138         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30140 2003-11-15  Martin Baulig  <martin@ximian.com>
30142         * class.c (mono_class_is_open_constructed_type): New public
30143         function; checks whether a type is an open constructed type,
30144         ie. whether it still contains type parameters.
30145         (mono_class_inflate_generic_type): If we're a type parameter and
30146         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30147         type.
30149         * class.h (MonoGenericInst): Added `guint32 is_open'.
30151         * loader.c (method_from_methodspec): Check whether we're an open
30152         or closed constructed type and set `ginst->is_open'.
30154         * reflection.c (mono_reflection_bind_generic_parameters): Check
30155         whether we're an open or closed constructed type and set
30156         `ginst->is_open'.
30157         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30158         from open constructed types.
30160 2003-11-15  Martin Baulig  <martin@ximian.com>
30162         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30163         a generic instance (instead of a generic type declaration) with
30164         unbound generic parameters, bind them to our actual types.
30166 2003-11-14  Martin Baulig  <martin@ximian.com>
30168         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30170         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30171         an interface type, populate `res->interfaces' with instantiated
30172         versions of all the interfaces we inherit.
30174 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30176         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30177         when MONO_PATH is set but doesn't contain the install dir.
30179 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30181         * icall.c:
30182         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30183         it's also implemented in base classes. Fixes bug #50927.
30185 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30187         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30188         if this method is called from a finalizer. Fixes #50913.
30190 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30192         * threads.c: Implement VolatileRead/VolatileWrite
30194         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30196 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30198         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30199         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30200         2.95.3.
30202         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30203         from Peter Ross (pro@missioncriticalit.com).
30204         
30205 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30207         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30209 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30211         * assembly.c (mono_assembly_load_references): Disable check because it
30212         triggers on older corlibs which lots of people have.
30214 2003-11-12  Jackson Harper  <jackson@ximian.com>
30216         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30217         load corlib.dll if mscorlib.dll is not found.
30218         * assembly.h: Remove corlib name define.
30219         * class.c:
30220         * domain.c:
30221         * image.c: Change corlib name to mscorlib.
30222         
30223 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30225         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30227 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30229         * appdomain.h: Added loader_optimization here to sync with the C#
30230         code, and add disallow_binding_redirects field.
30232 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30234         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30236         * reflection.c (mono_image_build_metadata): Fix crash on modules
30237         with no types.
30239         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30241         * icall.c (ves_icall_get_method_info): Return callingConvention as
30242         well.
30244         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30245         namespaces from the EXPORTEDTYPE table as well.
30247         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30248         from all modules inside the assembly.
30249         
30250 2003-11-11  Martin Baulig  <martin@ximian.com>
30252         * reflection.c (mono_reflection_bind_generic_parameters): Make
30253         this work for interfaces.
30255 2003-11-11  Martin Baulig  <martin@ximian.com>
30257         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30259 2003-11-11  Martin Baulig  <martin@ximian.com>
30261         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30262         "MonoInflatedMethod" and "MonoInflatedCtor".
30264 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30266         * reflection.c (resolution_scope_from_image): Use the assembly table
30267         from the manifest module, since other modules don't have it.
30269         * debug-helpers.c (mono_type_full_name): New helper function.
30271         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30273         * image.c (mono_image_load_file_for_image): New public function which
30274         is a replacement for the load_file_for_image in class.c.
30276         * assembly.c (mono_assembly_load_module): A wrapper for the function
30277         above which does assembly association and reference loading too.
30279         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30281 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30283         * appdomain.c: not all of the attributes for the full assembly name
30284         are required and the order doesn't matter. Fixes bug #50787.
30286 2003-11-10  Dick Porter  <dick@ximian.com>
30288         * locales.c: Use platform-endian UTF16
30290 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30292         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30293         
30294 2003-11-10  Martin Baulig  <martin@ximian.com>
30296         * metadata.c
30297         (mono_metadata_load_generic_params): Make this actually work.
30299         * reflection.c (mono_reflection_bind_generic_parameters): If our
30300         parent is a generic instance, pass all the `types' to it, no
30301         matter whether it has the same number of type parameters or not.
30303 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30305         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30307         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30308         assignment code to this function so it gets called recursively for all
30309         modules.
30311         * image.c (load_modules): Remove the assembly assignment since it is
30312         now done by mono_assembly_load_references.
30313         
30314         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30315         Add 'module' argument.
30316         (mono_module_get_types): New helper function.
30317         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30319 2003-11-08  Martin Baulig  <martin@ximian.com>
30321         * class.c (mono_class_inflate_generic_method): Interface method
30322         don't have a header.
30324         * reflection.c (mono_image_get_methodspec_token): Take an
30325         additional `MonoGenericInst *' argument instead of reading it from
30326         the header; this is necessary to support interfaces.
30327         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30328         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30329         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30330         argument.
30332         * reflection.h (MonoReflectionInflatedMethod): Added
30333         `MonoGenericInst *ginst'.
30335 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30337         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30339 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30341         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30343 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30345         * reflection.c 
30346         (reflection_methodbuilder_from_method_builder):
30347         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30348         initialize a ReflectionMethodBuilder structure.
30349         (mono_image_get_methodbuilder_token):
30350         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30351         tokens which point to types in another module inside the same assembly.
30353         * reflection.c: Use the new helper functions.
30354         
30355         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30357         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30358         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30360         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30361         neccesary.
30363         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30364         current module. Emit the manifest only for the main module.
30366         * reflection.c (mono_image_create_token): Add assertion when a 
30367         memberref needs to be created.
30369         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30371         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30372         larger buffer for the custom attribute blob. Fixes #50637.
30373         
30374 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30376         * threadpool.c: notify listener on async processing handles after
30377         invoking the async callback. Thanks to Zoltan.
30379 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30381         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30382         avoid code duplication.
30384         * reflection.h (MonoDynamicImage): New type which is currently unused,
30385         but will be used through the ref.emit code in place of 
30386         MonoDynamicAssembly.
30388         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30389         object layout.
30391         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30392         a MonoDynamicImage instead of just a MonoImage.
30393         
30394         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30395         icalls to ModuleBuilder but keep their semantics, so they will work
30396         with moduleb->assemblyb. This will change later.
30397         
30398 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30400         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30401         object layout.
30403         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30404         main module, since it is now done by the managed code.
30406 2003-11-03  Martin Baulig  <martin@ximian.com>
30408         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30409         `ginst->klass' here.
30410         (method_encode_methodspec): Don't use the `ginst->generic_method's
30411         klass if it's a generic instance, use `ginst->klass' in this case.
30413 2003-11-03  Martin Baulig  <martin@ximian.com>
30415         * reflection.c (mono_image_get_generic_method_param_info):
30416         Removed, use mono_image_get_generic_param_info() instead.
30417         (mono_image_get_type_info): Write the GenericParam table before
30418         the Method table.  This is neccessary because in the GenericParam
30419         table, type parameters of the class (ie. '!0' etc.) must come
30420         before the ones from its generic methods (ie. '!!0' etc).
30422 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30424         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30426 2003-11-02  Martin Baulig  <martin@ximian.com>
30428         * reflection.c (create_generic_typespec): Take a
30429         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30430         the generic parameters from it.
30432 2003-11-02  Martin Baulig  <martin@ximian.com>
30434         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30435         instead of a `MonoClassField *' since we just need the type.
30436         (create_generic_typespec): New static function.  Creates a
30437         TypeSpec token for a generic type declaration.
30438         (mono_image_get_generic_field_token): New static function.
30439         (mono_image_create_token): If we're a FieldBuilder in a generic
30440         type declaration, call mono_image_get_generic_field_token() to get
30441         the token.
30443 2003-11-02  Martin Baulig  <martin@ximian.com>
30445         * reflection.h
30446         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30447         `MonoReflectionGenericInst *declaring_type' and
30448         `MonoReflectionGenericInst *reflected_type' fields.
30450         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30451         `MonoReflectionGenericInst *declaring_type' and a
30452         `MonoReflectionGenericInst *reflected_type' argument instead of a
30453         single `MonoReflectionGenericInst *type' one.  Set
30454         `res->declaring_type' and `res->reflected_type' from them.
30455         (mono_reflection_inflate_field): Likewise.      
30457 2003-11-02  Martin Baulig  <martin@ximian.com>
30459         * class.c (mono_class_setup_vtable): Don't store generic methods
30460         in the vtable.  
30462 2003-11-02  Martin Baulig  <martin@ximian.com>
30464         * reflection.h (MonoReflectionGenericInst): Added
30465         `MonoReflectionType *declaring_type'.
30467         * reflection.c (mono_reflection_bind_generic_parameters): Use
30468         `if (tb->parent)' instead of `klass->parent'.
30470 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30472         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30473         with an empty ASSEMBLY table.
30475         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30476         variable in the inner and outer loops.
30478 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30480         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30481         argument.
30483         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30484         
30485         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30486         icalls. Instead, do everything in managed code. This is needed since
30487         it is hard to restore the original domain etc. in unmanaged code in the
30488         presence of undeniable exceptions.
30490         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30491         New icalls to push and pop appdomain refs.
30493 2003-10-31  Martin Baulig  <martin@ximian.com>
30495         * class.c (inflate_generic_type): Renamed to
30496         mono_class_inflate_generic_type() and made it public.
30498         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30499         New interncall.
30501         * loader.c (mono_field_from_memberref): Also set the retklass for
30502         typespecs.
30504         * fielder.c (mono_image_get_inflated_field_token): New static
30505         method; creates a metadata token for an inflated field.
30506         (mono_image_create_token, fixup_method): Added support for
30507         "MonoInflatedField".
30508         (fieldbuilder_to_mono_class_field): New static function.
30509         (mono_reflection_inflate_field): New public function.
30511         * reflection.h
30512         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30513         (MonoReflectionInflatedField): New typedef.     
30515 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30517         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30518         for Solaris and other platforms without s6_addr16
30520 2003-10-30  Martin Baulig  <martin@ximian.com>
30522         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30523         argument instead of two.
30524         (mono_class_inflate_generic_signature): Likewise.
30525         (inflate_generic_header): Likewise.
30526         (mono_class_inflate_generic_method): Likewise.  In addition, if
30527         `ginst->klass' is set, it becomes the new `method->klass'.
30529         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30530         field.
30532         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30533         first byte. [FIXME]
30534         (method_encode_methodspec): If we have generic parameters, create
30535         a MethodSpec instead of a MethodRef.
30536         (fixup_method): Added support for "MonoInflatedMethod" and
30537         "MonoInflatedCtor".
30538         (mono_image_create_token): Added support for "MonoInflatedMethod"
30539         and "MonoInflatedCtor".
30540         (inflated_method_get_object): New static function; returns a
30541         managed "System.Reflection.MonoInflatedMethod" object.
30542         (mono_reflection_bind_generic_method_parameters): Return a
30543         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30544         (mono_reflection_inflate_method_or_ctor): Likewise.
30545         (mono_image_get_generic_method_param_info): Initialize unused
30546         fields to zero.
30547         (mono_image_get_generic_param_info): Likewise.
30549         * reflection.h (MonoReflectionInflatedMethod): New public
30550         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30551         "S.R.MonoInflatedCtor" classes.
30553         * loader.c (method_from_memberref): If we're a TypeSpec and it
30554         resolves to a generic instance, inflate the method.
30556 2003-10-28  Dick Porter  <dick@ximian.com>
30558         * object.c (mono_runtime_run_main): Convert command-line arguments
30559         into utf8, falling back to the user's locale encoding to do so.
30561 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30563         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30564         at this time.
30566         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30568         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30569         up icalls at method definition time. Partially fixes #33569.
30571 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30573         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30574         marshalling of arrays. Fixes #50116.
30576         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30578         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30579         points to a vtable in the dying appdomain.
30581         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30582         listeners into unmanaged code inside the lock.
30584         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30585         domains and add some comments.
30587 2003-10-25  Martin Baulig  <martin@ximian.com>
30589         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30591         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30593         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30594         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30595         currently parsing.  Create the generic class and store it in
30596         `generic_inst->klass' before parsing the type arguments.  This is
30597         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30598         for an example.
30599         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30600         to support recursive typespec entries.
30602         * class.c (mono_class_setup_parent): If our parent is a generic
30603         instance, we may get called before it has its name set.
30604         (mono_class_from_generic): Splitted into
30605         mono_class_create_from_generic() and mono_class_initialize_generic().
30607 2003-10-25  Martin Baulig  <martin@ximian.com>
30609         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30610         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30611         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30612         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30614         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30615         (create_typespec): Likewise.
30616         (mono_reflection_bind_generic_parameters): Return a
30617         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30618         (mono_reflection_inflate_method_or_ctor): New public function.
30620         * reflection.h (MonoReflectionGenericInst): New typedef.        
30622 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30624         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30625         inside the domain lock. Fixes #49993.
30626         
30627         * object.c (mono_class_vtable): When typed allocation is used, 
30628         allocate vtables in the GC heap instead of in the mempool, since the
30629         vtables contain GC descriptors which are used by the collector even
30630         after the domain owning the mempool is unloaded.
30632         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30634         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30635         reflect what it does. Also invalidate mempools instead of freeing
30636         them if a define is set.
30638         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30639         of the appdomain.
30640         
30641         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30642         hold the finalizable objects in this domain.
30644         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30645         appdomain.
30647         * appdomain.c (mono_domain_set): New function to set the current
30648         appdomain, but only if it is not being unloaded.
30650         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30651         appdomain which is being unloaded.
30652         
30653         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30654         unloading of the root appdomain.
30656         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30657         icall to execute a method in another appdomain. Intended as a 
30658         replacement for InternalSetDomain, which can confuse the code 
30659         generation in the JIT.
30661         * appdomain.c (mono_domain_is_unloading): New function to determine
30662         whenever an appdomain is unloading.
30664         * appdomain.c (mono_domain_unload): New function to correctly unload
30665         an appdomain.
30667         * assembly.c (mono_assembly_load_references): Check that an assembly
30668         does not references itself.
30670         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30671         domain manually, it asks the finalizer thread to do it, then waits for
30672         the result. Also added a timeout.
30674         * icall.c: Register the new icalls.
30676         * threads.h threads.c: Export the mono_gc_stop_world and 
30677         mono_gc_start_world functions.
30678         
30679         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30680         function to fill out the mempool with 0x2a.
30682 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30684         * reflection.h (MonoReflectionMethodAux): New structure to store
30685         information which is rarely used, thus is not in the MonoMethod
30686         structure.
30688         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30689         store the aux info.
30691         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30692         and marshalling info into the aux structure.
30694         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30695         from the aux structure.
30697         * loader.c (mono_method_get_param_names): Retrieve the param names from
30698         the aux structure.
30699         
30700 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30702         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30703         warning.
30705 2003-10-21  Dick Porter  <dick@ximian.com>
30707         * socket-io.c
30708         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30709         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30711 2003-10-21  Martin Baulig  <martin@ximian.com>
30713         * reflection.c (mono_reflection_bind_generic_parameters):
30714         `klass->parent' is NULL for interfaces.
30716 2003-10-21  Martin Baulig  <martin@ximian.com>
30718         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30720 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30722         * exception.c (mono_exception_from_name_msg): New helper function for
30723         creating exceptions and initializing their message field.
30725         * exception.c: Simplify functions using the new helper.
30727         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30728         New function.
30730         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30731         mono_raise_exception, since otherwise gcc doesn't generate the function
30732         epilog for raise_exception, confusing the stack unwinding in the JIT.
30733         Fixes #45043.
30735         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30736         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30737         Fixes #49499.
30739 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30741         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30742         utf8.
30744 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30746         * icall.c: Removed GetUninitializedObject method because
30747           AllocateUninitializedClassInstance does the same.
30749 2003-10-18  Martin Baulig  <martin@ximian.com>
30751         * class.c (inflate_generic_signature): Renamed to
30752         mono_class_inflate_generic_signature() and made it public.
30753         (my_mono_class_from_generic_parameter): New static function; if we
30754         don't already have the generic parameter's MonoClass, create a
30755         very simple one which is just used internally in the runtime and
30756         not passed back to managed code.
30758         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30760         * metadata.h (MonoMethodSignature): Moved the
30761         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30762         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30764         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30765         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30766         interncall on the MonoMethod class, not on MethodInfo.
30767         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30768         calling mono_reflection_bind_generic_method_parameters() directly.
30770         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30771         return the already computed `method->signature'.
30772         (method_from_methodspec): New static function to load a method
30773         from a MethodSpec entry.
30774         (mono_get_method_from_token): Call the new method_from_methodspec()
30775         for MethodSpec tokens.  
30776         (mono_get_method_from_token): If we're a generic method, load the
30777         type parameters.
30779         * reflection.c (mono_image_get_memberref_token): Allow
30780         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30781         table.
30782         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30783         (mono_image_create_token): First check whether it's a generic
30784         method (so we'd need to create a MethodSpec), then do the other
30785         two alternatives.
30786         (mono_reflection_bind_generic_method_parameters): Return a
30787         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30788         called directly from the interncall.
30790 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30792         * reflection.c (load_public_key): Move loading of the public key
30793         into managed code.
30795         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30797         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30798         fields.
30800         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30801         culture, hash_alg and public_key. Fixes #49555.
30803 2003-10-17  Martin Baulig  <martin@ximian.com>
30805         * class.h (MonoGenericInst): Moved this declaration here and added
30806         `MonoMethod *generic_method'.
30808         * icall.c
30809         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30810         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30812         * metadata.c (mono_metadata_type_equal): Two types of
30813         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30814         index; ie. don't compare the address of the `MonoGenericParam'
30815         structure.
30816         (mono_metadata_load_generic_params): Removed the `MonoMethod
30817         *method' argument.
30819         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30820         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30822         * reflection.c (method_encode_signature): Encode the number of
30823         generic parameters.
30824         (encode_generic_method_sig): New static function.
30825         (method_encode_methodspec): New static function; creates an entry
30826         in the MethodSpec table for a generic method.
30827         (mono_image_get_methodspec_token): New static function.
30828         (mono_image_create_token): Call mono_image_get_methodspec_token()
30829         for generic methods.
30830         (mono_reflection_bind_generic_method_parameters): New public
30831         function.  Instantiates a generic method.
30833 2003-10-16  Martin Baulig  <martin@ximian.com>
30835         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30836         *gen_params' here from MonoMethodHeader.
30838         * metadata.c (mono_metadata_parse_method_signature): If we have
30839         generic parameters, initialize `method->gen_params' and then set
30840         the correct `type->data.generic_param' in all the parameters.
30842 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30844         * threads.c (mono_threads_get_default_stacksize): New function to 
30845         return the default stacksize.
30847         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30848         termination of the finalizer thread, since the previous method had
30849         race conditions. Fixes #49628.
30851         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30852         as for the other managed threads.
30854 2003-10-16  Martin Baulig  <martin@ximian.com>
30856         * class.c (inflate_generic_signature): Copy `generic_param_count'
30857         and `gen_params'.
30859         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30860         New interncall.
30862         * metadata.c (mono_metadata_parse_method_signature): Actually set
30863         the `method->generic_param_count' here.
30864         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30866 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30868         * object.h: Add a new field to TypedRef to simplify the implementation
30869         of the REFANY opcodes in the JIT.
30871         * icall.c: Make use of the new field.
30873         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30874         dynamically.
30876 2003-10-15  Martin Baulig  <martin@ximian.com>
30878         * class.c (mono_class_from_gen_param): Renamed to
30879         mono_class_from_generic_parameter() and moved most of the
30880         functionality from mono_reflection_define_generic_parameter()
30881         here; ie. we create a "real" class here.
30882         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30883         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30884         previously been called.
30886         * class.h (MonoGenericParam): Moved the declaration of this struct
30887         here from metadata.h and added `MonoMethod *method'.
30889         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30890         interncall.
30892         * loader.c (mono_get_method_from_token): If we have any generic
30893         parameters, call mono_metadata_load_generic_params() to read them
30894         from the MONO_TABLE_GENERICPAR.
30896         * metadata.c (mono_metadata_load_generic_params): Added
30897         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30899         * metadata.h (MonoMethodSignature): Replaced
30900         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30901         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30903         * reflection.c (mono_reflection_define_generic_parameter): Moved
30904         most of the functionality into the new
30905         mono_class_from_generic_parameter(); set the `method' field if
30906         we're a method parameter.       
30908 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30910         * marshal.c (emit_struct_conv): if native size is 0
30911         emit no code.
30913 2003-10-14  Martin Baulig  <martin@ximian.com>
30915         * icall.c: The generics API has changed in the spec since it was
30916         added to System.Type; these modifications make it match the spec
30917         again.
30918         (ves_icall_Type_GetGenericParameters): Renamed to
30919         `ves_icall_Type_GetGenericArguments'.
30920         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30921         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30922         `ves_icall_MonoType_get_HasGenericArguments'.
30923         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30924         `ves_icall_MonoType_get_IsGenericParameter'.
30925         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30926         this is no interncall anymore.
30927         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30928         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30930 2003-10-14  Martin Baulig  <martin@ximian.com>
30932         * reflection.c (mono_reflection_bind_generic_parameters): Also
30933         inflate generic methods if we're reading the class from IL.
30935 2003-10-13  Martin Baulig  <martin@ximian.com>
30937         * reflection.c (mono_reflection_define_generic_parameter): This
30938         method isn't called directly from the icall anymore; take a
30939         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30940         method generic parameters.
30941         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30942         (method_builder_encode_signature): Encode generic parameters.
30943         (mono_image_get_method_info): Write generic params to the
30944         MONO_TABLE_GENERICPARAM table.
30946         * reflection.h (MonoReflectionMethodBuilder): Added
30947         `MonoArray *generic_params'.
30949         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30951         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30952         wrapper for mono_reflection_define_generic_parameter().
30953         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30955 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30957         * marshal.h: Add missing function to fix build.
30959         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30960         the SetLastError pinvoke attribute.
30962         * marshal.c (mono_marshal_set_last_error): New helper function called
30963         by the generated code.
30964         
30965         * marshal.c (mono_mb_emit_branch): New helper function.
30967         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30969         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30970         classes as parameters and return values of delegates. Fixes #29256. 
30972 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30974         * locales.c: use gint32 in non HAVE_ICU case
30976 2003-10-11  Martin Baulig  <martin@ximian.com>
30978         * mono-debug.c (mono_debug_add_method): Added a workaround for
30979         bug #48591.
30981 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30983         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30984         delegates passed to native code must use the STDCALL calling 
30985         convention. Fixes #35987.
30987 2003-10-10  Martin Baulig  <martin@ximian.com>
30989         * class.c (inflate_generic_type): If we're inflating for a generic
30990         type instance (and not for a generic method), return
30991         MONO_TYPE_MVAR unchanged.
30993 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30995         * string-icalls.c: Join ignores null strings in the source array.
30996         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30997         * threads.c: GetAvailableTheads is slightly more accurate.
30999 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
31001         * threads.h threads.c : add mono_threads_set_default_stacksize
31002         and pass default to CreateThread calls.
31004 2003-10-09  Dick Porter  <dick@ximian.com>
31006         * icall.c:
31007         * locales.h:
31008         * locales.c: Internal calls for constructing CultureInfo and
31009         related objects from libicu (if its available.)
31011 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
31013         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31015 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31017         * threadpool.c: added an argument to async_invoke_thread that is the
31018         item to process, pass the MonoAsyncResult to the thread start function
31019         when creating a new thread. This way we don't need to acquire any lock
31020         when we're creating a new thread. Readded a semaphore for faster
31021         response times (instead of that Sleep i added).
31023 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
31025         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31026         get daylight change dates better on Windows, fix handling
31027         of platforms without tm_gmtoff.
31029 2003-10-06  Martin Baulig  <martin@ximian.com>
31031         * class.c (inflate_generic_method): Renamed to
31032         mono_class_inflate_generic_method() and made public.
31033         (mono_class_init): Don't inflate the generic methods here.
31034         (mono_class_from_generic): Added `gboolean inflate_methods'
31035         argument.  Inflate the methods here.
31037         * loader.c (mono_method_get_param_names): Ignore instances of
31038         generic types for the moment.
31040         * reflection.c (fixup_method): Added support for inflated methods.
31041         (mono_image_create_token): Use mono_image_get_methodref_token()
31042         for inflated methods.
31043         (mono_custom_attrs_from_param): Ignore instances of generic types
31044         for the moment.
31045         (mono_reflection_bind_generic_parameters): New public function.
31046         Moved all the functionality from
31047         ves_icall_Type_BindGenericParameters() here and added support for
31048         dynamic types.
31049         (mono_reflection_define_generic_parameter): Initialize
31050         `klass->methods' here.
31052         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31053         functionality into mono_reflection_define_generic_parameter().
31054         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31055         TypeBuilder, return that TypeBuilder.
31057 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31059         * appdomain.c: removed mono_delegate_semaphore.
31061         * threadpool.c:
31062         (mono_thread_pool_add): moved hash table creation inside and the thread 
31063         creation outside of the critical region.
31064         (mono_thread_pool_finish): removed obsolete code.
31065         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31066         continue or exit the thread depending on the queue.
31068 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31070         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31071         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31072         handle more bool marshalling options
31074 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31076         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31077         arrays of structs. Also add a more descriptive error message when
31078         a structure member is marshalled as LPArray.
31080 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31082         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31083         marshalling arrays of complex types. Fixes #29098. Also remove an
31084         usused and incomplete function.
31086 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31088         * gc.c: report heap_size - free_bytes as total memory allocated
31089         (bug#49362).
31091 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31093         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31094         fix timezone handling problems on Windows.
31095         
31096         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31097         asserts when the year is outside the range handled by ms the functions.
31099         * class.c (setup_interface_offsets): If the class is an interface,
31100         fill out its interface_offsets slot.
31102 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31104         * threadpool.c: mark threadpool threads as background.
31106 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31108         * decimal.c - define DECINLINE to nothing if not using GCC
31110 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31112         * assembly.c: More refcount fixes.
31114 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31116         * string-icalls.c: if we're not trimming, return the same string.
31117         When not splitting, don't create a new string.
31119 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31121         * image.c:
31122         (mono_image_open): increment the ref_count inside the critical section.
31124 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31126         * image.c (mono_image_open): Fix reference counting bug.
31128 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31130         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31131         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31132         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31133         mono_lookup_pinvoke_call throws.        
31135 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31137         * reflection.c (mono_reflection_parse_type): Fix #49114.
31139         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31140         temporary workaround for cygwin header problem.
31142         * object.c (mono_object_isinst): Synchronize this with the code
31143         generated by the JIT for casts.
31145 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31147         * reflection.c (encode_type): Fix #38332.
31149 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31151         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31152         the original method from the wrapper method.
31154 2003-09-25  Martin Baulig  <martin@ximian.com>
31156         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31157         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31158         (ves_icall_Type_get_IsGenericInstance): New interncall.
31160 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31162         * object.c: fix cast warning in big endian code.
31164 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31166         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31167         
31168 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31170         * assembly.c: don't call check_env from mono_assembly_load. It's
31171         already done once in mono_assemblies_init and may cause headaches when
31172         multiple threads are loading assemblies.
31174 2003-09-19  Martin Baulig  <martin@ximian.com>
31176         * reflection.c (mono_reflection_define_generic_parameter): Don't
31177         allocate `klass->methods', set `klass->flags' to
31178         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31180 2003-09-18  Martin Baulig  <martin@ximian.com>
31182         * class.c (mono_class_init): Don't create `class->methods' if it's
31183         already initialized.
31185         * metadata.c (mono_metadata_load_generic_params): Make this
31186         actually work.
31188         * reflection.c (mono_reflection_define_generic_parameter): Set
31189         parent class and interfaces from the constraints.
31191         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31192         to keep this struct in sync with the declaration in TypeBuilder.cs.
31194 2003-09-17  Martin Baulig  <martin@ximian.com>
31196         * metadata.h (MonoType): Replaced the data's `int type_param'
31197         field with `MonoGenericParam *generic_param'.
31198         (MonoGenericParam): Added `MonoClass *klass'.
31200         * class.c (mono_class_from_gen_param): Removed the
31201         `MonoImage *image' and `int type_num' arguments.
31203         * metadata.c (mono_metadata_parse_generic_param): New static
31204         method; creates a MonoGenericParam which just contains the index.
31205         (do_mono_metadata_parse_type): Call
31206         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31207         MONO_TYPE_MVAR.
31209         * reflection.c (mono_image_typedef_or_ref): Generic type
31210         parameters may be in the same assembly, but never use a typedef
31211         for them.
31212         (mono_reflection_define_generic_parameter): We're now creating a
31213         "real" class for the type parameter; it's now safe to call
31214         mono_class_from_mono_type() on the class'es type, it'll do the
31215         right thing.
31217 2003-09-16  Martin Baulig  <martin@ximian.com>
31219         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31220         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31221         the `symfile' data structure must be fully initialized before it
31222         gets added to the table.
31224 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31226         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31228         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31229         class init trampolines.
31231 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31233         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31234         to the built-in profiler to turn off time and allocation profiling
31235         respectively.
31237 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31239         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31240         g_direct_equal.
31242         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31243         in human readable form.
31245 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31247         * reflection.c icall.c: Fixed warnings.
31249         * image.c (load_class_names): Use a temporary hash table to hold the
31250         namespaces in order to avoid doing many string comparisons.
31252         * image.h: Fix typo.
31254         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31255         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31256         since the NULL case is short-circuited inside g_hash_table_lookup, 
31257         leading to better performance.  
31259         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31260         obtain the first custom attribute for a given index. Depends on the
31261         CustomAttribute table being sorted by the parent field.
31263         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31264         for better performance.
31266 2003-09-07  Martin Baulig  <martin@ximian.com>
31268         * class.c (mono_class_init): If we're a generic instance, inflate
31269         all our methods instead of loading them from the image.
31270         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31272 2003-09-07  Martin Baulig  <martin@ximian.com>
31274         * mono-debug-debugger.c: Added support for constructors.
31276 2003-09-06  Martin Baulig  <martin@ximian.com>
31278         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31279         New interncall.
31281         * reflection.c (mono_reflection_setup_generic_class): Call
31282         ensure_runtime_vtable() to create the vtable.
31284 2003-09-05  Martin Baulig  <martin@ximian.com>
31286         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31287         MONO_TYPE_MVAR.
31289 2003-09-04  Martin Baulig  <martin@ximian.com>
31291         * reflection.c (mono_reflection_define_generic_parameter): Generic
31292         parameters start with zero.
31294 2003-09-04  Martin Baulig  <martin@ximian.com>
31296         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31298         * reflection.h (MonoReflectionGenericParam): New typedef.
31299         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31300         the generic parameters from the managed TypeBuilder.
31302         * reflection.c (mono_reflection_define_generic_parameter): New function.
31303         (mono_reflection_create_runtime_class): Encode generic parameters.
31304         (mono_reflection_setup_generic_class): New function; this is
31305         called after adding adding all generic params to the TypeBuilder.
31306         (encode_type): Added MONO_TYPE_VAR.
31308 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31310         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31311         here from the JIT.
31313         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31314         load hook.
31316 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31318         * reflection.h reflection.c class.h class.c: Delete duplicate 
31319         definition of mono_type_get_name () from reflection.c and export the
31320         one in class.c.
31322         * class.c: Class loading fixes from Bernie Solomon 
31323         (bernard@ugsolutions.com).
31325         * reflection.c: Endianness fixes from Bernie Solomon 
31326         (bernard@ugsolutions.com).
31327         
31328 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31330         * assembly.h assembly.c: Define a file format version for AOT
31331         libraries.
31332         
31333         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31335         * appdomain.h (MonoJitInfo): New field to determine whenever the
31336         code is domain neutral.
31337         
31338 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31340         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31342 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31344         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31345         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31346         Avoid caching the result since strings must be domain specific. Fixes
31347         #48050.
31349 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31351         * marshal.c (mono_marshal_init): Make this callable multiple times
31352         since it is hard to find a correct place to call it.
31354         * object.c (mono_runtime_class_init): Execute static constructors in
31355         the correct appdomain.
31357         * image.c (build_guid_table): Handle the case when multiple images have
31358         the same GUID.
31360 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31362         * icall.c: added a couple of icalls for System.Web.
31364 2003-08-28  Martin Baulig  <martin@ximian.com>
31366         * icall.c (ves_icall_Type_BindGenericParameters): Use
31367         `klass->generic_inst' instead of `&klass->byval_arg' in the
31368         mono_type_get_object() call.  The returned type must be
31369         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31371 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31373         * NOTES: New file.
31375         * object.c (mono_class_proxy_vtable): Make it thread safe.
31377         * pedump.c: Fix warning.
31379         * object.c appdomain.h: Get rid of metadata_section. 
31380         It is no longer needed and it was causing deadlocks with domain->lock.
31382         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31384 2003-08-26  Martin Baulig  <martin@ximian.com>
31386         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31388 2003-08-26  Martin Baulig  <martin@ximian.com>
31390         * pedump.c (main): Call mono_metadata_init(),
31391         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31392         and mono_loader_init().
31394 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31396         * loader.h: Add missing include to fix build.
31398         * image.h: mono_image_load_references is no more.
31400         * assembly.c: Reworked assembly loading to make it really thread safe.
31401         After these changes, the assembly returned by mono_assembly_open is
31402         fully initialized, i.e. all its references assemblies are loaded.
31404         * assembly.c (mono_image_load_references): Renamed to 
31405         mono_assembly_load_references, and made private, since clients no
31406         longer need to call it.
31408         * class.c: Removed calls to mono_assembly_load_references, since it was
31409         a source of deadlocks.
31411         * loader.h loader.c class.h class.c: Protect data structures using a 
31412         new lock, the loader lock.
31414         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31415         GPtrArrays only when needed.
31417         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31418         into empty structures by mcs. Fixes pinvoke7.cs.
31419         
31420         * domain.c (mono_init): Call a new initialization function.
31422         * appdomain.c (mono_runtime_init): Call the new initializer function
31423         of the marshal module.
31425         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31426         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31428         * marshal.h marshal.c: Added locks around the wrapper caches to make
31429         this module thread safe.
31431         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31432         this argument. Fixes pinvoke1.exe.
31434 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31436         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31437         enumeration of values. Removed fields to store remote call output values in
31438         MonoAsyncResult. Not needed any more.
31439         * object.c: Initialize call_type and async_result fields in mono_message_init.
31440         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31441         dispatching the message.
31442         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31443         async call to finish. To do it use a message with EndInvoke call type.
31445 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31447         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31448         determines whenever a method has marshalling info.
31450 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31452         * assembly.c: fix the build on windows.
31454 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31456         * object.cs: Fixed bug #47785.
31458 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31460         * string-icalls.c (StringReplace): If their are no occurances of
31461         the old string found return a reference to the supplied
31462         string. This saves some memory and matches MS behavoir.
31463         
31464 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31466         * socket-io.c: fixed compilation for systems that define AF_INET6
31467         and don't define SOL_IP/SOL_IPV6.
31469 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31471         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31472         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31474         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31476         * domain.c: Make this module thread safe.
31478         * domain.c (mono_init): Call new initialization function.
31480         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31481         reference types too. Fixes #38812.
31483         * image.c (mono_image_init): Fixed warnings.
31485         * class.c (mono_class_from_typeref): Handle assembly load failure
31486         correctly.
31488         * appdomain.c (add_assemblies_to_domain): Handle the case when
31489         the references of an assembly are not yet loaded.
31491         * metadata.c image.c assembly.c: Moved initialization of global
31492         variables to a separate function called at startup since lazy 
31493         initialization of these variables is not thread safe.
31494         
31495         * image.c assembly.c: Made this module thread safe by adding locks in 
31496         the appropriate places.
31498         * domain.c (mono_init): Call the new initialization functions of the
31499         three modules.
31501 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31503         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31504           make a direct call. It is proxy's work to make the call asynchronous.
31505           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31506           the return values.
31507         * object.cs: mono_method_call_message_new(): read AsyncResult and
31508           state object from parameters list, if this info is requested.
31509         * object.h: Added fields to store remote call output values in
31510           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31512 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31514         * object.h: add needed fields to MonoThread.
31515         * threads.c, threads.h: allow registering a function to cleanup data
31516         allocated per thread by the JIT.
31518 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31520         * loader.h: portability fix by Bernie Solomon
31521         * <bernard@ugsolutions.com>.
31523 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31525         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31526         return a MonoArray. This simplifies the code and also ensures that
31527         the cache allways contains an object reference as a value.
31529         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31530         function.
31532 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31534         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31535         fixes a problem with byte ordering when getting the address family for
31536         a socket.
31538 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31540         * .cvsignore: Added monosn.
31542         * reflection.h reflection.c loader.c: Added support for parameter
31543         marshalling to dynamically created types. Fixes #47295.
31545 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31547         * rand.c: remove useless warnings.
31549 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31551         * class.c: implemented ldtoken for methods and fieldrefs.
31553 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31555         * threadpool.c: when mono_async_invoke was called, no one took care of
31556         monitoring the queue. So if the method invoked took some time and we
31557         got new async invoke requests after 500 ms (the thread created waited
31558         that long in WaitForSingleObject), the new async invoke was not called
31559         until the previous one finished.
31561         This is fixed now. Thanks to Totte for helping with it.
31563 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31565         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31567 2003-08-11  Martin Baulig  <martin@ximian.com>
31569         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31571 2003-08-06  Martin Baulig  <martin@ximian.com>
31573         * mono-debug-debugger.c: Added support for static fields,
31574         properties and methods.
31576 2003-08-06  Martin Baulig  <martin@ximian.com>
31578         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31579         make this work for applications with multiple application domains.
31581 2003-08-04  Martin Baulig  <martin@ximian.com>
31583         * mono-debug-debugger.c: Completely reworked the type support; the
31584         most important thing is that we're now just using one single
31585         `MonoType' instance per type.
31587 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31589         * mono-endian.h, mono-endian.c, icall.c: Added icall
31590         ves_icall_System_Double_AssertEndianity to assert double word endianity
31591         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31593 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31595         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31596         support, icalls and fixes.
31598 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31600         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31601         classes that are a punctuation character in .NET is not the same a
31602         g_unichar_ispunct.
31604 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31606         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31608 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31610         * icall.c: Add new MemCopy internalcall.
31611         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31612         Simplified code; It is not necessary to handle all the cases here,
31613         as the C# code takes care of it.  Only handle the case of the name
31614         resource embedded into the assembly.
31616         Changed signature to return the data pointer and the size of the
31617         data. 
31619 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31621         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31622         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31624 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31626         * socket-io.c: ignore EINTR error in select.
31628 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31630         * class.h, class.c: removed unused subclasses field in MonoClass.
31632 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31634         * icall.c: improve fix of get_base_definition(). If the parent class
31635           doesn't have the mehod, look at the parent of the parent.
31636         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31637           to check if a parameter is an in or out parameter
31638           (PARAM_ATTRIBUTE_IN is not set by default).
31639           mono_method_return_message_restore(): Use mono_class_value_size to
31640           get the size of a value type. mono_type_stack_size (parameterType)
31641           does not return the correct value if parameterType is byRef.
31642           mono_load_remote_field(), mono_load_remote_field_new(),
31643           mono_store_remote_field(), mono_store_remote_field_new():
31644           raise exception if the remote call returns an exception.
31646 2003-07-28  Martin Baulig  <martin@ximian.com>
31648         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31649         method.  This is a wrapper around mono_runtime_invoke() which
31650         boxes the instance object if neccessary.
31652 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31654         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31655         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31657 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31659         * icall.c: disable mcs bug workaround.
31661 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31663         * object.c (mono_runtime_class_init): Take the metadata_section
31664         mutex before obtaining the domain mutex.
31666         * appdomain.h: Added definition of metadata_section mutex here. 
31668         * object.c: define metadata_mutex here.
31670 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31672         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31673         fixed.
31675 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31677         * reflection.c: Fix bug #46669
31679 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31681         * exception.c:
31682         * exception.h:
31683         * icall.c:
31684         * object.h: fill in the type name for TypeLoadException.
31686 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31688         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31689         relationship between TypeBuilders while compiling corlib) and bug
31690         45993 (Array types returned from the runtime while compiling
31691         corlib were from the loaded corlib).
31693 2003-07-22  Martin Baulig  <martin@ximian.com>
31695         * mono-debug-debugger.c: Reworked the type support a bit more;
31696         distinguish between types and classes.
31698 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31700         * icall.c: add IsArrayImpl icall.
31702 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31704         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31705         initializing real_size only once. Also fix bug #46602.
31707 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31709         * object.c: Renamed mono_metadata_section to metadata_section.
31711 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31713         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31714           empty array if the type is an array. Fixed.
31715           ves_icall_MonoMethod_get_base_definition: if the base method
31716           is abstract, get the MethodInfo from the list of methods of
31717           the class.
31718         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31719           and it was 1-based. Fixed in mono_param_get_objects.
31721 2003-07-20  Martin Baulig  <martin@ximian.com>
31723         * mono-debug.h: Set version number to 31.
31724         (mono_debug_init): Added `MonoDomain *' argument.
31726         * mono-debug-debugger.c: Reworked the type support; explicitly
31727         tell the debugger about builtin types; pass the `klass' address to
31728         the debugger.
31730 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31732         * image.c: Allow new metadata tables to be loaded without a
31733         warning. Also update the warning message to give the new constant value.
31734                 
31735 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31737         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31738         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31739         array type representation changes.
31741 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31743         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31744         on Environment.Exit () call.
31746 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31748         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31749         requires a matching corlib.
31751 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31753         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31754           Committed again without the CRs.
31755         
31756 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31758         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31759           getting it from the "this" socket instance. Did not work
31760           if the socket is a subclass of Socket.
31761           Also fixed bug #35371.
31763 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31765         * metadata.c: fixed size for TypedByRef.
31766         * loader.c: when searching for a method, consider the vararg amrker.
31767         * unicode.c, decimal.c: constify some arrays.
31769 2003-07-15  Dick Porter  <dick@ximian.com>
31771         * socket-io.c: Fixed compilation for gcc < 3.2.
31773         Fixed compilation for machines that don't have AF_INET6 (thanks to
31774         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31776         Fixed compile warnings.
31777         
31778         Fixed formatting and line endings.
31780 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31782         * socket-io.h:
31783         * socket-io.c: Added IPv6 support.
31785 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31787         * class.c (mono_class_is_assignable_from): New function to implement
31788         the is_assignable_from logic. Used by mono_object_isinst, 
31789         Type::IsAssignableFrom () and the interpreter.
31791         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31792         Object, even interfaces.
31793         
31794         * object.c (mono_object_isinst): Implement in terms of 
31795         is_assignable_from.
31797         * icall.c (ves_icall_type_is_assignable_from): New icall.
31799 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31801         * domain.c (foreach_domain): fix compiler warning.
31803 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31805         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31806         not available on all plattforms
31808 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31810         * image.h image.c: Store the metadata version string in MonoImage.
31811         * icall.c: New icall to retrieve the image version.
31812         * reflection.c (create_dynamic_image): Fill in the image version field
31813         * reflection.c (build_compressed_metadata): Use the image version
31814         from the image structure.
31816 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31818         * appdomain.c: modified comment.
31819         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31820         That will be its last iteration when mono_gc_cleanup is called from
31821         mono_runtime_cleanup and before the domain is unloaded.
31823         Fixes bug #45962.
31825 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31827         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31828         attributes.
31830 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31832         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31833         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31834         Bernie Solomon <bernard@ugsolutions.com>.
31836 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31838         * object.c, object.h: provide mono_object_new_fast() for faster
31839         allocation in some special cases.
31841 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31843         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31844         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31846 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31848         * threadpool.c: fix leaks.
31850 2003-07-01  Dick Porter  <dick@ximian.com>
31852         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31853         using MonoGHashTables.  Fixes threadpool bug posted to list.
31855 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31857         * image.h, image.c: added support to load an assembly from a byte array.
31858         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31859         assembly bundle support.
31861 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31863         * threadpool.c (mono_thread_pool_add): keep a reference to the
31864         AsyncResult to prevent GC
31866 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31868         * class.c: leak fix.
31870 2003-06-25  Dick Porter  <dick@ximian.com>
31872         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31873         for the async object, the WaitHandle object will close the handle.
31874         Fixes bug 45321.
31876 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31878         * class.c: in mono_array_class_get (), lookup from the hash with the
31879         same type we insert: this works around a bug in
31880         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31881         lluis. The real fix will have to wait for after the release.
31883 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31885         * icall.c: fix memory leak when getting type members.
31887 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31889         * reflection.c: added more pubtoken special cases.
31891 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31893         * class.c: handle field offset correctly when class size
31894         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31896 2003-06-20  Martin Baulig  <martin@ximian.com>
31898         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31899         *image' field.
31901 2003-06-20  Martin Baulig  <martin@ximian.com>
31903         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31905 2003-06-20  Martin Baulig  <martin@ximian.com>
31907         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31908         just distinguish between variables in registers and variables at
31909         an offset relative to a register.
31911 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31913         * icall.c: #ifdef out latest changes until mcs is fixed.
31915 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31917         * icall.c: return members in metadata order.
31919 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31921         * icall.c: avoid infinite loop in GetTimeZoneData.
31923 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31925         * icall.c: added Marshal.Prelink/All icalls.
31927 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31929         * object.c, object.h: fix warnings and do some overflow checking
31930         when creating arrays.
31932 2003-06-17  Dick Porter  <dick@ximian.com>
31934         * file-io.h:
31935         * file-io.c: File attributes need to be tweaked slightly when
31936         passed from the managed to the w32 world.
31938 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31939         * profiler.h profiler-private.h profiler.c: Rework last patch
31940         based on suggestion by Paolo.
31941         
31942 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31944         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31945         instruction level coverage data collection.
31946         * profiler.h profiler.c (: Added new callback function which can be
31947         used by the profiler to limit which functions should have coverage
31948         instrumentation.
31949         * profiler.c (mono_profiler_load): Call g_module_build_path to
31950         generate the file name of the profiler library.
31952 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31954         * profiler.c, profiler.h, profiler-private.h: added basic block 
31955         coverage profiling API.
31957 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31959         * reflection.c (mono_reflection_create_runtime_class): Add support
31960         for events in dynamically generated code.
31962         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31963         not allocated.
31965 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31967         * icall.c: when getting timezone info, return reasonable values if we
31968         can't get the actual data.
31970 2003-06-14  Dick Porter  <dick@ximian.com>
31972         * threads.c (start_wrapper): Remove the reference to the thread
31973         object in the TLS data, so the thread object can be finalized.
31974         This won't be reached if the thread threw an uncaught exception,
31975         so those thread handles will stay referenced :-( (This is due to
31976         missing support for scanning thread-specific data in the Boehm GC
31977         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31979 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31981         * reflection.c: ensure streams and tables are first allocated with
31982         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31984 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31986         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31988 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31990         * reflection.c (mono_reflection_create_runtime_class): Add support for
31991         properties to dynamically created classes.
31992         * reflection.c: Fix a few places where non-MonoObjects were inserted
31993         into the tokens hashtable.
31995 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31997         * object.c: some support to handle out of memory exceptions.
31999 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
32001         * marshal.c (mono_marshal_get_native_wrapper): support reference
32002         return types
32004 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32006         * object.h, object.c: more portability stuff from Bernie Solomon.
32007         Unexport mono_object_allocate(). Added mono_object_unbox ().
32008         Set exitcode when an unhandled exception is thrown.
32010 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
32012         * marshal.c (mono_marshal_get_native_wrapper): use custom
32013         marshaler for return types.
32015 2003-06-10  Dick Porter  <dick@ximian.com>
32017         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32018         ip_mreq is available
32020 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32022         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32023         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32024         by Bernie Solomon <bernard@ugsolutions.com>.
32026 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
32028         * gc.c (mono_gc_init): Avoid error message on shutdown when
32029         GC_DONT_GC=1 is used.
32031         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
32032         New icall to return the GUID of a module.
32034 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32036         * class.c: ensure instance size always includes the parent's size
32037         even whem class size is set explicitly (fixes bug#44294).
32039 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32041         * profiler.h, profiler.c: made the simple profiler thread-safe,
32042         get more accurate timing info. Allow the loading of an
32043         externally-developed profiler module.
32045 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32047         * marshal.c (mono_marshal_get_native_wrapper): improved
32048         class/byref arguments.
32049         (mono_marshal_get_native_wrapper): better string marshaling support.
32051 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32053         * class.c: ensure .pack and .size are handled correctly and
32054         simplified layout of static fields.
32056 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32058         * appdomain.c
32059         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32061         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32062         current directory (fix bug 44008)
32064 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32066         * marshal.c (mono_marshal_get_native_wrapper): started support for
32067         custom marshalers.
32068         (mono_delegate_to_ftnptr): consider marshalling specifications
32070 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32072         * reflection.c, reflection.h: emit custom marshal info.
32074 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32076         * object.c: free the GError.
32077         * icall.c: added CloseEvent_internal.
32078         * threads.[ch]:
32079         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32080         call.
32082 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32084         * loader.c (mono_method_get_signature): Add support for dynamic
32085         assemblies.
32087 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32089         * reflection.c: fixed bug #43905.
32091 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32093         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32094         handling TypedReference and ArgIterator.
32095         * loader.c, loader.h: added function to get signature at call site.
32097 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32099         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32100         data readonly. Buglets and warning fixes. Some MethodSpec support.
32102 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32104         * class.h, class.c, object.c: remove relative numbering support.
32106 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32108         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32109         free the string, until we get a chance to fix Gtk#
32111 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32113         * marshal.c: revert last patch.
32115 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32117         * icall.c: updates for new mono_class_vtable() not calling
32118         the type constructor anymore.
32120 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32122         * object.h, object.c: separate vtable creation from type
32123         initialization. Make running the .cctor thread safe.
32125 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32127         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32129 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32131         * loader.c (mono_get_method): consider calling convention
32133 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32135         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32136         to return the invisible global type for a module.
32138         * reflection.c (mono_image_build_metadata): Emit global fields too.
32140 2003-05-20  Peter Williams  <peterw@ximian.com>
32142         * loader.c (mono_lookup_internal_call): Add a few newlines.
32144 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32146         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32147         literal strings.
32149         * appdomain.c (set_domain_search_path): Recalculate search path when
32150         AppDomainSetup.PrivateBinPath changes.
32152         * object.c (mono_class_compute_gc_descriptor): It turns out some
32153         parts of the class libs (like System.Thread) holds pointers to
32154         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32155         to treat native int a pointer type here.
32156         
32157 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32159         * appdomain.h, domain.c: add hashtable for jump target resolution.
32161 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32163         * reflection.h reflection.c icall.c: Added new icalls 
32164         GetManifestResourceInfoInternal, GetModulesInternal and support
32165         infrastructure.
32167 2003-05-16  Dick Porter  <dick@ximian.com>
32169         * icall.c:
32170         * file-io.h:
32171         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32173 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32175         * object.c: mono_store_remote_field: little fix to previous patch.
32177 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32179         * class.c: add constructors to array classes.
32180         * icall.c: special case array construction for InternalInvoke (),
32182 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32184         * class.h class.c reflection.c object.c: Added support for field
32185         defaults in dynamically generated classes.
32187 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32189         * reflection.c: properly encode charset for ddlimport.
32191 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32193         * threads.c: allow compiling without GC.
32195 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32197         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32198         handling of thread static data.
32200 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32202         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32204 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32206         * class.c (mono_array_class_get): always set the serializable flags
32207         (mono_array_class_get): always set the SEALED attribute for array types
32209 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32211         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32212         attributes (fix for bug 42021).
32214 2003-05-12  Dick Porter  <dick@ximian.com>
32216         * gc.c: Don't run finalizers when the finalizer thread is
32217         finishing up, because the default domain has already been
32218         destroyed.
32220 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32222         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32223         value is null, we should throw an exception.   This is slightly
32224         different than the other conventions used for the constructor.
32226 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32228         * socket-io.c: fixed windows build.
32230 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32232         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32234 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32236         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32237         compilers.
32239 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32241         * class.c (mono_class_layout_fields): Add experimental GC aware
32242         auto layout facility. Requires class library changes to work correctly.
32244         (mono_class_setup_vtable): Avoid overriding explicit interface
32245         method implementations. Fixes iface3.exe test.
32247         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32248         object reference.
32249         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32250         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32252         * metadata.h: Add new type classification macro which determines
32253         whenever the type holds an object reference.
32255 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32257         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32259 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32261         * gc.c (finalizer_thread): Work around a GC bug.
32263 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32265         * marshal.c (emit_struct_conv): allow unions
32267         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32269 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32271         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32273 2003-05-06  Martin Baulig  <martin@ximian.com>
32275         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32277 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32279         * socket-io.c:
32280         (Select_internal): allow NULLs, don't create arrays if not needed.
32281         Coupled with Socket.cs changes.
32283         * threadpool.c:
32284         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32285         register a finalizer for it that will close the semaphore handle. This
32286         fixes the leak and make Lupus' test run with > 4080 loops.
32288 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32290         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32291         Jerome Laban (bug #42287)
32293 2003-05-02  Martin Baulig  <martin@ximian.com>
32295         * debug-mono-symfile.h
32296         (MonoSymbolFile): Moved declaration into mono-debug.h.
32297         (MonoDebugMethodJitInfo): Likewise.
32298         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32299         argument.
32300         (_mono_debug_address_from_il_offset): Take a
32301         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32303         * mono-debug.h
32304         (MonoDebugDomainData): New struct.
32305         (mono_debug_get_domain_data): New function.
32306         (mono_debug_add_method): Take an additional `MonoDomain *'
32307         argument.
32308         (mono_debug_source_location_from_address): Likewise.
32309         (mono_debug_il_offset_from_address): Likewise.
32310         (mono_debug_address_from_il_offset): Likewise.
32312 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32314         * reflection.c: one more check for null type in custom attrs.
32316 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32318         * reflection.c: avoid warning (comparison is always false due to limited
32319         range of data type).
32321 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32323         * icall.c: throw an exception in Type.GetField if the argument 'name'
32324         is NULL.
32326 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32328         * reflection.c: fixed handling of enums in named arguments to custom
32329         attributes (bug #42123).
32331 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32333         * reflection.c: use the right array element type and handle
32334         a null for a Type argument, too.
32336 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32338         * reflection.c: handle arrays as arguments to custom attributes.
32340 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32342         * reflection.c: handle a string value in a custom attr
32343         ctor that takes an object.
32345 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32347         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32348         (fix bug #42063)
32350 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32352         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32354 2003-04-27  Martin Baulig  <martin@ximian.com>
32356         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32357         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32358         MONO_DEBUGGER_EVENT_BREAKPOINT.
32359         (mono_breakpoint_trampoline_code): Removed.
32360         (mono_debugger_event_handler): The last argument is now a
32361         `guint32'.
32362         (mono_debugger_insert_breakpoint_full): Removed the
32363         `use_trampoline' argument.
32364         (mono_debugger_method_has_breakpoint): Likewise.
32365         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32366         mono_debugger_breakpoint_callback(); take the method and
32367         breakpoint number as arguments.
32369 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32371         * metadata.c: fix off by one when loading parameters attributes.
32373 2003-04-24  Martin Baulig  <martin@ximian.com>
32375         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32377 2003-04-24  Martin Baulig  <martin@ximian.com>
32379         * mono-debug-debugger.c: Moved all code which interacts with the
32380         Mono Debugger here.
32382         * debug-mono-symfile.c: This code now just deals with the symbol
32383         file itself, the debugger code is now in mono-debug-debugger.c.
32385 2003-04-23  Martin Baulig  <martin@ximian.com>
32387         * mono-debug.c (mono_debug_source_location_from_il_offset):
32388         New method; like mono_debug_source_location_from_address(), but
32389         takes an IL offset instead of a machine address.
32391 2003-04-23  Martin Baulig  <martin@ximian.com>
32393         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32394         `line' field; this is now computed by the debugger.
32396 2003-04-23  Martin Baulig  <martin@ximian.com>
32398         * mono-debug.[ch]: New files.  This is the new debugging interface.
32400         * mono-debug-debugger.[ch]: New files.  Moved all code which
32401         interacts with the Mono Debugger here.
32403 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32405         * domain.c (mono_init): initialize mono_defaults.monitor_class
32407 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32409         * reflection.c (method_encode_code): Add a spicy exception to help
32410         future compiler authors.
32412 2003-04-21  Martin Baulig  <martin@ximian.com>
32414         * icall.c
32415         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32416         Make this work with relative pathnames; g_filename_to_uri() needs
32417         an absolute filename.
32419 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32421         * icall.c: Track name changes in Object and ValueType.
32423 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32425         * metadata.c (mono_type_stack_size): size should be a multiple of
32426         sizeof (gpointer)
32428 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32430         * gc.c:
32431         (internal_domain_finalize): moved into mono_domain_finalize. No need
32432         to create another thread because the finalizers will be run in the
32433         finalizer thread.
32434         
32435         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32436         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32437         to be run (MS does this too).
32439 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32441         * object.c (mono_class_compute_gc_descriptor): Update comment.
32443         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32445         * image.h: Add synchronized wrapper cache.
32447         * image.c (do_mono_image_open): Initialize cache.
32449         * reflection.c (create_dynamic_mono_image): Initialize cache.
32451 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32453         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32454         ves_icall_System_Buffer_ByteLengthInternal.
32456 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32458         * reflection.c: setup klass->nested_in earlier. Allow
32459         a dash in the assembly name.
32461 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32463         * metadata.c (mono_type_to_unmanaged): dont access
32464         type->data.klass for MONO_TYPE_OBJECT
32465         (mono_type_to_unmanaged): consider System.Delegate class
32467 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32469         * class.c: just setup supertypes in the proper place instead of
32470         initializing the full element class for arrays.
32472 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32474         * class.c: ensure the element class of arrays is initialized.
32475         Setup the supertype info for array classes, too.
32477 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32479         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32481 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32483         * Makefile.am: re-added -m option when running cygpath. This way,
32484         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32485         separator.
32486         * mono-config.c: same codepath for locating mono config file for WIN32
32487         and the rest.
32488         * assembly.c: if mono_assembly_setrootdir is called, don't override
32489         the value set.
32491 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32493         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32494         MONO_ASSEMBLIES variable.
32496 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32498         * icall.c: added Assembly::GetNamespaces() icall.
32500 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32502         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32504 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32506         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32507         * object.c: fixed bug in the construction of vtable for proxies
32509 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32511         * object.c (mono_array_new): Mark mono_array_new as an icall.
32513 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32515         * class.c: fixed test for public method when overriding interfaces.
32516         Closes bug #40970.
32518 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32520         * appdomain.h, domain.c: added mono_domain_foreach() to
32521         be able to access the currently loaded appdomains.
32522         * object.c: make string interning work across sppdomains.
32523         Mark some functions for use as icalls.
32525 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32527         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32529         * reflection.h reflection.c: Allocate long living data using 
32530         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32532         * reflection.c: Double the allocation size in streams instead of
32533         increasing it, to prevent unneccesary copying on large assemblies.
32534         
32535         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32536         creation if the assembly does not have the Run flag set.
32538 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32540         * class.h: avoid the C++ keywords in header files (Jerome Laban
32541         spotted and fixed this).
32543 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32545         * object.c:
32546         (mono_unhandled_exception): fill in the arguments for the
32547         UnhandledException event. Only trigger that event for the default
32548         domain (as MS does).
32550 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32552         * object.c: Improve typed allocation stuff based on suggestions from
32553         Paolo. Also turn it on if the GC library supports it.
32555 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32557         * object.c object.h class.h: Added experimental typed allocation
32558         facility using the interfaces in gc_gcj.h.
32560         * os/gc_wrapper.h: Added new include files.
32561         
32562 2003-04-03  Martin Baulig  <martin@ximian.com>
32564         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32565         which is not yet enabled by default.
32567         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32568         functions.
32569         (mono_gc_lock, mono_gc_unlock): New static functions.
32571         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32572         functions; stop/start the world for the garbage collector.  This
32573         is using the windows API; we need to complete the SuspendThread()/
32574         ResumeThread() implementation in the io-layer to make this work on Unix.
32575         (mono_gc_push_all_stacks): New public function; tells the garbage
32576         collector about the stack pointers from all managed threads.
32578 2003-04-03  Martin Baulig  <martin@ximian.com>
32580         * object.h (MonoThread): Added `gpointer stack_ptr'.
32582         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32584 2003-04-03  Martin Baulig  <martin@ximian.com>
32586         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32588 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32590         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32591         field.last.
32593 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32595         * loader.c (mono_lookup_internal_call): Report the corlib that is
32596         out of sync.
32598 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32600         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32601         System.DBNull (it's class not valuetype).
32603 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32605         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32606         if the array method was already assigned a token (fixes bug#40646).
32608 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32610         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32611         if no assembly is given.
32613 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32615         * metadata.h: Added the new tables.
32617         * row-indexes.h: Added definitions for new tables.
32619         * metadata.c: Add schemas for new tables, and add support for
32620         computing the sizes of them.
32622         * class.c: Update for handling the new type cases.
32624 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32626         * metadata.h (MONO_TYPE_IS_VOID): new macro
32628 2003-03-31  Martin Baulig  <martin@ximian.com>
32630         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32632         * threads.c (mono_thread_new_init): Call `thread_created' in the
32633         mono_thread_callbacks.
32635 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32637         * loader.h: added marshalbyrefobject_class to mono_defaults
32638         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32639         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32640           generation of output parameters.
32641           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32642         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32643           contextbound and the target object belongs to the context of the caller.
32644         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32645         * object.c: Implemented support for interfaces and abstract classes
32646           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32647           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32649 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32651         * class.h class.c (mono_class_is_subclass_of): New function.
32652         
32653         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32654         routines for most common case (calls from ArrayList::ToArray).
32656         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32657         routine so programs which call Environment::Exit() can be profiled.
32659         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32660         Added MONO_ARCH_SAVE_REGS.
32662         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32664 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32666         * blob.h: Add a couple of new MonoType types definitions.
32668         * tabledefs.h: Add a couple of new call convs.
32670 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32672         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32673         the layout of the class.
32675         * reflection.c (alloc_table): double the size on overflow to avoid
32676         unnecessary copying.
32678         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32679         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32680         null so it can be garbage collected.
32681         
32682 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32684         * reflection.c (mono_reflection_get_type): Return the resolved type
32685         only if it is in the assembly we searched.
32687         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32689         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32690         method.
32692 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32694         * appdomain.c:
32695         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32696         the right one is 'file:///blah', but MS allows it.
32697         * assembly.c:
32698         (mono_assembly_open): allow 'file://blah'
32700         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32702 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32704         * socket-io.c: fixes bug #40310.
32706 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32708         * reflection.c (mono_reflection_parse_type): handle deeply nested
32709         types correctly.
32711         * reflection.c (mono_image_create_token): Use unique token values
32712         since they will be put into a hash table.
32714         * class.c (mono_class_setup_vtable): If a method occurs in more than
32715         one place in the vtable, and it gets overriden, then change the
32716         other occurances too.
32718         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32719         object as return type.
32721 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32723         * icall.c: Deleted "ToString" implementation for double and float
32724         because they are full implemented in managed code.
32726 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32728         * reflection.c, reflection.h: implemented and exported functions
32729         to retrieve info about custom attributes.
32731 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32733         * appdomain.c: moved Uri handling to assembly.c
32734         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32735         work when using a file Uri in *nix and windows.
32737         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32738         GetReferencedAssemblies.
32740 2003-03-18  Dick Porter  <dick@ximian.com>
32742         * icall.c: Rename a couple of internal calls
32744         * threads.c: Set the thread state to Stopped when a thread exits.
32745         Fixes bug 39377.
32747 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32749         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32750         New icall.
32752         * object.c (mono_class_vtable): fix warning.
32754 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32756         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32758         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32759         memory.
32760         (method_encode_clauses): Create exception info structures in the right
32761         order.
32762         (mono_reflection_setup_internal_class): Initialize supertypes field.
32764         * class.c object.c: Handle interfaces which implement other interfaces 
32765         correctly.
32767         * class.h class.c: Move the supertypes array initialization code into 
32768         a separate function so it can be used for dynamic types too. Also call
32769         it earlier, in mono_class_init(), since it can be used before the
32770         type is initialized.
32772 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32774         * Makefile.am:
32775         * assembly.c:
32776         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32778         * appdomain.c:
32779         * appdomain.h:
32780         * marshal.c:
32781         * object.c: remove warnings.
32783 2003-03-13  Martin Baulig  <martin@ximian.com>
32785         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32786         (MonoDebugLexicalBlockEntry): New types.
32788         * debug-mono-symfile.c
32789         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32791 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32793         * process.c: ret can be any non-zero value accroding to MS doc.
32795 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32797         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32798         fixing a warning for a miss-used prototype, would have cause
32799         random memory corruption.
32801 2003-03-07  Martin Baulig  <martin@ximian.com>
32803         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32804         getting really annoying ....
32806 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32808         * reflection.c (fixup_method): added support for array methods.
32810 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32812         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32813         (pointed out by Michael Adams).
32815 2003-03-04  Dick Porter  <dick@ximian.com>
32817         * icall.c: Temporarily reverted the Double and Single ToString()
32818         change, because it broke nunit.
32820 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32822         * object.h, threads.h: make include files compatible with C++
32823         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32825 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32827         * icall.c: Erased ToString helper functions for Double and Single.
32828         Now, that implementations ar all in managed code (Double and Single
32829         Formatters).
32831 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32833         * appdomain.c: Added method for initializing the default context of
32834         a domain. Added internal call for getting the default context.
32835         * appdomain.h: Added context variable in MonoDomain struct.
32836         * domain.c: mono_domain_set also sets the default context of the domain
32837         * icall.c: Mapped internal method InternalGetDefaultContext.
32838         * object.c: mono_object_get_virtual_method returns always a remoting
32839         wrapper if the object is a transparent proxy.
32840         mono_runtime_invoke_array: when creating an object by calling the
32841         constructor, if the created object is a proxy, then the constructor should
32842         be called using the a remoting wrapper.
32844 2003-03-03  Dick Porter  <dick@ximian.com>
32846         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32847         variable so it compiles on solaris.  Problem spotted by
32848         Christopher Taylor <ct@cs.clemson.edu>
32850 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32852         * appdomain.c:
32853         (get_info_from_assembly_name): don't leak value.
32855         * icall.c:
32856         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32857         result.
32859 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32861         * assembly.c: export mono_image_load_references ().
32862         * class.c: handle function pointers. mono_class_from_name() now
32863         supports nested type names directly.
32865 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32867         * reflection.h reflection.c: Encode already created dynamic methods 
32868         and fields correctly as a DEF instead of a REF.
32870         * reflection.c: Get rid of the force_ref argument to 
32871         mono_image_typedef_or_ref since it was wrong in the first place.
32873         * string-icalls.c: add error checking to string constructors according
32874         to the MSDN docs.
32876         * reflection.c: Emit types in the order their TypeBuilders were 
32877         created. Previously, a new table index was assigned to each type before
32878         the tables were emitted. This was wrong because the signature blob
32879         might already refer to a type by its original table index.
32881 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32883         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32884         change.
32885         
32886 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32888         * Makefile.am: make assemblies dir have \ instead of / on windows.
32890 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32892         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32893         iterate over the NESTEDCLASS table using a linear search since the
32894         table is not guaranteed to be sorted by the secondary key.
32896         * class.c (mono_class_create_from_typedef): fixed up call to
32897         mono_metadata_nesting_typedef.
32898         
32899 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32901         * marshal.c (mono_string_to_byvalstr): clear the memory as
32902         suggested by Jerome Laban <jlaban@wanadoo.fr>
32904 2003-02-26  Dick Porter  <dick@ximian.com>
32906         * process.c: Cope with padding in .rsrc blocks
32908 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32910         * metadata.h: reverted the filter_len change, it breaks reflection
32911         
32912 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32914         * metadata.h: added a new field to store the filter_len
32915         
32917 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32919         * reflection.c: handle custom attributes for types and members
32920         created with Reflection.Emit (bug#38422).
32922 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32924         * reflection.c: define RTSpecialName automatically for constructors for
32925         compatibility with MS.NET.
32927         * reflection.c (mono_reflection_create_runtime_class): initialize
32928         nested_in field of dynamically created classes.
32930 2003-02-22  Martin Baulig  <martin@ximian.com>
32932         * debug-mono-symfile.h: Incremented version number.
32934 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32936         * object.h icall.c process.c: fix warnings.
32938 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32940         * appdomain.h appdomain.c:
32941         (mono_domain_try_type_resolve): split the 
32942         name_or_tb argument into a name and a tb argument.
32943         (mono_domain_has_type_resolve): new function to check whenever the
32944         application has registered a TypeResolve event handler.
32945         
32946         * icall.c reflection.h reflection.c: move the type resolve logic into
32947         mono_reflection_get_type () so it will be invoked when 
32948         Assembly::GetType () is called.
32950         * reflection.c:
32951         (mono_reflection_get_type): renamed to get_type_internal.
32952         (mono_reflection_get_type): fixed type name generation so it works 
32953         for nested types too.
32954         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32955         costly type name generation if there is no resolve event handler.
32957 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32959         * class.c, image.c: load exported types from file references.
32961 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32963         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32964           used to cache the managed methods used to create proxies and make 
32965           remote invocation of methods.
32966         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32967           to be remotely created.
32968         * object.c: Modified the method mono_class_vtable(). It now initializes 
32969           the remote flag of the vtable. Modified mono_object_new_specific(), 
32970           so now it checks the remote flag.
32971         * icall.c: Added a couple of internal methods, one for enabling instance 
32972           creation interception for a type, and one for creating objects bypassing
32973           the remote check.
32975 2003-02-18  Martin Baulig  <martin@ximian.com>
32977         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32978         New interncall to get a method's metadata token.
32980         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32981         New interncall for the debugger.
32983 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32985         * class.c (mono_class_setup_vtable): allocate supertype array
32987 2003-02-18  Martin Baulig  <martin@ximian.com>
32989         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32991 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32993         * reflection.c:
32994         (assembly_name_to_aname): jump over unknown properties (i've found
32995         something like: 'type, assembly, version=xxx, custom=null, public...',
32996         so now will ignore custom=null and still get the rest of the values).
32998 2003-02-17  Dick Porter  <dick@ximian.com>
33000         * threads.c: Have Thread.Start() wait for a semaphore to signal
33001         that the thread has set up all its local data.  This fixes bug
33002         34323, where Abort() raced the new thread's TLS data.
33004         Also removes the handle_store() call from start_wrapper, because
33005         threads are now always created suspended and there is no longer a
33006         race between the parent and child threads to store the info.
33008 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33010         * image.c: explain the #- heap issue in a message, hopefully
33011         avoiding FAQs on mono-list.
33013 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33015         * icall.c:
33016         (GetEntryAssembly): if the domain has not invoked
33017         AppDomain.ExecuteAssembly yet, return the assembly of the default
33018         AppDomain.
33020 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
33022         * class.c (mono_ldtoken): make it work in dynamic assemblies.
33024 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33026         * metadata.c, reflection.c: simple speedup to type hash
33027         and equals code.
33029 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33031         * image.c, image.h, class.c, assembly.c: move module loading
33032         to MonoImage. When loading metadata, consider alignemnet from
33033         the start of metadata, not from the metadata address in memory.
33035 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
33037         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
33038         AssemblyBuilder objects. Factored out custom attribute creation into
33039         a separate function.
33040         (create_custom_attr): new function to create custom attributes.
33042 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33044         * Makefile.am: Got tired of typing the full pathname to pedump.
33045         Until there is another option, am installing this.
33047 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33049         * class.c (class_compute_field_layout): always set field->parent 
33050         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33052 2003-02-11  Dick Porter  <dick@ximian.com>
33054         * threads-types.h:
33055         * monitor.c: Rewrote Monitor, making lock much faster and
33056         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33057         creates them as needed.
33059         * exception.c: Added SynchronizationLockException
33061         * threads.c: Deleted old Monitor implementation.  The new one is
33062         in a new file.
33064 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33066         * class.c: handled TypedReference type code. Set the correct size for
33067         class data. Setup interface_offsets for interface classes, too.
33069 2003-02-09  Martin Baulig  <martin@ximian.com>
33071         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33073 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33075         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33076         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33077         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33078         * verify.c: check for code that runs after the end of the method.
33080 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33082         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33083         "System.Math::Round2".
33084         * sysmath.h: Added Floor, Round and Round2 definitions.
33085         * sysmath.c: Modified certain functions that were not 100% compliant
33086         with MS.NET (math precision) and added the implementation of Floor,
33087         Round and Round2.
33089 2003-02-07  Martin Baulig  <martin@ximian.com>
33091         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33093 2003-02-07  Martin Baulig  <martin@ximian.com>
33095         * debug-mono-symfile.c: Reflected latest symwriter changes.
33096         (mono_debug_create_mono_symbol_file): Removed.
33097         (mono_debug_open_mono_symbol_file): Take an argument which
33098         specifies whether to create a dynamic symbol file.
33100 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33102         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33104 2003-02-05  Martin Baulig  <martin@ximian.com>
33106         * reflection.c (mono_image_build_metadata): Make this public,
33107         protect it against being called multiple times, don't create
33108         resources and don't build the compressed metadata here.
33109         (mono_image_create_pefile): Do this here.
33111         * icall.c
33112         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33114 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33116         * socket-io.c: fixed bug #36322.
33118 2003-02-06  Piers Haken <piersh@friskit.com>
33120         * appdomain.[ch]:
33121         * class.h:
33122         * debug-mono-symfile.c:
33123         * icall.c:
33124         * loader.c:
33125         * mono-config.c:
33126         * monosn.c:
33127         * reflection.c:
33128         * socket-io.c: warning cleanups
33130 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33132         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33133         function. works like remoting invoke, but does a check for the Proxy first.
33135 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33137         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33139 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33141         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33142         array of pointers.
33143         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33144         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33146         * object.c (mono_store_remote_field_new): used by the new jit
33147         instead of mono_store_remote_field
33148         (mono_load_remote_field_new): used by the new jit
33149         instead of mono_load_remote_field
33151 2003-02-05  Patrik Torstensson
33153         * appdomain.c: changed unload to take the domain id instead
33154         of domain
33155         
33156         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33159 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33161         * appdomain.c: don't look for assemblies in ApplicationBase if
33162         PrivateBinPathProbe is set.
33164 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33166         * object.c: make the first argument in main_args contain the absolute
33167         path to the assembly. Fixes bug #37511.
33169 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33171         * icall.c: get correct UTC offset for countries not using daylight
33172         time saving. Fixes bug #30030.
33174 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33176         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33177         and 1 are the family).
33179 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33181         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33183         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33185 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33187         * reflection.c: added support for SignatureHelper tokens, which is
33188         needed by the Calli opcode.
33190         * reflection.h: track changes to SignatureHelper class.
33192         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33194 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33196         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33198 2003-02-03  Patrik Torstensson
33199         * appdomain.[c|h], domain.c : 
33200          - Added support for getting a domain via domain id
33201          - Support for setting and getting domain from System.AppDomain 
33202            (used in cross appdomain channel)
33203          - Added support for get/set for a MonoAppContext on a thread 
33204            (Context class in System.Runtime.Remoting.Contexts),
33205          - Removed hack in Get/SetData and ExecuteAssembly.
33206         
33207         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33208         the managed world to get control when a proxy is created.
33210         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33211         
33212 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33214         * icall.c
33215         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33216         Populate the codebase field as well.
33218 2003-02-02  Martin Baulig  <martin@ximian.com>
33220         * debug-mono-symfile.c
33221         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33222         (mono_debug_symfile_add_method): Allow interncalls.
33224 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33226         * icall.c: throw parse exception if strtod fails or the string is empty.
33228 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33230         * marshal.c: handle object type separately from defined
33231         class types.
33233 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33235         * marshal.c: handle NATIVE_LPSTR for strings when it's
33236         explicitly specified.
33238 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33240         * reflection.c, reflection.h, icall.c: setup the reflection
33241         handle cache for ModuleBuilders and AssemblyBuilders.
33243 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33245         * reflection.c (reflection_methodbuilder_to_mono_method): set
33246         pinvoke flag
33248 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33250         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33252 2003-01-29  Dick Porter  <dick@ximian.com>
33254         * threads.c: No need for the fake_thread kludge now that Thread
33255         doesn't run a class constructor
33256         
33257 2003-01-29  Dick Porter  <dick@ximian.com>
33259         * threads.c: Use g_direct_hash instead of the rather bogus
33260         g_int_hash
33262 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33264         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33265         (fix pinvoke12.exe)
33266         (mono_marshal_get_struct_to_ptr): generate valid IL code
33267         (mono_marshal_get_ptr_to_struct): generate valid IL code
33268         (*): correctly set sig->pinvoke, we need to memdup the signature
33269         to do that
33271 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33273         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33274         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33276 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33278         * profiler.c: provide more callers information.
33280 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33282         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33284         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33286         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33288 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33290         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33291         exception instead of going into an infinite loop on dates which it 
33292         can't yet handle.
33294         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33295         out-of-range exception if needed.
33297         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33298         an implementation for an interface method and to override an inherited
33299         method at the same time. 
33300         Imagine a scenario when a virtual method is used to override a
33301         virtual abstract method in a parent class, and this same method 
33302         provides an implementation for an method inherited from an interface. 
33303         In this case, the interface resolution code will set im->slot, which 
33304         means that the virtual method override pass will skip this method 
33305         which means a pointer to the abstract method inherited from the parent
33306         will remain in the vtable of this non-abstract class.
33308         * class.c: (mono_class_setup_vtable): continue search for a real 
33309         method if only an abstract method is found.     
33311 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33313         * reflection.c: add size to encoding for ByValStr and ByValArray
33314         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33316 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33318         * class.c (mono_class_setup_vtable): pass the override info as an
33319         argument.
33321         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33322         correctly.
33323         
33324         * reflection.c (ensure_runtime_vtable); add support for method 
33325         overrides.
33326         
33327 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33329         * reflection.c (resolution_scope_from_image): Hack to work to work with
33330         dynamic assemblies.
33332         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33333         added a 'force_ref' argument to force this function to allways return 
33334         a TypeRef. This is needed by mono_image_get_memberref_token ().
33335         
33336 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33338         * reflection.c (mono_image_get_type_info): interfaces really don't have
33339         a parent.
33341         * reflection.c (mono_image_basic_init): fill out missing fields of
33342         image structure.
33344         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33345         dynamic assemblies. This is required so dynamic assemblies show up in
33346         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33347         Type::GetType() etc. This is consistent with MS behaviour.
33349         * image.c image.h reflection.c: add newly created classes to the name 
33350         cache so mono_class_get () will find them.      
33352 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33354         First part of changes to get IKVM.NET running under mono.
33355         
33356         * appdomain.h, appdomain.c: added new function 
33357         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33358         This function will call AppDomain::DoTypeResolve to do the actual work.
33360         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33361         moved existing code dealing with dynamic tokens to a new function 
33362         called mono_reflection_lookup_dynamic_token (). This function will 
33363         raise TypeResolve events when appropriate. Since reflection.c is not 
33364         part of libmetadata, a new hook function called 
33365         mono_lookup_dynamic_token() is added to class.c which will call this.
33367         * assembly.h assembly.c: make the invoke_load_hook function public,
33368         so it can be called for dynamic assemblies.
33370         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33372         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33373         type isn't found.
33375         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33376         MonoGHashTable, since it contains pointers to objects which the GC 
33377         needs to track.
33379         * assembly.c (search_loaded): remove unused variable.
33380         
33381 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33383         * object.c: fixed issue exposed by gcc-generated IL programs
33384         that use RVA data for pointers.
33386 2003-01-25  Martin Baulig  <martin@ximian.com>
33388         * threads.c (start_wrapper): Moved the initialization of
33389         `start_func' above the mono_new_thread_init() call to which we
33390         pass it as argument.
33392 2003-01-24  Martin Baulig  <martin@ximian.com>
33394         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33395         the MonoThread pointer.
33397 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33399         * icall.c: Rename `PowImpl' to Pow.
33401 2003-01-23  Dick Porter  <dick@ximian.com>
33403         * threads.c (start_wrapper): Create a Thread object if needed, so
33404         the Main() thread can do the class initialisation in a subthread
33405         that has been set up to allow managed code execution.
33407         Pass the thread ID instead of the MonoThread pointer to the thread
33408         start and attach callbacks.  This change is required, because the
33409         jit thread start callback must be called _before_ the Thread
33410         object can be created.
33411         
33412         (mono_thread_init): Removed much object creation code that is no
33413         longer needed.  No managed code is called from here now.
33415         * object.c (mono_runtime_exec_managed_code): Create a subthread
33416         for Main, and call back to the runtime to use it.
33417         Set the exit code when Main exits.
33419         * gc.c: Make sure domain finalisation happens in a subthread.
33420         Re-enable threaded GC, fixing bug 31333 (again).
33422         * environment.c: System.Environment internall calls (so far just
33423         ExitCode is here, the others are still in icall.c)
33425         * appdomain.c (mono_runtime_cleanup): All threads running managed
33426         code should have finished before mono_runtime_cleanup() is
33427         reached, so no need to clean up threads.
33429 2003-01-22  Martin Baulig  <martin@ximian.com>
33431         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33432         `gpointer func' arguments.      
33433         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33434         but added `MonoThread *thread' argument.
33435         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33437         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33438         and pass it to the mono_thread_start_cb callback.
33439         (mono_install_thread_callbacks): New public function to install a
33440         set of callbacks which are set by the debugger.
33441         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33443 2003-01-22  Martin Baulig  <martin@ximian.com>
33445         * Makefile.am: Install debug-mono-symfile.h.
33447 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33449         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33451 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33453         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33454         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33455         (mono_array_class_get): correctly set access levels of arrays
33457 2003-01-20      Patrik Torstensson
33458         * image.h (MonoAssemblyName): changed major, minor, build, revision
33459         from signed to unsigned.
33461 2003-01-20  sean kasun <skasun@azstarnet.com>
33463         * reflection.c (load_cattr_value): Now this handles
33464         MONO_TYPE_SZARRAY.  Fixes bug #35629
33466 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33468         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33469         integer value
33471 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33473         * decimal.c: fixed bug #26056.
33475 2003-01-17  Martin Baulig  <martin@ximian.com>
33477         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33479 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33481         * exception.[ch]:
33482         (mono_get_exception_type_initialization): new function.
33484         * object.c: throw a TypeInitializationException when an exception is
33485         thrown invoking the class constructor.
33487 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33489         * reflection.c: fixed attribute reading.
33491 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33493         * icall.c:
33494         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33495         provided, look for the type in the calling assembly and then in
33496         mscorlib; if the assembly name is provided, only try that one.
33498 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33500         * object.c: register the vtable before there is a chance it's
33501         queried again recursively.
33503 2003-01-13  Duncan Mak  <duncan@ximian.com>
33505         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33506         gc-internal.h. 
33507         
33508 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33510         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33512 2003-01-11  Martin Baulig  <martin@ximian.com>
33514         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33515         this to 20 for the release.
33517 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33519         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33521         * loader.c (mono_method_get_marshal_info): bug fix
33523         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33524         structures with explicit layout
33526 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33528         * profiler.c: made the output more readable (and sorted). 
33529         Added caller information for the allocation profiler.
33531 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33533         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33535 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33537         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33538         to get value types.
33539         
33540 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33542         * object.c, profiler.h, profiler.c, profiler-private.h:
33543         Added object allocation profiler.
33545 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33547         * reflection.h, reflection.c: handle global methods.
33548         Compress blob entries.
33550 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33552         * marshal.c: fix compilation.
33554 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33556         * loader.c (mono_method_get_marshal_info): impl.
33558         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33560 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33562         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33563         for reference types.
33565 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33567         * loader.c: fixed off by one error in loaded parameter names.
33569 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33571         * marshal.c (mono_marshal_get_icall_wrapper): like
33572         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33573         instead of a MonoMethod.
33575 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33577         * decimal.c: fixed bug #36537.
33579 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33581         * marshal.c: throw a missing method exception if a
33582         P/Invoke method is not found.
33584 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33586         * icall.c: allow a null this for constructors.
33588 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33590         * icall.c: raise the proper exceptions if the arguments to the
33591         internal Invoke are incorrect.
33593 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33595         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33597 2003-01-03  Martin Baulig  <martin@ximian.com>
33599         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33601 2002-12-31  Martin Baulig  <martin@ximian.com>
33603         * debug-mono-symfile.c: Completely rewrote the type section.
33604         Instead of using individual malloc()ed fields, we use one big
33605         continuous memory area and offsets into this area.
33606         See the comments in the source code for details.
33608 2002-12-30  Martin Baulig  <martin@ximian.com>
33610         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33612 2002-12-30  Martin Baulig  <martin@ximian.com>
33614         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33615         line number table in this data blob instead of using an external
33616         pointer.
33618 2002-12-28  Martin Baulig  <martin@ximian.com>
33620         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33622 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33624         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33625         as a boxed return type.
33627 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33629         * appdomain.c
33630         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33631         g_build_filename to properly get separators on the filename created.
33633         * object.h: Small change, introduce MonoMarshalByRefObject to
33634         track the layout of that structure in the C# universe as we make
33635         changes there.
33637 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33639         * object.c: removed assert to allow static fields on interfaces.
33640         * loader.c: a TypeSpec may be used for any type, not just arrays.
33642 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33644         * class.c, class.h: added mono_class_array_element_size ().
33645         Ignore static methods in interfaces.
33647 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33649         * threads.c: fixed the build under cygwin.
33651 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33653         * reflection.c: handle nullref constants. Allocate keys for
33654         reflection handles with the GC.
33656 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33658         * threads.c, threads.h: added mono_thread_get_abort_signal()
33659         to get a suitable signal for thread abort.
33661 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33663         * metadata.c: fix handling of ExportedType table.
33665 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33667         * icall.c: added WriteWindowsDebugString internal call.
33669 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33671         * reflection.h: added fields to match C# implementation.
33673 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33675         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33677 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33679         * gc.h, gc-internal.h: Rename header for GC internal calls to
33680         gc-internal.h from gc.h as to not clash with Boehm GC having its
33681         header installed as <gc.h> in outside include paths.
33682         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33683         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33685 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33687         * icall.c: assign minor, build and revision in FillName.
33689 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33691         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33692         Added support for running code generated by Reflection.Emit.
33694 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33696         * appdomain.c: check for NULL argument in LoadFrom.
33698 2002-12-10  Dick Porter  <dick@ximian.com>
33700         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33702 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33704         * appdomain.c: fix buglet when building exe file name.  Handle full
33705         assembly name (needed after latest changes to AssemblyName).
33706         * image.c:
33707         (mono_image_close): free some hashtables.
33709 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33711         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33712         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33713         on some systems (redhat 7.3) 
33715 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33717         * threads.c: delete the critical section of a sync block,
33718         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33720 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33722         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33724 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33726         * appdomain.[ch]: handle the assembly preload event to try loading the
33727         assemblies using the paths we have in the current domain.
33729         * assembly.[ch]: created an assembly preload hook that is called to try
33730         loading the assembly by other means that the ones provided here.
33732         * domain.c: initialize the domain search path.
33734         From now on, assemblies (TODO: except corlib and System) are loaded
33735         according to these rules when using mono_assembly_load ():
33737                 1. It tries to load the assembly from the ApplicationBase
33738                 of the current domain appending .dll and .exe (TODO: have to
33739                 try loading from name/name.dll and name/name.exe).
33741                 2. It tries the search path specified in PrivateBinPath for the
33742                 current domain (if any).
33744                 3. Previous behavior.
33746 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33748         * icall.c: implemented GetInterfaceMap() related icall.
33749         * domain.c, loader.h: load MethodInfo in mono_defaults.
33751 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33753         * gc.c: disable the finalizer thread for now, untill all the issues
33754         with it are resolved.
33756 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33758         * string-icalls.c: handle embedded nulls in string ctor when the
33759         length is specified.
33761 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33763         * class.c: look for explicit interface implementation in parent
33764         classes, too.
33766 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33768         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33770 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33772         * gc.c: protect handles with a critical section.
33774 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33776         * icall.c:
33777         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33778         parameters. If no assembly specified, try getting the type from all
33779         the assemblies in the current domain, else, load the assembly and get
33780         the type from it.
33782 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33784         * marshal.c: applied patch from Aleksey Demakov that fixes
33785         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33787 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33789         * icall.c: fixed get_location.
33791 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33793         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33794         declarations to make it work with older gcc. 
33796         * loader.c (mono_get_method): set signature->pinvoke for native calls
33798 2002-11-20  Dick Porter  <dick@ximian.com>
33800         * threads.c (mono_thread_init): Set the main thread's handle
33802 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33804         * gc.c: allow compilation without GC support. Changed to match the
33805         mono coding style.
33807 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33809         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33811 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33813         * reflection.c: set a public key token on the core assemblies.
33815 2002-11-18  Dick Porter  <dick@ximian.com>
33817         * threads.c: Split out some thread initialisation so that other
33818         files can set the start callback function.
33820         * gc.c: Run finalisers in a separate thread, to avoid stack
33821         overflow.  Fixes bug 31333.
33823         * appdomain.c: Set up GC finalisation thread.
33825         * reflection.c: 
33826         * object.c: 
33827         * domain.c: Use gc.h macros for GC_malloc
33828         
33829 2002-11-15  Dick Porter  <dick@ximian.com>
33831         * threadpool.c: 
33832         * threads.c:
33833         * appdomain.c: Removed mono_runtime_init_with_attach(),
33834         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33835         merging the extra parameter with the existing function.  Removed
33836         unneeded code in mono_thread_attach().
33838 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33840         * image.c (mono_image_loaded_by_guid): a method to get loaded
33841         images by guid. 
33842         (load_metadata_ptrs): we store the guid as string.
33844 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33846         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33848         * metadata.c (mono_guid_to_string): imported method form Zoltan
33849         Varga (slightly modified)
33851         * assembly.c (mono_assembly_open): load precompiled code
33853         * loader.h (MonoMethod): we store the method token for use in the
33854         aot compiler. 
33856 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33858         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33859         the hook function called when an assembly is loaded.
33860         
33861         * domain.c: Modified file.
33862         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33864         Fixes bug #33196.
33866 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33868         * reflection.c: Map PEFileKind to the value expected by the WinNT
33869         image loader. 
33871 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33873         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33874         Read until the buffer is filled completely.
33876 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33878         * icall.c: implemented MonoType.InternalGetEvent ().
33880 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33882         * appdomain.c: implemented InitAppDomainSetup. Delayed
33883         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33884         the entry_assembly.
33886         * assembly.c: base_dir is now an absolute path ending with
33887         G_DIR_SEPARATOR.
33889         * icall.c: modified get_location according to the above changes.
33891         * object.c: init AppDomain.SetupInformation for the default domain after
33892         we have the entry assembly.
33894         * domain.c: when unloading a domain, setup = NULL.
33896 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33898         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33900 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33902         * object.h, object.c: introduced mono_object_get_virtual_method ()
33903         to lookup the method invoked on an object when a callvirt is done on
33904         a method.
33905         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33907 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33909         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33910         current domain when loaded an assembly and failed to load it.
33912         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33914 2002-10-31  Dick Porter  <dick@ximian.com>
33916         * icall.c: 
33917         * file-io.h: 
33918         * file-io.c: Return the error status in a parameter, as the
33919         GetLastError() value has long since been blown away if we try and
33920         look it up in a subsequent internal call invocation.  Delete the
33921         GetLastError() internal call, because it's useless.
33923 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33925         * class.[ch]: added cast_class to fix bug 29517
33927 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33929         * marshal.c: create valid IL code in the filter clause:
33930         the new JIT is less forgiving:-)
33932 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33934         * icall.c: removed get_property internal call.
33936 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33938         * appdomain.h domain.c: Added an ID to appdomains.
33939         
33940         * threads.c threads.h icall.c: Implement icall
33941         Thread:GetDomainID(), and remove unused icall 
33942         CurrentThreadDomain_internal.
33944 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33946         * icall.c: Don't recurse through the base types in GetConstructor.
33947         Fixes bug #32063. 
33949 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33951         * mempool.h, mempool.c: added mono_mempool_empty() and
33952         mono_mempool_stats().
33954 2002-10-23  Dick Porter  <dick@ximian.com>
33956         * file-io.c: 
33957         * file-io.h: 
33958         * icall.c: Added MonoIO.GetFileType internal call
33960 2002-10-17  Dick Porter  <dick@ximian.com>
33962         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33963         delegate semaphore before waiting for all threads to finish,
33964         because new threads can also call async delegates.  Fixes bug
33965         32004.
33967         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33968         of 3 seconds, in case another async job is queued.  (This part is
33969         needed because the bug fix reintroduced the 3s exit lag.)  This
33970         makes the mono_runtime_shutdown flag superfluous.
33972 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33974         * reflection.c: include ehader size in method section headers.
33975         Really check for suplicated modules entries.
33977 2002-10-17  Martin Baulig  <martin@gnome.org>
33979         * debug-mono-symfile.c: Added back support for locals.
33981 2002-10-14  Martin Baulig  <martin@gnome.org>
33983         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33984         MONO_TYPE_VOID.
33986 2002-10-14  Martin Baulig  <martin@gnome.org>
33988         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33989         mono_class_get() instead of looking in the class cache. 
33991 2002-10-13  Martin Baulig  <martin@gnome.org>
33993         * debug-mono-symfile.c: Set version number to 28, include the
33994         signature in method names.
33996 2002-10-13  Martin Baulig  <martin@gnome.org>
33998         * debug-mono-symfile.h: Set version number to 27.
34000 2002-10-11  Martin Baulig  <martin@gnome.org>
34002         * gc.c: Don't register/unregister NULL pointers as disappearing links.
34004 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34006         * metadata.c, metadata.h: added helper function to allocate signatures.
34008 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34010         * icall.c: added internal call to get the location of machine.config.
34012 2002-10-08  Martin Baulig  <martin@gnome.org>
34014         * debug-mono-symfile.c: Ignore classes with a pending init for the
34015         moment.
34017 2002-10-03  Dick Porter  <dick@ximian.com>
34019         * threads.c: Freebsd pthread_t is a pointer
34021 2002-10-03  Dick Porter  <dick@ximian.com>
34023         * socket-io.c: Implemented GetHostName_internal
34025 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34027         * mono-config.c:
34028         (mono_config_parse_file): don't leak the text.
34030 2002-10-02  Martin Baulig  <martin@gnome.org>
34032         * debug-mono-symfile.c: Added support for methods.
34034 2002-10-01  Martin Baulig  <martin@gnome.org>
34036         * debug-mono-symfile.c: Don't emit methods and line numbers for
34037         the dynamic symbol file, just write the type table.  We can easily
34038         have an external helper program which creates a symbol file for an
34039         IL file.        
34041 2002-10-01  Dick Porter  <dick@ximian.com>
34043         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34044         Only add the handle to the cleanup array when we're about to
34045         launch the thread.  Bug 31425 deadlocked when the test was run on
34046         mono under w32.
34048 2002-10-01  Martin Baulig  <martin@gnome.org>
34050         * debug-mono-symfile.c: Added support for properties.
34052 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34054         * reflection.c: unaligned store fix from Mark Crichton
34055         <crichton@gimp.org>.
34057 2002-09-27  Martin Baulig  <martin@gnome.org>
34059         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34060         New interncall.
34062 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34064         * assembly.h, assembly.c: use a sane API to hook into the assembly
34065         loading process instead of a useless special-purpouse hack
34066         (ngen needs a hook, too, for example).
34068 2002-09-27  Dick Porter  <dick@ximian.com>
34070         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34071         io-layer can set up some process handle info.  Not needed on w32,
34072         but doesn't hurt either.
34074         * process.c: Pass the program name in the second parameter to
34075         CreateProcess, so the path is searched.  Include the working
34076         directory. Implemented process name, process enumeration, and some
34077         process detail internal calls.
34078         
34079         * icall.c: Added internal calls for process lookup, and some
34080         process details
34082 2002-09-26  Martin Baulig  <martin@gnome.org>
34084         * assembly.c (mono_install_open_assembly_hook): New global
34085         function to install a function to be invoked each time a new
34086         assembly is loaded.
34087         (mono_assembly_open): Run this callback function if set.
34089         * debug-mono-symfile.c: Put back line numbers for the dynamic
34090         symbol file and also record the .il file as source file.  This
34091         allows us to install the temporary symbol file as `file.dbg' just
34092         like a compiler-generated one.
34094 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34096         * Corrected typo in gc.c (BOHEM vs BOEHM).
34098 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34100         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34101         GetProperties. Also avoid calling g_slist_length in GetProperties and
34102         GetMethods.
34104 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34106         * reflection.c: avoid unaligned stores (bug spotted by
34107         Mark Crichton  <crichton@gimp.org>).
34109 2002-09-25  Martin Baulig  <martin@gnome.org>
34111         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34112         instead of guint64 for addresses and added prologue/epilogue info.
34114 2002-09-25  Martin Baulig  <martin@gnome.org>
34116         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34117         store line number info.  For the dynamic symbol file, we only need
34118         to provide the JIT generated dynamic line number info for the dynamic
34119         symbol file.
34121 2002-09-25  Martin Baulig  <martin@gnome.org>
34123         * debug-mono-symfile.h: Incremented version number.
34125 2002-09-24  Martin Baulig  <martin@gnome.org>
34127         * class.c (mono_debugger_class_init_func): New global function
34128         pointer variable.
34129         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34130         call it.
34132         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34133         function.  This is called via the mono_debugger_class_init_func
34134         hook to add all types to the dynamic type table.
34135         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34136         from its metadata token.
34138         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34139         New interncall for the debugger.
34141 2002-09-24  Nick Drochak <ndrochak@gol.com>
34143         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34144         before using it in case it is null.
34145         
34146 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34148         * metadata.c: allow custom modifiers in local var signatures
34149         (bug spotted by Zoltan Varga).
34151 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34153         * class.c: deal with the <Module> class that may have a NULL vtable.
34154         Eliminate warnings.
34156 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34158         * image.c, image.h: more strong name helpers.
34159         * monosn.c: more work: convert pem keys to cryptoapi format.
34161 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34163         * string-icalls.c: speedup IndexOf.
34165 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34167         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34169 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34171         * icall.c: cleanup: use mono_object_domain ().
34173 2002-09-23  Martin Baulig  <martin@gnome.org>
34175         * debug-mono-symfile.c: Improved type support.
34177 2002-09-22  Martin Baulig  <martin@gnome.org>
34179         * debug-mono-symfile.c: Added support for reference types and strings.
34181 2002-09-22  Martin Baulig  <martin@gnome.org>
34183         * debug-mono-symfile.c: Started to work on the type table.
34185 2002-09-21  Martin Baulig  <martin@gnome.org>
34187         * debug-mono-symfile.c: Largely reworked the symbol table format.
34188         The symbol table is now incrementally updated each time a new
34189         method is added.  We're now also using our own magic and version
34190         so that you don't need to recompile all your classes if the
34191         dynamic table changes.
34192         (mono_debug_update_mono_symbol_file): Removed.
34193         (mono_debug_symfile_add_method): New function to add a method.
34195 2002-09-21  Martin Baulig  <martin@gnome.org>
34197         * icall.c
34198         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34199         New interncall.
34201         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34202         New interncall to get a method from its metadata token.
34204 2002-09-21  Martin Baulig  <martin@gnome.org>
34206         * debug-mono-symfile.c: Create type table.
34208 2002-09-20  Martin Baulig  <martin@gnome.org>
34210         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34212 2002-09-20  Martin Baulig  <martin@gnome.org>
34214         * debug-mono-symfile.c: Provide information about params and locals.
34216 2002-09-20  Martin Baulig  <martin@gnome.org>
34218         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34219         New interncall.
34221         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34222         interncall to get a method from its metadata token.
34224 2002-09-20  Martin Baulig  <martin@gnome.org>
34226         * debug-mono-symfile.c: Added a few checks for method->header
34227         being non-NULL.  This should never happen, but for the moment
34228         let's use a g_warning() rather than a g_assert().
34230 2002-09-19  Mark Crichton  <crichton@gimp.org>
34232         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34233         even if support for it isn't present.  Added an #ifdef to fix this.
34235         * socket-io.c: Added checks back for Solaris support.
34237 2002-09-19  Martin Baulig  <martin@gnome.org>
34239         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34240         changes in the symbol file format.
34242 2002-09-18  Martin Baulig  <martin@gnome.org>
34244         * debug-mono-symfile.c: Set version number to 21.
34246 2002-09-18  Dick Porter  <dick@ximian.com>
34248         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34249         on netbsd.  Fixes bug 30051.
34251 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34253         * reflection.c:
34254         (set_version_from_string): little fix.
34256 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34258         * monosn.c, Makefile.am: added strong name utility.
34259         * reflection.h, reflection.c: implemented delayed signing,
34260         locale, version and hash id assembly attributes.
34262 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34264         * loader.c, metadata.c: load param attributes in signatures.
34266 2002-09-16  Martin Baulig  <martin@gnome.org>
34268         * debug-mono-symfile.c: Added string table with all method names.
34270 2002-09-14  Martin Baulig  <martin@gnome.org>
34272         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34273         fast method lookup.
34275 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34277         * reflection.c: record the public key token of referenced assemblies.
34279 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34281         * image.c, image.h: added functions to get the strong name and the
34282         public key of an assembly.
34283         * pedump.c: use them.
34285 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34287         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34289 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34291         * marshal.c (mono_marshal_get_managed_wrapper): Added
34292         MONO_TYPE_BOOLEAN 
34294 2002-09-11  Martin Baulig  <martin@gnome.org>
34296         * gc.c: Call GC_unregister_disappearing_link() on all links when
34297         finalizing them, this is necessary to aviod a crash in boehm's
34298         finalize handler.
34300 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34302         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34303         nick@chemlab.org.
34305 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34307         * icall.c: implemented MonoType::Module.
34308         * reflection.c, reflection.h: mono_module_get_object () from
34309         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34311 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34313         * icall.c: ignore overridden methods in GetMethods ().
34314         Fix for FieldInfo::SetValue().
34315         * object.c: handle float/double in runtime invoke.
34317 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34319         * object.c: allow a constructor to be called again on an object.
34321 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34323         * class.h, class.c: move field layout code to it's own function and
34324         export it. Get an interface id earlier. Move fields in MonoClass
34325         so they are more cache friendly and align the bitfields.
34326         * loader.c: temporary handle get_param_names() for a runtime method.
34327         * reflection.c, reflection.h: more code to handle runtime creation of
34328         types.
34330 2002-09-09  Martin Baulig  <martin@gnome.org>
34332         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34333         signature with the pinvoke field being set for the actual call.
34335 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34337         * icall.c: removed some unused icalls. Start of map of glib charsets
34338         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34340 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34342         * debug-helpers.c: break infinite loop (found and fixed by
34343         Holger Arnold <harnold@gmx.de>).
34345 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34347         * icall.c: target may be null in create_delegate.
34349 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34351         * marshal.c: handle a boolean return type.
34353 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34355         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34357 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34359         * gc.c: fix weakreferences.
34361 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34363         * icall.c: added icall to get default codepage.
34365 2002-09-03  Dick Porter  <dick@ximian.com>
34367         * threads.h: 
34368         * threads.c: Use MonoThread instead of MonoObject where
34369         apropriate.
34371         Store running thread objects in a hash table, so that we have all
34372         the info to hand when waiting for them to finish
34373         (means we don't need OpenThread() any more, so mingw builds should
34374         be fully functional again.)
34376         * verify.c:
34377         * object.h: Added thread ID to MonoThread
34379 2002-09-03  Martin Baulig  <martin@gnome.org>
34381         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34383 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34385         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34387 2002-09-03  Martin Baulig  <martin@gnome.org>
34389         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34390         argument to store the end address of the disassembled instruction.
34392         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34393         here from debug-symfile.h.
34394         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34395         JIT into this struct.
34396         (MonoSymbolFile): Added `char *image_file' field.
34397         (MonoDebugGetMethodFunc): Removed.
34398         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34399         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34400         (mono_debug_find_method): New method.
34402         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34403         create a full symbol file.
34404         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34405         and static symbol files.
34406         (mono_debug_find_method): The symbol file keeps an internal method hash,
34407         call this to get a MonoDebugMethodInfo from a MonoMethod.
34409         * debug-symfile.[ch]: Removed.
34411 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34413         * image.c (do_mono_image_open): Remove linker version check.
34415 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34417         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34418         wrappers for instance methods.
34419         
34420 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34422         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34424 2002-08-28  Dick Porter  <dick@ximian.com>
34426         * Makefile.am: Export HOST_CC for w32 builds
34428 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34430         * file-io.c process.c: MonoString are null terminated, no
34431         need for mono_string_to_utf16() anymore.
34433 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34435         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34437 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34439         * icall.c, reflection.h: speedup System.MonoType.
34441 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34443         * reflection.c: allow null as the value of a string argument in
34444         custom attributes constructors.
34446 2002-08-27  Martin Baulig  <martin@gnome.org>
34448         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34449         `trampoline_address' field.
34451 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34453         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34454         check (fixes bug #29486) 
34456 2002-08-27  Martin Baulig  <martin@gnome.org>
34458         * debug-mono-symfile.c: Changed the file format in a way that allows us
34459         open it read-only and to use a specially malloced area for all the
34460         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34461         debugging IL code and there is no MCS generated symbol file for it.
34463 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34465         * object.c: added a define for a good string and array
34466         creation speedup (not enabled by default because we need to deal with
34467         the synch stuff).
34469 2002-08-26  Martin Baulig  <martin@gnome.org>
34471         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34472         function to create a dynamic symbol file.  This is used by the
34473         debugger to create a symbol file for IL code on-the-fly.
34475 2002-08-26  Martin Baulig  <martin@gnome.org>
34477         * loader.c (mono_lookup_pinvoke_call): Include the error message
34478         from g_module_error() in the error message.
34480 2002-08-24  Martin Baulig  <martin@gnome.org>
34482         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34483         function to update the symbol file.  The symbol file is mmap()ed
34484         writable, but private.  This allows us to install the symbol file
34485         together with the assembly.
34487 2002-08-24  Martin Baulig  <martin@gnome.org>
34489         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34490         but they can read the new symbol file format which mcs is now creating.
34492         * debug-symfile.c (mono_debug_find_source_location): Moved to
34493         debug-mono-symfile.c; this is now operating on the new symbol file.
34495 2002-08-23  Martin Baulig  <martin@gnome.org>
34497         * debug-helpers.c (mono_method_desc_from_method): New function to get
34498         a MonoMethodDesc from a MonoMethod.
34500 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34502         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34503         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34505 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34507         * string-icalls.[ch]: make helper methods static.
34509 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34511         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34512         types to it and to SetValueInternal.
34514         * object.c: Moved handle_enum label to its proper place. This was the
34515         f... bug! ;-)
34517         This time i compiled mcs and gtk-sharp and they both work.
34519 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34521         * icall.c: reverted partially my previous patch until 
34522         object.c:set_value handles enums correcly.
34524 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34526         * icall.c:
34527         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34528         (ves_icall_System_Environment_get_MachineName): removed warning when
34529         compiling under cygwin.
34531 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34533         * object.c: fixed field_get_value() for reference types.
34535 2002-08-22  Dick Porter  <dick@ximian.com>
34537         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34538         Don't free a buffer while it's still needed.  Patch from Jonathan
34539         Liger <Jonathan.liger@wanadoo.fr>
34541 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34543         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34544         internal call.
34546 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34548         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34549         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34551         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34552         we call unmanaged code which throws exceptions.
34554 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34556         * appdomain.h: added per-domain entry_assembly.
34557         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34558         arguments.
34559         * icall.c: Assembly::GetEntryAssembly icall.
34560         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34561         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34563 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34565         * appdomain.h, gc.c: added mono_domain_finalize ().
34567 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34569         * object.c:
34570         (mono_print_unhandled_exception): changed g_warning by g_printerr
34571         because g_log has a 1024 characters limit (yeah, i got a big stack
34572         trace). Don't print exception name, that should be in ToString 
34573         returned string.
34575 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34577         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34578         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34580 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34582         * object.c:
34583         (mono_print_unhandled_exception): after previous commit, i realized
34584         that MS calls ToString on the exception. I changed this function to
34585         do that. This way we get stack_trace for free.
34587 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34589         * object.c:
34590         (mono_print_unhandled_exception): invoke Message property instead of
34591         getting 'message' field from Exception. Don't allocate memory for
34592         'trace' and 'message' if not needed.
34594 2002-08-18  Dick Porter  <dick@ximian.com>
34596         * unicode.c: Fix asserts to match Encoder.cs checks
34598 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34600         * marshal.c: fix unaligned store issue and a few wrong
34601         opcode argument types.
34603 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34605         * icall.c: added GetUninitializedObjectInternal internal call.
34607 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34609         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34610         to the right domain.
34612 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34614         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34616         * class.c (class_compute_field_layout): set blittable to false for Strings
34618         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34620 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34622         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34623         first chunk of code to create types at runtime. Code to
34624         handle ReflectedType/DeclaringType. Make reflection handles
34625         domain specific.
34627 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34629         * class.c: set correct name in arrays.
34631 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34633         * appdomain.c (mono_domain_transfer_object): make it work with
34634         valuetypes. bug fixes.
34636 2002-08-12  Dick Porter  <dick@ximian.com>
34638         * object.h: Rename some parameters to avoid c++ keywords (Patch
34639         from Joseph Wenninger <kde@jowenn.at>)
34641 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34643         * icall.c: added icall to implement Assembly.GetFile*.
34645 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34647         * reflection.h, reflection.c: code to embed managed resources.
34649 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34651         * class.c: move all the type size stuff into
34652         class_compute_field_layout().
34654 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34656         * class.c: ensure enums have always the correct instance size.
34657         * unicode.c: remove wrong assert.
34659 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34661         * assembly.c: fix mem corruption issue.
34662         * image.h, image.c: added mono_image_get_resource () to access
34663         managed resources.
34664         * icall.c: implemented Assembly.EntryPoint property and some
34665         Managed Resources related internalcalls.
34668 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34670         * image.c, image.h: impemented mono_image_get_entry_point ().
34671         * appdomain.c: use mono_image_get_entry_point.
34673 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34675         * reflection.c: support the object type argument when loading
34676         custom attributes.
34678 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34680         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34681         String as return type.
34683 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34685         * reflection.c: fix encoding of named args for custom attrs to match
34686         the ms implementation. Read them back when instantiating custom
34687         attributes.
34689 2002-08-02  Radek Doulik  <rodo@ximian.com>
34691         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34692         by Dietmar as quick fix
34693         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34694         16 as stack size, used on more places as quick fix before Dietmar
34695         will fix it properly
34697 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34699         * object.h, object.c: added accessors for fields and properties.
34701 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34703         * class.c, class.h: made mono_class_get_field_from_name ()
34704         loop on parent types.
34705         Added mono_class_get_property_from_name ().
34707 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34709         * class.c, class.h: move the code to setup the type vtable in its own
34710         function so that it can be reused also for types created at runtime.
34711         Eliminate the "class" identifier from the header file.
34712         * reflection.c: setup the vtable for enums so that we can create
34713         objects for use in SetConstant ().
34715 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34717         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34718         instead of the delegate itself as this pointer (bug #28383)
34720 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34722         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34723         conversions.
34725 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34727         * loader.c: don't set the pinvoke bit on icalls.
34729 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34731         * debug-helpers.c (mono_method_full_name): only print a number to
34732         indicate wrapper type (so that the output is more readable in traces).
34734 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34736         * class.c (mono_class_init): include method override patch from Paolo
34738 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34740         * icall.c: fixed GetTypeCode().
34742 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34744         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34745         use real delegate invoke function to make it work with multicast
34746         delegates (fix bug# 28291).
34748 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34750         * object.c: load constant strings.
34752 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34754         * reflection.c: no magic numbers.
34755         * tabledefs.h: security action enum.
34757 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34759         * assembly.c: fix possible memory corruption.
34761 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34763         * reflection.h, reflection.c: added support for linking resources.
34764         * verify.c: check we have an updated corlib.
34766 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34768         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34769         string arrays.
34770         (mono_marshal_string_array): null terminate unmanaged string arrays.
34771         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34773 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34775         * icall.c: Type.GetType () can now return also types from the
34776         calling assembly.
34778 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34780         * loader.h, loader.c: stack walking support.
34781         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34782         GetCallingAssembly.
34784 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34786         * marshal.c: added optimisations for blittable types 
34788         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34789         (mono_class_setup_mono_type): set blittable attribute for single
34790         and double.
34792         * marshal.c (mono_string_utf8_to_builder): impl.
34793         (mono_string_builder_to_utf8): impl.
34794         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34796 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34798         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34799         (mono_marshal_get_managed_wrapper): impl. byref types
34801 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34803         * icall.c:
34804         (search_method): don't display debug message. 
34806 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34808         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34810 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34812         * appdomain.c: set the missing filename when throwing exception.
34814 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34816         * metadata.c (mono_type_size): code cleanup
34817         (mono_type_stack_size): removed some test code
34819 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34821         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34822         mono_get_exception_file_not_found now.
34824         * exception.c (mono_exception_from_name_two_strings): New version
34825         that will call a constructor with two string arguments. 
34826         (mono_get_exception_file_not_found): New helper routine, used to
34827         report file-not-found errors.
34829 2002-07-20  Dick Porter  <dick@ximian.com>
34831         * process.h:
34832         * process.c: Pass file handles to CreateProcess
34833         
34834         * icall.c:
34835         * file-io.h:
34836         * file-io.c: Implemented CreatePipe
34838 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34840         * metadata.c (mono_get_param_info): set alignment for value types
34842 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34844         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34845         Constify mono_domain_assembly_open().
34846         * loader.c: handle null namespace in icalls.
34848 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34850         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34851         (emit_str_to_ptr_conv): marshal object as structs
34853         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34855         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34857 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34859         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34860         (mono_marshal_get_native_wrapper): we an now return value types
34862 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34864         * verify.c: more checks implemented.
34866 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34868         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34869         (fix bug #27695)
34870         (mono_marshal_get_native_wrapper): allow byref arguments
34871         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34872         impl. PtrToStringXXX methods
34873         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34874         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34875         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34876         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34877         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34879 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34881         * reflection.c: fix buglet in parsing an assembly name.
34883 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34885         * marshal.c (emit_ptr_to_str_conv): first impl.
34887 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34889         * object.c, class.h: cache the vtable in the class as suggested by
34890         vargaz@freemail.hu (Zoltan Varga).
34892 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34894         * class.h, loader.c: added mono_field_from_token().
34895         * verify.c: first cut of type checking code.
34897 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34899         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34901 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34903         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34904         (fix bug #27782)
34905         (mono_marshal_get_remoting_invoke): impl.
34906         (mono_delegate_begin_invoke): impl.
34907         (mono_mb_emit_save_args): impl.
34908         (mono_delegate_end_invoke): impl.
34909         (mono_marshal_get_delegate_begin_invoke):
34910         (mono_marshal_get_delegate_end_invoke):
34911         (mono_marshal_get_delegate_invoke): generate a special name for
34912         those methods (including the signature) and associate them whith
34913         the delegate class. 
34915 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34917         * reflection.[ch]: 
34918         (mono_reflection_type_from_name): now it has a MonoImage parameter
34919         which is used as the default image to search the type in. If the image
34920         is NULL or getting the type from it fails, it defaults to corlib.
34922         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34923         new parameter.
34925 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34927         * reflection.c: update the parameter table index.
34929 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34931         * domain.c: don't include the mark byte in the string hash.
34933 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34935         * icall.cs: icall for Type.GetTypeCode ().
34936         * verify: a couple of fixes and disabled local initialization checks.
34938 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34940         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34942         * debug-helpers.c (mono_method_full_name): print the type of the
34943         runtime wrapper
34945         * metadata.c (mono_signature_hash): a hash function for signatures
34946         (mono_signature_hash): better hash algorithm
34948         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34950         * debug-helpers.c (mono_method_full_name): this can now generate
34951         method names with signatures
34953         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34954         method dont have this pointers.
34956 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34958         * reflection.c: fixup typebuilder tokens.
34959         * image.c: fix buglet.
34960         * marshal.h: remove whitespace.
34961         * metadata.h, metadata.c: reinstate code that was removed.
34962         * verify.c: handle catch directives and fix another couple of bugs.
34964 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34966         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34967         (mono_marshal_get_native_wrapper): make it comp. with the old code
34968         (mono_marshal_get_native_wrapper): support boolean
34969         (mono_marshal_get_managed_wrapper): support more types
34971 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34973         * class.c (class_compute_field_layout): compute class->blittable attribute.
34975 2002-07-09  Dick Porter  <dick@ximian.com>
34977         * threads.c: Make the thread cleaning up cope with threads that
34978         call ExitThread()
34980 2002-07-08  Radek Doulik  <rodo@ximian.com>
34982         * reflection.c (method_encode_code): use non-translated values to
34983         compute finally_start, this fixes exception handling on ppc, yay!
34985         * decimal.h (struct signscale): fix endianess
34987 2002-07-07  Radek Doulik  <rodo@ximian.com>
34989         * reflection.c: swap box_val and not val
34991 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34993         * reflection.c, reflection.h: handle full assembly info in type name.
34994         Handle Type arguments when loading custom attributes.
34995         * icall.c: updated to use new mono_reflection_type_from_name () method.
34997 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34999         * loader.c:
35000         (method_from_memberref): also print assembly name when method not found.
35002 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35004         * icall.c:
35005         (ves_icall_TypeGetProperties): fixed bug #27473. 
35007 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35009         * reflection.c: display image name and token when cannot find the
35010         .ctor for an attribute.
35012 2002-07-05  Martin Baulig  <martin@gnome.org>
35014         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35016 2002-07-04  Dick Porter  <dick@ximian.com>
35018         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35019         compile on mingw.  This will cause mingw builds to not wait for
35020         subthreads to terminate after the main thread does.  I've lodged a
35021         bug with the mingw developers for them to wrap OpenThread().
35023 2002-07-03  Dick Porter  <dick@ximian.com>
35025         * threads.c: Store thread IDs instead of handles, because
35026         GetCurrentThread() returns a pseudohandle and therefore stores
35027         useless values.  mono_thread_cleanup() continues checking the
35028         array of threads until it is empty, to cope with subthreads
35029         spawning new threads after the main thread has finished.
35031         * profiler.h:
35032         * profiler.c:
35033         * profiler-private.h: Pass the thread ID to thread profiler
35034         functions, instead of a handle
35036 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35038         * verify.c: fixes to make it more usable.
35039         * pedump.c: added --verify code to verify IL code in an assembly.
35041 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35043         * reflection.c: turn errors into warnings to allow compiling corlib.
35045 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35047         * reflection.c: add special cases to compile corlib.
35049 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35051         * reflection.c: handle properties with only a set method.
35053 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35055         * opcodes.h: add enum with opcodes in opval order.
35057 2002-07-01  Dick Porter  <dick@ximian.com>
35058         
35059         * object.h:
35060         * object.c (mono_runtime_run_main): Removed unneeded argument
35062 2002-06-28  Martin Baulig  <martin@gnome.org>
35064         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35066 2002-06-27  Dick Porter  <dick@ximian.com>
35068         * threads.c: Store the handle in both the parent thread and in the
35069         subthread, to minimise the time between starting a new thread and
35070         storing its ID.
35072 2002-06-26  Dick Porter  <dick@ximian.com>
35074         * appdomain.c (mono_runtime_cleanup): Close the socket library
35075         after all the threads have finished, not before
35077 2002-06-26  Martin Baulig  <martin@gnome.org>
35079         * debug-symfile.c (mono_debug_find_source_location): Added
35080         `guint32 *line_number' argument.  If it's not NULL, store the line number
35081         there and return the file name without the line number.
35083 2002-06-25  Dick Porter  <dick@ximian.com>
35085         * icall.c:
35086         * process.h:
35087         * process.c: Process forking and other support functions
35089 2002-06-25  Dick Porter  <dick@ximian.com>
35091         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35092         things dont happen when the image is closed.
35093         (mono_image_lookup_resource): Walk the resource section looking
35094         for a particular entry
35096         * cil-coff.h: PE resource section decoding
35098 2002-06-25  Dick Porter  <dick@ximian.com>
35099         
35100         * assembly.h:
35101         * assembly.c: 
35102         (mono_assembly_foreach): Accessor functions to walk the list of
35103         loaded assemblies
35104         (mono_assembly_set_main):
35105         (mono_assembly_get_main): Process methods need to know which
35106         assembly is the "main" one
35108         * object.c (mono_runtime_run_main): Record the main assembly
35110         * debug-helpers.c: Fix typo
35112 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35114         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35115         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35117 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35119         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35121 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35123         * image.c (do_mono_image_open): Initialize reference count,
35124         otherwise we leak the MonoImage.
35126 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35128         * reflection.c: small tweak to handle self-hosting.
35130 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35132         * reflection.c: fix type name parse code.
35134 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35136         * reflection.c: break out of the loop.
35137         * image.c: special case corlib.
35139 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35141         * reflection.c: add all the custom attrs at the end to ensure the
35142         ctors have been properly initialized when the attributes are defined
35143         in the current assembly.
35145 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35147         * reflection.c: handle correctly multiple-nested types.
35149 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35151         * row-indexes.h: fix typos.
35152         * reflection.c: adjust for typos and fix method_def_or_ref
35153         encoding in MethodImpl table.
35155 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35157         * reflection.c: fix entry point patching (thanks Serge!).
35159 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35161         * verify.c: add check for System.Exception
35163 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35165         * image.c, class.c: minifix for code just c&p'ed.
35166         * reflection.c: warning fix.
35167         * object.h, loader.h, domain.c: load also StringBuilder.
35169 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35171         * marshal.h, marshal.c: some support code to handle complex marshaling.
35173 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35175         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35176         Better signatures with vtable error dump.
35178 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35180         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35182 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35184         * icall.c (ves_icall_Type_GetField): impl.
35186 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35188         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35189         to retrieve a marshal description blob for a field or param.
35191 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35193         * reflection.h, reflection.c: change order of nested type emission
35194         to avoid table corruption. The NestedTypes table is sorted.
35195         * icall.c: change order of GetConstructor results to workaround mcs bug.
35197 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35199         * reflection.h, reflection.c: handle field and param marshal
35200         information.
35202 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35204         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35206 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35208         * reflection.c: fix call convention.
35210 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35212         * reflection.h, reflection.c: mono_image_get_memberref_token()
35213         takes a type instead of a class, now. Added
35214         mono_image_get_array_token() to create tokens for the special
35215         multi-dim array methods.
35217 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35219         * assembly.c: handle modules (no assembly table). Split
35220         loading references in its own function.
35221         * class.c: handle moduleref resolution scope.
35222         * image.c, image.h: cache module name in image.
35224 2002-06-07  Martin Baulig  <martin@gnome.org>
35226         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35227         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35229 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35231         * icall.c: more signature fixes that used uint instead of int.
35233 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35235         * reflection.c: fixed signature of field refs.
35237 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35239         * class.c, reflection.c: handle typerefs of nested types
35240         (both on read and when writing files).
35242 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35244         * icall.c: fix method signatures that tried to workaround the previous
35245         typo, d'oh!
35247 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35249         * debug-helpers.c: fix typo.
35251 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35253         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35254         rewrote the PE/COFF writing code (our programs are understood by the
35255         ms runtime, now).
35257 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35259         * gc.c, gc.h, icall.c: weakreference support.
35261 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35263         * Makefile.am, mono-config.c: use $(sysconfdir).
35265 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35267         * icall.c: changed default precision of Double.ToString() to 15.
35268         Fixed memory leak. Unified with Single.ToString.
35270 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35272         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35274 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35276         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35277         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35278         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35279         and myself.
35281 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35283         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35285 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35287         * reflection.c, socket-io.c: more compilation fixes.
35289 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35291         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35292         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35293         unicode.c: warning and compiler compatibility fixes.
35295 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35297         * class.h, metadata.c: fixed warnings/compilation errors.
35299 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35301         * Makefile.am, mono-config.c, mono-config.h: configuration file
35302         support routines.
35303         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35304         config file. Export methods to insert and lookup mappings.
35306 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35308         * reflection.c: handle types and boxed objects in custom attr
35309         constructors.
35311 2002-05-30  Martin Baulig  <martin@gnome.org>
35313         * debug-symfile.c
35314         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35316 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35318         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35319         to lookup the implmap row for a P/Invoke method.
35320         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35321         P/Invoke method from the runtime on an as needed basis.
35323 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35325         * metadata.c (mono_metadata_parse_signature): impl.
35327 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35329         * class.c: handle .pack directive.
35331 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35333         * object.c: initialize static fields with RVA data.
35335 2002-05-25  Martin Baulig  <martin@gnome.org>
35337         * debug-symfile.c
35338         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35340 2002-05-24  Martin Baulig  <martin@gnome.org>
35342         * debug-symfile.c
35343         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35344         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35345         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35347 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35349         * object.c: special case string ctros in invoke.
35350         * gc.c: silly whitespace changes.
35352 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35354         * threadpool.[ch]: impl. a threadpool that can
35355         be used by mint and mono.
35357 2002-05-22  Martin Baulig  <martin@gnome.org>
35359         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35360         The first argument is now a `MonoReflectionModuleBuilder *', the return
35361         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35362         `methods' field to get the method builder.  The `token' argument is the
35363         unfixed token.
35365         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35366         invalid characters instead of g_assert_not_reached()ing.  This seems
35367         to be the behaviour of mscorlib.
35369 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35371         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35372         Hestilow to fix bug #25104
35374 2002-05-21  Martin Baulig  <martin@gnome.org>
35376         * debug-symfile.c (mono_debug_find_source_location): New function.
35377         Looks up an IL offset in the line number table and returns the source
35378         location as a string.
35380 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35382         * icall.c:
35383         (mono_double_ToStringImpl): changed %f by %g until we have something
35384         better.
35386 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35388         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35389         parameters first in C#.
35391 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35393         * icall.c, reflection.h: added icall to get info about an event.
35395 2002-05-20  Radek Doulik  <rodo@ximian.com>
35397         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35398         endian
35399         (mono_value_box): don't use memcpy for small sizes on
35400         architectures with unaligned access
35402 2002-05-20  Martin Baulig  <martin@gnome.org>
35404         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35405         if `tb->parent == NULL'.
35406         (mono_reflection_create_internal_class): New function.  This is
35407         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35408         for enum types.
35410         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35411         New interncall.
35413 2002-05-19  Martin Baulig  <martin@gnome.org>
35415         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35416         argument to get the length, don't default to the array length.
35418 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35420         * assembly.c (mono_assembly_setrootdir): New function used to
35421         override the MONO_ASSEMBLIES directory.
35423 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35425         * icall.c: ValueType_GetHashCode() initialize local var.
35427 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35429         * reflection.c: sort custom attributes table.
35431 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35433         * reflection.c: support named args in custom attributes (write support).
35435 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35437         * reflection.c: fix finally position calculation.
35439 2002-05-15  Radek Doulik  <rodo@ximian.com>
35441         * reflection.c: fixed endianess at many places
35443         * icall.c (ves_icall_InitializeArray): comment out debug msg
35445 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35447         * object.c (mono_unhandled_exception): new function to handle
35448         unhandled exceptions.
35449         (mono_unhandled_exception): call the UnhandledException event.
35450         (mono_runtime_delegate_invoke): impl.
35452 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35454         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35455         returns the RVA, not the direct pointer to the data. Handle the case
35456         when the class size is fixed.
35458 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35460         * reflection.c: fix some endianess issues.
35462 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35464         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35466         * threads.c (mono_thread_init): added a callback which is invoked
35467         at thread start.
35469 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35470         
35471         * icall.c: make GetHashCode return non-negative values.
35473 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35475         * object.c, icall.c, gc.c: revert to address-based hashcode.
35477 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35479         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35481 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35483         * icall.c, class.c: special case <Module>.
35485 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35487         * icall.c: fix bug in GetNow().
35489 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35491         * object.c (mono_runtime_class_init): make sure that we call all
35492         static class constructors.
35494 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35496         * reflection.c: sort methodsemantics table.
35498 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35500         * reflection.h, reflection.c: honour init locals setting.
35502 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35504         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35506 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35508         * reflection.c: support ContructorBuilders in attribute blob creation.
35510 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35512         * reflection.c: some changes to build a binary that can be run
35513         directly in windows.
35515 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35517         * loader.c: print a big message when an icall can't be found.
35519 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35521         * string-icalls.c: fix bug 24248.
35523 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35525         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35526         icall.c, reflection.h: separate assembly loading by pathname and by
35527         assembly name. Use the MONO_PATH env var to search for assemblies.
35529 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35531         * assembly.c, image.h: add some support for assemblies
35532         with multiple modules.
35533         * class.c, class.h: export mono_class_from_typeref().
35534         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35535         instead.
35537 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35539         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35540         documentation says (the ECMA one is correct).
35542 2002-05-02  Dick Porter  <dick@ximian.com>
35544         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35545         Don't name the synchronisation mutex.
35547 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35549         * rand.c
35550         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35551         Make the prototypes match.
35552         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35553         Same.
35555         * icall.c
35556         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35557         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35558         all systems have tm.tm_zone, so use strftime() with %Z to print
35559         the timezone abreviation into a temp string.
35561         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35562         rather than mono_array_addr() on a MonoString on Big Endian
35563         machines.
35565 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35567         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35568         fix bug 24041
35570 2002-04-30  Dick Porter  <dick@ximian.com>
35572         * socket-io.c: Cope with SOCKET being an integer rather than a
35573         pointer now.
35575         * threads.c: Added Thread_free_internal, to deal with thread
35576         handle cleanup.  Moved calls to handle_store() and handle_remove()
35577         to start_wrapper(), so each can only be called once.  Allocate
35578         synchronisation blocks with GC_malloc(), and use GC finalisation
35579         to close the handles.
35581         * icall.c: added System.Threading.Thread::Thread_free_internal
35583 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35585         * icall.c: support Environment.Exit, CommandLineArgs().
35587 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35589         * object.c, object.h: added mono_runtime_run_main () and
35590         mono_runtime_get_main_args () for use in System.Environment.
35592 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35594         * gc.c: fix thinko, enable actual finalization since the jit is now
35595         fixed.
35597 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35599         * gc.c, object.c: take into account that an object may be offset wrt the address
35600         returned by GC_malloc().
35602 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35604         * image.c: handle files without entries in the assembly table (modules).
35606 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35608         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35609         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35610         allowed to be null when it's System.Object class setup.
35612 2002-04-27  Martin Baulig  <martin@gnome.org>
35614         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35615         if `tb->parent == NULL' rather than crashing.
35617 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35619         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35620         calling acos() where asin() should have been called.
35622 2002-04-26  Martin Baulig  <martin@gnome.org>
35624         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35625         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35626         there's a subdirectory called `System', but we don't want to read that
35627         subdirectory as an assembly.
35629 2002-04-25  Martin Baulig  <martin@gnome.org>
35631         * debug-symfile.c: Reflect latest MonoString changes.
35633 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35635         * rand.c, rand.h: instance method icalls need to have an explicit
35636         this pointer as first argument in the C implementation.
35638 2002-04-25  Nick Drochak <ndrochak@gol.com>
35640         * icall.c: Fix typo in map for GetNonZeroBytes
35642 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35644         * string-icalls.c : String does now passes unit tests without any 
35645         errors, the following changes has been made:
35646         
35647         Implemented replace methods.
35648         Renaming of methods to (try) follow the standard.
35649         Fixed compare ordinal
35650         Made all memory allocated directly to function instead of via icall function.
35651         Small performance fix in is_in_array function
35652                         
35653  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35655         c (mono_string_Internal_ctor_charp_int_int):
35656         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35657         sindex < 0, throw ArgumentOutOfRangeException instead of
35658         ArgumentNullException.
35660         Added new check for length == 0, however
35661         I need to make it return String.Empty from the C code.
35662         
35663         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35664         that calculate the length for us here.
35665         
35666         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35667         mono_string_new_utf16 with mono_string_new, since value is utf8.
35669 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35671         * object.c: register the object for finalization if needed.
35672         Allocate one more char in the string for the terminating 0 char.
35674 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35676         * class.c, class.h, image.c: check if a type implemenst a destructor.
35677         Use the proper key for array class lookups.
35678         * icall.c: register the icalls in the System.GC class.
35679         * gc.c, gc.h: GC-related functions and icalls.
35681 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35683         * icall.c:
35684         * socket-io.c:
35685         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35686         changed a couple of free () by g_free ().
35688         * decimal.c: one-liner in the comments for decimal2string ().
35690 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35692         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35694 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35696         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35697         * object.c (mono_runtime_invoke_array) : handle null in params
35699 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35701         * string-icalls.c: fixed bug in split (one off bug)
35703 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35705         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35706         * icalls.c: added String::Equals as internal method
35708 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35710         * threads.c: fixed bug in the double interlocked functions
35712 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35714         * threads.c: implemented all of the new interlocked icalls.
35715         * string-icalls.c: fix a bug in insert.
35716         * icalls.c: added the icalls for interlocked, removed old string functions.
35717         
35718 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35720         * loader.c: fix off-by-one error when reading argument names.
35722 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35724         * profiler.c: win32 counter implementation (untested).
35725         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35726         (the latter needs testing and more complete impl. from win32 folks).
35728 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35730         * object.c: mono_array_new_full workaround mono_array_class_get
35731         problem.
35733 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35735         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35736         * object.h (mono_string_chars): Changed casting type.
35738 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35740         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35741                            method signatures to use gunichar2 instead of gint16.
35743 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35745         * object.h, object.c: domain-specific versions of mono_object_new and
35746         mono_array_new.
35748 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35750         * object.c: changed String layout
35752         * string-icalls.c (mono_string_Internal_ctor_chara): added
35753         internal string constructors.
35755 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35757         * threads.c: pass 'this' to the thread start routine.
35759 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35761         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35762         InternalCompareStr don't call twice mono_string_cmp_char for the last
35763         character. Improved performance in mono_string_cmp_char.
35765 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35767         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35768         code into its own library: libmonoruntime.
35770 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35772         * object.h, object.c: changed array format so that szarrays do not
35773         require a bounds structure.
35774         * icall.c, appdomain.c: support for new szarray format.
35776 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35778         * metadata.c: compare also the retuns type when comparing signatures:
35779         we didn't do this as an optimization since really overloaded methods
35780         must differ also in the arguments, but this doesn't work with
35781         low-level IL code (or when using explicit conversion operators: see
35782         bug#23498 for an example).
35784 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35786         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35788 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35790         * icall.c: make MonoType::GetElementType its own icall.
35792 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35794         * icall.c: remove MonoMethod_get_Name().
35795         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35796         object.
35798 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35800         * string-icalls.c: optimized a few methods.
35802 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35804         * icall.c: added all new string internal calls
35805         * string-icalls.c: added, new string internal call implementation.
35806         * object.c: added mono_string_new_size for allocating a string a size
35808 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35810         * object.c (mono_object_isinst): use the same code as in the
35811         optimized x86 version.
35813 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35815         * profiler.c: TSC-based timer code (faster and more accurate).
35816         Not hooked up in configure, yet (set USE_X86TSC to 1).
35818 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35820         * profiler.c, profiler.h: track time spent compiling methods.
35821         * threads.c: track thread creation/destruction.
35823 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35825         * profiler.c, profiler.h, profiler-private.h: profiling interface
35826         and sample implementation. Moved here so that it can be used also by
35827         the jit.
35829 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35831         * reflection.c, reflection.h: keep types and other handles separate in
35832         the hash tables for referred tokens. Add guid for modules.
35834 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35836         * assembly.c: fix bugs found with valgrind.
35837         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35839 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35841         * threads: added icall support for getting current domain for
35842                    the thread.
35844 2002-04-13  Martin Baulig  <martin@gnome.org>
35846         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35847         (MonoDebugVarInfo): Added `index' field for register based addresses.
35848         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35849         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35850         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35851         `MonoDebugVarInfo *this_var'.
35853         * debug-symfile.c (relocate_variable): New static function to write
35854         a location description for a local variable or method parameter.
35856 2002-04-12  Martin Baulig  <martin@gnome.org>
35858         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35859         stack offset and begin/end scope address of a local variable.
35860         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35861         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35862         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35864         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35865         Added new relocation types for start/end scope of a local variable.
35867 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35869         * object.h: add mono_object_domain() macro.
35870         * reflection.c: handle typespecs.
35871         * icall.c: MonoMethod::get_Name() implementation.
35873 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35875         * icall.c: String::GetHashCode() icall implementation.
35877 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35879         * icall.c: String::IndexOfAny icall.
35880         * object.c, object.h: make array->max_length more useful.
35881         Intrduced mono_object_class() and mono_string_length() macros.
35883 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35885         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35886         instead of g_unichar_isdigit.
35888 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35890         * icall.c: Implement a simple Double.ToString().
35892 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35894         * appdomain.h: only io-layer.h is supposed to be included.
35895         * icall.c: explicitly import environ. Fix warning.
35897 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35899         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35900                 return true even if it's not Daylight Savings time.
35901                 Only return false for the case where the function isn't
35902                 implemented for a plaform (read Windows).
35904 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35906         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35907         data with a mutex.
35909 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35911         * mempool.c (mono_mempool_alloc): only use g_malloc when
35912         absolutely necessary.
35914 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35916         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35918         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35919         (mono_class_proxy_vtable): use domain mempool
35921 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35923         * appdomain.h, appdomain.c: split initialization that requires the
35924         execution engine support into mono_runtime_init().
35926 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35928         * class.c (mono_class_init): don't include vtable inside MonoClass
35929         to save some memory, gather some statistics.
35930         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35932 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35934         * icall.c: internalcall implementation for ValueType.Equals().
35936 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35938         * object.c (mono_message_init): moved 
35939         (mono_runtime_exec_main): new arch. independent impl.
35940         (mono_runtime_invoke_array): new method - like
35941         mono_runtime_invoke, but you can pass an array of objects.
35942         (mono_remoting_invoke): new arch. independent impl.
35943         (mono_message_invoke): new arch. independent impl.
35944         (mono_runtime_class_init): new arch. independent impl.
35945         (mono_runtime_object_init): new arch. independent impl.
35947 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35949         * metadata.c, object.c, reflection.c: documented the exported
35950         functions.
35952 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35954         * icall.c: simpler code to pass the assembly builder data to corlib.
35955         Implement GetNestedTypes() internalcall.
35957 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35959         * class.c: warn if a type can't be loaded.
35961 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35963         * image.h: typedef MonoImageOpenStatus
35964         * types.h: removed unused file
35965         
35966 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35968         * icall.c: Enum_ToObject accepts enum value arguments.
35970 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35972         * class.c: move initialization of properties, events and nested
35973         classes, so that they happen for interfaces, too.
35975 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35977         * icall.c: cleanup some ugly casts in Array_SetValue*.
35979 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35981         * icall.c: the values array fro enums is of the correct type, now.
35982         Implement (correctly) getFullName instead of assQualifiedName for
35983         MonoType.
35984         * reflection.h, reflection.c: added mono_type_get_name ().
35986 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35988         * assembly.c, image.h: for each MonoImage, record from wich assembly
35989         it was loaded.
35990         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35991         Make Type.Assembly work.
35993 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35995         * debug-symfile.h: use char* instead of gpointer to avoid
35996         unnecessary casts.
35998         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
36000         * icall.c (ves_icall_InternalExecute): impl. FielSetter
36001         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
36003 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
36005         * icall.c (mono_message_init): impl. (code cleanup)
36006         (ves_icall_InternalExecute): impl. FieldGetter
36008         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36009         defined we call all (non-static)methods through the vtable. 
36011 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36013         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36014         finalizer even though the memory is still referenced (and the chunk of
36015         memory is not freed).
36017 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36019         * assembly.c: fix brokeness.
36021 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36023         * class.c: kill some warnings. Check explicit interface method
36024         implementation also without considering the namespace.
36025         Load also literal strings in static class data.
36027 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
36029         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
36030         (default_assembly_name_resolver): Make the resolver take the
36031         "base" directory where the assembly was originally defined, so we
36032         can load DLLs that are in the same directory as the assembly that
36033         is being referenced.
36035 2002-03-28  Dick Porter  <dick@ximian.com>
36037         * file-io.h: 
36038         * file-io.c:
36039         * socket-io.c: 
36040         * unicode.h: 
36041         * unicode.c: Warning cleanups
36043 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36045         * object.h, reflection.h: use the correct type instead of MonoObject.
36047 2002-03-28  Martin Baulig  <martin@gnome.org>
36049         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36050         (mono_debug_update_symbol_file): Initialize classes if necessary.
36052 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36054         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36055         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36057 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36059         * assembly.h: fix function prototype.
36060         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36061         * mono-endian.h: use const cast.
36063 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36065         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36067 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36069         * loader.c: don't assert when a typeref can't be loaded, give
36070         a chance to the runtime to trow an exception instead.
36071         * loader.h: fix warning.
36073 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36075         * class.c (mono_class_proxy_vtable): added proxy support
36077 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36079         * icall.c: removed last of PAL calls, added System.Environment
36080         * file-io.h, file-io.c: MonoIO implementation
36081         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36083 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36085         * appdomain.c: do not use the byte marker in ldstr table lookup.
36086         * debug-helpers.c: allow two ':' to separate class and method name.
36087         * object.c: allocate arrays bounds with the GC, too.
36088         * verify: add a few more checks.
36090 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36092         * reflection.c: output also literal strings. Allocate parameter data
36093         with GC_malloc() (thanks, Martin, for catching this!).
36095 2002-03-26  Martin Baulig  <martin@gnome.org>
36097         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36098         include the `this' offset in the `param_offsets'.
36100 2002-03-25  Martin Baulig  <martin@gnome.org>
36102         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36103         mono_debug_get_class() function to get the classes. Added new
36104         relocation types for arrays and strings.
36105         (mono_debug_get_class): New static function to search in all
36106         referenced assemblies for a metadata token.
36108         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36110 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36112         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36113         hold gc-allocated objects. Make the string heap a stream like the
36114         others. Removed duplicated code when writing stream info.
36115         Added asserts to catch possible buffer overflows. Set the sorted map
36116         for tables that need sorting. Added some documentation.
36118 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36120         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36121         for interned strings and vtables.
36123 2002-03-24  Martin Baulig  <martin@gnome.org>
36125         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36126         it in the array since it was created with g_slist_prepend().
36128 2002-03-24  Martin Baulig  <martin@gnome.org>
36130         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36131         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36132         (mono_debug_method_from_token): Renamed to
36133         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36134         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36136         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36137         relocation types.
36139         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36141 2002-03-24  Martin Baulig  <martin@gnome.org>
36143         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36144         (mono_debug_method_from_token): New func.
36146         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36147         New interncall, calls mono_debug_local_type_from_signature().
36148         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36149         calls mono_debug_method_from_token().
36151 2002-03-23  Martin Baulig  <martin@gnome.org>
36153         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36154         specifies the number of bytes to be converted, not the array size.
36155         Return the number of chars, not the number of bytes.
36156         (ves_icall_iconv_get_chars): The `byteCount' argument
36157         specifies the number of bytes to be converted, not the array size.
36159 2002-03-23  Martin Baulig  <martin@gnome.org>
36161         * reflection.h (MonoReflectionSigHelper): New type.
36163         * reflection.c (mono_reflection_sighelper_get_signature_local),
36164         (mono_reflection_sighelper_get_signature_local): New functions.
36166         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36167         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36168         interncalls.
36170 2002-03-23  Martin Baulig  <martin@gnome.org>
36172         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36173         is_writeable is set.
36174         (mono_raw_buffer_update): New function to write the modified map
36175         back to disk.
36177         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36179         * debug-symfile.c (mono_debug_update_symbol_file): Call
36180         mono_raw_buffer_update() when done writing.
36182 2002-03-23  Martin Baulig  <martin@gnome.org>
36184         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36186         * debug-symfile.c: Added support for arguments and local variables.
36188 2002-03-23  Dick Porter  <dick@ximian.com>
36190         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36191         protected by ifdefs, hence breaking the w32 build.
36193 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36195         * object.c: implement is_interned() the right way.
36197 2002-03-21  Martin Baulig  <martin@gnome.org>
36199         * debug-symfile.[ch]: New files to handle debugging information
36200         files. There's also support to dynamically update these symbol
36201         files to include machine dependent information.
36203 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36205         * threads.c (mono_thread_create): new function to create thread
36206         from C
36208 2002-03-20  Martin Baulig  <martin@gnome.org>
36210         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36211         method is a constructor.
36212         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36213         points to ves_icall_InternalInvoke().
36215 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36217         * file-io.c: Flush shouldn't throw exceptions.
36219 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36221         * file-io.c: FileStream flush support; FileSetLength now
36222         restores file pointer.
36224 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36226         * class.c: set image for pointer classes.
36228 2002/03/19  Nick Drochak <ndrochak@gol.com>
36230         * sysmath.c: Forgot one.
36232 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36234         * sysmath.c: Avoid redefining existing names.
36236 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36238         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36239         handled by runtime as icall rather than dllimport from libm.so
36240         * file-io.c, file-io.h: fixed handle argument type.
36242 2002-03-18  Dick Porter  <dick@ximian.com>
36244         * reflection.c (mono_image_get_type_info): rename interface to
36245         iface, because of "#define interface struct" on windows.
36247 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36249         * class.c, class.h: rename and export mono_ptr_class_get().
36250         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36251         * reflection.c, reflection.h, icall.c: better/saner type name
36252         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36253         method signatures.
36255 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36257         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36259         * icall.c (ves_icall_InternalInvoke): impl.
36261 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36263         * reflection.c: output the interface map table, too.
36265 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36267         * class.c (class_compute_field_layout): separate computation of 
36268         static field layout
36270 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36272         * icall.c: added System.Buffer support.
36273         * file-io.c: moved file icalls from PAL to FileStream.
36275 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36277         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36279 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36281         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36283 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36285         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36287 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36289         * debug-helpers.{c,h}: moved here from monograph some useful functions
36290         to locate a method by name/signature in a class or image. Included
36291         also a small and flexible IL disassembler.
36293 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36295         * reflection.c: fixup tokens in methods with small header size, too.
36297 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36299         * object.c (mono_string_to_utf8): remove assert(!error), instead
36300         print a warning. 
36302 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36304         * icall.c: update to the new mono_Array_class_get interface.
36306 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36308         * appdomain.c, object.c: Boehm-GC enable.
36309         * icall.c: make get_data_chunk() support split data requests.
36310         Ensure a class is initialized in more cases. Return only the first
36311         property found in GetProperties() or the compiler gets confused. 
36312         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36313         * reflection.h, reflection.c: add fixup mechanism for field and method
36314         tokens. Initialize assembly->typeref in a single place. Output
36315         properties after events. Support custom attributes for events, too.
36316         Typo fix for paramter custom attrs.
36318 2002-03-07  Martin Baulig  <martin@gnome.org>
36320         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36322 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36324         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36326 2002-03-06  Martin Baulig  <martin@gnome.org>
36328         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36329         non-zero lower bounds. See testcases #F10-#F13.
36331 2002-03-05  Martin Baulig  <martin@gnome.org>
36333         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36335         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36336         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36337         here.
36338         (ves_icall_System_Array_SetValue): Likewise.
36339         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36340         as argument and does the actual work. This function is used when copying a
36341         multi-dimensional array.
36342         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36343         now do all the widening conversions of value types.
36344         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36346 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36348         * class.c: remove some magic numbers and use the smbolic names,
36349         instead. Added init_events() to load event info at class init time.
36350         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36351         and mono_metadata_methods_from_event().
36352         * reflection.h, reflection.c: added support for writing out the evnets
36353         related information.
36355 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36357         * reflection.h, icall.c: use a different method (GetInterfaces)
36358         to gather interface info and add isbyref, isprimitive and
36359         ispointer to the ves_icall_get_type_info() return value.
36361 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36363         * class.h: stared adding support for events.
36364         * icall.c: split find_members implementation. Added debug icall to get
36365         the address of an object.
36366         * reflection.c: handle TypeBuilders in mono_type_get_object().
36368 2002-03-01  Martin Baulig  <martin@gnome.org>
36370         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36371         ArgumentOutOfRangeException(), not an ArgumentException().
36372         (ves_icall_System_Array_GetLowerBound): Likewise.
36373         (ves_icall_System_Array_GetValue): Improved argument checking.
36374         (ves_icall_System_Array_SetValue): Improved argument checking.
36376 2002-03-01  Martin Baulig  <martin@gnome.org>
36378         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36379         called with invalid arguments rather than just dying with g_assert().
36380         (ves_icall_System_Array_SetValue): Likewise.
36381         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36382         raise a NotImplementedException instead.
36383         (ves_icall_System_Array_GetLength): Added argument checking.
36384         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36386 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36388         * object.h (mono_assert): new macros mono_assert and
36389         mono_assert_not_reached
36391 2002-02-28  Martin Baulig  <martin@gnome.org>
36393         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36394         and "System::String::IsInterned" to "System::String::_IsInterned".
36396 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36398         * icall.c: remove hacks for typebuilder. Added icall to create a
36399         modified type from a tybebuilder.
36400         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36401         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36402         to create a backing MonoClass for a TypeBuilder.
36404 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36406         * class.c, class.h: more refactoring of class init.
36407         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36409 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36411         * marshal.c, marshal.h: start of marshaling interface.
36413 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36415         * icall.c: fix order in assembly qualified name icall.
36417 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36419         * class.c: do not free str, since we store it in the hash table.
36420         * reflection.h: add label field to MonoILExceptionInfo.
36421         * reflection.c: handle references to more than one assembly. Handle
36422         case when there isn't a module created in the assembly.
36424 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36426         * class.c: Fix typo. Start refactoring of class init code.
36428 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36430         * appdomain.c: exit with 1 on error.
36431         * class.c: we already have the name in MonoClassField.
36432         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36433         MonoStreamHeader instead of an offset of image->raw_metadata.
36435 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36437         * appdomain.c (mono_init): Be even more descriptive about the error.
36439 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36441         * appdomain.c: give the user an informative message when corlib can't
36442         be loaded.
36444 2002-02-26  Martin Baulig  <martin@gnome.org>
36446         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36447         New icall to get the time zone data.
36449 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36451         * reflection.c: set virtual and raw size of section correctly.
36452         * threads.c: transfer domain information to newly created threads.
36454 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36456         * class.c: when instancing a class in a domain, load the default
36457         vaules for static fields from the constant table. Fix System.Enum to
36458         not be an enum.
36459         * icall.c: implement Object::GetType() internalcall. Implemented
36460         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36461         Fixed checking of binding flags in find_members().
36462         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36463         * reflection.c: handle enumerations when writing to the constant
36464         table. Use a different object cache for types.
36467 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36469         * object.c (mono_object_isinst): fix for arrays
36471         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36473 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36475         * object.c: don't use mprotect ()  and fix intern pool hash table
36476         lookup for big endian systems.
36478 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36480         * icall.c: change type_is_subtype_of () signature.
36482 2002-02-21  Mark Crichton  <crichton@gimp.org>
36484         * rand.c, rand.h: Added random number generator for
36485         System.Security.Cryptography classes.
36487         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36489         * icall.c: Added System.Security.Cryptography calls.
36491 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36493         * class.c, icall.c, metadata.c: better support for pointer types.
36494         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36495         * reflection.c: Add support for getting custom attrs for properties
36496         and simplify some code.
36498 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36500         * icall.c: change getToken () and add custom attribute GetBlob()helper
36501         method.
36502         * reflection.h: add custom attrs array to the reflection builder structures.
36503         * reflection.c: encode and emit custom attributes for all the relevant
36504         reflection objects. Cache fieldref and methodref tokens. Change
36505         mono_image_create_token() interface to take a MonoDynamicAssembly.
36506         More complete custom attributes decoder. Load custom attributes for
36507         Assembly, Field, Method and Constructor objects, too. Make the
36508         returned array an Attribute[] one, not object[]. Added
36509         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36510         custom attribute constructor.
36512 2002-02-20  Dick Porter  <dick@ximian.com>
36514         * icall.c:
36515         * rawbuffer.c:
36516         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36517         problem code out for now).
36519 2002-02-19  Radek Doulik  <rodo@ximian.com>
36521         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36523 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36525         * icall.c: register the GetCustomAttributes method.
36526         * object.c, object.h: add mono_string_new_len ().
36527         * reflection.h, reflection.c: added mono_runtime_invoke(),
36528         mono_install_runtime_invoke(). Added
36529         mono_reflection_get_custom_attrs () to load custom attributes and
36530         create the attribute objects.
36532 2002-02-19  Dick Porter  <dick@ximian.com>
36533         * threads-dummy-types.c:
36534         * threads-dummy-types.h:
36535         * threads-dummy.c:
36536         * threads-dummy.h:
36537         * threads-pthread-types.c:
36538         * threads-pthread-types.h:
36539         * threads-pthread.c:
36540         * threads-pthread.h:  Deleted obsolete files
36542 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36544         * class.c (mono_class_vtable): runtime init the class when we
36545         allocate static class data.
36547         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36549         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36550         and String - but we will need generic marshalling support in the
36551         future. 
36552         (mono_init): set the domain name in a ms compatible way
36554         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36555         String[].
36557 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36559         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36560         for sizes
36562         * appdomain.c (mono_domain_unload): impl.
36564 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36566         * appdomain.c, object.c: fix intern pool implementation.
36567         * class.c: fix alignment code.
36569 2002-02-16  Radek Doulik  <rodo@ximian.com>
36571         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36572         and s2 > s1, just copy lower bytes to be compatible with little
36573         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36574         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36576         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36577         force big_endian to be 1 for big endian machines 
36578         (ves_icall_iconv_new_decoder): ditto
36580 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36582         * socket-io.c (convert_sockopt_level_and_name): If the system
36583         doesn't define SOL_IP or SOL_TCP, get them by hand using
36584         getprotobyname() and caching the values (because this could be a
36585         slow operation).
36586         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36587         Use the appropriate struct when the system does support it. Ie,
36588         not all systems have struct ip_mreqn so use struct ip_mreq when
36589         appropriate.
36591 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36593         * reflection.c: handle finally clauses.
36595 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36597         * socket-io.c: use g_snprintf() instead of snprintf.
36599 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36601         * reflection.c (mono_param_get_objects): Cast second argument to
36602         mono_method_get_param_names to a const char** to silence the
36603         compiler warning.
36605         * appdomain.c (mono_domain_assembly_open): Put parens around the
36606         truth statement in the for-loop.
36608         * unicode.c (iconv_convert): Got rid of a compiler warning about
36609         int i being unused when the system has a new iconv.
36610         (iconv_get_length): Same.
36612         * image.c (load_class_names): Cast the second argument to
36613         g_hash_table_insert() to char* to hush compiler warnings about the
36614         arg being a const.
36615         (mono_image_open): Same here.
36617         * socket-io.c: Don't conditionally include sys/filio.h or
36618         sys/sockio.h here anymore since we now get them from
36619         io-layer/io-layer.h
36620         (inet_pton): If the system doesn't support inet_aton, implement
36621         using inet_addr and also #define INADDR_NONE if it isn't defined
36622         by the system.
36624 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36626         * metadata.c, metadata.h: added function to get packing and size info
36627         of a typedef.
36628         * reflection.h, reflection.c: handle field RVA data. Save info about
36629         the table layout if needed. Assign typedef indexes to all the types
36630         before dumping the info about them to avoid forward reference problems.
36632 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36634         * socket-io.c (convert_sockopt_level_and_name): ifdef
36635         SO_ACCEPTCONN because it is not defined on my system (old debian)
36637 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36639         * opcode.c: use stddef.h to get NULL.
36641 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36643         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36644         for FIONBIO, FIONREAD and SIOCATMARK.
36645         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36646         define INADDR_NONE and besides, inet_addr() is deprecated and
36647         should not be used. Use inet_pton() instead - it also has the
36648         added bonus that it can easily handle IPv6 addresses as well.
36649         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36651 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36653         * decimal.c: remove _MSC_VER conditional.
36655 2002-02-13  Dick Porter  <dick@ximian.com>
36657         * socket-io.c: 
36658         * icall.c: Internal calls for Blocking, Select, Shutdown,
36659         GetSocketOption and SetSocketOption
36661 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36663         * assembly.cs: better resolver: use it instead of some kludgy
36664         code.
36666 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36668         * reflection.c: the best way to speed-up the compiler is to avoid
36669         infinite loops.
36671 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36673         * class.c (mono_class_vtable): changed the object layout
36674         (obj->vtable->class). 
36675         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36677 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36679         * assembly.c: look for assemblies in the assembly dir, too.
36681 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36683         * class.c: fix thinko in mono_class_from_type().
36685 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36687         * exception.h, exception.c: added TypeLoadException.
36688         * object.h, object.c: added mono_array_clone ().
36689         * icall.c: handle throwOnError in AssemblyGetType().
36690         Added Array.Clone().
36691         * opcode.h, opcode.c: use a single value for the opcode val.
36692         Compile fix for non-gcc compilers.
36694 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36696         * opcodes.c, opcodes.h: export interesting info about opcodes.
36698 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36700         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36701         icalls. 
36703         * class.c (class_compute_field_layout): set element_class for enums
36704         (mono_class_create_from_typedef): set element_class for normal classes
36706         * icall.c (ves_icall_System_Enum_get_value): impl.
36708         * class.c (mono_class_create_from_typedef): do not set valuetype
36709         flag for System.ValueType and System.Enum
36711 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36713         * unicode.c (iconv_convert): fix big endian problem.
36715 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36717         * class.c: add asserts if we are ever going to scribble over memory.
36718         * socket-io.c: not all systems have AF_IRDA defined.
36720 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36722         * class.c (class_compute_field_layout): do not consider static
36723         fields to compute alignment
36725 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36727         * appdomain.c (mono_appdomain_get): impl.
36728         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36730 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36732         * icall.c: ignore "file://" prefix when loading an assembly.
36734 2002-01-23  Dick Porter  <dick@ximian.com>
36736         * socket-io.c:
36737         * icall.c:
36738         * Makefile.am: Added socket support
36740 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36742         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36743         code back.  This should return the assemblies that are loaded by
36744         the runtime on behalf of an application domain. 
36746         The current implementation is still broken, it just returns every
36747         assembly loaded, but until we get real applications domain this
36748         will do.
36750 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36752         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36753         AppDomain object.
36755 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36757         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36758         the mono_class_from_name lookup.
36759         (ves_icall_get_parameter_info): ditto.
36760         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36761         method.
36762         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36764 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36766         * class.c: load also nested classes on class init.
36767         System.ValueType instance methods gets passed boxed
36768         values, unless methods in derived classed that get a pointer to the
36769         data.
36770         * icall.c: use better name parsing code in GetType().
36771         * image.c, image.h: add mono_image_loaded ().
36772         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36773         * reflection.c, reflection.h: added mono_reflection_parse_type().
36775 2002-01-22  Veronica De Santis <veron78@interfree.it>
36777         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36778         * threads.c : Added the implementation of internal calls for events
36779         * threads.h : Added prototypes of internal calls for events
36780         
36781 2002-01-21  Radek Doulik  <rodo@ximian.com>
36783         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36785 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36787         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36788         (mono_class_value_size): use min_align
36790 2002-01-20  Dick Porter  <dick@ximian.com>
36792         * threads.h:
36793         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36794         so it compiles on w32.
36796 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36798         * metadata.c (mono_type_stack_size): impl.
36800         * class.c (mono_class_get_field): impl. memberref token
36802 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36804         * icall.h : Added the internal calls mapping for CreateMutex_internal
36805                     and ReleaseMutex_internal.
36806         * threads.h : Added the prototype of mutexes internal calls.
36807         * threads.c : Added the implementations of mutexes internal calls.
36809 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36811         * metaparse.h: removed unused file.
36812         * reflection.c, reflection.h: added stream_data_align () function 
36813         to align data in streams and keep stream aligned. Add support for
36814         exception support in method headers.
36816 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36818         * unicode.c: make iconv_convert () return the number of bytess written
36819         in the output buffer.
36821 2002-01-15  Dick Porter  <dick@ximian.com>
36822         * threads.c: Make the runtime's idea of infinite timeouts coincide
36823         with the class library's
36825         Fix a particularly egregious bug in mono_thread_cleanup(). That
36826         code was so utterly bogus it must have been written on a Monday.
36828 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36830         * reflection.h: add subtypes field to TypeBuilder.
36831         * reflection.c: encode constants for literal fields.
36832         Handle subtypes. Fix user string token (and add a zero byte)
36833         at the end.
36834         
36835 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36837         * class.c (mono_class_init): bug fix: assign slot numbers for
36838         abstract methods.
36840 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36842         * reflection.c: don't try to output a code RVA for abstract methods.
36843         Small fixes for method header format. Output parameter info to the
36844         ParamDef table. Save method overriding info to MethodImpl table.
36845         Fix property support. Allow typedef.extends to be a type in the
36846         building assembly.
36847         * verify.c: fix off-by-one error.
36849 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36851         * class.c: fix mono_class_from_mono_type () for szarray types.
36852         Remove unused cache check in mono_class_from_type_spec().
36853         * icall.c: *type_from_name () functions handle simple arrays and byref.
36854         * reflection.c: handle byref and szarray types. Handle methods without
36855         body (gets P/Invoke compilation working). Handle types and fields in
36856         get_token ().
36857         * reflection.h: add rank to MonoTypeInfo.
36859 2002-01-10  Dick Porter  <dick@ximian.com>
36861         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36862         internal calls
36864 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36866         * icall.c: initialize class in type_from_handle ().
36867         Loop also in parent classes for get_method ().
36868         * reflection.c: properly encode class and valuetype types.
36869         Start on encoding TypeBuilder types. Handle fieldrefs.
36870         Use correct length when registering a user string.
36871         Handle ConstructorBuilder and MonoMethod in get_token ().
36872         Make mono_type_get_object () aware of cached types.
36873         * object.c: back out change to mono_string_new ().
36875 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36876         * object.c: mono_string_new should return a NULL when the string 
36877         passed in is NULL -- not try to deference it.
36878         
36879 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36881         * icall.c: hack to make IsSubType work for TypeBuilders.
36882         * reflection.c: emit constructors before methods.
36883         Retrieve param names in mono_param_get_objects().
36885 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36887         * Makefile.am: fix list of headers and sources so automake 1.5
36888         doesn't complain. Removed \# at end of list.
36890 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36892         * reflection.c: get token for a method ref. Set return type of
36893         constructor to void.
36894         * loader.c: debug message.
36895         * class.c: typo fix.
36897 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36899         * icall.c: fix array init with rank > 1. FindMembers
36900         loops in parent class as well.
36901         * image.c: do not insert nested types in name cache.
36902         * reflection.c: warning fix.
36903         * reflection.h: add override method (for interface impl).
36905 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36907         * metadata.c: fix customattr decoding.
36909 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36911         * rawbuffer.cs: Added native Win32 implementation, avoids using
36912         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36914 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36916         * class.c: make the low-level routines handle the cache.
36918 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36920         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36922 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36924         * class.c: fix mono_array_element_size() for objects.
36925         * class.h, class.c: add properties to MonoClass and load them
36926         at init time.
36927         * icall.c: check with isinst() when assigning a value to an array
36928         instead of requiring the classes to match exactly.
36929         Implemented icall for System.Type::GetType().
36930         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36931         enums. Handle bindingflags when looking for methods and fields.
36932         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36933         and mono_metadata_methods_from_property().
36934         * reflection.h, reflection.c: added structures for propreties,
36935         parameters and enums. Implemented mono_property_get_object() and
36936         mono_param_get_objects().
36938 2001-12-18  Dick Porter  <dick@ximian.com>
36940         * file-io.c: Use mono_string_to_utf16() instead of
36941         mono_string_chars()
36943         * object.c: Added mono_string_to_utf16(), which copies the non
36944         NULL-terminated MonoString into a new double-null-terminated
36945         buffer.
36947 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36949         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36951 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36953         * file-io.c: raise exceptions if handle is invalid.
36955 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36957         * assembly.c: yet another check for mscorlib.
36958         * class.c, class.h: load nesting info for classes.
36959         * icall.c: many new functions to support the Reflection classes.
36960         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36961         * reflection.h, reflection.c: mono_image_create_token(),
36962         mono_assembly_get_object(), mono_type_get_object(),
36963         mono_method_get_object(), mono_field_get_object(): methods to return
36964         objects that parallel the C representation of assemblies, types,
36965         methods, fields.
36967 2001-12-11  Dick Porter  <dick@ximian.com>
36969         * icall.c:
36970         * file-io.c: Internal calls for file IO.
36972 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36974         * tabledefs.h: missing FileAttributes.
36975         * verify.h, verify.c: use is_valid_string () to simplify and check for
36976         valid strings more correctly. Fix warnings and speeling.
36977         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36978         Check code: branches, maxstack, method calls.
36980 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36982         * object.c (mono_object_allocate): removed static, so that the jit
36983         can allocate value types.
36985         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36987 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36989         * class.c: init enum types right away and register the
36990         token->MonoClass map in mono_class_create_from_typedef ().
36991         * verify.h, verify.c: first cut of the verifier.
36992         * pedump.c: add --verify switch to verify metadata tables.
36993         * tabledefs.h: add some missing enums.
36995 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36997         * class.c (mono_install_runtime_class_init): impl.
36998         (mono_class_init): renamed mono_class_metadata_init to
36999         mono_class_init, also removed the metadata_inited flag
37001         * object.c (mono_object_isinst): use faster algorithm
37003 2001-11-30  Radek Doulik  <rodo@ximian.com>
37005         * mono-endian.h: reverted last change
37006         added function prototypes
37008         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37009         add mono-endian.c back
37011         * mono-endian.c: returned back, as Paolo pointed out, it's needed
37012         for unaligned access, I've mistaked it with endianess. I am
37013         sorry.
37014         (mono_read16): fix reverted endianess
37015         (mono_read64): ditto
37016         (mono_read32): ditto
37018 2001-11-30  Dick Porter  <dick@ximian.com>
37020         * exception.c: Implement mono_exception_from_name()
37022 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37024         * metadata.h, metadata.c: remove params_size and locals_size and their
37025         calculation from the metadata code: they are only usefult to the
37026         interp.
37028 2001-11-29  Radek Doulik  <rodo@ximian.com>
37030         * object.c (mono_ldstr): swap bytes here, it's probably not the
37031         best place, but works for me now, I'll redo it once I know mono
37032         better, also note that I add PROT_WRITE and don't reset back, also
37033         note that it's only affects big endians, so x86 should be OK
37035         * mono-endian.h (read16): use just glib macros for both endians
37037         * mono-endian.c: removed as glib macros are used in in
37038         mono-endian.h so we don't need to care about endianess for read
37039         macros as glib does that for us already
37041 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37043         * class.h, class.h: take minimum alignment into consideration so
37044         that the fields of a class remain aligned also when in an array.
37046 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37048         * loader.h, loader.c: add mono_method_get_param_names().
37049         * class.c: 0-init class fields.
37051 2001-11-26  Dick Porter  <dick@ximian.com>
37053         * icall.c:
37054         * threads-types.h:
37055         * threads.c: New file that handles System.Threading on all platforms
37057         * object.c: 
37058         * object.h: Remove the synchronisation struct from MonoObject,
37059         replace it with a pointer that gets initialised on demand
37061         * Makefile.am: Replace all the system-specific threading code with
37062         a single file that uses the new wrapper library
37064 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37066         * class.c, class.h: add mono_install_trampoline() so that the runtime
37067         can register a function to create a trampoline: removes the ugly
37068         requirement that a runtime needed to export arch_create_jit_trampoline.
37069         * object.h, object.c: added mono_install_handler() so that the runtime
37070         can install an handler for exceptions generated in C code (with
37071         mono_raise_exception()). Added C struct for System.Delegate.
37072         * pedump.c: removed arch_create_jit_trampoline.
37073         * reflection.c: some cleanups to allow registering user strings and
37074         later getting a token for methodrefs and fieldrefs before the assembly
37075         is built.
37076         * row-indexes.h: updates and fixes from the new ECMA specs.
37078 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37080         * class.h, class.c: add enum_basetype field to MonoClass.
37081         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37082         to get index in the constant table reated to a field, param or
37083         property.
37084         * reflection.h, reflection.c: handle constructors. Set public-key and
37085         version number of the built assembly to 0.
37086         * row-indexes.h: update from new ECMA spec.
37088 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37090         * class.h, class.c: add a max_interface_id to MonoClass.
37091         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37092         since it's used to do that. Added mono_type_type_from_obj().
37093         Make GetType() return NULL instead of segfaulting if the type was not
37094         found. Handle simple arrays in assQualifiedName.
37095         * object.h: add a struct to represent an Exception.
37096         * reflection.c: output call convention in method signature.
37097         Add code to support P/Invoke methods and fixed offsets for fields.
37099 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37101         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37102         the value.
37103         * icall.c: use mono_array_addr instead of array->vector: fixes the
37104         reflection image writing.
37105         * reflection.c: init call convention byte to 0 in method signature.
37106         Encode the property signature. Don't output property-related methods
37107         twice. Really process the properties for a type (don't cast a field to
37108         a property, my mom always told me that).
37109         Fix 64 bit issues in pointer alignment in a different and more
37110         readable way.
37112 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37114         * loader.h: Removed type class from MonoDefaults, added monotype
37116         * loader.c: Loaded MonoType, removed loading of Type
37118         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37119         and fills in System.Type._impl with a RuntimeTypeHandle rather
37120         than the actual MonoClass *
37122         (ves_icall_type_from_handle): change from type_class to
37123         monotype_class
37125         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37126         implemented
37128         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37129         implemented
37131         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37133         (ves_icall_System_Reflection_Assembly_GetType): implemented
37135         (ves_icall_System_MonoType_assQualifiedName): implemented
37137         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37139 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37141         * assembly.c (mono_assembly_open): Implement a cache for the
37142         assemblies. 
37144         (mono_assembly_close): only destroy the assembly when the last
37145         reference is gone.
37146         
37147 2001-11-09  Dick Porter  <dick@ximian.com>
37149         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37151 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37153         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37155 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37157         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37158         from Martin Weindel.
37159         * object.h: add mono_string_chars ().
37161 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37163         * reflection.c (build_compressed_metadata): Eliminates warnings
37164         and uses 64-bit clean code.
37166         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37167         (mono_type_equal): Change signature to eliminate warnings.
37169 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37171         * icall.c, loader.c: remove the internalcall array constructors.
37172         Changes to match the new MonoArray structure.
37173         * object.h, object.c: an array object doesn't allocate an extra
37174         vector. Add mono_array_new_full () to create jagged arrays easily.
37176 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37178         * metadata.h, metadata.c: add mono_metadata_field_info () to
37179         retreive all the info about a field from vairous tables.
37180         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37181         * class.h, class.c: augment MonoClassField with more info.
37182         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37183         policy and load a field's RVA if needed.
37185 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37187         * class.c (mono_class_metadata_init): create a trampoline for all
37188         virtual functions instead of actually compiling them.
37190 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37192         * class.h, class.c: include name in MonoClassField.
37193         * class.c: fix fundamental type of System.Object and System.String.
37194         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37195         tokens in ldtoken.
37196         * icall.c: remove internalcalls for the Reflection stuff that is now
37197         done in C# code.
37198         * loader.c: mono_field_from_memberref () implementation.
37199         * mono-endian.c: thinko (s/struct/union/g).
37200         * object.c, object.h: make the mono_string_* prototypes actually use
37201         MonoString instead of MonoObject.
37202         * reflection.c, reflection.h: updates for changes in the reflection
37203         code in corlib: we use C structures that map to the actual C# classes.
37204         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37205         fat method header if needed and use the info from the ILGenerator for
37206         methods. Handle fields in types. Misc fixes.
37208 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37210         * class.c (mono_class_metadata_init): bug fix: always allocate
37211         space for static class data
37213 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37215         * class.c (mono_compute_relative_numbering): use relative
37216         numbering to support fast runtime type checks.
37218 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37220         * class.c (mono_class_create_from_typeref): added debugging output
37221         to print class name when MonoDummy is returned instead of real class
37223 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37225         * class.c (mono_class_metadata_init): interface offset table now
37226         contains pointers into the vtable - this is more efficient for the jit
37228 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37230         * class.c (mono_class_metadata_init): use a temporary vtable (the
37231         old algorithm only worked for the interpreter, but not for the jit)
37233 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37235         * loader.c (method_from_memberref): use mono_class_get to get the
37236         class of an array instead of using System.Array directly.
37237         (mono_get_method): also add MEMBERREF methods to the method cache
37238         which usefull for arrays.
37240 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37242         * pedump.c (arch_compile_method): added to compute vtable entry
37244         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37245         number of interfaces.
37246         
37247         * class.h: merged MonoArrayClass into MonoClass
37249         * class.c (mono_class_create_from_typedef): compute the vtable size and
37250         allocate space to include the vtable inside MonoClass
37251         (mono_class_metadata_init): initialize the vtable
37253 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37255         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37256         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37257         * image.c: endian fixes by Laurent Rioux.
37258         * object.h, object.c: rename MonoStringObject to MonoString and
37259         MonoArrayObject to MonoArray. Change some function names to conform to
37260         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37261         guint16* as first argument, so don't use char*.
37262         Provide macros to do the interesting things on arrays in a portable way.
37263         * threads-pthread.c: updates for the API changes and #include <sched.h>
37264         (required for sched_yield()).
37265         * icall.c: updates for the API changes above.
37266         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37267         platforms that need them.
37269 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37271         * class.c: set the correct type for all the fundamental
37272         type when loading the class.
37274 2001-10-05  Dick Porter  <dick@ximian.com>
37276         * threads-pthread.c (pthread_mutex_timedlock): Simple
37277         compatibility version for C libraries that lack this call.
37279 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37281         * class.c: MonoTypes stored in MonoClass are stored as
37282         fundamental MonoTypes when the class represents a
37283         fundamental type (System.Int32, ...).
37284         The TypeHandle return by ldtoken is a MonoType*.
37285         * icall.c: ves_icall_get_data_chunk () write out all the
37286         PE/COFF stuff. Implement ves_icall_define_method (),
37287         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37288         * image.c: properly skip unknown streams.
37289         * loader.h, loader.c: add type_class to mono_defaults.
37290         * metadata.c, metadata.h: export compute_size () as
37291         mono_metadata_compute_size () with a better interface.
37292         Typo and C&P fixes.
37293         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37294         * reflection.c, reflection.h: many cleanups, fixes, output method
37295         signatures and headers, typedef and typeref info, compress the metadata
37296         tables, output all the heap streams, cli header etc.
37297         * row-indexes.h: typo fixes.
37299 2001-10-04  Dick Porter  <dick@ximian.com>
37301         * object.h: Add a synchronisation mutex struct to MonoObject
37303         * object.c (mono_new_object): Initialise the object
37304         synchronisation mutexes
37306         * icall.c: System.Threading.Monitor internal calls
37307         
37308         * threads-pthread.h:
37309         * threads-pthread.c: System.Threading.Monitor internal calls
37311         * threads-types.h: New file, includes the system-specific thread
37312         structures
37313         
37314         * threads-pthread-types.h:
37315         * threads-pthread-types.c: New files, handle pthread-specific
37316         synchronisation types
37318         * threads-dummy-types.h: 
37319         * threads-dummy-types.c: New files of dummy support for
37320         thread-specific types
37322         * metadata.c:
37323         * image.c:
37324         * pedump.c: include mono-endian.h not endian.h
37325         
37326         * Makefile.am: More threads files.
37327         Name mono-endian.h not endian.h
37329 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37331         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37332         stuff and implement a few more bits.
37333         * icall.c: a field needs to be dereferenced twice. Do not use the same
37334         name for two variables in the same scope.
37335         * image.c, image.h: cleanups.
37337 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37339         * class.c (mono_class_metadata_init): bug fix: compute the right size
37341 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37343         * icall.c: implemented some of the Reflection internalcalls.
37344         * image.c, image.h: start writing out the PE/COFF image.
37345         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37346         that does the reverse than decode_blob_size ().
37347         * object.c: use mono_metadata_encode_value (). Move here
37348         temporary implementation of mono_string_to_utf8 ().
37349         * rawbuffer.c: make malloc_map static.
37351 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37353         * metadata.c: fix type comparison for arrays.
37354         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37355         Added a couple of new classes to monodefaults.
37356         * icall.c: added a couple of Reflection-related internalcalls.
37357         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37358         Added a byval_arg MonoType to MonoClass.
37360 2001-09-28  Dick Porter  <dick@ximian.com>
37362         * icall.c:
37363         * threads-pthread.h: 
37364         * threads-pthread.c: Implemented internal calls for
37365         LocalDataStoreSlot operations.  Applied mutexes around all shared
37366         data.  Reworked the thread creation and Start() operations to
37367         avoid a race condition.
37368         
37369         * threads-dummy.h:
37370         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37372 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37374         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37376 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37378         * class.c, loader.c: warn and return NULL instead of erroring out.
37379         * icall.c: added System.AppDomain::getCurDomain().
37380         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37382 2001-09-25  Dick Porter  <dick@ximian.com>
37384         * threads-pthread.h:
37385         * threads-pthread.c: Implemented timed thread joining and added
37386         System.Threading.Thread::Join_internal internal call
37388         * icall.c: Added System.Threading.Thread::Join_internal internal call
37390         * threads-dummy.h:
37391         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37393 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37395         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37396         mono_string_intern () to implement the semantics of the ldstr opcode
37397         and the interning of System.Strings.
37398         * icall.c: provide hooks to make String::IsIntern and String::Intern
37399         internalcalls.
37401 2001-09-23  Dick Porter  <dick@ximian.com>
37403         * threads-dummy.c: 
37404         * threads-dummy.h: New files of dummy threading routines
37406         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37407         support code based on system specifics
37409         Rename PTHREAD_LIBS to THREAD_LIBS
37410         
37411 2001-09-23  Dick Porter  <dick@ximian.com>
37413         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37414         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37415         internal calls.
37416         (mono_thread_init): Set up a Thread object instance to return when
37417         the main thread calls Thread.CurrentThread
37418         (mono_thread_cleanup): Wait for all subthreads to exit
37420         * icall.c: New internal calls for System.Threading.Thread::Sleep
37421         (including Schedule) and CurrentThread
37423         * threads.h: New file, to insulate thread-specific stuff from the
37424         rest of the code
37426 2001-09-21  Dick Porter  <dick@ximian.com>
37428         * threads-pthread.h: 
37429         * threads-pthread.c: New file, for handling pthreads-style
37430         threading support.  Start() now starts a new thread and executes
37431         the ThreadStart delegate instance.
37433         * icall.c: Added the internalcall for
37434         System.Threading.Thread::Start_internal
37436         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37438 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37440         * loader.c: work around the different signatures for delegates
37441         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37443 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37445         * class.h, class.c: add mono_class_get_field_from_name ().
37446         * *: Fix C comments and other ANSI C issues.
37448 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37450         * endian.h, assembly.c: fix some endianness issues.
37452 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37454         * loader.h, load.c: add delegate_class to mono_defaults.
37455         Handle runtime provided methods in mono_get_method ().
37457 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37459         * loader.c (mono_get_method): use pinvoke for internal call
37461         * icall.c: use pinvoke for internal call
37463         * loader.c (method_from_memberref): set the method name
37465 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37467         * metadata.c: help the compiler generate better code for
37468         mono_class_from_mono_type ().
37470 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37472         * class.c (mono_class_metadata_init): delayed computing of the
37473         class size to mono_class_metadata_init ()
37475 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37477         * class.c, class.h: add an interfaces member to MonoClass.
37478         * image.c, image.h: add assembly_name field to MonoImage
37479         from the assembly table.
37480         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37482 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37484         * class.c: Handle Array in mono_class_from_mono_type ().
37485         * metadata.c, pedump.c: some endian fixes.
37487 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37489         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37490         * metadata.c: fix small problem introduced with the latest commit.
37492 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37494         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37495         We don't need a MonoMetadata pointer anymore to compare signatures in
37496         mono_metadata_signature_equal (), update callers.
37497         Reduced memory usage an number of allocations for MonoMethodHeader and
37498         MonoMethodSignature.
37500 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37502         * metadata.c: added compare for szarray.
37504 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37506         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37507         and add a couple more types to it and mono_defaults. Give an hint on
37508         classes that need implementing in our corlib and are referenced
37509         in mscorlib.
37511 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37513         * class.h, class.c: keep track if a class is also an Enum.
37514         * loader.c: Implement a couple more types for use in libffi
37515         marshalling. Gives better diagnostics when failing to dlopen
37516         a library. Set method->klass for P/Invoke methods, too.
37518 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37520         * class.c, class.h: add a MonoType this_arg to MonoClass that
37521         represents a pointer to an object of the class' type that
37522         can be used by the interpreter and later the type cache.
37523         Add best guess alignment info for valuetype objects.
37525 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37527         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37528         into MonoType: one less level of indirection and allocation and
37529         simplifies quite a bit of code. Added cache for MonoTypes that are
37530         used frequently, so that we don't need to allocate them all the time.
37532 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37534         * class.c (mono_class_create_from_typedef): System.Enum is also a
37535         value type, although it does not derive from System.ValueType
37536         (maybe a bug in the ms compiler?)
37538         * metadata.c (mono_type_size): return the right size for value types
37540         * loader.c (mono_get_method): only initialize method header if not abstract
37542         * class.c (mono_class_from_mono_type): use mono_default values. 
37544 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37546         * *: use MonoClass pointers instead of <type_tokens>
37547         
37548         * class.h: new flag: metadata_inited.
37550         * class.c (mono_class_metadata_init): impl.
37551         (mono_class_instance_size): impl.
37552         (mono_class_data_size): impl.
37554 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37556         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37557         MonoClass now has the name and name_space fields. 
37558         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37559         mono_get_method () takes and optional MonoClass as argument.
37560         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37561         instead that takes advantage of a map from class names to typedef
37562         tokens in MonoImage.
37564 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37566         * metadata.c: zero is not a valid alignment boundary.
37567         Merge MONO_TYPE_VOID in default decoding code.
37569 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37571         * image.h: merged MonoMetadata into MonoImage
37573         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37574         identify the type of elements.
37576 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37578         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37579         * cil-coff.h: split MonoMSDOSHeader and add size info.
37580         * image.c: add some consistency checks.
37581         * metadata.c: fix row size computation: one programmer
37582         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37583         add explanation for the locator routine.
37584         Fix decoding of size in method header.
37585         
37586 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37588         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37589         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37590         function from gnome-libs.  This uses the right path separator
37591         based on the OS, and also works around a bug in some systems where
37592         a double slash is not allowed. 
37593         (default_assembly_name_resolver): Use g_concat_dir_and_file
37594         (mono_assembly_open): ditto.
37596 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37598         * metadata.c (mono_metadata_signature_equal): impl.
37600         * *: void is now a realy MonoType (instead of using NULL)
37601         
37602         * metadata.c (do_mono_metadata_parse_type): use
37603         mono_metadata_parse_type to parse void value.
37605 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37607         * metadata.c, metadata.h: in the signature and method header store
37608         only the space required for holding the loca vars and incoming arguments.
37610 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37612         * metadata.c (do_mono_metadata_parse_type): treat void like any
37613         other type (instead of assigning NULL);
37615 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37617         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37619 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37621         * image.c (do_mono_image_open): added a cache for arrays.
37623 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37625         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37626         decode a single column from a row in a metadata table and changes
37627         to take advantage of it in the typedef locator (gives a nice speed up).
37628         Store offset info for function params.
37630 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37632         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37634 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37636         * assembly.c: how could mono_assembly_close () had ever worked?
37637         * metadata.c, metadata.h: provide offset info for local vars.
37638         Implement mono_type_size () to take care of alignment as well
37639         as size (it was mono_field_type_size in cli/class.c before).
37641 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37643         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37645         * assembly.h (CORLIB_NAME): set to corlib.dll
37647         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37649 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37651         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37652         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37653         tokentype.h: massive namespace cleanup.
37655 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37657         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37659 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37661         * metadata.c (mono_metadata_free_type): added check for type !=
37662         NULL (void) before calling mono_metadata_free_type()
37664 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37666         * metadata.h, row_indexes.h: added header with enumerations to use
37667         to index in the columns from tables in metadata and to decode coded
37668         tokens: we should start using this instead of embedding magic numbers
37669         all over the code.
37671 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37673         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37674         Move metadata_t info from cli_image_info_t to MonoImage, where
37675         it's easily accessible. Changed all the uses accordingly.
37676         Added the method and class caches to MonoImage.
37677         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37678         and mono_metadata_decode_value () signature to be more consistent
37679         with the other parse functions (and simplify code). Taken advantage
37680         of zero-length array allocation with GCC. Removed reduntant (and
37681         wrong) MonoFieldType struct and use MonoParam instead. Changed
37682         mono_metadata_parse_field_type () to use common code for parsing.
37683         Added mono_metadata_typedef_from_field () and
37684         mono_metadata_typedef_from_method () to lookup a typedef index from a
37685         field or method token.
37686         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37688 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37690         * metadata.c (mono_metadata_parse_field_type): Implement. 
37691         (do_mono_metadata_parse_type): Split engine from
37692         mono_metadata_parse_type, so that we can create smaller structures
37693         for things that just have one pointer to the MonoType (look at
37694         the MonoFieldType)
37696 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37698         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37699         as Jan Gray found out, it is incorrect. 
37701 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37703         * assembly.c: Implement asssembly loading.  This loads an image
37704         and loads all the referenced assemblies.  Come to think of it, we
37705         could always do lazy loading of the assemblies. 
37707         * image.c (mono_image_open): Keep loaded images in a hashtable.
37709         * image.h (MonoImage): Add reference count.
37711 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37713         * assembly.c (mono_assembly_open): Keep track of the file name in
37714         case the assembly has no ASSEMBLY table.
37716         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37717         from get.c here.
37719 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37721         * metadata.c, metadata.h: decode local vars in method header
37722         parse function. Change callers accordingly.
37724 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37726         * metadata.h, cil-coff.h: protect against multiple inclusion.
37727         Added some new structures to hold information decoded from metadata:
37728         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37729         and relevant decoding/free functions.
37730         * metadata.c: implement decoding functions. Add warning for out of bounds
37731         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37732         all the info about a method signature and invocation. Remove check on
37733         uninitialized local var in parse_mh() and fix memory leak.
37735 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37737         * metadata.h: More macros.
37739         * tokentype.h: New file.
37741 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37743         * assembly.c: added a consistency check and initialize
37744         some structures with g_new0().
37745         * metadata.c: fixed a couple more bugs in table size computation
37746         and add other checks for out-of bound access to metadata.
37748 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37750         * metatada.c: fix bugs computing table sizes. Spew a
37751         warning when index in string heap is out of bounds.
37753 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37755         * metadata.h: Add a couple of macros to manipulate tokens. 
37757 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37759         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37760         cli_section_tables).
37762 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37764         * metadata.c (mono_metadata_user_string): New function, provides
37765         access to the UserString heap. 
37767 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37769         * metadata.c: Add inline documentation.
37771 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37773         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37774         files. 
37776 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37778         * typeattr.h: New file, TypeAttribute flags. 
37780 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37782         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37783         mono_assembly_ensure_section): Section loading code.
37784         (load_section_tables): Load the sections.
37786         * mono/metadata/metadata.c (mono_metadata_locate_token,
37787         mono_metadata_locate): Functions to locate the information
37788         definition given a token or a table and an index.
37789         (mono_metadata_compute_table_bases): New.
37790         (compute_size): New function to compute the sizes of the various
37791         tables.
37793         * mono/metadata/metadata.h: Finish listing the different index
37794         types. 
37796         * mono/metadata/pedump.c: Improve to dump new information.
37798 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37800         * mono/metadata/metadata.c: Entered all the tables matching
37801         Beta2. 
37803         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2