2010-06-02 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blob169039fa68fe9ef428bf11f1328bd36c4839fc5f
1 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
3         * verify.c (is_compatible_boxed_valuetype): Constaints
4         must be recursively checked if one generic argument
5         has a constraint on another.
7         Fixes #610625.
9 2010-05-31  Miguel de Icaza  <miguel@novell.com>
11         * console-unix.c (terminal_get_dimensions): Fix my previous
12         botched commit and return the actual value obtained from the ioctl.
14 2010-05-29  Mark Probst  <mark.probst@gmail.com>
16         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
17         references so that we don't have to do the cache-cold fetch of the
18         class in copy_object_no_checks().
20 2010-05-29  Robert Jordan  <robertj@gmx.net>
22         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
23         mono_marshal_string_to_utf16_copy () to avoid memory allocation
24         mismatches under Windows. Fixes pinvoke2:test_0_asany.
26 2010-05-28  Mark Probst  <mark.probst@gmail.com>
28         * sgen-gc.c: Change default nursery size to 4MB, because it
29         improves performance on many applications and benchmarks.
31 2010-05-28  Mark Probst  <mark.probst@gmail.com>
33         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
34         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
35         the GC descriptor by one bit, and don't encode the size for value
36         types not containing references.  Also get rid of
37         DESC_TYPE_STRING.
39 2010-05-28  Mark Probst  <mark.probst@gmail.com>
41         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
42         other than for remset processing.
44 2010-05-28  Mark Probst  <mark.probst@gmail.com>
46         * sgen-gc.c: More and better remset consistency checks.
48 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
50         * sgen-gc.c: Add a note about the int[] trick to avoid some
51         memset.
53 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
55         * sgen-gc.c (sort_addresses): Use heap sort since it has better
56         performance.
58         This helps programs with lots of threads or thread with big stacks
59         since the bottleneck the pin queue can get quite big.
61 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
63         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
64         a separate function called setup_fragment.
66         * sgen-gc.c (search_fragment_for_size_range): Variant of
67         search_fragment_for_size that does search for a secondary smaller
68         size.
70         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
71         for tlab allocation so small fragments are used.
73         This patch uses small fragments for tlab allocation when possible in order
74         to improve nursery utilization. With a fixed size tlab this patch is not very
75         usefull but once size gets dynamically adjusted, this will be invaluable.
77         Performance under pystone 500k is unchanged. Nursery utilization improves by
78         3.5% and 18 more fragments are used per minor GC.
80         Performance under modified binary-tree is unchanged. Nursery utilization
81         improves by 0.5% and 3 more fragments are used per minor GC.
83         These numbers make sense since as more pinning happens, more fragments are
84         created and so are the chances of having a bunch of small ones.
86 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
87         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
88         the current fragment when allocating a TLAB.
90         Reduces number of pystone 500k minor collections by 7%.
92 2010-05-25  Martin Baulig  <martin@ximian.com>
94         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
96         * debug-mono-symfile.c: Release memory from symfiles that were
97         loaded from memory.
99 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
101         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
102         during shutdown.
104 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
106         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
107         target class and remove some dead code.
109 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
111         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
112         the MonoTypes inside method headers can be freed when the header is freed.
114 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
116         * threadpool.c: Fix the DISABLE_SOCKETS build.
118 2010-05-19 Martin Baulig  <martin@novell.com>
120         Fix #604911.
122         * threads.c (wait_for_tids_or_state_change): Use an
123         alertable WaitForMultipleObjectsEx().
124         (wait_for_tids): Likewise.
126 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
128         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
129         icall.
131         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
132         gc tracked memory.
134         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
135         argument from a gchandle.
137         * marshal.c: Get rid of the delegate_target_locations hash table.
139         Fixes #605295.
141 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
143         * sgen-gc.c: Use _fast variants for string and array length.
145 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
147         * sgen-gc.c: Fix counters to be 64 bits.
149         * sgen-gc.c (dump_heap): Fix formating strings.
151 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
153         * sgen-gc.c (global_remset_location_was_not_added): New
154         function that implements a 2 element LRU cache for just
155         added remsets. It is used to avoid adding duplicate ones.
157         * sgen-gc.c (add_to_global_remset): Check cache before
158         adding new entry.
160         * sgen-gc.c (scan_from_remsets): Don't process global remsets
161         that fail the cache test.
163         * sgen-gc.c (scan_from_remsets): Simplify the global remset
164         loop removing one condtion that is not possible.
166         A 2 element LRU cache was chosen by profiling IronPython 2.6
167         pytones with 1M passes and corlib compilation.
169         For the ipy test duplication was originally 940.92, measured
170         by "Store remsets" divided by "Unique store remsets".
172         With a 2-element LRU, duplication went to 1.007. Without the
173         check in scan_from_remsets 1.438.
175         With a 16-elements LRU, duplication reduction was negligibe.
176         A single element cache was basically of no use.
178         With corlib compilation duplication went from  1.4 to 1.02.
180         Performance results is a 20% time decrease for ipy and 2%
181         with corlib.
182 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
184         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
186 2010-05-15  Geoff Norton  <gnorton@novell.com>
188         * mono-debug.c: Fix a leak of the global table on shutdown.
190 2010-05-15  Geoff Norton  <gnorton@novell.com>
192         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
193         to clean up MonoDebugSourceLocation's.
195 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
197         * class.c (mono_class_create_from_typedef): Fail a class
198         if there is a loop with its parent.
200         Fixes #598239.
202 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
204         * loader.c (mono_loader_set_error_type_load): Convert
205         a g_warninig to mono_trace_warning.
207 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
209         * class.c (mono_class_get_full): Release strings on failure
210         to avoid leaking them.
212 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
214         * class.c (mono_class_create_from_typedef): Only return
215         the class if no exceptions were detected.
217         * class.c (mono_class_create_from_typedef): Don't remove
218         broken classes from class_cache. Just set failure and
219         bail out.
221         This fixes a memory a memory leak where resolving the same
222         broken class multiple times resulted in a memory leak.
224         The right behavior would be to actually return the class
225         a let the caller figure it out.
227 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
229         * mono-ptr-array.h: Add mono_ptr_array_sort.
231         * reflection.c (mono_image_build_metadata): Replace that ugly
232         qsort call with mono_ptr_array_sort.
234 2010-05-13  Mark Probst  <mark.probst@gmail.com>
236         * sgen-gc.c: Switch to the copying major collector, because
237         Mark&Sweep is still buggy.
239 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
241         * reflection.c (mono_image_build_metadata): Don't put managed
242         references on non-tracked memory.
244 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
246         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
248 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
250         * icall.c: Switch to mono-ptr-array.h.
252 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
254         * Makefile.am: Add mono-ptr-array.h.
256         * mono-ptr-array.h: New header that implements
257         a GC tracked equivalent of g_ptr_array. 
259 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
261         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
262         method to avoid initializing the class.
264         Fixes #605115.
266 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
268         * icall.c (ves_icall_System_MonoType_getFullName): It
269         doesn't require to init the class.
271 2010-05-11  Miguel de Icaza  <miguel@novell.com>
273         * console-unix.c: Signal handlers now save and restore errno.   We
274         have never had a bug report about this, ioctl does change errno. 
276         Hide the unused method.   
278         Remove internal declarations from public headers.
280         Document what the signal handler is doing
282 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
284         * sgen-gc.c (clear_unreachable_ephemerons): Clear
285         unreachable keys with a tombstone.
287         * sgen-gc.c (mark_ephemerons_in_range): Ignore
288         tombstone keys.
290 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
292         * icall-def.h:
293         * gc-internals.h:
294         * gc.c: New GC:get_ephemeron_tombstone.
296 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
298         * appdomain.c (create_exceptions): Rename to
299         create_domain_objects. Create the ephemeron tombstone object.
301         * domains-internals.h (MonoDomain): Add new field for the
302         ephemeron tombstone.
304         * domain.c (mono_domain_free): Set ephemeron_tombstone to
305         NULL.
307 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
309         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
310         and dislinks must be processed before LOS since they
311         could end up with pointers to memory returned to the
312         OS.
314 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
316         * class.c (mono_class_alloc): New helper function to centralize memory allocation
317         for classes, allocates either from the image mempool or from the heap.
319         * class.c: Use mono_class_alloc to allocate memory owned by classes.
321         * metadata.c (free_generic_class_dependents): Free more items belonging to
322         generic classes.
324 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
326         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
327         as well. Fixes #604054.
329 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
331         * metadata-verify.c: MS doesn't mind duplicates in the
332         typeref table. Move it to full verification.
334         Fixes #600508.
336 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
338         * image.c (do_mono_image_load): Report verification
339         errors when loading an image fails.
341 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
343         * reflection.c (mono_type_get_object): Remove chunk of code
344         no longer in use.
346 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
348         * icall-def.h
349         * icall.c: Delete some unused icalls.
351 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
353         * appdomain.c (mono_domain_has_type_resolve): Check for
354         NULL domain objects to make pedump happy.
356         * object.c (mono_field_get_value): Assert on NULL object.
357         It's the caller resposibility to check for this.
359         * object.c (mono_field_get_value_object): Ditto.
361         Fixes #601384.
363 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
365         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
366         checks can avoid doing a mono_class_init.
368         * icall.c: Remove mono_class_init from a bunch of icalls that
369         don't need it.
371         Hopefully we're now lazy enough to fix most victims of #601431.
373 2010-05-07  Mark Probst  <mark.probst@gmail.com>
375         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
377 2010-05-07  Mark Probst  <mark.probst@gmail.com>
379         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
381 2010-05-07  Marek Habersack  <mhabersack@novell.com>
383         * culture-info-tables.h: updated to include en-TT culture. Fixes
384         bug #594035
386 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
388         Move mono_class_init from mono_type_get_object to icalls.
389         This causes massive memory savings for Assembly::GetTypes () and
390         make it fail a lot less due to missing dependencies.
392         This is a conservative, naive change as it doesn't remove some
393         mono_class_init from places that might not need them. Carefull
394         review of those should follow.
396         * reflection.c (mono_type_get_object): Don't mono_class_init the
397         returning type.
399         * reflection.c:
400         * cominterop.c:
401         * icall.c:
402         * marshal.c: Call mono_class_init in functions receiving a MonoType
403         object.
405         First step into fixing #601431.
407 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
409         * gc-internal.h: Add new functions required for ephemeron support.
411         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
413         * icall-def.h: Add GC::register_ephemeron_array.
415         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
416         under sgen. Its fields must not be marked.
418         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
420         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
421         handling finalizable objects. Clean dead ones after all finalizable
422         handling.
424         * sgen-gc.c (dump_heap): Add new kind of internal memory.
426         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
427         arrays from the dead domain.
429         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
431         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
432         whose keys are reachable.
434         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
435         list of live ephemeron arrays.
437 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
439         * class.c (mono_class_layout_fields): Don't perform alignment
440         if align is zero.
442         * class.c (mono_class_layout_fields): Init field related information
443         to sane defaults.
445 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
447         * verify.c (mono_verifier_verify_class): Verify the constraint
448         of generic type definitions.
450 2010-05-04  Mark Probst  <mark.probst@gmail.com>
452         * sgen-marksweep.c: Simplify free list maintenance in sweep.
454 2010-05-02  Mark Probst  <mark.probst@gmail.com>
456         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
457         major_do_collection() across the two major collectors.
459 2010-05-02  Mark Probst  <mark.probst@gmail.com>
461         * sgen-gc.c: Add heavy statistics counter for re-added global
462         remsets.
464 2010-05-02  Mark Probst  <mark.probst@gmail.com>
466         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
467         get rid of a division in critical code.
469 2010-04-29  Mark Probst  <mark.probst@gmail.com>
471         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
472         blocks for objects without references in mark&sweep, to improve
473         performance.
475 2010-04-28  Mark Probst  <mark.probst@gmail.com>
477         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
478         statistics up-to-date.
480 2010-04-27  Mark Probst  <mark.probst@gmail.com>
482         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
483         heap-dump for mark&sweep.
485 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
487         * loader.c (mono_method_get_header): Move the is_inflated case before the
488         wrapper case, as a method can be both.
490 2010-04-27  Mark Probst  <mark.probst@gmail.com>
492         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
493         separate pass to scan pinned and large object but use the gray
494         queue like for regular objects.
496 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
498         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
499         string.h for memmove.
501         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
502         ipaddress_to_struct_in6_addr() is only needed when
503         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
505 2010-04-25  Mark Probst  <mark.probst@gmail.com>
507         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
508         separate copy_object functions for major vs nursery.  Allows us to
509         get rid of a few checks and the start and end parameters for many
510         functions.
512 2010-04-25  Mark Probst  <mark.probst@gmail.com>
514         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
515         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
516         collector.
518 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
520         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
521         calling setup_mono_type () since the nested parent could recursively reference
522         the nested class using generic constraints. Fixes #599469.
524 2010-04-24  Mark Probst  <mark.probst@gmail.com>
526         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
527         abstraction.
529 2010-04-24  Mark Probst  <mark.probst@gmail.com>
531         * sgen-gc.c: Remove more unneeded code.
533 2010-04-24  Mark Probst  <mark.probst@gmail.com>
535         * sgen-gc.c: Disable managed allocator and wbarrier when the
536         binary protocol is enabled.
538 2010-04-24  Mark Probst  <mark.probst@gmail.com>
540         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
542 2010-04-24  Mark Probst  <mark.probst@gmail.com>
544         * sgen-gc.c: Remove a few commented out and unneeded bits.
546 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
548         * threadpool.c: patch from Robert Nagy that fixes a nullref and
549         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
551 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
553         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
554         types.
556         Fixes #331126
558 2010-04-21  Mark Probst  <mark.probst@gmail.com>
560         * sgen-gc.c: Turn off semi-precise stack mark.
562 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
564         * reflection.c (mono_custom_attrs_from_index): Use right function
565         to free 'list' (i.e. g_list_free) if the verifier fails.
567 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
569                 * verify.c: Handle the case where mono_type_get_underlying_type_any
570                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
571                 and MONO_TYPE_VALUETYPE in those case.
573                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
575                 Hopefully Fixes #564253.
577 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
579         * domain-internals.h: made threadpool_jobs volatile.
580         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
581         all local jobs.
582         * threadpool.c:
583                 -When two threads try to initialize the socket IO pool,
584                 the second one waits until the intialization is finished
585                 instead of continuing right away.
586                 -Add checks for domain unload: no items added in this case.
587                 -Only measure the time every 10 elements added to the queue.
588                 This is an experiment since linux x86 gettimeofday() sucks.
589                 -Create new thread if there are none waiting for work items.
590                 -There was a missing decrement of the busy threads.
591                 -Make sure the local queue is cleaned up before exiting the
592                 thread when the program ends.
594 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
596         * reflection.c (mono_type_get_object): Normalize generics types
597         as to how managed code expect them to be. A generic instance over
598         the GTD arguments must have the same mirror as the GTD itself.
600         Fixes #473289.
602 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
604         * locales.c: Implement support for DISABLE_NORMALIZATION.
606 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
608         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
609         since it is not a MonoMethod.
611 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
613         * icall-def.h: Add get_RequiresElevatedPermissions icall to
614         System.Security.SecurityManager - used only by Moonlight
615         * security-core-clr.c|h: Add Elevated Trust/Permission support
616         for CoreCLR / Moonlight
618 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
620         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
621         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
623 2010-04-16  Marek Habersack  <mhabersack@novell.com>
625         * mono-perfcounters.c: added code for the "Mono
626         Memory/Total Physical Memory" performance counter.
628         * mono-perfcounters-def.h: added definition of the "Mono
629         Memory/Total Physical Memory" performance counter.
631 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
633         * class.c (mono_class_get_method_by_index): Return NULL
634         on type load failures.
636 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
638         * class.c (mono_class_from_typeref): Check if the supplied
639         image has an assembly bound to it.
641         Fixes #567884.
643 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
645         * loader.c (mono_method_get_signature_full): Use new function
646         inflate_generic_signature_checked to check for errors.
648         Fixes #560839.
650 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
652         * loader.c (inflate_generic_signature): Add _checked variant
653         and move this function to use it.
655 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
657         * class.c (mono_class_setup_vtable_general): Use error checking
658         version of mono_class_inflate_generic_method_full.
660         Fixes #596975.
662 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
664         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
665         error handling passing MonoError around.
667         Fixes #560336.
669 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
671         * socket-io.c: make GetHostByName ("") work on windows.
672         Fixes bug #456723.
674 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
676         * object-internals.h:
677         * threads.c: use a spin lock when accesing the per-thread appdomain
678         list.
680 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
682         * threads.c: no need to take the threads lock in push/pop appdomain.
684 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
686         * reflection.c (_mono_reflection_parse_type): MS supports
687         non-assembly-qualified types in a generic type parameter list
688         when enclosed in '[]' (which signals that they should be a fqn).
690         This breaks ECMA specs for how type names are encoded in cattr
691         blobs but F# does it.
693         Fixes #576342.
695 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
697         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
698         for instance methods/ctors.
700         Fixes #422113.
702 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
704         * reflection.c: Use the new verifier support for checking
705         custom attributes.
707         Fixes #595306.
709 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
711         * metadata-verify.c: Implement structural verification
712         of custom attributes. This check requires access to the
713         loader since to resolve the size of an enum we have to
714         look it up.
715         We don't check if named argumenments are encoded in a
716         compatible fashion to their underlying field/prop.
717         Maybe we should?
719         * verify-internals.h: Add two new cattr verification API.
721 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
723         * metadata-verify.c (decode_signature_header): Fix signature.
725 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
727         * verify.c (mono_verifier_is_enabled_for_method): Handle
728         assembly less images.
730         * verify.c (mono_verifier_is_class_full_trust): Ditto.
732 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
734         * loader.c (mono_method_signature_checked): Properly
735         init MonoError.
737         * loader.c (mono_method_signature): It's the calee
738         resposibility to init the error object.
740 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
742         * metadata-verify.c (decode_signature_header): Do proper
743         overflow checking.
745 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
747         * reflection.c: maintain the invariants required by
748         mono_class_layout_fields() also in typebuilder_setup_fields ().
750 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
752         * security-core-clr.c: Call mono_class_setup_methods in 
753         get_default_ctor before checking klass->methods. Fix typo in
754         comment
756 2010-04-10  Jb Evain  <jbevain@novell.com>
758         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
759         add .net 4.0 RTM version.
761 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
763         * reflection.c (resolve_object): Properly inflate generic
764         methods when a context is supplied.
766         Fixes #591226.
768 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
770         * verify.c (mono_method_verify): A switch op don't empty
771         the stack for the next one. Fixes a bug when running fsi
772         under --verify-all.
774 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
776         * metadata-verify.c (is_valid_standalonesig_blob): Accept
777         fields as valid standalone sig too. F# does generate them.
779         * metadata-verify.c (verify_typedef_table_full): Ignore
780         what <module> extends.
782 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
784         * verify.c (do_invoke_method): It's ok to do use call with
785         virtual, non-final methods if their class is sealed.
787 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
789         * icall.c (ves_icall_MonoField_GetValueInternal): This function
790         is a near identical copy of mono_field_get_value_object. So simply
791         call it.
793         * object.c (mono_field_get_value_object): Handle literal fields
794         on open generic classes.
796         Fixes #594942.
798 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
800         * reflection.c (mono_reflection_create_runtime_class): Setup
801         parent/supertype information again since it can be changed
802         without notice.
804 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
806         * verify.c (verify_type_compatibility_full): Properly handle
807         stores between arrays of primitives.
809         Fixes the verifier side of #555950.
811 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
813         class.c (mono_bounded_array_class_get): Properly init
814         cast_class to take the fact that uint[] and int[] can be
815         casted between each other.
817         Fixes #555950.
819 2010-04-07  Geoff Norton  <gnorton@novell.com>
821         * domain.c: Avoid a deadlock on osx.  Fixes #565765
823 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
825         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
826         builders. Fixes #594464.
828 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
830         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
831         waiting for all threads to suspend, as those threads can't be suspended.
833 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
835         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
836         to avoid crashes on newly created threads.
838 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
840         * file-io.c: reset the MonoIOStat structure in case of error.
841         Fixes bug #582667.
843 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
845         * class.c (print_implemented_interfaces): Print proper type name.
847         * class.c (mono_class_setup_vtable): Don't try that hard to produce
848         the override map for generic instances since it later ignored.
850         * class.c (mono_class_implement_interface_slow): Don't break for
851         dynamic generic instances.
853         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
855         * reflection.c (mono_reflection_method_get_handle): New method that
856         resolves a method handle.
858         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
859         case when we override methods from a dynamic generic instance interface.
861         Fixes #575941.
863 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
865         * threadpool.c: don't attempt to close the pipe when it has not been
866         created.
868 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
870         * threadpool.c: if there are no waiting threads, try to start a new
871         one. This fixes the not-so-random hangs in System.ServiceModel tests.
872         No need to use InterlockedCompareExchange to read volatile variables.
874 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
876         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
877         and reference types that point to the same class.
879         Fixes #565598.
881 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
883         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
884         when verifying compatibility between a generic instance and a generic
885         parameter.
887         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
889         * verify.c (stack_slot_stack_type_full_name): Improve verification type
890         name.
892         Fixes #587849.
894 2010-04-04  Mark Probst  <mark.probst@gmail.com>
896         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
898 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
900         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
902 2010-04-03  Marek Habersack  <mhabersack@novell.com>
904         * process.c: when cross-compiling with MinGW, force GetProcessId
905         lookup using GetProcAddress.
907 2010-04-02  Mark Probst  <mark.probst@gmail.com>
909         * sgen-gc.c: parse_environment_string_extract_number() must be
910         static.
912 2010-04-02  Mark Probst  <mark.probst@gmail.com>
914         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
915         gray_object_dequeue(), to make sure they're inlined.
917 2010-04-02  Mark Probst  <mark.probst@gmail.com>
919         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
920         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
922 2010-04-02  Jb Evain  <jbevain@novell.com>
924         * exception.c: remove dead code.
926 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
928         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
929         with mono-gc.h.
931 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
933         * sgen-gc.c: Make the nursery size adjustable by the
934         MONO_GC_PARAMS environment variable.
936         Code is contributed under MIT/X11 license.
938 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
940         * threadpool.c: threadpool threads wait is alertable.
941         Fixes bug #592964.
942         Reduced the stack size of the *poll_wait thread.
944 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
946         * exception.c|metadata-internals.h: Add new mono_get_exception_
947         field_access_msg and mono_get_exception_method_access_msg 
948         functions that accept a const char* parameter to provide more 
949         details when the exception is thrown.
950         * security-core-clr.c|h: Rework code to allow logging exceptions
951         (export MONO_LOG_MASK="security") and to supply more details in
952         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
953         mono_security_core_clr_is_field_access_allowed and 
954         mono_security_core_clr_is_call_allowed to return an exception,
955         with messages and logging, that can be emitted by method-to-ir.c
957 2010-04-01  Mark Probst  <mark.probst@gmail.com>
959         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
960         pinned object.
962 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
964         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
965         the assembly name is not well formed utf8. Fixes #567882.
967 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
969         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
970         the generic parameters from the builder. Fixes #473298.
972 2010-03-31  Miguel de Icaza  <miguel@novell.com>
974         * object.c (mono_class_proxy_vtable): Eliminate warning. 
976         * marshal.c (emit_marshal_boolean): Eliminate possible
977         uninitialized local warning. 
979 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
981         * class.c (mono_class_init): Postpone coreclr inheritance check
982         until the end of the initialization (so we can check up the 
983         default ctor manually for the core-clr inheritance rules).
984         * security-core-clr.c: Add the missing (undocumented) checks on
985         default constructors when verifying inheritance rules.
987 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
989         * domain-internals.h (MonoJitExceptionInfo): Add new field
990         handler_end to the data union. To be used to point the end
991         of a finally block.
993 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
995         * reflection.c: Add support for new v4 type
996         System.Reflection.MonoModule that is the concrete version
997         of Module which is abstract unver v4.
999 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1001         * class.c (mono_class_init): Don't set class failure after
1002         inited = 1 is set. It must be done before.
1004 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1006         * mono-config.c: Add support for OS "haiku"
1007         * ChangeLog: Fix UTF-8 encoding
1009         Code is contributed under MIT/X11 license.
1011 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1013         * console-unix.c: fixed include logic for sys/ioctl.h.
1015 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1017         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1018         systems.
1020 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1022         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1023         unfinished/broken typebuilders.
1025 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1027         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1028         for the minor section allowance.
1030 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1032         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1033         "NoOptimization".
1035 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1037         * sgen-gc.c: Count bytes allocated with heavy statistics.
1039 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1041         * sgen-gc.c: More detailed time statistics.
1043 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1045         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1046         fix the user defined mark interface to pass a pointer
1047         to the object location and not the object itself.
1049 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1051         * reflection.c (mono_method_body_get_object): Release
1052         the method header before the call to CACHE_OBJECT since
1053         this is a macro that returns.
1055 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1057         * class.c (inflate_generic_type): mono_metadata_type_dup
1058         already dupes array information, the g_memdup was just
1059         leaking memory.
1061 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1063         * verify.c: Add stack_peek function. Fix CEE_DUP
1064         to not read from invalid memory if push did expand
1065         the stack.
1067 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1069         * verify.c: Remove old table verification code that has
1070         been superseeded by the new metadata verifier.
1072         * verify.h: Remove mono_image_verify_tables from the public
1073         API.
1075         * pedump.c: Fix for removed bits.
1077 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1079         * verify.c: Allocate stack slows lazily to reduce stack usage
1080         in case of methods with huge stacks. Reduces memory consumption
1081         for mcs yyparse from 459Mb to 1.8Mb.
1083 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1085         * threadpool.c: don't try executing items from domains being
1086         unloaded. Fixes appdomain-async-invoke test.
1088 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1090         * threadpool.c: spin while the threadpool initializes.
1091         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1092         down, don't do anything.
1094 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1096         * threads.c (mono_thread_create_internal): Set the GC type of the
1097         threads_starting_up hash table.
1099 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1101         * threadpool.c: reset 'state' to avoid returning non-null when the
1102         event type is not found.
1104 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1106         * sgen-gc.c: make copy_object () take the address of the
1107         slot holding the reference. This allows saving memory stores
1108         when not needed and it allows keeping track of oldspace->nursery
1109         references for the card table code.
1111 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1113         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1115         Code is contributed under MIT/X11 license.
1117 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1119         * object.c, threads.c, threads-types.h, threads.h: make the
1120         managed thread local storage references precisely tracked.
1122 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1124         * threadpool.[ch]: reworked the threadpool:
1125                 -Threadpool threads use a work-stealing queue. Adding a work
1126                 item from a threadpool thread will queue it in the thread
1127                 local queue without locking (in most cases).
1128                 -epoll events are coalesced before being added to the IO
1129                 queue.
1130                 -Dynamically change the number of active threads
1131                 -Changed the global queue to be more GC friendly
1133         * class-internals.h: add 2 new performance counters for the number of
1134         threads in the threadpool and the IO threadpool.
1136         * object-internals.h: new field in MonoAsyncResult.
1137         * icall-def.h: new internal call for queueing work items.
1139         * Makefile.am: add 2 new files.
1141         * appdomain.c: bump up corlib version.
1143         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1145         * mono-perfcounters-def.h:
1146         * mono-perfcounters.c: added 2 new performance counters.
1148 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1150         * sgen-gc.c: More FIXME/TODO updates.
1152 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1154         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1155         function mono_gc_invoke_with_gc_lock() which invokes a function
1156         with the guarantee that no collection will occur during its execution.
1158 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1160         * sgen-gc.c: Update a few comments.
1162 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1164         * reflection.c: Add support for new v4 type
1165         System.Reflection.MonoAssembly that is the concrete version
1166         of Assembly which is abstract unver v4.
1168 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1170         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1171         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1173         Expose a few macros that are needed for SR but not SRE to the
1174         world (previous inside the SRE ifdef)
1176 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1178         * sgen-gc.c (gc_register_current_thread): We need
1179         stack_start_limit as well in the non-attribute pthread case.
1181 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1183         * threads.c: Fix windows build.
1185 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1187         * thread-types.h: Add mono_thread_resume_interruption.
1189         * threads.c: Add mono_thread_resume_interruption, this
1190         function should be called after the last protected handler
1191         found at interruption time has finished.
1193 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1195         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1196         Check MonoInternalThread's ::state instead of ::abort_exc
1197         since the later can be lazily created.
1199         This is specially problematic when running a finally block
1200         under AbortRequested state. ResetAbort must work, but the
1201         abort_exc object has not been created because interruption
1202         has not began.
1204 2010-03-22  Geoff Norton  <gnorton@novell.com>
1206         * locales.c: Its possible for CFStringGetCStringPtr
1207         to return null and not convert encodings.  Use
1208         CFStringGetCString instead.
1210 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1212         * class-internals.h, class.c, object.c: introduce compressed
1213         interface bitmaps (for now only under small config): this saves
1214         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1215         startups.
1217 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1219         * mono-debug.c: don't try to get the method header, it causes a
1220         deadlock and it is not used for anything anymore.
1222 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1224         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1225         broken by the last change.
1227 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1229         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1230         SOCK_RDM.
1231         
1232         Code is contributed under MIT/X11 license.
1234 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1236         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1237         nursery.
1239         Code is contributed under MIT/X11 license.
1241 2010-03-19  Martin Baulig  <martin@ximian.com>
1243         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1244         dummy field, containing an empty string.
1245         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1248 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1250         * class.c: setup_interface_offsets() refactor to not call
1251         mono_class_get_implemented_interfaces () more times than needed and
1252         to reduce the runtime memory requirements to be O(num_interfaces)
1253         instead of O(max_interface_id).
1255 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1257         * mono-mlist.[ch]: add mono_mlist_set_next ().
1259 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1261         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1262         associated changes to support holes in the protected range of a
1263         try block.
1265         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1266         retrieves the holes table from a given MonoJitInfo.
1268 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1270         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1271         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1272         hide the contents of the MonoString and MonoArray structs from the
1273         public API. Change the accessor macros to accessors functions where
1274         needed. Adjusted the array API to allow for pointer-sized lengths and
1275         starting positions, so 64 bit arrays can be optionally provided in an
1276         API compatible way if needed on 64 bit systems.
1278 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1280         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1281         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1283 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1285         * class-internals.h: remove the method header from MonoMethod since
1286         from now on it will be transient. We have a header pointer for method
1287         wrappers, since in that case we need to keep track of it. For this
1288         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1289         structs now. The same happens with MonoMethodInflated.
1290         * class.c: reset the sre_method flag for inflated method structures:
1291         this makes the code that cares look at the header in the MonoMethodInflated
1292         structure.
1293         * loader.c: lookup the method header in the appropriate field now that
1294         it is removed from MonoMethod.
1295         * metadata-internals.h: add a flag to the method header to know if it
1296         can be freed inside mono_metadata_free_mh ().
1297         * method-builder.c: updates after moving the header field from
1298         MonoMethod to MonoMethodWrapper.
1299         * reflection.c: MonoMethods generated from Reflection.Emit use
1300         MonoMethodWrapper structs if they need a method header now (later take
1301         advantage of this and remove all the current unsafe uses of method_aux_hash).
1302         * metadata.c: make method header parsing not leak when verification
1303         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1304         These changes save a few hundred KB of runtime memory in a mcs
1305         bootstrap or a monodevelop startup.
1307 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1309         * verify.c: Improve error message.
1311 2010-03-12  Jb Evain  <jbevain@novell.com>
1313         * reflection.c (add_exported_type): populate the exported
1314         table with the type's nested type.
1316 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1318         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1319         can't read parentheses.
1321 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1323         * threads.c (thread_cleanup): Add a guard to dereferencing
1324         "thread" to avoid an unlikely race condition.
1326 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1328         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1329         instead of an empty string.
1331 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1333         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1334         convert to a boolean, recent gcc versions compile this differently.
1336 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1338        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1339        inlined.
1341 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1343         * sgen-gc.c (STRING_SIZE): Off by one.
1345 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1347         * sgen-archdep.h: Fix the signal context register access for
1348         AMD64.
1350 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1352         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1354 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1356         * verify.c: Store the initial basic block returned by mono_basic_block_split
1357         so we can release the whole list and not just the first one.
1359 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1361         * verify.c, debug-helpers.c, profiler.c, loader.c,
1362         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1363         MonoMethodHeader a transient entity.
1365 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1367         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1368         uncontrolled growth of the gray stack.
1370         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1371         added items are removed first, improving cache locality. Avoid freeing queue
1372         segments in the fast path, use the list of segments as the free list, truncate
1373         it to its max size at the start of collection.
1375 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1377         * metadata-internals.h: more memory savings, both with small config and without.
1380 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1382         * appdomain.c, domain-internals.h, domain.c, object.c:
1383         make class_vtable_hash into an array to reduce memory usage.
1385 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1387         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1388         object-internals.h, object.c, reflection.c, threadpool.c:
1389         reduce resource usage when the small config is selected.
1390         In particular, up to 64K of methods/fields/properties/events
1391         are allowed and "other" methods in events are ignored.
1393 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1395         * threads.c: reduce resource usage when compiled for a small config.
1397 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1399         * sgen-gc.c: Also collect number of degraded-alloced objects with
1400         heavy statistics.
1402 2010-03-04  Geoff Norton  <gnorton@novell.com>
1404         * assembly.c: Only support OSX bundling if the bundle is 
1405         actually detectable.
1407 2010-03-04  Geoff Norton  <gnorton@novell.com>
1409         * loader.c: The marshal specs are freed at the end of the call
1410         but it explicitly frees the strings as well as the container,
1411         so we need to dup them too to avoid referencing free'd memory.
1413 2010-03-04  Geoff Norton  <gnorton@novell.com>
1415         * icall-def.h:
1416         * icall.c: Add a new private internal icall to construct
1417         an object from its type without running the ctor.
1419 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1421         * profiler.c: allow multiple profiler engines to be loaded
1422         at the same time.
1424 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1426         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1427         profiler event to track object moves.
1429 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1431         * object.c, profiler.c, profiler.h, string-icalls.c:
1432         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1434 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1436         * decimal.c (mono_double2decimal): Add support for reducing the
1437         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1438         expected.
1440 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1442         * icall-def.h:
1443         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1445 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1447         * mono-config.c (mono_config_parse_assembly_bindings): added -
1448         parses assembly binding redirections from appdomain's config
1449         file.
1451         * metadata-internals.h: added definition of a new function -
1452         mono_config_parse_assembly_bindings - to support parsing assembly
1453         binding redirections defined in appdomain's config file.
1455         * domain-internals.h: added two new fields to _MonoDomain - a list
1456         of assembly bindings and a flag to parse the config file only
1457         once.
1459         * assembly.c (assembly_binding_maps_name): empty culture name and
1460         NULL culture name are considered equal.
1461         (mono_assembly_apply_binding): added support for domain specific
1462         assembly binding redirections, read from the appdomain's
1463         configuration file. Fixes bug #580185
1465 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1467         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1468         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1469         support.
1471 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1473         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1474         from this function. The new function receive the parent token instead of a type.
1476         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1477         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1478         typebuilders. This make it possible to properly encode generic type builders since
1479         their unmanaged type don't have generics data while unfinished.
1481         Fixes #583655.
1483 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1485         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1486         writing binary log files (can be enabled by #define'ing
1487         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1488         bugs in longer running programs.
1490 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1492         * metadata.c: added some API documentation.
1494 2010-03-01  Robert Jordan  <robertj@gmx.net>
1496         * filewatcher.h: Include glib.h to fix the MSVC build.
1498 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1500         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1501         a GC handle instead. This is a bit slower to access, but avoids burdening the
1502         GC with 100s of individual roots.
1504         * reflection.c (mono_class_get_ref_info):
1505         (mono_class_set_ref_info):
1506         (mono_class_free_ref_info): New internal helper fuctions.
1508         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1509         of accessing klass->reflection_info directly.
1511         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1512         words.
1514         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1515         the previous array.
1517 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1519         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1520         needs an indirection.
1522 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1524         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1525         so all generic sharing code is in one place.
1527         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1528         we don't call setup_interface_offsets () for unfinished types.
1530 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1532         * class.c (mono_class_generic_sharing_enabled): Move this to
1533         generic-sharing.c.
1535         * image.c: Add an unload hook which is called before an image is unloaded.
1537         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1538         metadata.c having to depend on generic sharing.
1540 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1542         * class.c: reduce size of ridiculously large cache.
1544 2010-02-26  Martin Baulig  <martin@ximian.com>
1546         * mono-debug.h
1547         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1549         * threads.c (mono_thread_internal_reset_abort): New method; resets
1550         the abort, but doesn't throw any exception if no abort was requested.
1552 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1554         * class.c (get_implicit_generic_array_interfaces): Call
1555         mono_class_setup_interface_offsets () before accessing
1556         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1557         some reason.
1559 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1561         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1562         icall internal.
1564 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1566         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1567         direct access to the MonoType fields.
1569 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1571         * threads.h: Move some internal functions which were added to this header by
1572         mistake to threads-types.h.
1574         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1576 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1578         * class-internals.h, class.h, object.h: make MonoRemoteClass
1579         and mono_remote_class() internal.
1581 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1583         * metadata-internals.h, class-internals.h, metadata.h: make the
1584         MonoType guts internal as well.
1586 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1588         * reflection.h: the MonoTypeNameParse guts are internal now.
1589         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1590         are internal now, provide accessors as needed.
1591         * metadata.h, metadata-internals.h: the MonoMethodSignature
1592         guts are internal now.
1593         * Makefile.am: mempool.h is an internal header now.
1594         * *.h, *.c: remove glib.h usage from the public headers.
1596 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1598         * culture-info-table.h : regenerated.
1600 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1602         * metadata.c: Add mono_method_get_header_summary which returns minimal
1603         information about the header of a method. This is the information used
1604         by the inline oracle to reject methods.
1606         This method doesn't decode local variables and doesn't cache it's result,
1607         so it should cause a minimal reduction in memory usage.
1609         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1610         mono_method_get_header_summary.
1612 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1614         * threads.c (mono_thread_exit): Make sure that the main thread is
1615         non-null before dereferencing it.
1617 2010-02-21  Geoff Norton  <gnorton@novell.com>
1619         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1620         locale.
1621         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1622         before falling back to the posix lookup.
1624 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1626         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1627         the DONT_MANAGE flag set.
1629 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1631         * domain.c: Remove old v1 version strings. Let the runtime
1632         default to 2.0 instead of failing because it can't find a
1633         working 1.0 instalation.
1635 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1637         * domain.c: Add v4 RC version string.
1639 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1641         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1642         of overflow checking function.
1644 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1646         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1647         generic methods.
1649         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1650         cases for ParameterInfo.
1652         Fixes #579493.
1654 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1656         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1657         have has_cctor set. Fixes #575946.
1659 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1661         * appdomain.c: display a warning if the parsing the config file
1662         produces any error.
1663         Skip the BOM in UTF-8 files.
1664         Copy the AppDomainSetup before setting the privateBinPath so that the
1665         correct configuration file is read.
1667 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1669         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1670         vtable trampoline per vtable slot index. Not used yet.
1672 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1674         * icall-def.h:
1675         * icall.c: add internal call that returns the system page size.
1677 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1679         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1680         'int' for system classes.
1682 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1684         * icall.c, icall-def.h: new icall to check for sufficient
1685         stack space.
1687 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1689         * reflection.c (ensure_complete_type): Check that reflection_info
1690         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1692 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1694         * attrdefs.h:
1695         * tabledefs.h: Add NoOptimization flag.
1697 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1699         * sgen-gc.c: Don't consider it a missing remset if the target
1700         object is pinned - we might have done the store but not added the
1701         remset yet.
1703 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1705         * sgen-gc.c: When checking for missing remsets, don't assert on
1706         the first one, but print them all and then assert.
1708 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1710         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1712 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1714         * console-unix.c: On OSX Control-Y is assigned to
1715         VDSUSP (non-Posix), the
1716         suspend-program-next-time-it-tries-to-read-input command (this is
1717         different than C-z, which suspends immediately).
1719         Do the same thing that bash does and ignore this setting,
1720         making our repl/getline support pasting.
1722 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1724         * sgen-gc.c: Simple plausibility check for scan_starts.
1726 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1728         * sgen-gc.c: Round up when calculating the number of scan starts.
1730 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1732         * reflection.c: Export mono_get_object_from_blob.
1734         * object-internals.h: Ditto.
1736         * icall.c: New icall property_info_get_default_value to get the default
1737         value of a property. Since using this is not common, no caching is done.
1739         * icall-def.h: Add new icall.
1741 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1743         * class.c: Add mono_class_get_property_default_value.
1745         * class-internal.h: Export mono_class_get_property_default_value.
1747 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1749         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1751 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1753         * sgen-gc.c: introduced critical regions to allow some lockless
1754         operations and increase scalability.
1756 2010-02-10  Geoff Norton  <gnorton@novell.com>
1758         * reflection.c: Support building with DISABLE_REFLECTION
1760 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1762         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1763         Closes bug #566057.
1765         * exception.c: fix typo in comment.
1767 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1769         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1770         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1772         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1774         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1775         the internal API.
1777         Fixes #574434.
1779 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1781         * threads.c: Removed two assertions that were too strict.  Added a
1782         clarifying comment.  Fixes #577090.
1784 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1786         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1787         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1789         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1791         * verify.c (mono_type_get_stack_name): Fix a warning.
1793 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1795         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1796         mono_marshal_wrapper_info_from_wrapper.
1798         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1799         mono_marshal_method_set_wrapper_data, and export.
1801         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1802         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1803         by calling mono_marshal_get_wrapper_info ().
1805         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1806         small objects which does no size checks.
1808 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1810         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1812 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1814         * verify.c (mono_method_verify): Use the new basic block formation pass
1815         to avoid verifying dead basic blocks. This is the same behavior as the
1816         runtime MS verifier.
1818 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1820         * mono-basic-block.c:
1821         * mono-basic-block.h: New implementation of a basic block formation pass.
1822         The formation pass does static liveness analysis as well to detect dead
1823         basic blocks.
1825 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1827         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1828         'this' argument in icalls.
1830 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1832         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1834 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1836         * object.c, domain.c: When using SGen, we must register
1837         vtable->type as a root if it's not a MonoType, because then it
1838         wasn't pin-alloced.
1840 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1842         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1843         at the start of nursery collections, because we might have had
1844         degraded allocations which changed next_data.
1846 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1848         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1849         custom attr so this function works in cross-compiling mode.
1851 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1853         * class.c (make_generic_param_class): Initialize interface offsets since we
1854         set klass->inited. Fixes #574819.
1856 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1858         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1859         calling the JIT domain cleanup hook.
1861 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1863         * pedump.c (main): Properly set the verifier mode when running the metadata
1864         verifier.
1866 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1868         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1869         overlapping fields now that we're called before has_references is set.
1871         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1872         method. Otherwise all sort of weird stuff happens.
1874 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1876         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1877         Fixes #572874.
1879 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1881         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1882         Fixes #573322.
1884 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1886         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1887         pin_staging_area_index is greater than 0.
1889 2010-01-22 Miguel de Icaza (miguel@novell.com)
1891         * loader.c: Since we do nothing with the error returned, pass NULL
1892         to ignore the error.
1894 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1896         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1897         happened before starting to encode the actual fields. This avoid ciclic
1898         dependencies and eventual crashes.
1900         Fixes #572660.
1902 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1904         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1905         atomic and remove the half-constructed hack in SGen.
1907 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1909         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1910         has a recursive reference to itself.
1912         Fixes #571863.
1914 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1916         * loader.c (mono_method_signature): Fix error message.
1918 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1920         * sgen-gc.c: Reuse to-space sections between nursery collections.
1922 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1924         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1925         from the current assembly or mscorlib. Fixes bug #322957.
1927 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1929         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1930         get_wrapper_target_class.
1932 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1934         * sgen-gc.c: Fix warnings.
1936 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1938         * verify.c (store_local): Better error message.
1940 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1942         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1943         arguments.
1945 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1947         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1948         function is generics variance aware.
1950 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1952         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1953         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1955 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1957         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1958           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1960         Code is contributed under MIT/X11 license.
1962 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1964         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1965         on a GTD.
1967 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1969         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1970         return a point to a wrapper specific info structure describing the wrapper.
1971         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1973 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1975         * sgen-gc.c: Make minor collection section allowance adaptive,
1976         depending on the amount of memory reclaimed in the last major
1977         collection.  If more memory was reclaimed (i.e. more garbage
1978         produced), do the next collection earlier.
1980 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1982         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1983         to itself.
1985         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1986         the token as parameter.
1988         * verify-internals.h: Ditto.
1990         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1992         Fixes #571460.
1994 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1996         * sgen-gc.c: Make store_remset_buffer_index long.
1998 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2000         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2002         Fixes #569579.
2004 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2006         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2007         off precise marking if it is available.
2008         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2010 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2012         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2014         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2015         pinned objects.
2017         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2018         to the array allocator.
2020 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2022         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2023         result of mono_compile_method (), it already includes an ftnptr.
2025 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2027         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2029 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2031         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2032         hash value which doesn't depend on glib/eglib versions.
2033         (mono_metadata_type_hash): Use it.
2035         * object.c (mono_method_get_imt_slot): Ditto.
2037 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2039         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2040         independently of the GTD.
2042         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2044         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2045         to the upper limit since instance_size includes this amount.
2047         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2049         Fixes #569544.
2051 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2053         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2054         with static methods.
2056         * object.c (build_imt_slots): Avoid asserting when static methods are
2057         encountered in an interface.
2059 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2061         * sgen-gc.c (to_space_expand): Fix assertion.
2063 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2065         * string-icalls.c: missing declaration fixes.
2066         * sgen-gc.c: portability fixes.
2068 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2070         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2072         * class.c:
2073         * cominterop.c:
2074         * icall.c:
2075         * object.c: 
2076         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2078 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2080         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2081         it can fail loading the type.
2083         * class.c: Add mono_class_inflate_generic_class_checked.
2085         * class.c:
2086         * verify.c:
2087         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2089 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2091         * loader.c (mono_method_signature_checked): New internal function taking an
2092         MonoError argument.
2094         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2095         Fixes build on rh 7.3.
2097 2010-01-10  Aaron Bockover  <abockover@novell.com>
2099         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2100         at runtime in the same way as on Windows, which yields a relocatable
2101         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2102         of the running mono process.
2104         On TARGET_ARM, fallback () will always be executed.
2106 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2108         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2110 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2112         * class.c (mono_class_is_assignable_from_slow): Support variant
2113         generic delegates.
2115         * class.c (mono_class_implement_interface_slow): Support types with
2116         variant generic arguments.
2118 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2120         * verify.c: Remove some code duplication.
2122 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2124         * object.c: Update docs.
2126 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2128         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2130         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2131         fallback trampoline as well.
2133         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2134         out argument that is set to TRUE if the match was direct. 
2136         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2138         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2140 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2142         * class.c: Add mono_class_interface_offset_with_variance function that does same
2143         as mono_class_interface_offset but takes variance into account.
2145         * class-internal.h: Export mono_class_interface_offset_with_variance.
2147         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2149 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2151         * object.c:
2152         * icall.c:
2153         * class.c: Add some FIXME for due to variant generic arguments.
2155         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2156         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2157         the bitfield check fails.
2159 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2161         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2162         to be easier to read and fix bugs in the case a non generic type implements a variant
2163         interface.
2165         * class.c (mono_class_has_variant_generic_params): Make non static.
2167         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2168         the private API.
2170 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2172         * assembly.c: fix MONO_PATH debug output.
2174 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2176         * culture-info-table.h : regenerated.
2178 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2180         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2181         types that are meant to not have a parent.
2183 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2185         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2186         from the image mempool, so it is not leaked.
2188 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2190         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2192 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2194         * verify.c (verify_valuetype_layout_with_target): Fix case
2195         that can lead to infinite recursion. Fix bug #567861
2197 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2199         * pedump.c: Run code verifier even if image verification fails
2200         due to a failed type we. This allows more errors to be shown.
2202 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2204         * class.c (count_virtual_methods): Remove the assert and now
2205         fail properly.
2206         
2207         * class.c (setup_interface_offsets): This can fail now.
2209         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2210         errors. Check setup_interface_offsets errors.
2212         * class.c (setup_interface_offsets): Simplify the return error logic
2213         and remove class_init_ok.
2215         Fixes #560327.
2217 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2219         * class.c (mono_class_init): Do class verification at the beginning. Add
2220         some asserts to avoid tripping into invalid memory.
2222         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2223         g_error and a decent message.
2225         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2227         Fixes #567548.
2229 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2231         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2232         as inline functions instead of defining them in mempool.c.
2234         * metadata-internals.h (MonoImageSet): New structure representing a set of
2235         MonoImages, which own a collection of generic instances.
2237         * metadata.c: Get rid of the global generic caches, instead assign each generic
2238         instance to the image set which consists of all the images referenced by the
2239         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2240         the memory used by generic instances to be allocated from a per image-set mempool
2241         later.
2243 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2245         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2247 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2249         * appdomain.c (zero_static_data): Fix a warning.
2251         * locales.c (construct_culture_from_specific_name): Applied patch from
2252         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2253         not found. Fixes #567900.
2255 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2257         * loader.c (mono_method_get_signature_full): Remove two asserts.
2258         Return NULL instead so that the verifier can handle both cases 
2259         gracefully.
2261 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2263         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2264         so we can properly fail types instead of crashing.
2266         Fixes #567676.
2268 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2270         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2271         generic method.
2273 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2275         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2277 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2279         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2280         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2281         we can't remove it from it since we don't hold the lock.
2282         (mon_new): Free the orphaned events here when a mon structure is added to the
2283         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2284         this down.
2286 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2288         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2289         as max stack might be zero.
2291         Fixes #562320.
2293 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2295         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2297         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2298         instances if the GTD did.
2300         * class.c (mono_class_setup_properties): Ditto.
2302         * class.c (mono_class_setup_events): Ditto.
2304         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2306         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2307         error setting.
2309         * class.c (mono_class_init): Fail if GTD did.
2311         * cominterop.c:
2312         * generic-sharing.c:
2313         * icall.c:
2314         * loader.c:
2315         * object.c:
2316         * verify.c: Properly handle failure of mono_class_setup_methods.
2318 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2320         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2321         mono_class_inflate_generic_method_full internal.
2323         * class.c (inflate_generic_context): Now takes a MonoError argument.
2325         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2326         errors.
2328 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2330         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2331         they cannot be patched. Partly fixes #564408.
2333 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2335         * metadata-internals.h, reflection.c: Use the
2336         MonoDynamicImage.handleref hash table only with unmanaged keys,
2337         and add a managed hash table handleref_managed for managed keys.
2339 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2341         * sgen-gc.c: Unset to-space bumper between collections.  It might
2342         become invalid due to degraded allocations.
2344 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2346         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2347         with the one from the original method.
2349         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2350         compatibility.
2352         * verify-internals.h: Add new function to the internal API.
2354 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2356         * culture-info-tables.h: regenerated it to include the Georgian culture.
2358 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2360         * sgen-gc.c: Include mono/utils/memcheck.h.
2362         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2363         instead of the current domain, since the two might not match if this is called
2364         from the debugger.
2366         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2367         domain which created this assembly.
2369 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2371         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2373 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2375         * sgen-gc.c: Managed implementation of the specialized generic
2376         store write barrier.
2378 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2380         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2381         A private virtual newslot method is used to implement an interface method without exposing
2382         it to users. When querying for public instance methods, such method would hide a public one
2383         on a parent type.
2385         Fixes #564379.
2387 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2389         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2390         conventions.
2392 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2394         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2396 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2398         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2399         as they are no longer used.
2400         
2401          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2403         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2405 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2407         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2408         if the owner class has not been finished before returning reflection_info.      
2410         Fixes #565127.
2412 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2414         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2415         param doesn't have custom attributes. Fixes #565117.
2417         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2418         #565120.
2420 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2422         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2424 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2426         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2427         same amount done by a core-clr enabled runtime.
2429 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2431         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2432         the target files is reset to writable by owner and readable by
2433         everyone else to prevent problems when updating shadow copies of
2434         files whose source is read-only. Fixes bug #556884
2436 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2438         * class.c (mono_generic_class_get_class): Allocate the generic
2439         class via malloc again, so that it can be freed when any one of
2440         the images of its constituent types is closed.
2442         * metadata.c: When closing an image, don't free generic insts and
2443         generic classes right away, but put them into a list for later
2444         freeing.
2446         * image.c, metadata-internals.h: Store the free list and in the
2447         second pass of closing an image, free it.
2449 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2451         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2453         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2454         types in type_hash.
2456         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2458 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2460         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2461         user type.
2463         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2464         is used.
2466 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2468         * verify.c (mono_method_verify): The Unused opcodes produce an
2469         InvalidProgramException on .NET
2471 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2473         * loader.c (mono_method_get_header): Move assert after the verifier
2474         has been called on the method header.
2476 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2478         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2480         * appdomain.c: Bump corlib version.
2482 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2484         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2485         types as well since otherwise generic instances would not return UT as arguments but
2486         their undelying system type.
2488         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2489         to reflect the fact that they can have now multiple different types.
2491         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2493         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2495         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2497         * reflection.c (mono_reflection_register_with_runtime): Init super types
2498         if the image is not dynamic.
2500         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2501         check if the generic type definition is a TypeBuilder.
2503         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2504         doesn't belong to a dynamic image, skip initialization.
2506         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2507         base definition is not a dynamic type.
2509 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2511         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2512         mono_profiler_string_allocation
2514         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2515         if string profiling is enabled, call
2516         mono_profiler_string_allocation
2518         * profiler.h: added two MonoProfileFlags -
2519         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2520         installation functions for the hooks below.
2522         * profiler-private.h, profiler.c: added two hooks:
2523         mono_profiler_string_allocation called whenever a string is
2524         allocated by InternalAllocateStr and mono_profiler_iomap called
2525         whenever IOMAP code performs an adjustement on a file path.
2527 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2529         * boehm-gc.c: fixed race condition while getting the target of a
2530         disappearing link (bug #522233).
2532 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2534         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2535         the error.
2537 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2539         * reflection.c: Add mono_reflection_register_with_runtime icall to
2540         allow a MonoGenericClass to register itself as the managed mirror of
2541         a given generic instance.
2542         This is a temporary workaround until all MGC instantiation happens in
2543         managed code.
2545         * object-internals.h: Ditto.
2547         * icall-def.h: Ditto.
2549 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2551         * sgen-gc.c (find_in_remsets): Also search the generic store
2552         remsets.
2554 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2556         * sgen-gc.c: Don't access class names in debugging code when
2557         unloading a domain, because they might not be valid anymore.
2559 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2561         * domain.c, domain-internals.h: New function mono_domain_unset().
2563         * appdomain.c (unload_thread_main): Detach the thread again at the
2564         end.
2566         * threads.c: When a thread exists or is detached, unset its domain
2567         so that it's NULL when, for example, a pthread destructor runs.
2569         * sgen-gc.c: Assert that there is no domain set after a thread is
2570         done.
2572 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2574         * class.c (mono_generic_class_get_class),
2575         metadata.c (free_generic_class): Allocate generic MonoClass's from
2576         the image mempool, not via malloc.  The problem with malloc is
2577         that when unloading a domain those classes are freed before
2578         clearing the heap and SGen needs the classes.  Rewriting the
2579         unloading code to do the free later would be more work and there's
2580         no point in using malloc anyway.
2582 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2584         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2585         before returning.
2587 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2589         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2590         user string blobs.
2592         * verify-internals.h: Add new function to the internal API.
2594         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2595         check if it's a valid string.
2597         * object.c (mono_ldstr): Ditto.
2599         Fixes #561943.
2601 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2603         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2604         from a method before returning it. This is the expected behavior.
2606 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2608         * reflection.c (inflate_method): Handle the case of a regular system type.
2610 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2612         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2613         gathering code.
2615         * mempool.c, mempool-internals.h: New function
2616         mono_mempool_get_bytes_allocated().
2618         * Makefile.am: sgen-pinning-stats.c added.
2620 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2622         * sgen-gc.c (create_allocator): Only use the fast path if the
2623         object size is within the small object size limit.
2625 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2627         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2628         possibly adding padding to sizeof (GCMemSection).
2630 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2632         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2633         reference is not in the nursery.
2635 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2637         * class.c (mono_class_from_typeref): Bounds check idx against the 
2638         assemblyref table.
2640 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2642         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2643         through the potential roots, then sort the results and find the
2644         pinned objects from there.
2646         * Makefile.am: sgen-pinning.c added.
2648 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2650         * sgen-gc.c: Record generic stores in specialized remset buffers.
2652 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2654         * sgen-gc.c: Make pinned chunks the same size as major heap
2655         sections, and align them as well, so that we can check whether an
2656         object is in a pinned chunk or a major section in constant time.
2658 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2660         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2662 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2664         * sgen-gc.c: Make all major heap sections the same size (currently
2665         128k) and allocate them on aligned addresses.  Small heap sections
2666         give us better granularity with pinned objects - we can free up
2667         much more memory.
2669 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2671         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2672         output removed.
2674 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2676         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2678         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2679         names in addition to the runtime generated one.
2681         * mono/metadata/image.h: Add a function to take the real name of the assembly
2682         image.
2684         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2685         use it instead of the runtime generated one.
2687         Code is contributed under MIT/X11 license.
2689 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2691         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2692         before the other checks to prevent problems if the DateTime class is blittable.
2693         Hopefully fixes #559600.
2695 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2697         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2698         returns the largest string length that will not be put into the
2699         LOS.
2701         * sgen-gc.c, gc-internal.h: New function that returns the largest
2702         object size that will not be put into the LOS.
2704         * appdomain.c: Bump corlib version.
2706 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2708         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2710         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2712 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2714         * reflection.c (inflate_method): Fix signature.
2716         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2717         in managed code.
2719 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2721         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2723 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2725         * sgen-gc.c: Abstract to-space handling.
2727 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2729         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2731         Fixes #559906.
2733 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2735         * sgen-gc.c: Only add references from outside the nursery to
2736         within the nursery to the global remset list.
2738 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2740         * appdomain.c (create_exceptions): Set the domain temporarily if
2741         necessary to avoid cross-domain references.
2743 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2745         * verify.c (get_stack_type): Return that the type is invalid instead of
2746         asserting.
2748         * verify.c (mono_method_verify): Verify that all locals and arguments
2749         have valid stack types.
2751         Fixes #559913.
2753 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2755         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2756         bounds checking overflow aware.
2758         Fixes #559910.
2760 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2762         * verify.c (do_invoke_method): Check for invalid method signatures.
2764         Fixes #553450.
2766 2009-12-02  Jb Evain  <jbevain@novell.com>
2768         * appdomain.c (MONO_CORLIB_VERSION): bump.
2769         * icall-def.h (get_base_definition): renamed to get_base_method
2770         and add a boolean argument indicating we want the original
2771         method definition, or the immediate base method.
2772         * icall.c: apply the get_base_definition to get_base_method change.
2774 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2776         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2778         Fixes #558042.
2780 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2782         * class.c: remove asserts for invalid type token in
2783         mono_class_name_from_token(), mono_assembly_name_from_token() and
2784         mono_class_create_from_typedef () (fixes bug #553318).
2786 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2788         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2789         incorrect assemblies (bug #553322).
2791 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2793         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2795         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2797         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2799         * class.c (inflate_generic_context): Ditto.
2801         * loader.c (method_from_methodspec): Ditto.
2803         Fixes #558230.
2805 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2807         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2809         * class.c (mono_class_create_from_typespec): Ditto.
2811         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2813         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2815         Fixes #558184.
2817 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2819         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2821         * verify.c (verify_delegate_compatibility): Ditto.
2823         * verify.c (do_newobj): Ditto.
2825         Fixes #558046.
2827 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2829         * sgen-gc.c: Use a gray queue instead of requiring that gray
2830         objects are in a contiguous region.
2832         * sgen-gray.c: The gray queue implementation.
2834         * Makefile.am: sgen-gray.c added.
2836 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2838         * appdomain.c: When unloading a domain, zero its static data and
2839         perform a minor collection when using SGen.  That will get rid of
2840         all the remsets pointing into that domain's static data.
2842         * sgen-gc.c: Allow remsets into static data.  By doing this we
2843         need less checks so we're more efficient.
2845 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2847         * verify.c (mono_method_verify): Check for catch clauses with broken
2848         types.
2850         Fixes #558465.
2852 2009-12-01  Jb Evain  <jbevain@novell.com>
2854         * class.c (make_generic_param_class): set the namespace of
2855         the generic parameter class from its owner, if available.
2857 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2859         * verify.c (code_bounds_check): Do proper overflow checking.
2861         * verify.c (mono_method_verify): The number of switch entries is
2862         an unsigned int. Properly bounds check it.
2864         Fixes #558594.
2866 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2868         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2869         mono_metadata_method_has_param_attrs which only checks if a given param
2870         list has a non zero flags entry.
2872         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2873         to inform how many params should we expect to decode.
2875         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2876         as it's faster than mono_metadata_get_param_attrs.
2878         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2879         add mono_metadata_method_has_param_attrs.
2881 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2883         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2884         failures.
2886         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2887         is -1 but its class is broken.
2889         Fixes #558522.
2891 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2893         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2894         for parameter overflow.
2896         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2897         of mono_metadata_get_param_attrs.
2899         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2900         API.
2902         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2904 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2906         * class.c (mono_class_setup_fields): Check for fields with broken types.
2908         Fixes #558741.
2910 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2912         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2913         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2914         its TypeBuilder::CreateType ().
2916         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2917         if not needed.
2919         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2920         to make setup_interface_offsets happy.
2922         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2923         compilation now works.
2925 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2927         * appdomain.c (create_exceptions): New helper function extracted from
2928         mono_runtime_init () to precreate objects used during exception handling.
2929         (mono_runtime_init): Call it.
2930         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2932 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2934         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2935         compilation until the proper one is found.
2937 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2939         * class.c (mono_class_setup_vtable_general): Cache the result of
2940         get_virtual_methods () since it can be slow because of the metadata
2941         optimization.
2943         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2944         from a MonoValueHashTable for now, since the later is based on an earlier
2945         version of hpj's internal probing code and seems to have serious collision
2946         issues.
2948         * loader.c (mono_get_method_full): Update after the change above.
2950 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2952         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2954 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2956         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2957         the GTD instead of the DGC instead of crashing.
2959         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2960         required. Inflate fields if needed.
2962         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2963         finished. Renamed.
2965 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2967         * class.c (check_interface_method_override): Check for NULL signatures and fail
2968         the type.
2970         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2972         Fixes #553428.
2974 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2976         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2977         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2979 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2981         * loader.c (field_from_memberref): Resolve the class first then the field
2982         signature. Remove a lot of duplicated code and make sure we don't pass valid
2983         values to mono_loader_set_error_field_load.
2985         Fixes #553306.
2987 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2989         * class.c (inflate_generic_type): Change code to use new signature of
2990         mono_error_set_bad_image.
2992         Fixes #558124.
2994 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2996         * verify.c (mono_method_verify): Don't free ctx.params items if 
2997         we aborted while inflating the ctx.locals. Complete previous fix
2999 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3001         * verify.c (mono_method_verify): Use the uninflated type name, 
3002         when the inflated is null, to report errors. Also take care when
3003         freeing, not to free everything since, in case of an error, some
3004         stuff would be copies (i.e. not allocated by the function itself)
3005         Fix bug #558145
3007 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3009         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3010         or overflow. The caller must have done this check explicitly. This guard us
3011         from accessing invalid memory.
3013         * verify.c (do_push_static_field): Check for stack overflow.
3015         Fixes #553333.
3017 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3019         * loader.c (find_method_in_class): Don't crash if the signature cannot
3020         be resolved.
3022         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3023         of asserting for the case of invalid params.
3025         Fixes #553304.
3027 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3029         * image.c (mono_image_load_module): Fix crash when a bad assembly
3030         has no module at all (fix bug #553412) and also replace the 
3031         g_assert with a return NULL (documented return value for failure)
3033 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3035         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3037 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3039         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3040         file attribute to managed code and avoid doing the mask/attribute
3041         checks here. 
3043 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3045         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3046         the managed world.
3048         * icall-def.h: New entry points.
3049         
3050 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3052         * process.c: Don't put references to managed objects into a
3053         g_ptr_array.
3055 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3057         * class.c (can_access_internals): Allow CoreCLR to participate in
3058         allowing (or not) [InternalsVisibleTo] between assemblies.
3059         * security-core-clr.c|h: Make sure that only trusted code (a 
3060         superset of platform code) can access the internals of platform
3061         code.
3063 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3065         * reflection.c: use the correct base class to get the virtual method
3066         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3068 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3070         * security-core-clr.c (get_caller_no_reflection_related): 
3071         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3072         it's still reflection and must be filtered correctly.
3074 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3076         * object.c (compute_class_bitmap): Fix for large bitmaps.
3078 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3080         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3082         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3083         koush@koushikdutta.com). Disable GC_no_dls on android.
3085 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3087         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3088         tlab_next points outside the TLAB because the allocator was
3089         interrupted.
3091 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3093         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3095 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3097         * object-internals.h: Change signature for mono_string_to_utf8_image.
3099         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3100         argument.
3102         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3103         exceptions due to mono_string_to_utf8.
3105 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3107         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3109         * object.c (mono_remote_class): Make sure all resources are released before
3110         raising an exception.
3112         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3114 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3116         * mono-perfcounters.c (network_get_impl): Change variable initialization
3117         ordering to fix potential memory leak in case of exceptions.
3119         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3120         encoded strings.
3121         
3122 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3124         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3125         variable initialization ordering to fix potential memory leak in case
3126         of exceptions.
3128 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3130         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3131         needed.
3133 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3135         * appdomain.c: Fix shadow path code to better deal with exceptions.
3137 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3139         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3140         exception in the middle of the runtime code.
3142 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3144         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3145         leak memory with broken envvar value.
3147 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3149         * reflection.c (mono_reflection_setup_internal_class): Because
3150         nested classes are not added to the name cache, we must put them
3151         in the reflection_info_unregister_classes list.
3153 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3155         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3156         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3157         platform (trusted) code. Instead we return a TypeLoadException to
3158         be thrown later. This is the exception thrown by Silverlight 2 if
3159         a type, inside application (user) code is marked with [ComImport]
3161 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3163         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3164         mono_is_debugger_attached () too.
3166         * mono-debug.c (mono_is_debugger_attached): New helper function.
3167         (mono_set_is_debugger_attached): Ditto.
3169 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3171         * object-internals.h: Add mono_string_to_utf8_checked.
3173         * object.c: Implement mono_string_to_utf8_checked.
3175 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3177         * class.c: Add missing check for load errors after every
3178         call to mono_class_setup_fields
3180         Fixes #552282.
3182 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3184         metadata-verify.c (verify_tables_schema): Fix the error message.
3186 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3188         * metadata.c: Change event table schema to use TDOR for event type
3189         as this is what it's meant to be.
3191         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3192         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3193         entry.
3195         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3196         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3197         rows in MONO_TABLE_GENERICPARAM.
3199         Fixes #552289.
3201 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3203         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3204         insertion.
3206         * reflection.c (mono_reflection_setup_internal_class): Avoid
3207         registering a gc root the same MonoClass multiple times.
3208         Don't register nested types on the global scope as they should
3209         not be available there.
3211 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3213         * culture-info-tables.h: regenerated.
3215 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3217         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3219 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3221         * string-icalls.c|h: Remove string internal calls that are not 
3222         used anymore by the class libraries.
3223         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3224         which is not used in the class librairies.
3225         * icall-def.h: Update tables.
3227 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3229         * class.h: Move mono_class_inflate_generic_type_checked...
3231         * class-internals.h: to here and make it internal. We don't want to
3232         further expose MonoGenericContext. 
3234 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3236         * verify.c (mono_method_verify): Improve error message.
3238 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3240         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3241         the token is already properly encoded. Fixs 4.0 build.
3243 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3245         * locales.c (construct_number_format): Check if the number index is
3246         valid before trying to use it, if not, just return.
3247         
3248 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3250         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3251         since that loses the abort state. Fixes #539394.
3253 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3255         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3256         explicit this argument to the call signature.
3257         (mono_marshal_get_icall_wrapper): Ditto.
3259 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3261         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3262         to indicate which assembly to use when resolving a custom-mod.
3264         Fixes handling of volatile fields used across assemblies as reported in #551513.
3266 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3268         * loader.c: Improve error messages.
3270 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3272         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3273         of interfaces. Fixes IKVM.
3275         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3277 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3279         * verify.c (verifier_inflate_type): Return the inflated type on success.
3281 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3283         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3285         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3287         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3289         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3290         flag set.
3292         * profiler.c: Add new profiler callbacks for runtime invoke.
3294         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3296 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3298         * sgen-gc.c: Keep track of the reason for a major collection and
3299         write it to the heap-dump file.
3301 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3303         * threads.c: refactor the code that initializes the
3304         thread_start_args into a reusable function and use this in the two
3305         methods that start up threads.
3307 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3309         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3310         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3312 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3314         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3315         Until now, we only had the per-cpu(core) counters.
3317 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3319         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3320         mono_gc_get_suspend_signal(), which returns the suspend signal
3321         number used by the GC.
3323 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3325         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3327         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3328         signalling start_notify.
3330 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3332         * appdomain.c: do not test the st_mode field for shadow-copies.
3333         Fixes bug #545276.
3335 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3337         * threadpool.[ch]: added hooks for thread start/finish and item
3338         processing begin/end. For monotouch use only.
3340 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3342         * threads.c (mono_thread_get_name): New helper function.
3344         * reflection.c (resolve_object): Set handle_class for strings too.
3345         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3346         a cattr blob into a set of arrays and structures without creating the custom
3347         attributes themselves.
3348         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3350         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3352         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3353         function.
3355 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3357         * verify.c: Replace calls to mono_class_inflate_generic_type with
3358         mono_class_inflate_generic_type_checked. Fixes #480005.
3360 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3362         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3363         object since not all paths lead to callees initing it.
3365 2009-10-23  Alp Toker  <alp@nuanti.com>
3367         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3368         header and should not be shipped:
3370         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3371         which is specific to the mono build. Not going to work.
3373 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3375         * security-manager.c: Report if core-clr is active from
3376         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3377         to allow Moonlight BCL to behave appropriately (both in browser
3378         and outside, e.g. smcs)
3380 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3382         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3383         Fixes bug #549108.
3385 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3387         * class.c: fix typo.
3389 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3391         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3392         a MonoError parameter.
3394         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3395         version that can does proper error handling.
3397         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3399         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3401         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3403 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3405         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3406         NO_UNALIGNED_ACCESS is defined.
3408 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3410         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3411         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3412         Fixes #549173.
3414 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3416         * sgen-gc.c: Shorten sections whenever possible.
3418 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3420         * sgen-gc.c: Use our portable semaphore #defines.
3422 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3424         * sgen-gc.c: A debug option for dumping the heap layout to a file
3425         after each collection.
3427 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3429         * sgen-gc.c: Make managed write barriers atomic via
3430         thread-restarts.
3432 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3434         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3435         methods. Fixes #543021.
3437 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3439         * socket-io.[ch]: fix VS build.
3441 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3443         * icall-def.h:
3444         * socket-io.[ch]: implemented SendFile.
3446 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3448         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3449         before the interfaces to avoid crashes later if class initialization fails.
3450         Fixes #548417.
3452         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3453         Fixes #548276.
3455 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3457         * domain.c: Bump 4.0 version.
3459 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3461         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3462         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3463         check since 'pubkey' can't be NULL at this stage
3464         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3465         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3466         initialization of 'iter'
3468 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3470         * cominterop.c : Search the interface parts of vtable to find 
3471           method matches.  Fixes 547030.
3473         Code is contributed under MIT/X11 license.
3475 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3477         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3478         multiple targets. Fixes bug #574426.
3480 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3482         * profiler.h: Put here the definition of
3483         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3484         (and fix the build...).
3486 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3488         * profiler.c, profiler.h, profiler-private.h:
3489         Added support for different ways of getting call chains in stat mode.
3491 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3493         * object.c, object-internals.h: New function for computing the
3494         size of an array, factored out of mono_array_new_full().  Use
3495         SGen's functions for allocating arrays and vectors.
3497         * sgen-gc.c, gc-internal.h: Special functions for allocating
3498         arrays and vectors without race conditions.  A managed array
3499         allocator method.
3501         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3503 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3505         * object.c, object.h, icall.c: Write barriers do the copying now,
3506         as well, so no need for an additional memcpy.
3508         * sgen-gc.c: Lock when storing remsets.  Do the memory
3509         copying/moving in the write barriers.
3511         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3513         * reflection.c: Added an assert.
3515 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3517         * threads.c, process.c: A few missing write barriers.
3519 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3521         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3522         network performance counters for bytes sent per second, bytes
3523         received per second, and bytes total per second.
3525         Code is contributed under MIT/X11 license.
3527 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3529         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3530         Fix warning.
3532 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3534         * threads.c, object-internals.h, object.c: Move code for
3535         transferring an object to a different domain (via
3536         serialization/remoting) to object.c.
3538         * object.c (call_unhandled_exception_delegate): If the exception
3539         is in a different domain than the delegate, transfer the exception
3540         to that domain.
3542 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3544         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3545         Fixes #322934.
3547 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3549         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3551 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3553         * object.c (mono_method_return_message_restore): Handle the case
3554         where the argument is an instance of a generic type.  Fixes
3555         #544446.
3557 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3559         * object.c (set_value): Write barrier fix - we must pass the
3560         count, not the size.
3562 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3564         * domain.c (mono_init_internal): Print a useful error message when encountering
3565         an old mscorlib, instead of crashing. Fixes #544307.
3567 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3569         * appdomain.c (copy_app_domain_setup): Fix a warning.
3571         * debug-helpers.c (dis_one): Ditto.
3573 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3575         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3576         into the new domain, instead of referencing the original one.
3578         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3579         non-static.
3581         * appdomain.c: Corlib version bump.
3583 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3585         * threadpool.c: one more...
3587 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3589         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3590         threads to die because we're shutting down. delgate5.exe works again.
3592 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3594         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3595           ccw_interface_hash table when a ccw is finalized.
3597         Code is contributed under MIT/X11 license.
3599 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3601         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3602         domain and image unloading into two steps.  We must do this
3603         because clearing the domain in SGen requires the class metadata to
3604         be intact, but we need to free the mono_g_hash_tables in case a
3605         collection occurs during domain unloading and the roots would trip
3606         up the GC.
3608 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3610         * object-internals.h: Remove serialized culture fields from
3611         MonoInternalThread.
3613         * icall-def.h, thread-types.h, threads.c: Remove serialized
3614         culture icalls.
3616         * appdomain.c: Corlib version bump.
3618 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3620         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3621         Fixes #543133.
3623 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3625         * sgen-gc.c: Try to shorten the new section after a major
3626         allocation to avoid ever-growing sections.
3628 2009-10-13  Martin Baulig  <martin@ximian.com>
3630         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3631         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3632         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3633         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3635         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3637 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3639         * threadpool.c: fixed the order in which 'completed' and the wait
3640         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3641         No need to use the wait_handle field of ASyncCall. Make sure the
3642         threadpool is active when adding a job or queueing an idle thread.
3644 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3646         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3648         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3649         when using --compile-all.
3651 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3653         * metadata.c (free_generic_class): Unregister the field_objects
3654         roots if we're using SGen.
3656 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3658         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3659         for GenericParamTableEntry.gparam.
3661 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3663         * marshal.c: don't create the handle when calling. It is created later
3664         if needed.
3666 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3668         * sgen-gc.c: Warning fixes.
3670 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3672         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3673         whole heap for cross-domain references before each collection.
3675         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3676         object.
3678         * threadpool-internals.h, threadpool.c: New function
3679         mono_thread_pool_is_queue_array() for checking whether a given
3680         array is used as a (cross-domain) queue by the thread pool code.
3682 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3684         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3685         searches the whole heap for objects containing a specific
3686         reference.  Only for debugging.
3688 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3690         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3692         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3693         byte arrays between domains.
3695 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3697         * threadpool.c:
3698         * class-internals.h:
3699         * mono-perfcounters-def.h:
3700         * mono-perfcounters.c:
3701         -There is a list of idle threads
3702         -Each of those idle threads wait on their own WaitHandle instead
3703         of all of them using the same semaphore. When a new work item is
3704         added, the job is assigned directly to an idle thread or a newly
3705         created one if possible and then the handle for that thread is
3706         signaled. Compare that to the current approach where all the
3707         threads in the pool compete to dequeue a job from the same
3708         queue.
3709         -New struct ThreadPool that brings together the bunch of static
3710         variable for each threadpool (IO and regular).
3711         -New performance counters: # of items added and its rate per
3712         threadpool. The rate will be used later, perhaps together with
3713         other perf. counters, to decide when idle threads should exit.
3715 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3717         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3718         Fix typo on Windows build.      
3719         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3720         
3721         Code is contributed under MIT/X11 license.
3723 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3725         * object-internals.h: The Thread class is split up into Thread and
3726         InternalThread now.  We have exactly one InternalThread per
3727         thread, and at most one Thread per appdomain per thread.  Most
3728         data is stored in InternalThread.  All InternalThread objects live
3729         in the root domain.
3731         * class-internals.h: Add internal_thread_class to MonoDefaults.
3733         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3734         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3735         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3736         resulting from the split of the Thread class.
3738         * gc-internal.h: Prototype for new function for checking whether a
3739         thread is the finalizer thread.
3741         * appdomain.c: Corlib version bump.
3743 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3745         * appdomain.c|h: Add a mono_domain_try_unload method which is
3746         equivalent to mono_domain_unload, except that it returns an exception
3747         instead of throwing it. Make mono_domain_unload use the
3748         mono_domain_try_unload method to avoid code-duplication.
3750 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3752         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3753         a problem.
3755 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3757         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3758         aborting when a conversion is not implemented.
3760 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3762         * verify.c: when comparing culture strings, use g_ascii_strcmp
3764         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3765         when comparing public key tokens to use memcmp on 16 bytes.   I do
3766         not believe this ever worked as advertised in the past.
3768         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3769         which would have always failed earlier.
3771 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3773         * gc.c: Raise a NullArgumentException if the object passed is
3774         null.
3776 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3778         * image.c (mono_image_close): Atomically decrement the reference count and
3779         remove the image from the hash tables, to prevent another thread from seeing a
3780         dying MonoImage. Fixes #541194.
3782 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3784         * threadpool.c: actually use the minimum number of 'completion ports'
3785         (for us is just a potential worker thread).
3787 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3789         * threadpool.c: remove ares_htable. It does not make sense any more
3790         since the same objects are now stored in GC-tracked arrays while they are
3791         in the queue.
3793 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3795         * threadpool.c: increase the minimum length of the queues to 128.
3796         Remove warning.
3798 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3800         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3801         return the modified signature used by string ctors.
3803 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3805         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3806         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3807         method, to be used by full-aot.
3809 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3811         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3812         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3813         be known to be good.
3815         * class.c (mono_class_init): Fail array types if their element type fails initialization
3816         as well.
3818         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3819         initialization, additionally we request the element_type vtable to be initialized as well.
3821         This is fine and should not increase the working set in any meaningful way since it's reasonable
3822         to assume       that most code will create an array and eventually populate it, which will require the
3823         type's vtable to be initialized.
3825         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3827 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3829         * normalization-tables.h : regenerated.
3831 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3833         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3834         a leb128 encoding can take up to 5 bytes.
3836 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3838         * class.c (verify_class_overrides): Remove useless argument.
3840         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3841         before interface enumeration as this is no longer required.
3843 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3845         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3846         used under mono_class_init context. This functions avoid any code path that
3847         calls mono_class_init, which leads it to be slow as some things like the interface
3848         bitmap are not available.
3850         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3851         of it's own broken version. Fixes the verifier part of #538588.
3853         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3854         API.
3856 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3858         * class.c (mono_class_init): Always set an exception in a class if
3859         vtable setup fails.  Fixes #538577.
3861         * generic-sharing.c: Raise an exception if mono_class_vtable()
3862         returns NULL.
3864 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3866         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3867         methods of vtypes, as they could be incorrectly shared with static methods
3868         taking an IntPtr argument.
3870 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3872         * domain.c:
3873         * object.c:
3874         * class-internals.h: renamed waithandle_class to
3875         manualresetevent_class.
3876         * marshal.c: propagate the exception if a remoting BeginInvoke call
3877         fails.
3879 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3881         * object.c: Properly handle vtable failures.
3883 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3885         * socket-io.c: Assert on vtable failure.
3887         * mono-mlist.c: Assert on vtable failure.
3889 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3891         * marshal.c: Assert on vtable failure.
3893 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3895         * icall.c: Properly handle vtable failures.
3897 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3899         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3901 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3903         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3905         * console-unix.c (do_console_cancel_event): Same.
3907 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3909         * class-internals.h: Add mono_class_vtable_full function that allows control
3910         if an exception should be raised or not.
3912         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3913         to do what its documentation say, that is to return NULL and set exception_type on
3914         failure.
3916         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3917         and change the code to honor it.
3919 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3921         * verify.c: Fix typo in error message.
3923 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3925         * security-core-clr.c: Fix default_platform_check so it can run
3926         the runtime coreclr tests (without an infinite recursion when
3927         throwing an exception).
3929 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3931         object.c (mono_delegate_ctor_with_method): Guard against null method.
3933 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3935         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3936         that should be replaced with error handling later.
3938 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3940         * marshal.c (mono_delegate_end_invoke): Fix warning.
3942 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3944         * loader.c (mono_field_from_token): Properly handle invalid
3945         dynamic tokens.
3947 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3949         * pedump.c (verify_image_file): Skip types that can't be
3950         decoded.
3952 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3954         * verify.c: Look for recursive valuetypes only against the
3955         type been initialized as this is a lot simpler and works.
3957 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3959         * verify.c: Ensure that fields are properly loaded before
3960         checking them.
3962 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3964         * object.c (mono_object_get_virtual_method) : Call 
3965           mono_cominterop_get_invoke if the object is a COM object.
3967         Code is contributed under MIT/X11 license.
3969 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3971         * verify.c: Check for recursive valuetype definitions.
3973 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3975         Use inheritance-aware interface offsets. Inherited types use the same offsets
3976         of their parents. This reduce offset duplication in case more than one type in
3977         the inheritance tree explicitly implements the same interface.
3979         This also removes a source of vtable bubbles found in #532409. An abstract type
3980         isn't required to provide abstract methods to all interfaces it implements, which
3981         resulted in a bubble with the previous scheme as the child would get a non-full
3982         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3983         should be fixed.
3985         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3986         it's expected to not cause any significant increase beyond that.
3988         * class.c (setup_interface_offsets): Compute super class iface offsets
3989         first to force sharing.
3991         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3992         dumping only the relevant ones.
3994         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3995         methods a new slot regardless if they belong to an interface or not. This allows
3996         an inherited type to override the iface method separately from the class one.
3998 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4000         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4001         applications that take less than 2s to execute.
4002         Bug #524984 fixed.
4004 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4006         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4008         * object.c (mono_get_runtime_callbacks): New helper function to return
4009         the runtime callbacks.
4011         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4012         mono_get_runtime_build_info () as the display name.
4013         
4014 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4016         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4017         argument, since NEWARR expects a native int. Fixes #481559.
4019 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4021         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4022         against broken SRE methods.
4024 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4026         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4027         a NULL variable. Abort early on failure.
4029 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4031         * class.c (can_access_type): Fail visibility test for non nested
4032         types with nested visibility.
4034 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4036         * assembly.c (parse_public_key): Avoid allocating (and not 
4037         freeing) the public key array when it's not requested by the 
4038         caller.
4039         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4040         ves_icall_System_Threading_Thread_Thread_internal): Free 
4041         allocated memory on error.
4043 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4045         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4047 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4049         * class.c (mono_class_setup_fields): Remove duplicated local variable
4050         named gklass.
4051         Rename gklass to gtd to reflect the fact that it points to the generic
4052         type definition.
4053         Remove the duplicated call to mono_class_setup_fields on gtd and move
4054         the error check to the beginning.
4056 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4058         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4059         Remove cruft of the previous patch.
4061 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4063         * metadata-verify.c (verify_method_table): Check for abstract + final.
4064         Fixes #534175.
4066 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4068         * verify.c (verify_class_fields): Check for duplicate fields.
4070 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4072         * metadata-verify.c: Verify the typeref table for duplicates.
4074 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4076         This reverts r140936 and properly handles interfaces with static methods. The
4077         right fix is to ensure vtables without bubles which is an easier to verify
4078         constraint. We should avoid such special cases as of the reverted patch as those
4079         only make the runtime more brittle.
4081         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4082         static methods on interfaces.
4084         * class.c (setup_interface_offsets): Use the number of virtual methods when
4085         calculating interface offsets instead of the number of methods. This way we
4086         avoid bubles on the layout.
4088 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4090         * metadata-verify.c (verify_metadata_header): Some very smart
4091         obfuscators like to add extra stream headers. Ignore them.
4093 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4095         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4096         methods correctly.
4098 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4100         * metadata-verify.c: Verify for duplicated types.
4102 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4104         * metadata-verify.c (verify_typedef_table): Verify for nested types
4105         without an entry on the nested class table.
4107 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4109         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4110         <tom_hindle@sil.org>. Add locking around hash table accesses.
4112 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4114         * verify.c (mono_verifier_verify_class): Verify all interface if
4115         really are interfaces. Fixes #534184.
4117 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4119         * pedump.c: Initialize all types during metadata validation so we report
4120         errors only detected as part of class initialization.
4122 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4124         * metadata-verify.c (verify_method_table): PInvoke requires method to
4125         be static. Fixes #534189
4127 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4129         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4130         being NULL.
4132 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4134         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4135         for holes or bad methods. Fixes #525314.
4137 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4139         * class.c (setup_interface_offsets): Don't allocate slot
4140         for the same interface multiple times. This creates bubbles
4141         that waster space and make vtable verification harder.
4143         The same interface get a slot multiple times since we need
4144         to get the closure of all implemented interfaces, which means
4145         the same interface is reported multiple times.
4147 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4149         * verify.c (mono_verifier_verify_class): Don't check the fields
4150         of generic instances since the context on which they got expanded
4151         might lead to false positives.
4153         Such thing happens when a generic type is inflated in the context
4154         of a generic method and the inflated type of a field turns into a
4155         generic method argument, which causes the checking code to think
4156         it's an invalid class when it's not.
4158 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4160         * verify.c (mono_type_is_valid_in_context): Verify if type
4161         is NULL and remove duplicate test.
4163 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4165         * verify.c (mono_verifier_verify_class): Check fields for
4166         invalid generic arguments.
4168 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4170         * class.c (verify_class_overrides): Verify if for static
4171         and non virtual methods.
4173 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4175         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4176         Check for errors after retrieving the vtable.
4178 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4180         * class.c (mono_class_setup_vtable_general): Verify
4181         if method overrides are valid before processing them.
4183 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4185         * marshal.c (mono_array_to_lparray): Fix minimal build with
4186         cominterop disabled.
4188         * marshal.c (mono_free_lparray): Same.
4190 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4192         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4193         the hash function for the ares_htable.
4195 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4197         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4198         bit for assembly flags. MS is ok with it but there is no spec anywhere
4199         on its mean
4201 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4203         * class.c (mono_class_create_from_typedef): Emit profiler events
4204         in all cases.
4206 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4208         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4209         Release memory on failure.
4211 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4213         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4214         to the internal API.
4216         * metadata.c (get_constraints): Use a single-linked table as we don't
4217         traverse it backward. Fail and return FALSE if only of the contraint types
4218         is not found.
4220         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4221         to mono_metadata_load_generic_param_constraints except for having a return value.
4222         This has to be done since the later is part of the public API.
4224         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4225         and fail the type.
4227         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4228         and fail the method.
4230 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4232         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4233         with MS broken behavior of emmitting EH section sizes without the
4234         header size added.
4236 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4238         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4239         memory until we're sure that we'll need it. This avoids leaking for
4240         broken types or duplicated instantiation.
4242 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4244         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4245         mistake.
4247 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4249         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4250         and expected size calculation.
4252 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4254         * class.c (mono_class_get_field_idx): Add fixme for broken
4255         behavior for types with multiple fields with the same name.
4256         I would rather fix it, but have no idea on how to generate
4257         such artifact for testing.
4259 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4261         * verify.c (verifier_load_field): We should allow references to
4262         fields to be made using the generic type definition. It's up to
4263         the loader system to fail invalid ops.
4265         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4266         are invalid.
4268 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4270         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4272         * metadata-internals.h: Fix declaration of 
4273         mono_metadata_interfaces_from_typedef_full.
4275         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4276         heap_alloc_result parameter that controls if the result should be
4277         g_malloc'd.
4279         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4280         array be g_malloc'd and properly document this public API function.
4282 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4284         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4285         remove METHOD_HEADER_TINY_FORMAT1.
4287         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4289         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4291         Both spec and MS uses only 2 bits to enumerate the kind of header.
4292         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4293         is superfluous, only used for tiny headers with odd code lengths.
4295         This change also make sure that mono doesn't wronly interpret bit 2
4296         of fat header flags, which is currently reserved.
4298 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4300         * metadata.c (do_mono_metadata_parse_type): Do error
4301         checking for element types. Don't abort if presented
4302         with a broken type kind.
4304 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4306         * metadata.c (mono_metadata_parse_method_signature_full):
4307         Gracefully fail bad vararg signatures.
4309 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4311         * profiler.c:
4312         * class.c: Fix warnings for uninitialized variables.
4314 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4316         * icall.c: Fix _NSGetEnviron method declaration warning.
4318 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4320         * icall.c:
4321         * reflection.c: Make bitwise checks explicit.
4323 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4325         * debug-helpers.c:
4326         * marshal.c: Fix printf warnings.
4328 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4330         * reflection.c (encode_cattr_value): Fix a warning.
4332 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4334         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4335         of array bounds.
4337 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4339         * loader.c (mono_method_signature): Don't assert on broken
4340         signature. Print a more useful error message.
4342 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4344         * loader.c (mono_method_get_marshal_info): Assert if
4345         signature is invalid. Bounds check stores to the
4346         mspecs array;
4348 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4350         * loader.c (field_from_memberref): Fix warning.
4352 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4354         * loader.c (mono_method_get_param_names): Check if signature
4355         is null. Don't store beyond the size of the name array.
4357 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4359         * loader.c (mono_get_method_constrained): Check if signature
4360         is null.
4362 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4364         * loader.c (mono_loader_set_error_bad_image): Improve
4365         error messages.
4367 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4369         * loader.c (mono_get_method_full): Convert an assertion
4370         into a loader error.
4372 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4374         * class-internals.h, class.c: Better naming and documentation.
4376 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4378         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4379         obj is NULL.
4381 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4383         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4384         parsing fails.
4386 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4388         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4389         errors with no class set.
4391         * loader.c (field_from_memberref): If the field signature is of the wrong
4392         type fail with a MissingFieldException instead of a BadImageException as
4393         this is the behavior observed on MS. 
4395 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4397         * loader.c (field_from_memberref): Don't crash if either the field
4398         signature or the typespec class are invalid.
4400 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4402         * verify.c (verifier_load_field): Don't allow field related
4403         ops to reference fields on generic type definition.
4405 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4407         * metadata-verify.c: Add new warning level for errors specified
4408         by ECMA 335 but that MS ignores.
4410         * metadata-verify.c (verify_method_table): Make compiler controled
4411         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4412         this check is safe because the end result will only be some visibility
4413         exceptions been thrown.
4415 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4417         * verify.c (get_boxable_mono_type): Don't allow the
4418         use of the generic type definition on boxed type positions.
4420         Fixes #531237.
4422 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4424         * threadpool.c: Make sure no cross-domain references remain in
4425         ares_htable or the arrays that are thrown away when resizing.
4427 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4429         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4430         list of classes for which we have to unregister reflection_info
4431         with the GC and which are not in the namespace cache.
4433         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4434         the class to the list.
4436 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4438         * domain.c (mono_domain_free): Unregister the GC roots in
4439         MonoDomain.
4441 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4443         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4445 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4447         * class.c: Add mono_class_get_field_from_name_full which does
4448         the same as mono_class_get_field_from_name but does check field
4449         signature as well.
4451         * class-internals.h: Export mono_class_get_field_from_name_full as
4452         part of the internal API.
4454         * loader.c (field_from_memberref): Search fields by name and signature
4455         as it's valid to have two fields with same name but different types.
4457         Fixes #528055.
4459 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4461         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4463         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4465         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4466         System.Type.
4468 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4470         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4472         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4474 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4476         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4477         to sgen-scan-object.h, which can be included and parameterized via
4478         macros.
4480         * Makefile.am: sgen-scan-object.h added.
4482 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4484         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4486 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4488         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4489         before clearing a domain in the GC.
4491 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4493         * exception.c (mono_exception_from_name_domain): Actually create
4494         the exception in the specified domain.
4496         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4497         OutOfMemoryException a bit later so that the domain is inialized
4498         "enough" that it works.
4500 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4502         * threads.c (thread_cleanup): Clean up the cached_culture_info
4503         array to prevent cross-domain references.
4505 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4507         * metadata.c: more documentation for MonoType accessors.
4509 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4511         Fix incorrect size definitions where the tail array isn't a list
4512         of pointers
4513         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4514         define size.
4515         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4516         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4517         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4519 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4521         * reflection.h:
4522         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4524 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4526         * metadata.c:
4527         * loader.c:
4528         * metadata-internals.h:
4529         * method-builder.c:
4530         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4532 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4534         * cominterop.c:
4535         * metadata.c:
4536         * metadata.h:
4537         * loader.c:
4538         * marshal.c:
4539         * reflection.c: #define for sizeof in MonoType and
4540         MonoMethodSignature.
4542 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4544         * domain.c:
4545         * domain-internals.h: add and use #define's instead of sizeof()
4546         for MonoJitInfo and MonoJitInfoTable.
4548 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4550         * object.c:
4551         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4553 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4555         * metadata.c:
4556         * metadata.h:
4557         * object.c:
4558         * class-internals.h:
4559         * generic-sharing.c:
4560         * marshal.c: use a #define instead of sizeof() for a few
4561         structures that use a zero-length array.
4563 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4565         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4566         to handle inflated generic methods.
4568         * appdomain.c: Bump corlib version.
4570         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4571         instances.
4573         * reflection.c (fixup_method): Same
4575         * reflection.c (resolve_object): Same.
4577         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4578         g_error and a decent message.
4580 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4582         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4583         from the object because it could not yet be available globally
4584         (it happens if the profiler tries to create a gchandle on the
4585         MonoThread object of a thread that is still registering itself
4586         with the runtime).
4588 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4590         * reflection.c (mono_generic_class_get_object): Initialized the
4591         managed type arguments array.
4593         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4595         * appdomain.c: Bump corlib version.
4597 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4599         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4600         #527902.
4602 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4604         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4605         Avoid a crash if synch_cs is not set.
4606         
4607         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4608         Handle the case when the handle is 0.
4610         * appdomain.c: Bump corlib version.
4612 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4614         * reflection.c (mono_type_get_object): Fix a warning.
4616 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4618         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4619         descriptor here.  We assume it's already been computed.
4621         * generic-sharing.c (instantiate_other_info): Compute the GC
4622         descriptor for info type MONO_RGCTX_INFO_KLASS.
4624 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4626         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4627         type, so don't use MONO_OBJECT_SETREF to set a field.
4629 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4631         * gc.c: We were missing one case where invoking a finalizer would
4632         not reset the domain.  Also, in the finalizer thread loop, assert
4633         that we're in the root domain.
4635 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4637         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4638         if the type is not an array.
4640 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4642         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4643         method bound to the declaring type of the method. Raise an exception
4644         if the type is not a generic param.
4646 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4648         * class.c (print_unimplemented_interface_method_info): Print the
4649         full type name.
4651         * class.c (mono_class_setup_vtable_general): When dealing with a
4652         generic instance first check if the generic type definition is
4653         not broken.
4655 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4657         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4659         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4661         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4663         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4665         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4667         Code is contributed under MIT/X11 license
4669 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4671         * verify.c: Fix naming of stelem and ldelem.
4673 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4675         * generic-sharing.c: Replace the templates lock with the loader
4676         lock because of very hard to resolve deadlock issues.
4678 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4680         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4681         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4682         directly. Fixes #525338.
4684         * class.c (mono_class_get_vtable_size): New helper function.
4686         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4687         the field belongs to the type. Fixes #525733.
4689 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4691         * sgen-gc.c: When we stop a thread and its stack top is not within
4692         its allocated stack (because it's in an altstack signal handler),
4693         restart it and stop it again, until it is.
4695 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4697         * sgen-gc.c: Take a thread's stack top and registers from the
4698         sigcontext in the suspend signal handler.
4700         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4701         stuff to sgen-archdep.h.
4703         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4704         caller, because have code in sgen-archdep.h to acquire that data.
4706 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4708         * profiler.c, profiler.h, profiler-private.h:
4709         Added support for keeping track of code chunks and buffers.
4711 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4713         * metadata-verify.c: Fix endianness problems on decoding functions.
4714         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4716 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4718         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4719         schema for vectors and one dimension SZARRAY.
4721 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4723         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4724         schema for vectors and one dimension SZARRAY.
4726 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4728         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4729         Interlocked.(Compare)Exchange with object arguments, which invoke
4730         write barriers.
4732 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4734         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4735         passed invalid arguments.   Fixes another crasher in the
4736         Silverlight test suite.
4738         * class.c (mono_class_array_element_size): Return 0 for the size
4739         of the class;  This fixes the crasher exposed by :
4741         typeof (void).MakeArrayType ();
4743         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4744         if there is no method to dereference.    Put all the code that
4745         depends on this inside the if (method) block.
4747         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4748         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4750         With this change, we pass the test.
4751         
4752         * reflection.c (mono_reflection_sighelper_get_signature_local):
4753         Only dereference the assembly if it has been set.    Fixes a
4754         crasher exposed by #525328
4756 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4758         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4759         don't perform the store in mono_gc_wbarrier_generic_nostore().
4760         Remove the second argument (value), which is not needed.
4762 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4764         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4765         the build.
4767         * boehm-gc.c: Ditto.
4768         
4769 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4771         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4772         not perform the store itself.  Introduce
4773         mono_gc_wbarrier_generic_nostore(), which is the same as
4774         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4775         store.
4777 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4779         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4780         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4781         we still need the memcpy().
4783 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4785         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4786         so that big arrays are handled correctly.  Always use
4787         safe_object_get_size() to calculate array object sizes, which
4788         takes bounds into account.
4790 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4792         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4793         GC descriptor is computed before we use it.
4795 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4797         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4798         write barrier if necessary.
4800 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4802         * icall-def.h, icall.c, thread-types.h: New separate icall for
4803         VolatileWrite(object&,object) that uses a write barrier.
4805         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4806         barriers in icalls which write to "ref" or "out" arguments.
4808 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4810         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4811         handler in a separate icall, to reduce the size of the wrappers.
4813 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4815         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4817 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4819         * metadata-verify.c (parse_field): Allow byref field.
4821         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4823         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4825 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4827         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4828         Fixes #522784.
4830 2009-07-20  Robert Jordan  <robertj@gmx.net>
4832         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4833         Fix invalid IL in valuetype handling (STOBJ must push the
4834         corresponding class). Fixes bug #523149.
4836         Code is contributed under MIT/X11 license.
4838 2009-07-20  Geoff Norton  <gnorton@novell.com>
4840         * gc.c: Use proper semaphores where available on posix and darwin.
4842 2009-07-19  Geoff Norton  <gnorton@novell.com>
4844         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4846 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4848         * refletion.c (is_sre_usertype): Change name to is_usertype and
4849         invert it's result so it returns true if the type is an user type
4850         and not the opposite.
4852         * reflection.c (is_*_type): Change all of those to use new macro
4853         check_corlib_type_cached that cached the type lookup so we don't
4854         need to do string comparisons all the type. Changed the signature
4855         to take a MonoClass instead.
4857         * reflection.c: Change mono_image_create_token and resolve_object
4858         to use is_sre_* functions.
4860 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4862         * sgen-gc.c: Check for writes to the stack in the managed
4863         wbarrier as well.
4865 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4867         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4868         but put them on a list which is processed with the other thread's
4869         remsets.
4871 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4873         * sgen-gc.c: Fix and enable the internal allocator instead of
4874         using malloc/free (which causes deadlocks).
4876 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4878         * refletion.c: Fix builds with SRE disabled by adding a minimal
4879         implementation of mono_reflection_type_get_handle.
4881 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4883         * refletion.c: Make mono_reflection_type_get_handle non static.
4885         * object-internals.h: Export mono_reflection_type_get_handle.
4887         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4888         unmanaged handle using mono_reflection_type_get_handle.
4890 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4892         * refletion.c: Replace all reads of MonoReflectionType::type with
4893         calls to mono_reflection_type_get_handle. Only the functions that
4894         deal with constructing TypeBuilder::type have not been changed
4895         because they have to deal with NULL values.
4897         This is a first step into supporting reflection types that don't
4898         map directly into their unmanaged counterpart.
4900 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4902         * metadata-verify.c (parse_locals_signature): Don't complain
4903         on signature with zero locals since MS generates it and doesn't
4904         bother with.
4906 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4908         * reflection.c (mono_image_get_array_token): Resolve return
4909         type using mono_reflection_type_get_handle.
4911         * reflection.c (mono_image_get_array_token): Resolve array method
4912         parent type using mono_reflection_type_get_handle.
4914 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4916         * reflection.c (mono_image_basic_init): Applied patch from
4917         <Dax@daxxfiles.net>. Set the public key token from the assembly
4918         builder. Fixes #518909.
4920         * appdomain.c: Bump corlib version.
4922 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4924         * class.c (mono_class_needs_cctor_run): Make this return false if
4925         the class has no cctor.
4927 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4929         * sgen-gc.c: When the minor GC needs to allocate a new section,
4930         invoke the major GC afterwards.
4932 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4934         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4935           Applying the window_style field to the SHELLEXECUTEINFO struct.
4937         Code is contributed under MIT/X11 license.
4939 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4941         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4942         locking earlier.  Fix it in the managed allocator by making sure
4943         that no thread is stopped there before the GC runs.  If we do stop
4944         a thread there, we restart it and let it run a but, until it stops
4945         somewhere else.
4947         * gc-internal.h, gc.c: Function for getting the IP from a signal
4948         context via a function registered by mini.
4950 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4952         * object-internals.h (MonoIntPtr): New structure describing a boxed
4953         IntPtr.
4955         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4956         returns. Fixes #519953.
4958         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4960 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4962         * class-internals.h, generic-sharing.c: New RGCTX info type for
4963         getting a remoting invoke with check wrapper.
4965 2009-07-07  Geoff Norton  <gnorton@novell.com>
4967         * icall-def.h: Fix the enable-minimal build.
4969 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4971         * object-internals.h: Add MonoReflectionDerivedType.
4973         * reflection.c: Implement support for PointerType.
4974         Fixed tons of warnings.
4976 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4978         * object-internals.h: Add MonoReflectionByRefType.
4980         * reflection.c: Implement support for ByRefType.
4982 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4984         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4986         * object-internals.h: Add MonoReflectionArrayType and
4987         mono_reflection_create_unmanaged_type.
4989         * reflection.c: Implement support for ArrayType.
4991 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4993         * metadata-verify.c (is_valid_method_header): Parse EH block
4994         flags correctly.
4996 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4998         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4999         processing the disappearing links, and process disappearing links
5000         in a loop until no new objects are copied.
5002 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5004         * object.c (handle_enum): Invoke the write barrier when copying
5005         value type instances.
5007         * sgen-gc.c: Register remsets for unmanaged write barriers only
5008         when the address written to is actually on the heap.  This makes
5009         set_value() in object.c work without requiring that the result be
5010         on the heap.
5012 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5014         The runtime wrappers are all bound to a given type that must
5015         exist in the same image. For regular images we use the <Module>
5016         type, which is required to exist for all images.
5018         The <Module> type can't be used for dynamic images because it
5019         might not exist at the time the wrapper is required, so we create
5020         a synthetic type to use instead.
5022         The current code works because of the 2 stage setup of MonoClass,
5023         but once this is gone it will no longer work.
5025         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5027         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5029         * object-internals.h: Export mono_image_set_wrappers_type icall
5030         as part of the internal API.
5032         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5033         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5035         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5036         image wrappers_type to the provided value.
5038 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5040         * appdomain.c (deregister_reflection_info_roots): No need
5041         to use the image lock here.
5043 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5045         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5047 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5049         * threads.c: Store the thread start argument in a hash table instead of
5050         registering it as a root, as libgc doesn't support unregistering roots
5051         under windows, leading to 'too many root sets' errors when many threads
5052         are created.
5054         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5055         shutdown, they can still be referenced by the other dying objects.
5056         Fixes #514506.
5058 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5060         * socket-io.c: DontLinger does not allow LingerOptions.
5062 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5064         * metadata-verify.c: The spec doesn't mention that it's possible to add
5065         custom attribute to a generic parameter. Fixed.
5067 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5069         * class.c (inflate_generic_type): Don't crash while trying to output a message
5070         on why we're aborting.
5072 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5074         * socket-io.c: DontLinger can take an int or a boolean too.
5076 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5078         * gc.c: check for a null argument to SuppressFinalize () and
5079         ReRegisterForFinalize ().
5081 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5083         * loader.c (method_from_methodspec): Call into the verifier to check
5084         the signature.
5086         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5088         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5089         part of the internal API.
5091 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5093         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5094         the signature.
5096         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5098         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5099         part of the internal API.
5101 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5103         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5104         the signature.
5106         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5107         blob verification.
5109         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5110         part of the internal API.
5112 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5114         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5115         when doing basic verification. 
5117         This check must be done since the runtime peeks into signatures in much
5118         more places than it does decoding so it makes sense to ensure that all
5119         pointers to blob objects are well formed.
5121 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5123         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5124         Use proper overflow dectection. Fix usage of it.
5126 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5128         * loader.c (field_from_memberref): Call into the verifier to check
5129         the signature.
5131         * loader.c (mono_method_get_signature_full): Same.
5133         * loader.c (method_from_memberref): Same.
5135         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5137         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5138         part of the internal API.
5140 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5142         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5143         or unloaded, still return an AsyncResult, but don't add it to the
5144         threadpool.
5146 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5148         * threads.c: fix missing colon when DEBUG is defined.
5150 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5152         * threadpool.c: Don't add new calls to a threadpool if the domain
5153         of the call is unloading or unloaded.  When dequeuing a job, null
5154         the reference in the queue.
5156 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5158         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5159         generation if an object was moved.
5161 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5163         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5164           parameters of type SAFEARRAY[VARIANT].
5166         * reflection.c (encode_marshal_blob): Properly generate element type
5167           (SafeArraySubType marshal attribute option).
5169         Code is contributed under MIT/X11 license.
5171 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5173         * reflection.c: in mono_method_clear_object () really ensure all the
5174         objects are removed.
5176 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5178         * loader.c (mono_method_signature): Call into the verifier to check
5179         the method signature.
5181         * metadata-verify.c (verify_method_table): Move signature verification
5182         to verify_method_table_full.
5184         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5186         * verify-internals.h: Export mono_verifier_verify_method_signature as
5187         part of the internal API.
5189 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5191         * loader.c (mono_method_get_header): Call into the verifier to
5192         check the method header.
5194         * metadata-verify.c: Add mono_verifier_verify_method_header.
5196         * verify-internals.h: Export mono_verifier_verify_method_header as
5197         part of the internal API.
5199 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5201         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5202         check the field signature. Replace an assert with an explicit check.
5204         * class.c (mono_class_setup_fields): Call into the verifier to check
5205         the field signature.
5207         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5209         * verify-internals.h: Export mono_verifier_verify_field_signature as
5210         part of the internal API.
5212 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5214         * class.c (mono_class_find_enum_basetype): Simplify this function
5215         by moving code outside of the loop and not decoding static fields.
5217 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5219         * metadata-verify.c (verify_typedef_table): Check the extends
5220         token here. Move to here a flags check from verify_typedef_table_full.
5222 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5224         * metadata-verify.c (is_valid_method_header): Fix a warning.
5226         * metadata-internals.h (MonoImage): Remove the unused 
5227         static_rgctx_invoke_wrapper_cache.
5229         * image.c marshal.c: Ditto.
5231 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5233         * image.c (do_mono_image_load): Enable table data verification.
5235 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5237         * metadata-verify.c (is_valid_constant): Fix nullref check.
5239 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5241         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5243 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5245         * sgen-gc.c: Managed allocation with pthreads TLS.
5247         * threads.c, threads-types.h: Functions for the JIT to tell the
5248         runtime whether it supports the MONO_TLS opcode.
5250 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5252         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5253         without methods.
5255 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5257         * metadata-verify.c (is_valid_constant): Fix the string length check.
5258         Use safe overflow checking. Add decent error messages.
5260 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5262         * metadata-verify.c: Move remaininh blob checks to the offline
5263         verification path.
5265 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5267         * metadata-verify.c: Move more blob checks to the offline verification
5268         path.
5270 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5272         * object-internals.h : Adding interrupt_on_stop field.
5274         * threads.c (mono_thread_request_interruption) : On Windows exit the
5275           thread if interrupt_on_stop is set.
5277         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5278          Removing old interrupt logic and setting the interrupt_on_stop for the
5279          thread when calling accept.
5281         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5282          setting the interrupt_on_stop for the thread when calling accept.
5284         Contributed under MIT/X11 license.
5286 2009-06-20  Martin Baulig  <martin@ximian.com>
5288         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5290 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5292         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5293         running in no-exec mode.
5295 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5297         * metadata-verify.c (verify_method_table): Move header
5298         checking to verify_method_table_full.
5300         * metata-verify.c (mono_verifier_verify_full_table_data):
5301         Call verify_method_table_full.
5303 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5305         * metadata-verify.c (verify_field_table): Move signature
5306         checking to verify_field_table_full.
5308         * metata-verify.c (mono_verifier_verify_full_table_data):
5309         Call verify_field_table_full.
5311 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5313         * metadata-verify.c (verify_typedef_table): Move remaining
5314         stuff to verify_typedef_table_full.
5316 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5318         * metadata-verify.c: Kill is_corlib from VerifyContext.
5319         It is only used by the offline mode.
5320         So we better remove it from the runtime path.
5322 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5324         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5325         function that perform the offline metadata verification steps.
5327         * metadata-verify.c (verify_typedef_table): Move some checks to
5328         verify_typedef_table_full and make it been called by new function
5329         mono_verifier_verify_full_table_data.
5331         * pedump.c: Call mono_verifier_verify_full_table_data.
5333         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5334         part of the internal API.
5336 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5338         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5339         check.
5341         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5342         flags bits. SupportLastError was confused as bit 7 instead of 6.
5344         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5345         to check against the module ref table instead of module.
5347         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5349         * pedump.c: Call mono_image_load_names.
5351 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5353         * image.c: Extract mono_image_load_names from do_mono_image_load.
5355         * metadata-internals.h: Export mono_image_load_names as part of
5356         the internal API.
5357         
5358 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5360         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5361         first, as it could reference data in the other caches.
5363 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5365         * metadata-verify.c: Finished with method header verification.
5367 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5369         * metadata-verify.c: Added more header verification code.
5370         Now only EH clauses are missing.
5372 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5374         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5375         for return values.
5377 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5379         * metadata-verify.c: Initial method header verification.
5381 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5383         * metadata-verify.c (verify_import_table): The IAT contents
5384         might end been patched by the windows DL when running with
5385         coree enabled.
5387 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5389         * class.c (mono_class_from_typeref): If the enclosing type is not
5390         found return null instead of crashing. Fixes #508487.
5392 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5394         * normalization-tables.h : updated to the latest unicode charcter
5395           data.
5396         * appdomain.c : bump corlib version.
5398 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5400         * class.c (mono_class_from_name): Fix support for assembly references
5401         in the EXPORTEDTYPE table. Fixes #511704.
5403 2009-06-13  Geoff Norton  <gnorton@novell.com>
5405         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5406         assembly in the target domain.
5408 2009-06-12  Robert Jordan  <robertj@gmx.net>
5410         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5411         because "this" of the managed signature has become an
5412         ordinary parameter in the unmanaged signature.
5414 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5416         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5417         field for owner-less generic containers.
5419         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5420         image field of the owner-less generic containers created here.
5422         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5423         contain is ownerless until the caller sets its owner.
5425         * metadata.c (type_in_image): Handle owner-less generic containers
5426         correctly.
5427         
5428 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5430         * image.c (mono_image_close): Support debug_assembly_unload for
5431         dynamic images too.
5433 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5435         * class.c: Fix some typos in comments.
5437 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5439         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5441         * threads.c (mono_thread_execute_interruption): Avoid creating the
5442         abort exception object while holding the synch_cs lock.
5444 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5446         * metadata-verify.c: Verify basic cattr content.
5448 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5450         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5451         nested types.
5452         
5453         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5454         support for nested types. Fixes #511704.
5456 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5458         * metadata-verify.c: Verify methodspec signatures.
5460 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5462         * metadata-verify.c: Verify typespec signatures.
5464 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5466         * metadata.c (free_inflated_method): Call 
5467         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5469 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5471         * mono-config.c: Small change to report the PPC64/ILP32 model.
5473 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5475         * metadata-verify.c (parse_type): Check szarray.
5477 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5479         * metadata-verify.c (parse_type): Check fnptr.
5481 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5483         * metadata-verify.c (parse_type): Check generic instances.
5485 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5487         * metadata-verify.c (parse_type): Check array shape.
5489 2009-06-05  Robert Jordan  <robertj@gmx.net>
5491         * class.c (mono_class_create_from_typedef): Check only for
5492         mscorlib's System.Array.
5494 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5496         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5497         and generic params. 
5499         * metadata-verify.c (parse_field): Check the signature.
5501 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5503         * metadata-verify.c: Implement locals signature check.
5505 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5507         * domain.c: Add .NET 4.0 Beta 1 version.
5509 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5511         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5512           For QueryInterface on CCWs consider the base class
5513           interfaces as well.
5515         Code is contributed under MIT/X11 license.
5517 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5519         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5521         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5522         used.
5524         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5525         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5527         * generic-sharing.c (inflate_other_data): Ditto.
5528         
5529 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5531         * metadata-verify.c: Implement property signature check.
5533 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5535         * sgen-gc.h: Register saving support for PPC.
5537 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5539         * sgen-gc.c: Fixed a pthread TLS screwup.
5541 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5543         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5544         supported.
5546 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5548         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5549         keyword is not supported.
5551 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5553         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5554         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5555         the inflated method is freed. Fixes #508389.
5557         The code is contributed under the MIT/X11 license.
5558         
5559 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5561         * marshal.c (get_wrapper_target_class): New helper function.
5562         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5563         the <Module> class of the image. Fixes #509049.
5565 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5567         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5568         Check if the thread was interrupted and proccess it straight away.
5569         Makes abortion much more responsive.
5571 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5573         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5574         MonoThread::interruption_requested to match it's counterpart.
5576         Fixes a hang in abort-stress-1 on a 2 core x86.
5578         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5579         Fix warning.
5581 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5583         Change MonoImage::name_cache to be protected by the image lock
5584         instead of the loader lock.
5586         * appdomain.c (deregister_reflection_info_roots): Protect access
5587         to name_cache.
5589         * class.c (mono_image_init_name_cache): Change from the loader lock
5590         to the image lock. Check if the cache wasn't already created.
5592         * class.c: Change from the loader to the image lock.
5594         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5595         the code to hold the image lock while iterating over name_cache and
5596         not go into mono_array_new holding it.
5598         * metadata-internals.h: Add a comment about this change.
5600 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5602         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5603         Under the 2.0 profile raise the loader error.
5605         Fixes #508532.
5607 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5609         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5610         of ldind opcode for generic instances so we don't fail for direct wrappers.
5611         This only affect direct calls.
5613 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5615         * reflection.c (create_dynamic_mono_image): Fix warnings.
5617         * generic-sharing.c (other_info_equal): Ditto.
5618         
5619 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5621         * metadata-verify.c: Implement field signature check.
5623 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5625         * metadata-verify.c: Implement standalone signature check.
5627 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5629         * metadata-verify.c: Implement methodref signature check.
5631 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5633         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5634         callbacks supplied by the runtime.
5636         * object.c (mono_install_callbacks): New internal function to install
5637         the callbacks.
5639         * object.c (mono_create_ftnptr): Move the implementation of this to
5640         mini/.
5642         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5644 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5646         * metadata-verify.c (parse_return_type): Proper byref check.
5647         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5648         generic signatures and method params.
5650 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5652         * metadata-verify.c (decode_signature_header): Fix bounds check.
5654         * metadata-verify.c (parse_custom_mods): Check custom mods.
5656         * metadata-verify.c (parse_type): Do initial basic verification
5657         of valid values.
5658         
5659         * metadata-verify.c (is_valid_method_signature): Parse the generic
5660         param count.
5662 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5664         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5665         discarded based on their most specific definition so we set the method_slots
5666         array before checking if the method is acceptable or not.
5668         Fixes #506757.
5670 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5672         * icall.c: Free the old array when resizing a mono_ptr_array.
5674 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5676         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5677         for the hashes whose keys are managed objects.
5679 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5681         * object-internals.h, threads.c: Set the execution context on
5682         thread start here, not in corlib.
5684         * appdomain.c: Bump corlib version.
5686 2009-05-27  Martin Baulig  <martin@ximian.com>
5688         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5689         if `_mono_debug_using_mono_debugger' is set to make things work
5690         properly when embedding Mono.
5692 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5694         * class.c (mono_class_setup_fields): Don't mark simd types as having
5695         16 bytes alignment as the whole runtime doesn't support.
5697 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5699         * metadata-verify.c (safe_read): Use endian safe read macros.
5701 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5703         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5704         it is read-only when using full aot.
5706 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5708         * metadata-verify.c (is_valid_method_signature): Verify parts
5709         of the return type. Provide an error message in case of failure.
5711 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5713         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5715 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5717         * metadata-verify.c: Include the size prefix in the bounds check.
5719 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5721         * icall.c: Remove warnings.
5723         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5724         prevent auto-detection based on GCC defines.
5726         Add PS3
5728         * metadata-verify.c: Do not include signal.h
5730         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5731         messages.  Not sure why the g_assert_not_reached is not enough to
5732         quiet the compiler.
5733         
5735         * appdomain.c: Remove code that is not used when
5736         DISABLE_SHADOW_COPY is set.
5738         * image.c: use g_getenv
5740 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5742         * reflection.c: Remove code that it not used with
5743         DISABLE_REFLECTION_EMIT is defined.
5745 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5747         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5748         invoke wrappers.
5750 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5752         * socket-io.c
5753         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5754         the ifdef here and instead put that on io-layer
5756 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5758         * metadata-verify.c: Verify the generic param constraint table.
5760 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5762         * metadata-verify.c (verify_generic_param_table): Fix
5763         thinko on the valid flags bits for generic params.
5765 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5767         * metadata-verify.c: Verify the methodspec table.
5769 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5771         * metadata-verify.c: Verify the generic param table.
5773 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5775         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5777 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5779         * sgen-gc.c: Use generation enum more consistently and use the
5780         correct generation in mono_gc_register_for_finalization().
5782 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5784         * metadata-verify.c: Verify the nested class table.
5786 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5788         * metadata-verify.c: Verify the manifest resource table.
5790 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5792         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5794 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5796         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5797         wrappers, this is now done in the JIT.
5798         
5799         * class.c (mono_set_generic_sharing_supported): New internal function.
5800         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5802 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5804         * metadata-verify.c: Verify the exported type table.
5806 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5808         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5810 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5812         * metadata-verify.c: Verify the file table.
5814 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5816         * metadata-verify.c (verify_assembly_table): Fix an error message.
5818         * metadata-verify.c: Verify the assemblyref table.
5820 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5822         * metadata-verify.c (verify_assembly_table): Fix the valid
5823         bits mask for flags.
5825 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5827         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5828         generic methods as well.
5830 2009-05-15  Geoff Norton  <gnorton@novell.com>
5832         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5833         use-case and is significantly more performant than the wapi layer.
5835 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5837         * metadata-verify.c: Verify the assembly table.
5839 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5841         * metadata-verify.c: Fix rows limit check.
5843 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5845         * metadata-verify.c: Verify the fieldrva table.
5847 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5849         * sgen.c: Speed up weak links and finalizers by grouping them by
5850         generation.
5852 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5854         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5855         free the old GCHandle (only applies to SGen).
5857 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5859         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5860         mono_metadata_load_generic_params () for non-generic methods.
5862 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5864         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5865         New function for returning a monitor's weak link if it has one.
5867         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5868         one) when clearing a domain.  These can still be around because
5869         the object might not have been collected.
5871 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5873         * gc.c: Fix a warning.
5875 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5877         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5878         prevous wait that resulted in a deadlock on Windows when initializing
5879         the runtime form DllMain. Also results in improved startup time.
5880         (finalizer_thread): Get rid of thread_started_event.
5881         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5882         resulting MonoThread.
5884         Contributed under MIT/X11 license.
5886 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5888         * metadata-verify.c: Verify the implmap table.
5889         Don't require that #US and #Strings be present.
5891 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5893         * security-core-clr.c: Delegate checks are done at creation time,
5894         not a invocation time. Fix exception for Telerik Silverlight demo
5896 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5898         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5899         case for the Thread class.
5901         * threads.c: Do clean-up of abort exception/state in
5902         thread_cleanup() instead of Thread.free_internal().  Also clean up
5903         current_appcontext.  The reason we have to do that is because
5904         those references might point into another domain and if that
5905         domain is unloaded before the thread is finalized, they point to
5906         invalid data.
5908 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5910         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5911         stub signatures.
5912         
5913         Contributed unter MIT/X11 license.
5915 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5917         * verify.c, metadata-verifier.c: Add support for disabling the
5918         verifier in some builds.
5920         [ Sorry, my previous commit accidentally commited some work in
5921         progress ]
5923 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5925         * class.c (mono_class_setup_fields): Set class->field.first for
5926         generic instances.
5928 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5930         * metadata-verify.c: Verify the typespec table.
5932 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5934         * metadata-verify.c: Verify the module table.
5936 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5938         * metadata-verify.c: Verify the methodimpl table.
5940 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5942         * metadata-verify.c: Verify the property table.
5944 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5946         * debug-helpers.c (mono_method_desc_match): Add support for generic
5947         glob patterns.
5949 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5951         * metadata-verify.c: Verify the propertymap table.
5953 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5955         * metadata-verify.c: Verify the event table.
5957         * metadata-verify.c (search_sorted_table): Fix offset
5958         calculation.
5960 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5962         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5964 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5966         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5967         because mono_delegate_free_ftnptr() needs it.
5969 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5971         * metadata-verify.c: Verify the eventmap table.
5973 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5975         * metadata-verify.c: Verify the standalonesig table.
5977 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5979         * metadata-verify.c: Verify the field layout table.
5981 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5983         * class.c (mono_type_get_name_recurse): Don't crash
5984         for ownerless generic params.
5986         * debug-helpers.c (mono_type_get_desc): Correct the format
5987         for ownerless generic params.
5989 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5991         * metadata-verify.c: Verify the class layout table.
5993 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5995         * metadata-verify.c: Verify the decl security table.
5997 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5999         * domain.c (mono_domain_set_internal_with_options): Don't do
6000         anything if the old domain is the same as the old one.  Fixes
6001         #499326.
6003 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6005         * appdomain.c: Deregister the reflection_info roots when unloading
6006         a domain.
6008         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6009         memory allocated by a domain and frees its disappearing links.
6011         * boehm-gc.c, null-gc.c: Empty implementation of
6012         mono_gc_clear_domain().
6014 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6016         * appdomain.c (clear_cached_vtable): Free the static fields memory
6017         block.
6019 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6021         * gc.c: Set the correct domain when invoking finalizers.
6023         * appdomain.c: Set the correct domain when creating threads.
6025 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6027         * sgen-gc.c: Fix skip size for vectors.
6029 2009-05-03  Martin Baulig  <martin@ximian.com>
6031         * mono-debug-debugger.c
6032         (mono_debugger_check_breakpoints): Check class init handlers even
6033         if we don't have any method load handers.
6035 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6037         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6038         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6040 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6042         * metadata-verify.c: Verify the field marshal table.
6044 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6046         * metadata-verify.c: Verify the custom attribute table.
6048 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6050         * metadata-verify.c: Verify the constant table.
6052 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6054         * metadata-verify.c: Verify the memberef table.
6056 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6058         * metadata-verify.c (get_coded_index_token): Remove
6059         dead argument.
6061 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6063         * metadata-verify.c: Verify the interfaceimpl table.
6065 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6067         * verify.c: Improve error message.
6069         * debug-helpers.c (mono_type_get_desc): Harden the code that
6070         deals with VAR and MVAR.
6072 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6074         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6075         part of #498692.
6077 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6079         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6080         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6082 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6084         * security-core-clr.c: Avoid redundant checks for platform code, 
6085         e.g. check for method and for class (very common) and check
6086         for class and outer class (less common)...
6088 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6090         * reflection.c: Avoid returning random cattrs for synthetic methods.
6091         Fixes #498545.
6093 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6095         * assembly.c: assemblies in the GAC should never be shadow-copied.
6097 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6099         * domain.c, domain-internals.h: Disable
6100         track_resurrection_{objects,handles}_hash in MonoDomain if using
6101         SGen.
6103 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6105         * metadata-verify.c: Verify the param table.
6107 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6109         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6110         MethodList.
6112         * metadata-verify.c (verify_method_table): Proper check the ParamList
6113         field.
6115 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6117         * metadata-verify.c (verify_method_table): Check for runtime
6118         implemented functions such as delegate .ctors. Remove spurious
6119         printf.
6120         
6121 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6123         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6125 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6127         Don't allocate MonoGenericInfo for ownerless generic params.
6128         * class-internals.h (MonoGenericParam::info): Move field to ...
6129         (MonoGenericParamFull): ... this.  New struct.
6130         (MonoGenericContainer::type_params): Change type to
6131         MonoGenericParamFull.
6132         (MonoGenericParam, MonoGenericContainer): Update accessors.
6133         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6134         'info' field for ownerless generic param.
6135         (mono_metadata_load_generic_params): Update to changes.
6136         * reflection.c (mono_reflection_create_generic_class): Likewise.
6137         (reflection_methodbuilder_to_mono_method): Likewise.
6138         (mono_reflection_initialize_generic_parameter): Likewise.
6140 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6142         Don't use MonoGenericParamInfo for ownerless generic params.
6143         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6144         use ParamInfo class at all.
6145         (mono_class_from_generic_parameter): Use them.
6146         (make_generic_param_class): Fix a couple of instances where 'pinfo
6147         == NULL' wasn't handle.
6149 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6151         * class.c (make_generic_param_class): Carve out of ...
6152         (mono_class_from_generic_parameter): ... here.
6154 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6156         Simplify mono_class_from_generic_parameter
6157         * class-internals.h (MonoGenericParamInfo::token): New field.
6158         * metadata.c (mono_metadata_load_generic_params): Initialize it
6159         from metadata.
6160         * class.c (mono_class_from_generic_parameter): Use it instead of
6161         searching through metadata.
6163 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6165         * metadata-verify.c: Add verification of the method table.
6167 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6169         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6170         Delegate::Invoke optimization.
6172 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6174         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6175         string returned by get_shadow_assembly_location_base.
6177         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6178         about caller's ownership.
6180 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6182         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6183         reflection memory on domain unload.
6185         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6186         reflection cleanup code do it.
6188         * domain-internals.h: Add mono_reflection_cleanup_domain.
6190         This fixes a memory leak for managed mirrors of reflection objects
6191         on domain unload. 
6193 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6195         * metadata-verify.c: Implement more verification of the field table.
6197 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6199         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6200         doesn't try to parse the input assembly, which can be broken.
6202 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6204         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6205         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6206         by using the lowest bit in the link to store whether the link is
6207         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6209 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6211         * Makefile.am: Split the console support in platform specific code
6212         and put together a framework for making this easy in the future so
6213         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6215 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6217         * pedump.c: Fix a warning.
6219 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6221         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6222         mono_class_from_mono_type to avoid bad interactions with the dual representation
6223         of the generic type definition.
6225 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6227         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6228         get the MonoClass for the call context type as it might be a generic
6229         instance.
6231         Fixes #491483.
6233 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6235         * object-internals.h: The Thread object has no execution_context
6236         member anymore.
6238         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6239         the execution context.
6241         * appdomain.c: Bump corlib version.
6243 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6245         * verify.c (do_newobj): Improve error message.
6247 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6249         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6250         is nested in the filter block.
6252         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6253         block is not fully nested.
6255         Fixes #495656.
6257 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6259         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6260         not MonoType to check for equality of valuetypes as the generic type
6261         definition allows for two different encodings: the generic type definition
6262         class or a generic instance over the GTD arguments.
6264         Fixes #496175.
6266 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6268         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6270         * verify.c (do_initobj): Improve error message.
6272 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6274         * metadata-verify.c: Enable pe verification as the issue with #496453
6275         is that the authenticode data directory have a different unspecified
6276         format. Ignore it for now.
6278         * pedump.c: Run the metadata verifier together with the IL verifier.
6280         Fixes ##496453.
6282 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6284         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6286 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6288         * class.c (can_access_type): Check visibility against
6289         the element type for pointers and arrays.
6291         Fixes #496150.
6293 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6295         * metadata-verify.c: Fix cli and table verification to use information
6296         from the MonoImage. A lot of duplicated code got killed.
6298 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6301         This patch starts to integrate the metadata verifier with the runtime code.
6303         This patch causes major regression in functionality for the metadata verifier
6304         as cli and table verification are disabled since they require to be ported to
6305         use MonoImage information.
6307         * image.c (do_mono_image_load): Split the code in this function
6308         into mono_image_load_pe_data and mono_image_load_cli_data.
6309         Add     care_about_pecoff parameter to not load pecoff data.
6310         Call into the metadata verifier for pecoff and cli verification.
6312         * image.c (mono_image_open_raw): New function that doesn't perform
6313         any parsing of the image contents.
6314         
6315         The reason for the 3 new functions is to give pedump better control
6316         into the interaction with the verifier.
6318         * metadata-internals.h: Add new functions from image.c as part of the
6319         internal mono API.
6321         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6322         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6323         to make those functions work together with the runtime.
6325         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6326         true if the image needs to be verified.
6328         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6330         * pedump.c: Use new metadata verifier API.
6332 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6334         * object.c (mono_install_vtable_trampoline): Make this receive a
6335         trampoline creation function instead of trampoline, allowing the JIT
6336         to use a different trampoline for each vtable.
6338 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6340         * object.c (mono_raise_exception): Don't reset the thread abort
6341         exception state here.
6343 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6345         * icall-def.h: New icall for getting the thread abort exception
6346         state for a thread.
6348         * object.c, thread.c, object-internals.h: A thread's abort
6349         exception state is now a GC handle.  To get the object it stands
6350         for, we must move it into the current app domain, if it's
6351         different than the one where it originated from.
6353         * appdomain.c: Bump corlib version.
6355         * domain.c, domain-internals.h: New function for setting the
6356         domain and migrate the thread abort exception or not.
6358 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6360         * metadata-verify.c: Add initial verification of the
6361         field table.
6363 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6365         * metadata-verify.c: Add a macro to conditionally enable
6366         dumping of verification information. Add  make_coded_token
6367         and search_sorted_table to enable search sorted tables
6368         by a given coded token.
6370 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6372         * metadata-verify.c: Add array mapping from table index
6373         to description offset. Add get_col_offset and get_col_size
6374         functions.
6376 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6378         * metadata-verify.c: Add remaining table descriptions offsets.
6379         Add remaining coded index descriptions.
6381 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6383         * metadata-verify.c: Fixed constant table description.
6384         Fixed calculation of HasCustomAttribute coded index size.
6385         Fixed calculation of size for many table indexes. 
6387 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6389         * pedump.c (dump_metadata): Dump table offset instead
6390         of useless pointer in memory.
6392 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6394         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6396 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6398         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6399         a missing of for interface types.
6401 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6403         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6404         the code is commented.
6406         * metadata-verify.c (verify_resources_table): Remove spurious printf
6407         and don't fail if there are unmanaged resources. Gmcs generates a useless
6408         one     for all assemblies - I bet it's some MS compatibility junk.
6410 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6412         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6414         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6416         * verify-internals.h: Same.
6418         * pedump.c: Fix for mono_image_verify new signature.
6420 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6422         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6423         flags combinations.
6425 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6427         * metadata-verify.c (verify_module_table): Ignore the generation field.
6429 2009-04-15  Martin Baulig  <martin@ximian.com>
6431         * debug-mono-symfile.c
6432         (mono_debug_symfile_lookup_location): Don't print a warning for
6433         unknown extended opcodes if they're within 0x40 and 0x7f.
6435 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6437         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6438         invoke signatures returning an enum. Fixes #494847.
6440 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6442         * metadata-verify.c: Initial code to verify the typedef table.
6444 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6446         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6447         with non empty stack happens before the beginning of a try block.
6449         Fixes #494812.
6451 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6453         * metadata-verify.c: Verify typename and typenamespace fields of
6454         the typeref table.
6456 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6458         * metadata-verify.c: Initial code to verify the typeref table.
6460 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6462         * verify.c (verify_delegate_compatibility): Fix error message.
6464 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6466         * security-core-clr.c: Fix typo
6468 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6470         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6471         a MonoGHashTable to keep its values alive.
6472         (emit_marshal_boolean): Fix a warning.
6474 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6476         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6477         not have any interface configured for IPv4/IPv6.
6479 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6481         * assembly.c: fix typo in error message.
6483 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6485         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6486         allocating the location holding the this argument to prevent
6487         'too many root sets' errors.
6489         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6490         to mark fields as special static.
6491         (mono_field_static_get_value): Handle special static fields.
6492         (mono_field_static_set_value): Ditto.
6494         * class-internals.h (struct _MonoClassField): Document this.
6496 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6498         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6499           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6500           case.  This will handle when managed code returns null to native code.
6502         Code is contributed under MIT/X11 license.
6504 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6506         * object.c (build_imt_slots): Changing a free to a g_free to match
6507           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6509         Code is contributed under MIT/X11 license.
6511 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6513         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6514           the correct TRUE value is passed through the marshaling layer.
6516         Code is contributed under MIT/X11 license.
6518 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6520         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6521         correctly. Fixes #492330.
6522         
6523         * marshal.c: Fix the embedding of object pointers into JITted code in
6524         the native-to-managed wrappers by allocating some GC tracked memory, and
6525         embedding the address of that.
6527 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6529         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6530         pointers into the vtable.
6532 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6534         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6536         * verify.c (verify_ldftn_delegate): Improve error message.
6538 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6540         * reflection.c (my_mono_class_from_mono_type): Remove.
6542 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6544         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6545         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6546         and constraints fields into ...
6547         (MonoGenericParamInfo): ... this.
6548         (mono_generic_param_info, mono_generic_container_get_param_info):
6549         New accessors.
6550         * class.c, debug-helpers.c, icall.c: Update to changes.
6551         * metadata.c, reflection.c, verify.c: Likewise.
6553 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6555         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6557         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6558         
6559         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6560         booleans with sbytes.
6562 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6564         * class.c (can_access_instantiation): Verify accesibility of element types
6565         for arrays and pointers.
6567         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6569         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6571         Fixes #493068.
6573 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6575         * verify.c (do_invoke_method): Improve error messages.
6577 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6579         * verify.c:  Fixing the MSVC build.
6581         Code is contributed under MIT/X11 license.
6583 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6585         * security-core-clr.c: Simplify get_reflection_caller not to call
6586         mono_method_get_last_managed (another stack walk) and adjust the
6587         callers to handle a (should not happen) NULL return value.
6589 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6591         Add accessors to some MonoGenericParam fields
6592         * class-internals.h (mono_generic_param_owner): New accessor.
6593         (mono_generic_param_num): Likewise.
6594         (mono_type_get_generic_param_owner): New helper.
6595         (mono_type_get_generic_param_num): New helper.
6596         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6598 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6600         * class-internals.h (mono_generic_container_get_param): New wrapper.
6601         * class.c, icall.c, metadata.c, verify.c: Use it.
6603 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6605         Fix gtest-252.cs
6606         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6607         the standard case/loop.  In particular, don't complain about
6608         references to generic type definitions.
6610 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6612         * debug-helpers.c (dis_one): Decode string arguments.
6614 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6616         * pedump.c (dump_verify_info): Dump type name correctly.
6618 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6620         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6621         are larger than code size.
6623         This can happen in valid code if the try/catch block is not followed by any instruction
6624         and do a backward branch on the leave instruction.
6626         Fixes #492494.
6628 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6630         * security-core-clr.c: Fix typo while comparing second method names
6631         in can_avoid_corlib_reflection_delegate_optimization
6633 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6635         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6637         Fixes #487738.
6639 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6641         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6642         a MVAR using a class context.
6644         Fixes #490335.
6646 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6648         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6650         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6652         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6653         functions supplied by the JIT for the SGEN GC.
6655         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6656         
6657 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6659         monitor.c (mono_monitor_try_enter_internal):
6660         Added calls to profile monitor contentions.
6661         Also duplicated a small piece of code (the "get the monitor" logic)
6662         from the fast path to the slow path, and changed the relevant goto
6663         statements, so that monitor acquisition events can be emitted from the
6664         slow path (this is by Paolo Molaro).
6666 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6668         * profiler.c, profiler.h, profiler-private.h:
6669         Added support for profiling monitor contentions.
6671 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6673         * metadata-verify.c: Verify the modules table.
6675 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6677         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6678         using the context of the method been verifier and not of the method been called.
6680         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6681         safely inflate generic types. 
6683 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6685         * security-core-clr.c: Change the strategy for checking the 
6686         "reflection using delegates optimization" to avoid unneeded 
6687         attributes in multiple class libraries.
6689 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6691         * sgen-gc.c: Remove object element in the disappearing link struct
6692         by storing the object pointer in the link.
6694 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6696         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6698 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6700         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6702         * verify.c (mono_method_verify): Do proper bounds checking of exception
6703         clause ranges.
6705 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6707         * loader.c (mono_field_from_token): Don't crash if the field parent could
6708         not be decoded.
6710 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6712         * sgen-gc.c: Execute critical finalizers after ordinary
6713         finalizers.
6715         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6716         mono_defaults.
6718 2009-03-31 Jb Evain <jbevain@novell.com>
6720         * verify.c (do_ldstr): don't check if a string is in the user strings
6721         heap if the current image is dynamic.
6723 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6725         * sgen-gc.c: Wait until the last finalizer has executed when
6726         returning from WaitForPendingFinalizers.
6728 2009-03-31  Martin Baulig  <martin@ximian.com>
6730         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6731         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6732         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6733         (mono_debugger_event_create_appdomain): New function.
6734         (mono_debugger_event_unload_appdomain): New function.
6736         * appdomain.c (mono_domain_create_appdomain_internal): Call
6737         mono_debugger_event_create_appdomain().
6739 2009-03-31  Martin Baulig  <martin@ximian.com>
6741         * mono-debug-debugger.c
6742         (mono_debugger_register_class_init_callback): Also register the
6743         class init callback if the class is already initialized to make
6744         things work with shadow copied assemblies.
6746 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6748         * security-core-clr.c
6749         (mono_security_core_clr_ensure_reflection_access_field): Let 
6750         critical code access the field (just like we do for methods). Use
6751         check_field_access helper.
6752         (mono_security_core_clr_ensure_reflection_access_method): Use 
6753         check_field_access helper.
6755 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6757         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6758         call the run-finalize function directly.
6760         * gc.c, gc-internal.h: Make run_finalize() non-static.
6762 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6764         * sgen-gc.c: Use a separate struct for disappearing links.
6766 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6768         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6769         * MaxIOVectorLength enabled, just ignore them.
6770         Fixes bug #349688.
6772 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6774         * metadata-verify.c: Fix eglib build.
6776 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6778         * threads-types.h: Fix the win32 build.
6780 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6782         * class.c: move coreclr inheritance/override checks to 
6783         security-core.clr.c
6784         * security-core.clr.c|h: add code from class.c with additional
6785         documentation. Fix override check when the method is not critical.
6787 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6789         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6790         (match_class): Ditto.
6792 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6794         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6796         * metadata-verify.c: Implement table layout row size calculation. Verify
6797         the total size of the tables.
6799 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6801         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6803 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6805         * appdomain.c:
6806         * console-io.[ch]: added new mono_console_init() to make sure that
6807         file descriptors 0, 1 and 2 are opened.
6808         Bug #489019 fixed.
6810 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6812         * appdomain.h: Export a new callback type and a new function to
6813         set this callback. This allow a mono host to provide it's own
6814         definition for "platform code".
6815         * metadata-internals.h: Add a core_clr_platform_code flag on 
6816         _MonoImage to (cache and) know if it is representing platform 
6817         code.
6818         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6819         on platform code images.
6820         * security-core-clr.c|h 
6821         (mono_security_set_core_clr_platform_callback): Allow the host
6822         to provide it's own platform check definition.
6823         (mono_security_core_clr_determine_platform_image): Detect if an 
6824         image is platform code (using the specified callback).
6825         (mono_security_core_clr_is_platform_image): Return cached value 
6826         for platform code.
6828 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6830         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6831         which has different parameter types for the 'tid' argument in windows and
6832         the io-layer.
6834         * appdomain.c attach.c threads.c: Use the new helper.
6836 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6838         * metadata-verify.c: Verify valid table bits.
6840 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6842         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6844         * metadata-verify.c: Add initial table schema verification.
6846 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6848         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6849         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6850         #488383.
6852         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6854         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6856 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6858         * security-core-clr.c: Add/update documentation
6860 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6862         * marshal.c (emit_marshal_object): Generate code to throw an exception
6863         instead of throwing it. Fixes #488670.
6865 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6867         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6868         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6869         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6870         and add a call to mono_security_core_clr_ensure_delegate_creation
6871         to do the extra checks required by CoreCLR.
6872         * security-core-clr.c|h: Add function to check delegate creation,
6873         both in the binding and accessibility, under CoreCLR.
6875 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6877         * reflection.c (mono_reflection_create_dynamic_method): when 
6878         coreclr is enabled make sure that every resolved object are
6879         checked (e.g. field and method access).
6880         * security-core-clr.c|h: Add function to check objects resolved
6881         when a dynamic method is created.
6883 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6885         * metadata-verify.c: Cache directory rva translations.
6887         * metadata-verify.c: Add cli-header and streams verification.
6889 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6891         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6892         the wrong offset (8 instead of 6).
6894 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6896         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6897         methods, return the native function address itself. Fixes
6898         #487758.
6900 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6902         * console-io.c: some of the values for control characters might not be
6903         present.
6905 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6907         * exception.c|h: Add helpers to create [Field|Method]AccessException
6908         * icall.c: Add required coreclr check calls for field reflection.
6909         Move the existing (method) check logic into security-core-clr.c
6910         * security-core-clr.c: Add functions to check if the access of a
6911         field or method is allowed when reflecting under coreclr. This is
6912         mostly done using a stack walk to find the "real" caller: i.e. the
6913         code that is calling the reflection
6915 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6917         * gc-internal.h: Change location of gc_wrapper.h
6919 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6921         * class.c: Simplification to coreclr checks for overrides that
6922         makes it easier to set breakpoints.
6924 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6926         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6927         mono_security_core_clr_method_level): Avoid potential 
6928         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6929         user/application code) and make it easier to set breakpoints
6931 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6933         * metadata-verify.c: Reject cli header tables that mono don't handle.
6935 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6937         * pedump.c: Fix CLI header dumping.
6939 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6941         * metadata-verify.c: More CLI header verification.
6943 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6945         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6947 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6949         * metadata-verify.c: Initial verification of the CLI header.
6951 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6953         * metadata-verify.c (verify_resources_table): Fix verification of zero
6954         sized resource section and id entries count.
6956 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6958         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6960 2009-03-17  Jb Evain  <jbevain@novell.com>
6962         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6964 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6966         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6967         (mono_gc_make_descr_for_array): Ditto.
6969 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6971         * verify.c (mono_verifier_is_class_full_trust): Add support for
6972         CoreCLR security mode where trusted assemblies are defined as
6973         "platform code".
6975 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6977         * metadata-verify.c: Add minimal PECOFF resource verification.
6979 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6981         * metadata-verify.c: Be less restrictive with some coff fields.
6983 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6985         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6986         params as boxed values on stack. Fixes #485706.
6988 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6990         * console-io.c: the termios values may vary in different flavors of unix.
6992 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6994         * console-io.[ch]: return the entire set of control characters when
6995         initializing the terminal.
6996         * appdomain.c: bump corlib version.
6998 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7000         * mono-perfcounters.c: added support for in-process custom
7001         performance counters.
7003 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7005         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7007 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7009         * metadata-verify.c: Verify the data pointed by the import table. 
7011 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7013         * metadata-verify.c (load_data_directories): Store data
7014         directory contents.
7016         * metadata-verify.c: Verify the import table. 
7018 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7020         * metadata-verify.c: Verify data directories.
7022 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7024         * metadata-verify.c: Check section header flags.
7026 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7028         * appdomain.c: if the assembly name is a shadow-copied file, return
7029         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7030         in mono_make_shadow_copy.
7031         * icall.c: if the assembly name is a shadow-copied file, replace it
7032         with the original assembly path.
7034         Bug #484244 fixed. NUnit tests for corlib can be run without
7035         --noshadow now.
7037 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7039         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7040         entries when the table is reallocated.
7042         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7043         mono_gc_alloc_fixed () since it contains GC refs.
7045 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7047         * reflection.c (ensure_complete_type): New helper function to call
7048         type resolve handlers for unfinished dynamic types.
7049         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7051 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7053         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7054         #483247.
7056 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7058         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7060 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7062         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7063         between GCHandles of type WeakTrackResurrection and the objects they
7064         point to.
7066         * gc.c: Partly implement the sematics of GCHandles of type 
7067         WeakTrackResurrection: these handles should only be cleared after the
7068         finalizer of the object they are pointing to has ran.
7070 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7072         * icall.c: Partially revert r126631 because using the jump
7073         trampolines for generic shared methods makes it superfluous.
7075 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7077         * threads.c (handle_store): Create the 'threads' hash table with the proper
7078         MONO_HASH_VALUE_GC type.
7080 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7082         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7083         FIRST_GC_TRACKED.
7085         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7086         and LAST_GC_TRACKED as a GC root.
7088         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7090         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7091         the static data even if it consists of 1 reference.
7093         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7094         if there is a GC descriptor.
7096         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7097         instead of through the GC since they contain no object references.
7099 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7101         * generic-sharing.c (instantiate_other_info): Always return a jump
7102         trampoline for method code.
7104 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7106         * culture-info-tables.h: generated to include the en-tt culture.
7108 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7110         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7111         capture the thread context.
7113         * object.c (mono_async_result_new): Cache the invoke wrappers to
7114         ExecutionContext::Capture.
7116 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7118         * marshal.h: Add a prototype for what mono_compile_method returns
7119         for invoke wrappers.
7121         * gc.c: Use the new prototype declaration.
7123 2009-03-04  Geoff Norton  <gnorton@novell.com>
7125         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7126         * gc-internal.h:
7127         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7129 2009-03-04  Martin Baulig  <martin@ximian.com>
7131         * mono-debug.h
7132         (mono_debugger_runtime_invoke): Removed.
7134         * mono-debug-debugger.c
7135         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7137 2009-03-02  Martin Baulig  <martin@ximian.com>
7139         * mono-debug.h
7140         (mono_debugger_unhandled_exception): Removed.
7141         (mono_debugger_handle_exception): Removed.
7142         (mono_debugger_throw_exception): Removed.
7144         * mono-debug.c
7145         (mono_debug_debugger_version): Bump to 5.
7147         * mono-debug-debugger.c: Moved the exception handling code to
7148         ../mini/debug-mini.c
7150 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7152         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7153         finalize_objects_hash.
7155         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7156         
7157         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7158         field.
7160         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7161         cache.
7163         * image.c (mono_image_close): Free it.
7164         
7165         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7166         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7167         on the this argument.
7169         * gc.c (run_finalize): Optimize the calling of the finalizers.
7171 2009-03-03  Martin Baulig  <martin@ximian.com>
7173         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7174         of the `MonoGenericInst' changes.
7176 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7178         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7179         mono_array_class_get_cached to reduce locking contention. Extract
7180         a domain var.
7182         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7183         intermediary managed arrays. Use caching version of mono_array_new
7184         to allocate the result array.
7186         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7188         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7190         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7191         to reduce locking contention.
7193 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7194                 
7195         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7196         thunk builder code for the non-interface case.
7198 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7200         * object.c (get_generic_virtual_entries): New helper function to collect
7201         the virtual generic method instances which need to be added to an IMT
7202         thunk.
7203         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7204         Instead of creating a new IMT thunk, reset the vtable slot to the
7205         trampoline, the thunk will be created the next time the trampoline is called.
7206         (build_imt_slots): Add support for virtual generic methods in interfaces by
7207         adding to the IMT thunk all the methods registered using 
7208         mono_method_add_generic_virtual_invocation ().
7210         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7211         (struct _MonoIMTCheckItem): Ditto.
7213         * object.c (mono_method_add_generic_virtual_invocation): Take a
7214         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7215         the IMT thunk to include all items.
7216         
7217         * object.c (mono_class_create_runtime_vtable): Add a missing
7218         mono_loader_unlock ().
7220 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7222         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7224         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7226 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7228         * object-internals.h: Rename _MonoReflectionEvent to
7229         MonoReflectionMonoEvent so it reflects the right managed type.
7230         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7232         * icall.c:
7233         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7234         type.
7236 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7238         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7239         intermediary managed arrays. Use caching version of mono_array_new
7240         to allocate the result array.
7242 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7244         * reflection.c: Use cached version of mono_array_new alongside
7245         the mono_reflection_get_custom_attrs_by_type call path.
7247 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7249         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7250         intermediary managed arrays. Use caching version of mono_array_new
7251         to allocate the result array.
7253         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7255 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7257         * icall.c: Add small implementation of a growable stack bound array.
7259         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7261         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7262         intermediary managed arrays. Use caching version of mono_array_new
7263         to allocate the result array.
7265 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7267         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7268         helps Enum::CompareTo to be implemented without reboxing all enums
7269         to their underlying type.
7270 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7272         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7273         since it acquires a global lock leading to scalability problems.
7275         * profiler.c: Make the stat profiler work with multiple appdomains, this
7276         currently only works when no appdomains are unloaded.
7278 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7280         * appdomain.c: make the check to avoid copying when the assembly is
7281         already shadow copied actually work.
7283 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7285         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7287         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7288         changes to the managed side.
7290 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7292         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7293         classes + a separate lock for it, as it is used frequently at runtime, not
7294         just during metadata loading/JIT compilation.
7296         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7297         for szarrays.
7298         
7299         * object-internals.h (mono_class_from_name_cached): New macro to cache
7300         the results of the lookup locally without having to declare a static
7301         variable to hold it.
7302         (mono_class_get_field_from_name_cached): Ditto.
7303         (mono_array_class_get_cached): Ditto.
7305         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7306         the new macros.
7307         
7308         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7309         slower search in metadata.
7311         * pedump.c: Fix a warning.
7313 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7315         * reflection.c (encode_locals): Add checks for user types.
7316         (method_encode_clauses): Ditto.
7317         (method_encode_code): Ditto.
7318         (mono_image_create_token): Ditto.
7320         * object-internals.h: Change the type of more fields from MonoReflectionType*
7321         to MonoObject*.
7323 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7325         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7326         the a thread does not suspend within 100ms.
7328         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7329         in addition to StopRequested as well.
7331         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7333         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7334         search the method_hash before inserting a new entry, to avoid crashes when
7335         the same method is inserted multiple times, causing the old 
7336         MonoDebugMethodInfo structure to be freed by the value dtor function.
7338 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7340         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7341         SO_EXLUSIVEADDRUSE where available.
7343 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7345         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7346         runtime invoke wrappers, this time it is string ctor wrappers, which
7347         pass a dummy string as 'this' instead of their obj argument. Fixes
7348         #478473.
7350 2009-02-21  Jb Evain  <jbevain@novell.com>
7352         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7353         only get create_culture once.
7355 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7357         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7358         check before the locking.
7359         
7360         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7361         (mono_reflection_create_runtime_class): Ditto.
7362         (mono_reflection_sighelper_get_signature_local): Ditto.
7363         (mono_reflection_sighelper_get_signature_field): Ditto.
7365         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7366         is a System.MonoType object or similar.
7367         (monotype_cast): New helper function to cast a MonoObject to a 
7368         MonoReflectionType object.
7370         * object-internals.h: Change MonoReflectionType* members in structures to
7371         MonoObject* members to force the usage of the monotype_cast () function.
7373         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7374         structures/arrays. This causes us to assert instead of crashing when 
7375         instances of user defined subclasses of System.Type are encountered.
7377 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7379         * cil-coff.h:
7380         * icall-def.h:
7381         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7382         win32 resource loaded from a PE file.
7384         * image.c: fix mono_image_lookup_resource.
7386 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7388         * icall-def.h:
7389         * threads-types.h:
7390         * threads.c: added internal call for WaitHandle.SignalAndWait.
7392 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7394         * cominterop.c : Adding cominterop_type_from_handle and 
7395           registering it as an icall.  Replacing all references
7396           to type_from_handle.
7398         Code is contributed under MIT/X11 license.
7400 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7402         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7404         * appdomain.c: Call the tracer init function.
7406         * domain-internals.h: Enable the tracer for the domain locks.
7408         * image.c: Enable the tracer for image locks.
7410         * loader.c: Enable the trace for the loader lock.
7412         * lock-tracer.h:
7413         * lock-tracer.c: Initial implementation of the lock trace utility.
7414         The tracer requires a compile time define to be enabled and a env var
7415         to be enabled at runtime.
7417 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7419         * domain.c (mono_domain_code_foreach): Improve documentation.
7421 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7423         * appdomain.c:
7424         * generic-sharing.c:
7425         * object.c:
7426         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7427         comes first.
7429 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7431         * domain.c: Add mono_domain_code_* functions that perform locking
7432         around the domain codeman.
7434         * domain-internals.h: Export those functions.
7436         * object.c: Use new functions instead of acquiring the domain lock.
7438 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7440         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7441         delegate. Fixes #477396.
7443 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7445         * reflection.c (create_custom_attr): Get rid of alloca.
7447 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7449         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7450           Adding exception handling for all CCW calls.
7452         Code is contributed under MIT/X11 license.
7454 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7456         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7458         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7459         native->managed marshalling code. Fixes #476247.
7461 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7463         * class.c (mono_class_get_vtable_entry): Move the addition of
7464         static rgctx invoke wrappers for vtable methods here, this simplifies
7465         a lot of code and causes fewer rgctx wrappers to be created.
7467         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7468         name of the statistics to begin with an uppercase.
7470 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7472         * reflection.c: Revert previous change as it breaks the build.
7473         
7474 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7476         * verify.c: Properly handle SZARRAY element type.
7478         Fixes #474271.
7480 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7482         * reflection.c (mono_image_create_method_token): Correctly encode
7483         MethodDef MemberRefParent token.
7485         Fixes #472845.
7487 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7489         * image.c (mono_image_close): Delete the critical section before
7490         freeing the memory holding it.
7492 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7494         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7495         Fixes #476257.
7497 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7499         * pedump.c (main): Call mono_marshal_init so pedump
7500         doesn't crash.
7502 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7504         * loader.c (method_from_memberref): Properly fix #474271 and
7505         don't break the runtime bad.
7507 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7509         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7510         (mono_domain_alloc0): Ditto.
7512 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7514         * loader.c (method_from_memberref): Don't abort if the array
7515         method is not found. A regular loader failure is more informative
7516         and correct.
7518         Fixes #474271.
7520 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7522         *loader.c: Guard MonoImage::method_cache/methodref_cache
7523         using the image lock instead of the loader lock.
7525         * metadata.h: Add comments about which fields are protected by
7526         the image lock.
7528 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7530         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7532         * generic-sharing.c (mono_method_construct_object_context): Remove the
7533         wrapper_type == NONE assert, it is not needed.
7535 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7537         * reflection.c (clear_cached_object): New helper function.
7538         (mono_method_clear_object): New function to clear the cached reflection
7539         objects for a dynamic method.
7541         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7542         Partly fixes # 463323.
7543         
7544 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7546         * class.c:
7547         * loader.c:
7548         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7550 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7552         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7553         take the image lock instead of the loader lock.
7555         * metadata-internals.h: Export new functions.
7557 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7559         * domain.c (app_config_parse): Remove another use of stat that is
7560         not necessary as g_file_get_contents already does the presence
7561         check. 
7563 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7565         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7567         * marshal.c: Move the bstr handling code to cominterop.c.
7569         * marshal.c: Remove some COM interop code missed previously.
7571 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7573         More Paolo patches from the Wii port:
7574         
7575         * security.c: Remove ves_icall_System_Environment_get_UserName
7576         from here.
7578         * icall.c: And put ves_icall_System_Environment_get_UserName
7579         here. 
7581         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7582         redundant call to stat that was only used to test for the file
7583         existence.   Patch from Paolo.
7585         * gc.c (run_finalize): If COM is disabled, do not link in
7586         mono_marshal_free_ccw.
7588         * generic-sharing.c: Use alloca.h here as well.
7590 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7592         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7594 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7596         * cominterop.c cominterop.h: New files.
7598         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7599         function/typedefs which are needed by cominterop.c global.
7601 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7603         * generic-sharing.c: Don't take the loader lock to guard image
7604         mempool allocs.
7606 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7608         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7609         called without the loader lock which is required to guard MonoImage:tokens.
7611 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7613         * class.c:
7614         * metadata.c:
7615         * method-builder.c:
7616         * marshal.c:
7617         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7619 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7621         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7622         Rework the code to use regular mono_image_alloc/0.
7624         * loader.c: Rework the code to use regular mono_image_alloc/0.
7626         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7628 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7630         * object-internals.h : Fixing a typo in the 
7631           MonoReflectionComVisibleAttribute struct.
7633         * marshal.c (cominterop_com_visible): Check the implemented 
7634           interfaces for ComImport.
7636         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7637           assume that bools should be treated as VARIANTBOOLs.
7639         * marshal.c (emit_marshal_boolean): Adding cases for 
7640           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7642         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7643           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7645         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7646           should be treated as VARIANTBOOLs.    
7648         Code is contributed under MIT/X11 license.
7650 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7652         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7653         allocation with the image lock.
7655 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7657         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7658         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7660         * object.c: Add mono_string_to_utf8_image.
7662         * object-internals.h: Export mono_string_to_utf8_image.
7664         * reflection.c: Rework all explicit references to the the image mempool to go thought
7665         the mono_image_alloc set of functions.
7667 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7669         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7670         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7671         and generics-sharing.c.
7673         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7674         as first argument. Note that this function remains broken as it doesn't perform locking around the
7675         mempool allocation.
7677         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7679         * image.c: Add g_slist_append_image.
7681         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7682         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7684         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7685         Fix all related code to do the same.
7687         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7689         * metadata-internals.h: Fix the signatures.
7691 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7693         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7694         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7695         and similar to work using MonoImage.
7697         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7698         MonoMemPool.
7700         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7702         * class.c (mono_metadata_signature_deep_dup): Same.
7704         * class.c (inflate_generic_type): Same.
7706         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7708         * metadata.c (mono_metadata_signature_dup_full): Same.
7710         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7711         mono_metadata_signature_dup_full.
7713         * metadata.c (mono_metadata_type_dup): Same.
7715         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7717         * reflection.c: Same.
7719         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7721         * metadata-internals.h: Fix the signatures.
7723         * class-internals.h: Same.
7725 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7727         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7728         and use mono_image_alloc set of functions instead. 
7730         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7731         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7732         of a MonoMemPool.
7734         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7736         * class.c (g_list_prepend_mempool): Removed.
7738         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7740         * image.c: Add g_list_prepend_image.
7742         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7744         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7747 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7749         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7750         mono_image_unlock.
7752         * image.c (mono_image_init): Init the lock field.
7754         * image.c (mono_image_init): Cleanup the lock field.
7756         * image.c: Add mono_image_(un)lock functions.
7758 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7760         * class.c, class-internals.h: mono_method_get_context_general()
7761         combines the functionality of mono_method_get_context() and
7762         mini_method_get_context().
7764         * generic-sharing.c, domain-internals.h:
7765         mono_method_construct_object_context() and
7766         mono_domain_lookup_shared_generic() moved from mini.
7768         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7769         method doesn't have the correct instantiation because it's shared
7770         generic code.  Fixes #473999.
7772 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7774         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7776         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7777         
7778 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7780         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7782         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7784         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7785         and recheck the cache for dups after it.
7787         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7789         Fixes one of the deadlocks found in #473150.
7791 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7793         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7794           For Win32, add additional break conditions for accept.
7796         Code is contributed under MIT/X11 license.
7798 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7800         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7801         lazily initialize the native wrapper cache.
7802         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7803         cache, since they are different from the normal wrappers.
7805         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7807         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7808         AOT compiled native wrappers.
7810 2009-02-09  Geoff Norton  <gnorton@novell.com>
7812         * appdomain.h:
7813         * security-core-clr.c: Allow enabling core-clr from the embedding
7814         API.
7816 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7818         * socket-io.c: when requesting all the local ips, if there are no
7819         interfaces up and running, MS returns 127.0.0.1.
7821 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7823         * mono-perfcounters-def.h: processor time is an inverse time.
7824         Fixes bug #468625.
7826 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7828         * socket-io.c: an empty host name returns the list of local IPs.
7829         Fixes bug #386637 part 1/2.
7831 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7833         * verify.c (mono_class_interface_implements_interface): Call
7834         mono_class_setup_interfaces ().
7835         (merge_stacks): Ditto.
7837 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7839         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7840         klass->interfaces.
7841         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7842         (mono_generic_class_get_class): Ditto.
7844 2009-02-06  U-QUACK\miguel  <miguel@quack>
7846         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7847         they live in security.c
7849         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7850         another bit from Paolo's code.
7852 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7854         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7855         methods which will be discarded by add_imt_builder_entry ().
7857         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7858         need to be boxed.
7860         * loader.c: Add a statistics for the size of the memberref signature cache.
7861         
7862         * loader.c (find_cached_memberref_sig): New helper function.
7863         (cache_memberref_sig): Ditto.
7865         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7866         they will be parsed again for every generic instantiation, leading to unbounded
7867         memory growth.
7869 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7871         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7872         parameters of generic methods.
7874         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7875         after the original method is copied to the inflated method.
7876         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7878         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7879         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7881         * class.c metadata.c: Update after the changes above.
7883 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7885         * metadata-verify.c: Simplified error handling and added
7886         section table validation.
7888 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7890         * class-internals.h (MonoClassExt): New structure containing rarely used
7891         fields of MonoClass.
7892         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7893         through a new 'ext' field.
7895         * class.c (mono_class_alloc_ext): New helper function to allocate 
7896         class->ext.
7898         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7900 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7902         * object.c (mono_object_get_virtual_method): Properly inflate
7903         generic methods.  Fixes #472692.
7905 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7907         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7908         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7909         for the parent type, the created type must be ready to be used on a generic
7910         instantiation.
7911         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7912         we won't have duplicated entries in generic_inst_cache.
7914         Fixes #469553.
7916 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7918         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7919         replace with plain BSD per the comments on the bug MONO77637.
7921 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7923         * class.c (mono_class_get_generic_class): New accessor function.
7924         (mono_class_get_generic_container): Ditto.
7926         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7927         fields, similar to the ones in MonoMethod.
7929         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7930         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7932         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7933         
7934         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7935         the same information as element_class->byval_arg.
7937         * class.c reflection.c: Remove references to class->byval_arg.
7939         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7940         klass->enum_basetype directly.
7942         * verify.c metadata.c object.c icall.c reflection.c: Use 
7943         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7944         directly.
7946 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7948         * icall-def.h: Remove internal calls for sockets when
7949         DISABLE_SOCKET is defined, file system writing features when the
7950         OS only support reading and not writing data and Policy support if
7951         the Policy is disabled.
7952         
7953         * image.c (do_mono_image_open): Apply Paolo's patches for using
7954         mono_file_map_ APIs here.
7956         * assembly.c: Add support for platforms to avoid prefix
7957         auto-detection. 
7959 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7961         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7962         warning.
7964         * class.c (mono_class_inflate_generic_class): New helper function.
7966         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7967         statistics for inflated methods/classes.
7969         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7971         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7972         the call is made from Delegate.CreateDelegate () for the invoke method of
7973         a delegate.
7975         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7977         * metadata.c (mono_metadata_signature_size): New helper function.
7979         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7980         generic instances.
7982         * metadata.c (inflated_method_in_image): Avoid calling 
7983         mono_method_signature () if the method does not already have a signature.
7985 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7987         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7988         valuetype is compatible with target type, check by inheritance as a
7989         VT is not really compatible with System.ValueType, for example.
7991         * verify.c (do_invoke_method): Improve error message.
7993         * verify.c (do_box_value): If boxing a nullable, use the type argument
7994         on stack instead.
7996         * verify.c (do_newobj): Improve error message.  
7998         Fixes #469549.
8000 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8002         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8004 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8006         * generic-sharing.c: Don't hold domain lock when calling
8007         instantiate_other_info().  Fixes #471958.
8009         * domain-internals.h, loader.c: Describe locking policy of domain
8010         lock vs loader lock.
8012 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8014         * verify.c (mono_delegate_signature_equal): Make it possible to check
8015         first-arg-bound delegates to static method.
8017         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8018         static methods with the first arg bound.
8020         Fixes #469529.
8022 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8024         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8025         errors.
8027         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8028         under strict mode. Any type, when boxed can be seen as a reference type.
8030         Fixes #469528.
8032 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8034         * object.h: The lower bound of an array is a signed integer value.
8035         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8036         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8038         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8039         calculate the upper bound.
8040         
8041         Fixes #471252.
8043 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8045         From Paolo's work, refactored, cleared up:
8046         
8047         * threadpool.c, icall.c: ifdef code that requires a working socket
8048         stack.
8050         * metadata.c (mono_metadata_field_info): Do not attempt to return
8051         a value from a function declared as void.
8053         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8054         from the console stack.
8056         * assembly.c: use strrchr instead of rindex.
8058         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8059         alloca.h on systems that have it.
8061         * environment.c: Avoid code that uses stuff from
8062         HAVE_SYS_UTSNAME_H
8063         
8064         * appdomain.c: Include sys/time.h.
8066         * console-io.c: include sys/ioctl.h if it is available.
8068 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8070         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8072         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8073         the method builder.
8075         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8076         after it was created and cached, as the later is not thread safe.
8077         
8078 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8080         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8081         called while the debugging module is not initialized. Fixes #471669.
8083 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8085         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8087         Fixes #471255.
8089 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8091         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8092         loader lock is not taken while the templates lock is held.  Fixes
8093         #471089.
8095 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8097         * metadata.c (type_in_image): Added a check to fix a monodis
8098         crash.
8100 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8102         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8103         nullable arguments.
8105         * object.c (mono_runtime_invoke_array): Ditto.
8106         
8107         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8108         freeing wrappers of dynamic methods.
8110         * loader.c (mono_free_method): Call it. Fixes #463323.
8111         
8112         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8113         methods taking vtype/byref arguments, to fix yet another bug caused by
8114         the sharing of runtime invoke wrappers. Partly fixes #471259.
8116 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8118         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8119         <first file in file table>:1 when the IL offset does not have an associated
8120         line number.
8122 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8124         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8125         variable info for a method.
8127         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8128         
8129 2009-01-30  Jb Evain  <jbevain@novell.com>
8131         * pedump.c: reuse code from monodis to make sure pedump honors
8132         MONO_PATH, which is needed to verify net_2_1 assemblies.
8134 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8136         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8137         there is no line number info.
8139 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8141         Avoid some MonoType allocations
8142         * reflection.c (mono_reflection_initialize_generic_parameter):
8143         Reuse MonoType from param->pklass rather than allocating one.
8144         (mono_dynamic_image_free): Update to changes.
8146 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8148         Rearrange some code to improve consistency
8149         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8150         (mono_reflection_initialize_generic_parameter): ... here.
8152 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8154         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8155         with type constraints as an experiment.
8157         * boehm-gc.c (on_gc_notification): Update mono_stats.
8159 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8161         Avoid some allocations
8162         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8163         pointer to tail array to avoid extra allocation.
8164         * metadata.c (free_generic_inst): Update to changes.
8165         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8166         on-stack struct.
8168 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8170         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8171         return TRUE if the two type objects are the same.
8173 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8175         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8176         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8177         klass->min_align, since klass->min_align contains the managed alignment,
8178         while the native alignment can be different, like for longs on x86.
8179         Fixes #469135.
8181         * class-internals.h (MonoMarshalType): Add a min_align field.
8183 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8185         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8186         the 1.0 format.
8188 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8190         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8191         some comments about the usage of the used_regs field.
8193         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8194         Fixes #469217.
8196 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8198         * appdomain.c: return NULL instead of throwing FileNotFoundException
8199         when LoadAssembly() fails.
8201 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8203         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8204         image if the owner is NULL.  Fixes the AOT failures.
8206 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8208         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8209         MonoGenericParam structure using memset so the image field is initialized
8210         as well.
8212 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8214         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8215         a plain store.
8217 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8219         * class.c (mono_class_setup_vtable_general): In the generic instance
8220         optimization, set method->slot for abstract virtual methods. Fixes part of
8221         #467834.
8223 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8225         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8226         which signals that the unloading has started but all appdomain services must
8227         remain operational.
8229         * appdomain.c (mono_domain_unload): The initial state for unloading now
8230         is unloading_start and we switch to unloading after the managed call to
8231         AppDomain::DomainUnload has finished.
8233         The new unloading state has to be created because managed code in the
8234         DomainUnload event can depend on things like the threadpool still working.
8235         The domain must remain fully functional while the event executes.
8237         This shown as an issue due to Process::WaitForExit, which waits for
8238         async reads of stdout and stderr to complete. Since those are processed
8239         in the threadpool the code deadlocks because the DomainUnload callback 
8240         waits for the async read finished event, which should have been set by a
8241         threadpool job but has been discarded due to the domain been in unload
8242         state.
8244 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8246         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8247         image must match.
8249 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8251         * reflection.c (resolve_object): For fields, inflate the class and
8252         then get the field in the inflated class.
8254 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8256         * object-internals.h (struct _MonoException): Added a comment
8257         explaining the new use of trace_ips.
8259 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8261         * generic-sharing.c (inflate_other_data): Inflate array methods
8262         correctly.
8264         * loader.c, class-internals.h: Rename search_in_array_class() to
8265         mono_method_search_in_array_class() and make it non-static.
8267 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8269         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8270         Hopefully fixes #458168.
8272 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8274         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8275         as it is performed elsewhere.
8277         Code is contributed under MIT/X11 license
8279 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8281         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8282         requests queued.
8283         * object.c (mono_raise_exception): Increment the exceptions total
8284         counter when an exception is thrown.
8285         * class-internals.h: Add a location for storing the total number of
8286         asp.net requests served.
8287         * mono-perfcounters.c: Implement update support for asp.net counters
8288         from the class libraries. Implement read support for asp.net counters
8289         and exceptions total counter.
8291 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8293         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8294         accessing klass->methods. Fixes #467385.
8296 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8298         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8299         for byval arguments without an [Out] attribute. Fixes #467212.
8301         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8302         Fix compilation under android.
8303         
8304         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8305         processed, scan them directly after they are copied, to achieve better locality
8306         and cache usage.
8308         * socket-io.c: Applied patch from Koushik Dutta
8309         (koush@koushikdutta.com). Disable IPV6 when running under android.
8311 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8313         * icall.c (ves_icall_InternalExecute): Add write barriers.
8315         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8316         the GC code.
8318         * sgen-gc.c: Implement write barriers in IL code.
8320 2009-01-17  Geoff Norton  <gnorton@novell.com>
8322         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8324 2009-01-17  Geoff Norton  <gnorton@novell.com>
8326         * image.c: When unloading the image->references table, there can be gaps
8327         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8328         when unloading an appdomain.
8330 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8332         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8333         speed up ptr-in-nursery checks.
8335         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8336         threads_lock () to prevent deadlocks.
8338         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8339         does not need to be scanned during minor collections, since writes to it
8340         must use write barriers.
8342 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8344         * metadata-verify.c: Add pe nt header verification.
8345         
8346 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8348         * gc.c: Fix a few warnings when using SGEN.
8350 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8352         * metadata-verify.c: Add pe optional header verification.
8354 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8356         * sgen-gc.c: Add support for user defined marker functions, used by
8357         MonoGHashTable to avoid registering a GC root for every hash node.
8359 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8361         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8362         non-pinned roots into separate hashes to avoid having to traverse them
8363         in functions which are only interested in one kind.
8365 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8367         * metadata-verify.c: Add pe header machine field verification.
8368         
8369 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8371         * metadata-verify.c: Add pe header size verification.
8373 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8375         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8376         using the GC, they don't contain references.
8378         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8380 2009-01-13  Geoff Norton  <gnorton@novell.com>
8382         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8383         AppDomains created on the native side can be cleaned up on the native side.
8385 2009-01-13  Geoff Norton  <gnorton@novell.com>
8387         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8388         as well as the managed api.
8390 2009-01-13  Geoff Norton  <gnorton@novell.com>
8392         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8393         with a MonoAppDomain initialized against it.
8395 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8397         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8398         
8399         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8401         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8402         into the wrapper caches. Fixes #465700.
8404         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8405         method builder.
8406         (mono_mb_create_method): Set the clauses from the method builder.
8408 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8410         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8411         Patch from Makoto Kishimoto.
8413 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8415         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8416         encoding them as ROOT_DESC_COMPLEX.
8417         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8419 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8421         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8422         no longer point to the nursery.
8424         * sgen-gc.c: Add a few comments/FIXMEs.
8425         
8426         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8428         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8429         initialization of the various _method variables thread safe. Fixes
8430         #465377.
8432 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8434         * domain.c, domain-internals.h: Remove the shared_generics_hash
8435         and its lookup functions.
8437 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8439         * socket-io.c:  Fixing the MSVC build. 
8441         Code is contributed under MIT/X11 license.
8443 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8445         * metadata-verify.c: Add pe header watermark verification.
8447 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8449         * metadata-verify.c: Add lfanew verification.
8451 2009-01-12  Jb Evain  <jbevain@novell.com>
8453         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8454         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8456 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8458         * socket-io.c: Fix the build.
8460         * environment.c: Fix an #ifdef.
8462 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8464         * threadpool.c (async_invoke_thread): Handle the wait function returning
8465         WAIT_IO_COMPLETION as well.
8466         (async_invoke_io_thread): Ditto.
8468 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8470         * threads.c: Fixing the Windows build.
8472         Code is contributed under MIT/X11 license.
8474 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8476         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8477         interrupt a wait.
8478         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8479         the thread to wait again.
8481 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8483         * metadata-verify.c: Initial skeleton of the metadata verifier.
8485         * pedump.c: Add support for the metadata verifier.
8487         * verify-internal.h: Export the whole assembly metadata verifier function.
8489 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8491         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8493 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8495         * Makefile.am: Upgrade dtrace-prelink.sh location.
8497 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8499         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8500         well. Otherwise the shutdown deadlock that happens on unix will can happen
8501         as well.
8502         If the main thread code finishes too fast it's possible that the finalizer
8503         thread won't have executed yet, won't record itself as the finalizer thread
8504         and the shutdown sequence will wait on it forever.
8506 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8508         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8509         with MSVC.
8511 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8513         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8514         Robert Jordan for pointing this out.
8516 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8518         * icall.c
8519         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8520         ves_icall_System_IO_DriveInfo_GetDriveType.
8522 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8524         * icall.c: Wrap calls to mono_strtod in CriticalSection
8525         invocations when using eglib, to work around #464316.
8527 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8529         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8530         return value of GetCurrentDirectory to never access unitialized memory.
8532 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8534         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8535         return value of GetCurrentDirectory and expand the buffer if needed.
8537         Fixes #459094.
8539 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8541         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8542           Adding a call to mono_init_com_types.
8544         Code is contributed under MIT/X11 license.
8546 2009-01-07  Geoff Norton  <gnorton@novell.com>
8548         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8549         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8550         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8551         be the value of the ip buffer.
8553 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8555         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8556         interfaces_packed here.
8558         Fixes part of #463294.
8560 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8562         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8564         Fixes part of #463294.
8566 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8568         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8569         is a boxed complex as well.
8571         Fixes part of #463294.
8573 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8575         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8576         control if a methodspec should be created for the generic method definition from external assemblies.
8577         Caching of methodspec is done using the handleref hash table.
8579         Fixes #462592.
8581 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8583         * loader.c (find_method): When searching the interfaces of a class
8584         check the transitive closure of implemented interfaces.
8586         Fixes #463303.
8588 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8590         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8591         
8592 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8594         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8595         interfaces calculation to fill_valuetype_array_derived_types.
8597         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8598         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8599         for example.
8601         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8602         interfaces for valuetypes if needed.    
8604         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8605         for their basetype as well. Types are array expanded if rank is > 0.
8607         Fixes #400716.
8609 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8611         * socket-io.h : Changing the signature of
8612           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8613           the blocking state.
8615         * icall-def.h :  Changing the signature of
8616           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8618         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8619           For Windows only.  Avoid blocking when calling accept by
8620           querying for a connection via select.  The loop also queries
8621           the thread state every 1000 micro seconds for the thread
8622           stop state.  This will avoid the process hanging on shutdown
8623           when using a TcpChannel that is never connected to.
8625         Code is contributed under MIT/X11 license.
8627 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8629         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8631 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8633         * class.c (get_implicit_generic_array_interfaces): Extract common
8634         code to a helper function making it a lot easier on the eyes.
8636 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8638         * class.c (get_implicit_generic_array_interfaces): If the internal
8639         enumerator is an interface inflate System.Object instead of itself.
8641         Fixes #461261.
8643 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8645         * object.c (mono_runtime_invoke_array): Don't assert with
8646         byref nullable types.
8648         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8649         byref nullables we unbox the object and store it on the
8650         stack. 
8651         We can't use the boxed object since it is the T of Nullable<T>
8652         and the boxed representation of a nullable it's underlying type
8653         or null.
8654         We could cheat and create a boxed nullable and use the same
8655         machinery of other byref VTs but this feels like a hack and
8656         using the stack has the bonus of reducing heap pressure.
8658         Fixes #461941.
8660 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8662         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8663         return value.
8665         Fixes #461867.
8667 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8669         * icall-def.h : Adding an internal call definition for 
8670           System.Environment.internalBroadcastSettingChange.
8672         * icall.c : Adding a Windows only implementation to broadcast a 
8673           WM_SETTINGCHANGE when an environment variable has changed.
8675         Code is contributed under MIT/X11 license.
8677 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8679         * class.c, class-internals.h: Made
8680         mono_class_has_parent_and_ignore_generics() non-static.
8682 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8684         * image.c: deal with the mmap failing when loading an image.
8686 2008-12-17  Geoff Norton  <gnorton@novell.com>
8688         * threadpool.c: Ensure that the io_queue_lock is initialized
8689         in all circumstances, as we always attempt to cleanup against it.
8691 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8693         * icall.c (ves_icall_System_Environment_get_Platform): For
8694         compatibility reasons for existing client code we will keep
8695         returning 4 for a while.   
8697         For how long will depend on the documentation being updated, and
8698         for us to give client code a chance to be updated.
8700         This reverts the original decison on #433108 since we did not
8701         catch roughly 33 instances of the broken code in our own source
8702         code base, we did not catch failures on the buildbots, and QA did
8703         not bring this as a problem.
8705         Only today I found some customer's code breaking due to our own
8706         class libraries not being fully updated and tracked it down to
8707         this change.  I am reverting it because if we could not even get
8708         our story straight in our own code base, how can we hope that our
8709         end user code be fixed?
8711         As of this morning, our Wiki page that documents how to detect
8712         Unix had not been fixed.    
8714 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8716         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8718         * class.c (mono_class_get_fields): Handle loading errors.
8720 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8722         * 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.
8723         
8724 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8726         * mono-perfcounters.c: avoid warning.
8728 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8730         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8731         make sure all interfaces have MonoClass::interface_id set.
8733         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8734         method table is property set.
8736 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8738         * class.c: New function mono_class_setup_interface_id that setup
8739         MonoClass::interface_id if needed.
8741         * class-internals.h: Export new function.
8743 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8745         * class.c: Add code to sanity check the vtable after setup_vtable_general
8746         has done it's work.
8748 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8750         * icall.c: make Assembly.GetExecutingAssembly work properly when
8751         reflection is used to invoke the method.
8752         Bug #321781 fixed.
8754 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8756         * metadata/generic-sharing.c: Look for constraints in all type
8757         arguments, not just the first one.
8759 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8761         * appdomain.c: return the correct CodeBase for an Assembly instance
8762         that was loaded from the shadow-copy directories.
8763         Bug #458190 fixed.
8765 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8767         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8769         * sgen-gc.c (check_object): New debugging helper function.
8771         * object.c: Fix calls to mono_value_copy_array ().
8773 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8775         * class.c (mono_class_setup_fields): If working on an inflated class
8776         first check if the generic definition did init with success.
8778         Fixes #445361.
8780 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8782         pedump.c (main): Fix a warning.
8784 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8786         * object-internals.h : Adding a definition for 
8787           MonoReflectionComVisibleAttribute.
8789         * marshal.c (cominterop_com_visible) :  Method added to check the 
8790           ComVisible attribute of a class.
8792         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8793           cominterop_raise_hr_exception added to consolidate common code 
8794           to raise hr exceptions.
8796         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8797           if a managed class should support IDispatch.
8799         * marshal.c 
8800           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8801           Added additional checks for managed object when getting 
8802           an IDispatch interface.
8804         Code is contributed under MIT/X11 license.
8806 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8808         pedump.c (main): Handle mono_get_method () returning NULL. 
8810 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8812         * marshal.h: Fix a warning.
8814 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8816         * marshal.c : Adding cominterop_release_all_rcws to release all
8817           runtime callable wrappers held by the runtime.
8819         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8820           
8821         Code is contributed under MIT/X11 license.
8823 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8825         * metadata.c (mono_image_alloc_lock): New helper function.
8826         (mono_image_alloc0_lock): Ditto.
8828         * metadata.c: Use the alloc_lock () helper functions for allocating
8829         memory from the image mempool.
8831 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8833         * class.c (mono_class_from_generic_parameter): Document it's
8834         locking behavior. Fix double checked locking here, we stored in
8835         param->pklass a partially initialized MonoClass and no membar was used.
8837 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8839         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8840         (3) functions are present in the C library use them to do the
8841         job. If they are absent, make sure that the sum of int_part and
8842         dec_part is rounded before returning. This is necessary due to the
8843         division of dec_part by the power of 10 before the final addition
8844         is performed - if the result is not rounded in some cases it will
8845         yield invalid results.
8847 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8849         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8850         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8851         instruction instead of a pointer constant.
8853 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8855         * loader.c (mono_method_get_header): Do most of the work outside the
8856         loader lock, to avoid assembly load hook deadlocks.
8858         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8859         (mono_metadata_parse_type_full): Ditto.
8861 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8863         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8864         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8865         funtions. Finally, use a lock to produce well ordered output.
8867         The lock looks silly, as all calls to the corlib mempool should be guarded
8868         with the loader lock, but for some reason this fact doesn't help. 
8870         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8872 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8874         * socket-io.c: 64 bit big-endian fixes.
8876 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8878         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8879         targets that require strict compatibility between the types.
8881         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8882         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8883         Kill the strict argument and create a new one valuetype_must_be_boxed.
8885         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8886         state that all valuetypes must be boxed.
8888         Fixes #448560.
8890 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8892         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8893         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8895         Contributed under MIT/X11 license.
8897 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8899         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8900         the inflate_generic_type machinery should handle it.
8902         This avoids a crash when the field's flags is zero and it's type is
8903         a primitive.
8904         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8905         is zero and will return one of the cached built-in primitive types. Since
8906         those types live in read-only memory, the code that copies it crashes.  
8908 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8910         * object.c: Don't put function descriptors into generalized IMT
8911         thunks.
8913 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8915         * class.c: Enable generic code sharing on PPC64.
8917 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8919         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8920         from mini/mini.c.
8922         * generic-sharing.c: Allocate the method template slists from the
8923         image mempool so it doesn't leak.
8925 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8927         * class.c (generic_array_methods): Release the linked list.
8929 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8931         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8932         invocation to g_utf16_to_utf8().
8934 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8936         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8937         arguments on big endian archs.
8939 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8941         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8942         the type name (test added in corlib).
8944 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8946         * pedump.c: initialize perf. counters. Fixes a segv.
8948 2008-11-25  Martin Baulig  <martin@ximian.com>
8950         * mono-debug-debugger.c
8951         (mono_debugger_runtime_invoke): Return the exception object if an
8952         exception was thrown.  Visual Studio displays the exception object
8953         in the locals window.
8955 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8957         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8958         ftnptr.
8960 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8962         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8963         MONO_TYPE_U are sizeof (gpointer), too.
8965 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8967         * marshal.c (mono_type_native_stack_size): Fixed size and
8968         alignment for reference types.
8970 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8972         * class.c (mono_class_generic_sharing_enabled): Disable generic
8973         code sharing for PPC64.
8975 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8977         * icall.c (mono_method_get_equivalent_method): Make sure
8978         method->klass->methods is inited before looping over it.
8980 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8982         * object.c: when calling ExecuteAssembly in a newly created domain,
8983         the configuration file and application base are already set up.
8984         Bug #446353 take 2 fixed.
8986 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8988         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8989         Fixes #444715. Fix a warning.
8991 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8993         * appdomain.c: write the full path of the assembly to the .ini file
8994         created when "shadow-copying"
8995         Bug #446353 fixed.
8997 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8999         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9000         if signature==FALSE.
9002 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9004         * marshal.h : Fix the cygwin build.
9005            marshal.c:12442: undefined reference to `_IID_IMarshal'
9006           
9007         Code is contributed under MIT/X11 license.
9009 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9011         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9012           free threaded marshaler when QueryInterface is called on a COM callable
9013           wrapper requesting the IMarshal interface.
9014           
9015         Code is contributed under MIT/X11 license.
9017 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9019         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9021         * reflection.c (mono_type_get_object): Special case the very common
9022         void type.
9024         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9025         hold typeof(void).
9027 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9029         * process.h : Adding method declaration for
9030           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9031           
9032         * process.c : Adding implementation for
9033           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9034           
9035         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9036           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9038         Code is contributed under MIT/X11 license.
9040 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9042         * appdomain.c (unload_thread_main): Clean up threadpool by
9043         calling mono_thread_pool_remove_domain_jobs.
9045         * domain-internals.h (struct _MonoDomain): Add new fields to
9046         help coordinate the cleanup of the threadpool.
9048         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9049         that cleans up the threadpool of all jobs associated with an appdomain.
9050         It does that by cleaning up the queues and making sure all active
9051         threads are accounted.
9053         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9054         unloaded or in the process of. Take this is such way that there is
9055         no race condition between another thread starting the unload and the
9056         current thread acknowledging it.
9058         * threadpool.c (async_invoke_thread): Same.
9060         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9061         firing the new thread.
9063         * threadpool.c (start_tpthread): Same.
9065         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9067         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9069 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9071         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9072         Add support for DuplicateHandle.
9073         
9074         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9075         Add support for DuplicateHandle.
9076         
9077         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9078         Add support for DuplicateHandle.
9080         Code is contributed under MIT/X11 license.
9082 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9084         * class-internals.h: Make min_align into a whole byte.
9086         * class.c: Set min_align for SIMD types to 16.
9088 2008-11-05  Geoff Norton  <gnorton@novell.com>
9090         * attach.c: Default the attacher to enabled for all cases including
9091         embedded.
9093 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9095         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9096         change r117650.
9098 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9100         * monitor.c, monitor.h: New function for querying offsets of
9101         members of MonoThreadsSync.
9103 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9105         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9106         to speed up this function and to avoid the boundless memory growth caused by
9107         the signature_dup () calls.
9109 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9111         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9112         wrapper.
9114         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9115         by 1 bit.
9117         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9119 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9121         * appdomain.c:
9122         * domain-internals.h: made mono_set_private_bin_path_from_config()
9123         "internal".
9124         * object.c: call the above function after setting the configuration
9125         file path for the root domain.
9126         Fixes bug #314478.
9128 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9130         * assembly.c: when the assembly is loaded from an absolute path, end
9131         basedir with a directory separator.
9132         Bug #440781 fixed.
9134 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9136         * monitor.c (mono_monitor_get_fast_enter_method): If
9137         CompareExchange is not available, don't create the fastpath
9138         instead of asserting.  (The method is missing in the 1.1 profile.)
9140 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9142         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9144         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9145         Monitor.Exit IL fastpaths.
9147 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9149         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9151 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9153         * class.c (mono_class_create_from_typedef): Added Vector2l.
9155 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9157         * class.c (mono_class_create_from_typedef): Added Vector2d.
9159 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9161         * appdomain.c: translate \ into / for cache_path.
9162         * domain-internals.h: new mono_is_shadow_copy_enabled().
9163         * icall.c: (fill_reflection_assembly_name) do the same path
9164         manipulations that get_code_base does.
9165         (get_code_base) use mono_is_shadow_copy_enabled.
9167 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9169         * appdomain.c: shadow-copied assemblies go to CachePath +
9170         ApplicationName when both are set. DynamicBase has nothing to do with
9171         shadow copies.
9172         Bug #406877 fixed.
9174 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9176         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9177         STANDALONESIG table.
9179         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9180         standalone signatures.
9182         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9183         comparison code: instead of comparing the signatures using a custom
9184         equals function, transform them to a common signature and compare that. This
9185         works better with AOT.
9187 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9189         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9191         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9192         call for generic instances.
9193         (mono_class_setup_properties): Call setup_properties () before accessing
9194         gklass->properties.
9196         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9197         over the virtual methods of a class using metadata if possible, avoiding the
9198         creation of MonoMethod's for non-virtual methods.
9199         
9200         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9201         get_virtual_methods () to iterate over the virtual methods of classes.
9203 2008-10-25  Martin Baulig  <martin@ximian.com>
9205         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9207 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9209         * class.c (mono_class_create_from_typedef): Added Vector4i.
9211 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9213         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9214         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9215         special-casing applies to eliminate the call completely.
9217 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9219         * class.c (mono_class_create_from_typedef): Added Vector8s.
9221 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9223         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9225 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9227         * icall.c: get rid of annoying warning.
9229 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9231         * threadpool.c: in 1.x, if you change the background status of the
9232         threadpool thread, it's not reset.
9233         Remove unnecessary calls to SetState.
9235 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9237         * threadpool.c: asynchronously create a set of idle threads upon first
9238         use of the threadpool. SetMinThreads will now start the appropriate
9239         number of idle threads if they are not already running. The default is
9240         1 threadpool thread per CPU. Increased the maximum number of threads
9241         per CPU to 10.
9243 2008-10-22  Martin Baulig  <martin@ximian.com>
9245         Revert r116521 from Zoltan, it breaks the debugger:
9247         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9248         over the virtual methods of a class using metadata if possible, avoiding the
9249         creation of MonoMethod's for non-virtual methods.
9250         
9251         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9252         get_virtual_methods () to iterate over the virtual methods of classes.
9254 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9256         * threads.c: when creating a threadpool thread, set its state to
9257         'background'.
9258         * threadpool.c: reset the background state of a threadpool thread
9259         after finishing each work item
9260         Bug #437888 fixed.
9262 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9264         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9265         
9266         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9267         generic instances which works by inflating the methods in the container
9268         class's vtable.
9270         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9271         variant which doesn't make a copy if no inflation was done.
9272         (mono_class_setup_fields): Use it.
9274         * metadata.c (mono_metadata_get_shared_type): New helper function to
9275         return a shared instance of a given MonoType.
9277         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9278         a copy of most non-generic types.
9280 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9282         * threadpool.c: remove one more GetSystemInfo () call.
9284 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9286         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9287         use the code in mono-proclib.h to get processor information.
9289 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9291         * appdomain.c: fixed the logic that determines whether assemblies in a
9292         directory are "shadow-copied" or not. Bug #433483 fixed.
9294 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9296         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9297         warning.
9299 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9301         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9302         returning a vtype.
9304         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9305         reflection.c: Use mono_field_get_name () for accessing a field's name.
9307         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9308         class.c
9310         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9311         field.
9313         * loader.c (find_method_in_class): Reenable the metadata optimization by
9314         not using it for generic instances.
9316         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9317         data/def_type fields from MonoClassField into a separate structure.
9318         (struct MonoClassField): Remove data/def_type fields.
9319         (struct _MonoClass): Add a 'field_def_values' array to store the default
9320         values/RVA for fields.
9322         * class.c reflection.c: Update after the changes.
9323         
9324         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9325         for accessing field->data.
9327         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9329         * loader.c (find_method_in_class): Revert the last change for now as
9330         it breaks Mono.C5 unit tests.
9332         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9333         'field_generic_types' and 'field_objects' which contain the information
9334         previously stored in MonoInflatedField.
9335         (MonoInflatedField): Delete.
9336         (struct _MonoClassField): Delete 'generic_info' field.
9338         * reflection.c: Store the information which was previously in 
9339         field->generic_info in MonoDynamicGenericClass instead.
9341         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9342         MonoClassField changes.
9344 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9346         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9347         store the value inside the data array of the MonoMethodWrapper.
9348         This saves memory, is faster and fixes the lifetime issues (methods
9349         were never removed from the hash previously). May also fix bug#436996.
9351 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9353         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9354         generic instances, compute the type from the generic definition instead of
9355         looking in field->generic_info.
9357         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9358         for inflated fields, the only user was get_fieldref_token () which no
9359         longer needs it.
9361         * class.c (mono_class_init): Revert the last change as it seems to cause
9362         crashes.
9364         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9365         bytes on 64 bit platforms.
9367         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9368         
9369         * object.c (mono_class_create_runtime_vtable): Don't initalize
9370         field->data/field->def_type here, it is done lazily by 
9371         mono_class_get_field_default_value ().
9373         * icall.c (ves_icall_get_enum_info): Call 
9374         mono_class_get_field_default_value () instead of directly accessing
9375         field->data and field->def_type.
9377         * object.c (get_default_field_value): Ditto.
9379         * class.c (mono_field_get_data): Ditto.
9380         
9381         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9382         call for generic instances.
9384         * loader.c (find_method_in_class): If klass != from_class, then inflate
9385         the method with the context of from_class, since the caller assumes this.
9387 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9389         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9390         for accessing method->slot.
9392 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9394         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9396 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9398         * class.c (mono_method_get_vtable_index): Use
9399         mono_method_get_vtable_slot () for accessing method->slot.
9401         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9402         accessing klass->methods.
9404         * class.c (mono_method_get_vtable_slot): New helper function.
9405         (mono_class_get_vtable_entry): Ditto.
9406         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9407         accessing method->slot.
9409         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9410         method to get_inflated_method ().
9412         * class.c (mono_class_get_inflated_method): New helper method to obtain
9413         a method of an inflated class without calling setup_methods ().
9414         (mono_class_get_cctor): Use get_inflated_method.
9416         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9417         
9418         * marshal.c image.c: Lazily create all the marshal caches.
9420         * image.c (mono_image_init): Move initialization of runtime_invoke
9421         caches to marshal.c.
9423         * marshal.c (get_cache): New helper function to lazily initialize a 
9424         wrapper cache.
9425         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9427         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9429 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9431         * loader.c: fixed check for interface type.
9433 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9435         * appdomain.c: check for NULL setup before it's referenced.
9438 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9440         * class.c: remove the unused old vtable setup code.
9442 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9444         * class.c: don't depend on interface order in
9445         setup_interface_offsets (bug #435777).
9446         * reflection.c: sort the InterfaceImpl table (patch from
9447         Jb Evain  <jbevain@novell.com>).
9449 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9451         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9452         the low level assemblies lock.
9454 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9456         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9457         object.c, reflection.c, socket-io.c, threads.c: introduced
9458         mono_framework_version () to return the major framewrok version,
9459         changed the code that was using more complex patterns to use it.
9460         Return the correct value for PlatformID for OSX.
9462 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9464         * icall-def.h, process.h, process.c: added an icall to get info about
9465         processes using mono-proclib.
9467 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9469         * mono-perfcounters.c: use the mono-proclib functions to
9470         access process information.
9472 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9474         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9475         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9476         reflection.c: remove rawbuffer usage: mmap support is more sanely
9477         provided by utils/mono-mmap.
9479 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9481         * gc.c: use posix semaphores when possible so that
9482         mono_gc_finalize_notify() is signal safe.
9484 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9486         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9487         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9488         be #ifdef-ed out, the linker will remove the rest.
9490         * marshal.c: Implement DISABLE_COM.
9492         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9494 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9496         * locales.c (string_invariant_compare_char): Optimization: do not
9497         call g_unichar_type unless we actually need the information.
9499 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9501         * object.c, class-internals.h: Also create remoting trampolines
9502         for generic methods.  Pass the domain to the remoting trampoline
9503         creation function, too.
9505 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9507         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9509 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9511         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9512         Vector4ui.
9514 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9516         * assembly.c:
9517         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9519 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9521         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9522         for the least possible amount of time (extending the fix in r113458).
9524 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9526         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9528 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9530         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9531         as possible simd intrinsic types.
9532         Optimized the test to check for the common prefix first.
9534 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9536         * class.c: back out part of a broken optimization committed on
9537         May 23th (bug #433908).
9539 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9541         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9542         Win32.  Should fix #432388 for most cases until we have the new
9543         profiler on Win32.
9545 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9547         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9548         instead of using inst->id so the hash is stable for AOT.
9550 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9552         * appdomain.c:
9553         * icall.c: create a .ini file for shadow-copied assemblies that
9554         contains the location of the original assembly. Use this to return the
9555         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9556         Also fix the number of '/' for windows when returning the CodeBase.
9557         Fixes bug #430920.
9559 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9561         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9563         Code is contributed under MIT/X11 license.
9565 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9567         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9568           if if the class vtable needs initialized.
9570         Code is contributed under MIT/X11 license.
9572 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9574         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9575           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9576           STRING->BSTR, and CLASS->INTERFACE.
9578         Code is contributed under MIT/X11 license.
9580 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9582         * sysmath.h: changed the declaration of the
9583         ves_icall_System_Math_Round2 icall by adding an extra
9584         away_from_zero parameter.
9586         * sysmath.c (ves_icall_System_Math_Round2): added support for
9587         away from zero rounding. The icall now takes an extra boolean
9588         parameter to signal that away from zero operation is requested.
9590 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9592         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9593         the delegate klass so it can work with full-aot.
9594         (mono_marshal_get_delegate_end_invoke): Ditto.
9595         (mono_marshal_get_delegate_invoke): Ditto.
9597 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9599         * gc.c, attach.h, attach.c: remove a bad pattern:
9600         add_finalizer_callback () is not implemented correctly, it can't
9601         without adding more overhead to the finalizer loop and it's not
9602         even needed, since we know exactly what we need to call, so there is
9603         no need to do so through an expensive function pointer.
9605 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9607         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9608         for the no-gc case.
9609         * attach.c (mono_attach_init): Remove the #ifdef.
9611 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9613         * attach.c (mono_attach_init): Don't use
9614         mono_gc_add_finalizer_thread_callback when compiling without GC.
9615         Fixes #432306.
9616         
9617         Code is contributed under MIT/X11 license.
9619 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9621         * class.c (mono_class_create_from_typedef): Remove the 
9622         #ifndef DISABLE_SIMD stuff.
9624 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9626         * class-internals.h (MonoClass): Added simd_type bit field.
9628         * class.c (mono_class_create_from_typedef): Check if type is a simd
9629         intrinsic.
9631 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9633         * object.c (mono_method_add_generic_virtual_invocation): Only add
9634         instantiations to the thunk whose count is at least as large as
9635         the threshold.
9637 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9639         * icall.c: changed the Type of the exception thrown when trying to
9640         invoke a constructor on an abstract class. Part of the fix for bug
9641         #324185.
9643 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9645         * class.c, class-internals.h (mono_method_get_vtable_index): New
9646         function which returns the index into the vtable and properly
9647         handles inflated virtual generic methods.
9649 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9651         * object.c, domain.c, object-internals.h, domain-internals.h:
9652         Generalize IMT thunk machinery to also handle thunks for virtual
9653         generic method invokes.  When a virtual generic method is invoked
9654         more than a number of times we insert it into the thunk so that it
9655         can be called without lookup in unmanaged code.
9657         * generic-sharing.c, class-internals.h: Fetching a
9658         MonoGenericInst* for a method from an (M)RGCTX.
9660 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9662         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9663         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9664         marshalling. Fixes #431304.
9666 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9668         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9669           handle when ref is specified without In or Out.
9671         Code is contributed under MIT/X11 license.
9673 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9675         * loader.c (mono_get_method_constrained): Don't expand method with
9676         the class's context, because it's already a method of that class.
9678 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9680         * attach.c : should be correct build fix.
9682 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9684         * attach.c: Fix the previous change.
9686 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9688         * attach.c : quick w32 build fix.
9690 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9692         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9693         crashes MonoDevelop: #430455.
9695 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9697         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9698         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9700         * domain.c: Remove initialization/cleanup of the removed fields.
9702 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9704         * class.c (mono_class_generic_sharing_enabled): Enable generic
9705         code sharing for PPC.
9707 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9709         * attach.c : Fixing the Windows builds.
9711         Code is contributed under MIT/X11 license.
9713 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9715         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9716         the default generic sharing mode to 'all'.
9718 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9720         * generic-sharing.c, class-internals.h: New function for checking
9721         whether a method needs a static RGCTX invoke wrapper.  A few
9722         funtions moved from mini/generic-sharing.c.
9724         * icall.c: New function used.
9726 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9728         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9729         Static RGCTX invoke wrapping applies to value type methods, too.
9731         * class.c (mono_class_setup_vtable_general): In generic-shared
9732         value types, wrap methods with a static RGCTX invoke wrapper.
9734 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9736         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9737         osx build.
9739 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9741         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9742         register a callback which is called when the finalizer thread is woken
9743         up.
9744         (finalizer_thread): Call the callback if it exists.
9746         * attach.h attach.c: New files, implementing the attach mechanism.
9748         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9749         
9750         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9751         by the previous change.
9753 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9755         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9756         loader.c, marshal.c, metadata-internals.h, metadata.c,
9757         method-builder.c, object.c, reflection.c: introduced specific functions
9758         to allocate from the domain and image mempools and cleaned up most of
9759         the code to use them (still missing a few in reflection.c).
9760         Keep the loader bytes counter updated.
9762 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9764         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9765         loader-related counters.
9767 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9769         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9770         added more MS-compatible counters.
9772 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9774         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9775         class->blittable. Fixes #428217.
9777 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9779         * reflection.c (mono_image_get_field_on_inst_token): Call 
9780         field_encode_signature () since that handles custom modifiers too.
9781         Fixes #424663.
9783 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9785         * reflection.c (add_custom_modifiers): New helper function to merge custom
9786         modifiers stored in objects to a MonoType.
9787         (fieldref_encode_signature): Encode custom modifiers.
9788         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9789         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9791 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9793         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9794         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9795         64-bit IL only images because imports are not resolved for IL only images.
9796         Special thanks to Bill Holmes for finding this bug and testing the patch.
9797         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9799         Contributed under MIT/X11 license.
9801 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9803         * mono-config.c (dllmap_start): Add support for the bits keyword
9804         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9806 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9808         * reflection.c (inflate_mono_method): When the class the method is
9809         to be inflated for is itself not inflated, just return the method.
9811 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9813         * mono-perfcounters.c: use more user friendly process instance names.
9815 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9817         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9818           handle "[in] ref" and "[in][out] ref" cases.
9820         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9821           to mono_mb_create_method.  This was causing problems calling native to
9822           managed passing Variants by value.
9824         Code is contributed under MIT/X11 license.
9826 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9828         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9829         before accessing the friend_assembly_names field.
9831         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9832         times.
9833         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9834         called lazily when it is needed.
9836         * metadata-internals.h (struct _MonoAssembly): Add 
9837         'friend_assembly_names_inited' flag.
9839 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9841         * mono-perfcounters-def.h: fix the types of a few counters.
9842         * mono-perfcounters.c: implemented the instance names getter
9843         and a few bugfixes.
9845 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9847         * culture-info-table.h : regenerated.
9849 2008-09-17  Robert Jordan  <robertj@gmx.net>
9851         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9852         context bound objects. Fixes #415577.
9854         Code is contributed under MIT/X11 license.
9856 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9858         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9859         implementation (bug #423582).
9861 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9863         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9864         is not set. Fixes #426309.
9866 2008-09-16  Jb Evain  <jbevain@novell.com>
9868         * class.c (mono_class_from_name): fix the exported type look up
9869         when the type is defined in a referenced assembly.
9871 2008-09-16  Jb Evain  <jbevain@novell.com>
9873         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9874         increment the next index counter on each iteration to make that work
9875         for more than one type forwarder. Unmanaged part to fix #422929.
9877 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9879         * object-internals.h: enum ComInterfaceType in
9880         MonoInterfaceTypeAttribute is guint32, not guint16.
9882 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9884         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9885         writing code.
9887 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9889         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9890         not gboolean.
9892 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9894         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9895         Endianness fixes for MonoSymbolFileOffsetTable.
9897 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9899         * process.c (complete_path) : Removing quotes from the 
9900           input path.  The glib file routines do not handle file paths
9901           that have quotes around them.
9903         Code is contributed under MIT/X11 license.
9905 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9907         * socket-io.h : Adding a comment to provide locations where 
9908           changes to MonoSocketAsyncResult need to be synced.
9910         Code is contributed under MIT/X11 license.
9912 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9914         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9915         parameters as well. Fixes #425001.
9917 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9919         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9920         windows build.
9922 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9924         * console-io.c: Add support for tracking the window size if it
9925         changes.
9927         The setup is very simple: the TtySetup function will now return a
9928         pointer to a location in memory that tracks the current console
9929         size.  The managed code checks its current value every time its
9930         queried against the last value set, and updates accordingly.
9932         With this setup we can work with multiple consoles, and we do not
9933         require to poke into managed code from a signal handler.
9935         Additionally, the environment for COLUMNS and LINES is now handled
9936         in unmanaged code.
9938         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9940 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9942         * marshal.c (mono_type_native_stack_size): Treat
9943         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9945 2008-09-04  Jb Evain  <jbevain@novell.com>
9947         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9948         to nullables.
9950 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9952         * verify.c (verify_type_compatibility_full): Revert change
9953         to allow converting a native int to unmanaged pointer be verifiable
9954         under non-strict mode.
9955         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9957         * verify.c: Added some TODOs.
9959 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9961         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9962           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9963           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9965         Code is contributed under MIT/X11 license.
9967 2008-09-02  Jb Evain  <jbevain@novell.com>
9969         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9971 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9973         reflection.c (typebuilder_setup_fields): Handle classes with
9974         explicit size.
9976 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9978         class.c (mono_class_setup_events): Add memory barrier due to
9979         double checked locking.
9980         
9981         class.c (mono_class_setup_properties): Same.
9983 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9985         * class.c (mono_class_is_assignable_from): Fix the build.
9986         
9987         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9988         before accessing klass->interface_bitmap. Fixes #421744.
9990 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9992         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9993         the runtime into no-exec mode, useful when running the AOT compiler.
9995         * appdomain.c gc.c object.c: Avoid executing managed code when running
9996         in no-exec mode.
9997         
9998         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10000         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10001         special case when the mono_assembly_loaded () returns NULL because the 
10002         search hook is not installed.
10004 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10006         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10007         crashes in bstr marshalling on linux.
10009 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10011         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10012         with more than one parameter.
10014 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10016         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10017         start/stop flow control as well when turning off ICANON (allows
10018         C-s and C-q to be read by Console.ReadKey).
10020 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10022         * class.c (mono_class_init): Move the initialization of nested classes
10023         into mono_class_get_nested_types (). Fixes #418433.
10025         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10026         flag.
10028         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10029         iterating tough the nested classes of a class.
10031 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10033         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10034         on arm.
10036 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10038         * console-io.c (sigcont_handler): Support signal chaining for
10039         SIGCONT.
10041         (console_set_signal_handlers): Use best practices with sigaction,
10042         clear the structure before using it. 
10044 2008-08-22  Robert Jordan  <robertj@gmx.net>
10046         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10047         Fix the Windows build.
10049 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10051         * class.c (mono_class_generic_sharing_enabled): Make the default
10052         sharing mode 'corlib'.
10054 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10056         * console-io.c (console_set_signal_handlers): Fix a warning.
10058         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10059         method normally, the JIT will take care of avoiding recursion.
10061 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10063         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10065         Code is contributed under MIT/X11 license.
10067 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10069         * console-io.c (sigcont_handler): We need to restore the entire
10070         termios state, not only the original settings, as things like echo
10071         can be controlled after this (Booish exposes this issue with its
10072         own ReadLine implementation).
10074         Additionally, we need to set the terminal back into keypad_xmit
10075         mode.
10076         
10077         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10078         string as a paramter as well.   Otherwise we get different
10079         keyboard sequences.
10081 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10083         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10084         delegates with byref out parameter passing. Fixes #351520.
10086         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10087         a generic context.
10088         (mono_type_get_desc): Add the type arguments for GENERICINST.
10089         (mono_method_full_name): Stringify the class name using mono_type_full_name
10090         so it picks up generic arguments.
10092 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10094         * console-io.c: Removed debug output.
10096 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10098         reflection.c (mono_reflection_create_runtime_class): Alloc
10099         the nested classes linked list using the dynamic image mempool.
10100         Fixes leak in corlib compilation.
10102 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10104         * console-io.c: Fix incredibly annoying behavior on the console
10105         after resuming execution after control-z.   This affected every
10106         console application.
10108 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10110         * mempool-internals.h: Header for mono private mempool functions. The first
10111         two function are for allocating glib linked lists using pools.
10113         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10115         * Makefile.am: Added mempool-internals.h.
10117 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10119         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10120         (mono_domain_free): Ditto.
10122         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10123         be used by the JIT to store its domain-specific information, instead of putting
10124         it directly into MonoDomain.
10126         * domain.c (mono_install_create_domain_hook): New helper function to install
10127         a hook which initializes domain->runtime_info.
10129         * domain.c (mono_install_free_domain_hook): Ditto.
10130         
10131 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10133         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10134         asserting if the ares parameter is null.
10136         * mono-perfcounters.c: Fix warnings.
10138         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10139         is not needed, don't check for interruptions either.
10140         (mono_marshal_get_delegate_end_invoke): Ditto.
10142 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10144         * mono-perfcounters.c (predef_readonly_counter): added support for
10145         reading the ASP.NET Requests Queued counter from another process.
10147 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10149         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10150         MonoImage to simplify the AOT code.
10152 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10154         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10155         marshalling. Fixes #416078.
10157 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10158         
10159         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10160         it is set, looking up the icall address is deferred to the JIT, since 
10161         in embedded scenarios, the icall might not be registered in the runtime
10162         doing the AOT compilation. Backported from the 2.0 branch.
10164 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10166         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10167         Fixes #415621.
10169 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10171         * Makefile.am: added support for cross-compilation.
10173 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10175         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10177 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10179         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10181 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10183         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10184         mono-perfcounters.c: performance counters implementation.
10186 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10188         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10189         to gpointer, letting the AOT code decide what to store in it.
10191 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10193         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10194           mono_class_setup_methods if the methods are not initialized.
10196         Code is contributed under MIT/X11 license.
10198 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10200         * verify.c: Remove some debug code I commited by accident.
10202         * verify.c (mono_method_is_valid_in_context): Change the return value
10203         to make possible to distinguish between invalid and unverifiable.
10205         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10206         methods.
10208 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10210         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10211         constraints. Fixes regression in gtest-253.
10213 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10215         * verify.c (mono_verifier_verify_class): Don't allow generic types
10216         with explicit layout.
10218         * verify.c (mono_method_verify): Check locals and argument types.
10220 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10222         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10223         wait if the thread is in StopRequested state.
10225         * class.c (mono_class_from_name): Refactor the module searching code into
10226         a separate function so it can be reused in the AOT case too.
10228 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10230         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10231         Check both the type and it's generic type definition for loader errors.
10232         
10233         * verify.c (mono_method_is_valid_in_context): Don't generate another
10234         error when a type errors occur, this leads to the wrong exception been
10235         thrown.
10237 2008-07-28  Dick Porter  <dick@ximian.com>
10239         * icall-def.h
10240         * process.c
10241         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10242         New internal calls to duplicate and close a process handle.
10244 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10246         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10248 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10250         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10252 2008-07-27  Robert Jordan  <robertj@gmx.net>
10254         * class.c (mono_class_init): Don't compute class.has_finalize for
10255         valuetypes. Fixes #412477.
10257 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10259         * verify.c: Implement constraint equivalence checking.
10260         This is required when a generic parameter is used as
10261         argument to a constrained one.
10263         Fixes #410637.
10265 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10267         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10269         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10271         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10272         synch with managed object layout.
10274 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10276         * verify.c (do_branch_op): Handle valuetypes and generic
10277         arguments properly.
10279         * verify.c (do_cmp_op): Same.
10281         Fixes #410383.
10283 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10285         * generic-sharing.c: Fix memory leaks.
10287         * class.c, class-internals.h: Make
10288         mono_class_inflate_generic_type_with_mempool() non-static.
10290 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10292         * pedump.c (dump_verify_info): Dump full class name.
10294 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10296         * generic-sharing.c: Removed some old code that didn't do anything.
10298 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10299         * profiler.c: Added runtime_initialized_event,
10300         mono_profiler_install_runtime_initialized and
10301         mono_profiler_runtime_initialized. This new hook tells the profiler
10302         when the runtime is sufficiently initialized to be able to call
10303         mono_thread_attach on the root appdomain.
10304         * profiler.h, profiler-private.h: Likewise.
10306 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10308         * verify.c (do_cast): Do boxing for generic arguments as well.
10310         * class.c (is_nesting_type): Drop generic instantiations before
10311         checking for nesting.
10313         * class.c (can_access_instantiation): Allow access to generic
10314         arguments.
10316 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10318         * verify.c (verify_class_for_overlapping_reference_fields):
10319         On some cases, the field size might be zero, guard against that.
10320         Fix the explicit layout check to work as expected.
10322 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10324         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10325         mono_thread_resume () during shutdown, since the thread we want to abort
10326         might be suspended.
10328 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10330         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10331         warning.
10333         * debug-mono-symfile.c: Fix a warning.
10335         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10337         * object.c (mono_class_vtable): Check if exception_type is set, and return
10338         NULL as defined by the function comments.
10340 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10342         * mempool.c: Use malloc for every single mempool allocation if the
10343         configure option is set.  This makes it easier to track mempool
10344         allocations with tools like Valgrind.
10346 2008-07-22  Jb Evain  <jbevain@novell.com>
10348         * reflection.c (create_dynamic_mono_image): emit the same
10349         metadata version that SL2 does when creating a SL2 image.
10351 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10353         * icall-def.h:
10354         * icall.c: New icall System.Enum:get_hashcode. This function
10355         avoids the overhead of boxing the enum to the underlying type.
10357 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10359         * reflection.c (mono_method_get_object): Don't let static RGCTX
10360         invoke wrappers get into MonoReflectionMethods.
10362 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10364         * object-internals.h:
10365         * object.c: New mono_runtime_class_init_full function
10366         that makes throwing the exception optinal.
10368         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10369         for the case where the exception object is supplied.
10371 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10373         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10374         old ld versions.
10376         Contributed under MIT/X11 license.
10378 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10380         * string-icalls.c (ves_icall_System_String_InternalSplit):
10381         Optimize array allocation by caching the MonoClass of the
10382         array type.
10384         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10386         * reflection.c (mono_param_get_objects): Same.
10388 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10390         * icall-def.h:
10391         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10392         It inflates the given type using the class context.
10394 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10396         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10397         the vtable if it already exists.
10399         * object-internals.h: Add mono_class_try_get_vtable as part of the
10400         internal API.
10402         * reflection.c (mono_type_get_object): Use the MonoObject from the
10403         vtable when possible. Reduces locking contention on reflection heavy
10404         code.
10406 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10408         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10409         g_bit_nth_msf () since that macro is not implemented in eglib.
10411 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10413         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10414         on platforms which do not support it.
10416 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10418         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10420 2008-07-11  Martin Baulig  <martin@ximian.com>
10422         * mono-debug-debugger.h
10423         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10425         * mono-debug-debugger.c
10426         (_mono_debugger_interruption_request): New global volatile variable.
10427         (mono_debugger_check_interruption): New public function.
10429         * threads.c
10430         (mono_thread_current_check_pending_interrupt): Call
10431         mono_debugger_check_interruption().
10432         (mono_thread_interruption_checkpoint_request): Likewise.
10434 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10436         * verify.c: Add more type checks for loaded types. Verify the result
10437         handle from ldtoken.
10439 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10441         * loader.c (field_from_memberref): Don't crash if the field
10442         wasn't found.
10444 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10446         * verify.c: Verify if type and method instantiations
10447         don't have invalid VAR or MVAR arguments.
10449 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10451         * verify.c: Fix double free of function pointer list.
10453 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10455         * object.c (mono_string_to_utf8): Comment the new code as it
10456         breaks under eglib.
10458 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10460         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10462 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10464         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10465           is not throw too many times.
10467         Code is contributed under MIT/X11 license.
10469 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10471         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10472         debugging is turned off.
10474 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10476         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10478 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10480         * class-internals.h, class.c: Added new generic sharing option:
10481         Share only stuff in System.Collections.Generic, which is now the
10482         default.
10484 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10486         * generic-sharing.c, class-internals.h: New function for getting a
10487         generic method in a generic class given the corresponding method
10488         for a different instantiation of the class.  Partly refactored
10489         from mini-trampolines.c.
10491         * class.c: Make sure generic methods have a class_inst if they are
10492         part of a generic class.
10494         * metadata.c (mono_type_stack_size_internal): Handle type
10495         variables.
10497 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10499         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10500         Signifies whether information on the this/vtable/mrgctx variable
10501         is available.
10503 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10505         * object.c, object-internals.h, icall.c: New function
10506         mono_delegate_ctor_with_method(), which does the same as
10507         mono_delegate_ctor(), but takes an explicit method argument
10508         instead of taking the method from the jit info.
10510         * marshal.c: When creating a delegate with an inflated method take
10511         the "this" argument as the target class for the castclass.
10513 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10515         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10516         mono_jit_info_table_find() to perform very badly in some cases.
10518 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10520         * icall.c (type_from_typename): Handle 'string'.
10522         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10523         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10525 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10527         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10529         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10530         number of available managed allocator types.
10532         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10533         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10535 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10537         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10538         which is a low level lock protecting just the 'jit_code_hash' hash table.
10540         * domain.c: Initialize+cleanup jit_code_hash_lock.
10541         
10542 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10544         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10545         after initialization.
10547         * coree.h: Make MonoFixupExe internal.
10549         Contributed under MIT/X11 license.
10551 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10553         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10554         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10555         as well.
10556         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10557         image being loaded is a CLI image and _CorValidateImage gets called.
10559         * coree.h: Add MonoLoadImage.
10561         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10562         instead of LoadLibrary.
10564         Contributed under MIT/X11 license.
10566 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10568         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10569         for any primitive type.
10571 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10573         * object.c (mono_array_new_specific): Optimize this and the other allocation
10574         functions a bit.
10575         
10576         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10577         domains too if mono_dont_free_domains is set.
10579         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10580         whenever to free appdomain data after it has been unloaded.
10582         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10583         
10584 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10586         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10587         (mono_method_get_equivalent_method): Fix a warning.
10589         * object.c (mono_message_init): Avoid looking up array types for each call.
10591 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10593         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10594         call.
10596         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10597         even more.
10599         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10600         each iteration.
10602         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10603         fields of an enum.
10605 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10607         * object.c (mono_value_box): Fix boxing of nullables.
10609 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10611         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10612         mono_module_handle that is defined by the linker; no initialization required.
10613         * coree.h: Remove mono_module_handle, add __ImageBase, update
10614         mono_image_open_from_module_handle.
10615         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10616         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10617         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10618         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10619         to 4 GB away from image base address. IA64 version is not tested but was very
10620         easy to implement and should work if we ever need it.
10621         * domain.c (mono_init_internal): Avoid system error message boxes.
10622         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10623         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10624         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10625         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10626         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10628         Contributed under MIT/X11 license.
10630 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10632         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10633         as part of the private mono API.
10634         
10635         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10636         Do proper argument checking for methods that belong to generic classes.
10637         Do proper type resolution for GMFH/2.
10638         Fixes #377324.
10639         
10640 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10642         * verify.c (do_switch): Fix a memory corruption bug with
10643         the jump index is out of bound.
10645 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10647         * verify.c: Disable debug code.
10649 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10651         * reflection.c (mono_image_get_methodbuilder_token): Use
10652         mono_image_get_methodspec_token_for_generic_method_definition
10653         instead of mono_image_get_memberref_token. We cache more memberef
10654         entries now.
10656 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10658         * verify.c: Inflate exception clause types.
10659         Fixes #402606.
10660         
10661 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10663         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10664         name.
10666         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10668         * reflection.c (mono_image_create_method_token): Same.
10670 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10672         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10673         It does the same as mono_image_get_methodref_token but works on
10674         MethodBuilder.
10676         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10677         and always generate a methodspec. This follows the old behavior and fixes
10678         the regressions in System.Core. 
10680 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10682         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10683         don't event mono_class_get () succeeds. Fixes #402182.
10685 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10687         * metadata-internals.h: Added MonoDynamicImage::methodspec
10688         hashtable to store methodspec tokens created for MethodBuilders.
10690         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10691         MethodBuilders as open instantiations if a methodspec was requested.
10693         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10695         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10697         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10699         Fixes bug #349190.
10701 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10703         * loader.c (method_from_methodspec): Avoid crashing if the
10704         method lookup fails.
10706 2008-06-20  Dick Porter  <dick@ximian.com>
10708         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10709         classes being in a different assembly.  Fixes bug 399184.
10711 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10713         * loader.c (mono_loader_init): Make this callable multiple times.
10714         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10715         the runtime is initialized. Fixes #401755.
10717 2008-06-19  Dick Porter  <dick@ximian.com>
10719         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10720         Fixes bug 349688.
10722 2008-06-19  Dick Porter  <dick@ximian.com>
10724         * socket-io.c:
10725         * icall-def.h: Implement Socket generic Send() and Receive()
10726         methods.  Fixes bug 395168.
10728 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10730         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10732         Contributed under MIT/X11 license.
10734 2008-06-18  Martin Baulig  <martin@ximian.com>
10736         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10737         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10738         set to 80.0.  The debugger <-> runtime interface is now frozen as
10739         well.   
10741         * mono-debug.c
10742         (mono_debug_debugger_version): Bump to 4.
10744 2008-06-18  Martin Baulig  <martin@ximian.com>
10746         * debug-mono-symfile.c
10747         (load_symfile): Don't check the minor version.
10749         * debug-mono-symfile.h: Bump the version number to 50.0.
10751 2008-06-18  Martin Baulig  <martin@ximian.com>
10753         * debug-mono-symfile.c
10754         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10755         minimum required version.
10757 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10759         * reflection.c (mono_custom_attrs_from_property): Fix support for
10760         retriveving cattrs of dynamic inflated generic types.
10762         * reflection.c (mono_custom_attrs_from_event): Same.
10764         * reflection.c (mono_custom_attrs_from_field): Same;
10766         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10768         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10769         Moved to metadata.c.
10771         * metadata.c: New functions to retrive the equivalent field, event
10772         of property from the generic type definition.
10774         * metadata-internals.h: Added new functions from metadata.c.
10776 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10778         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10779         to cached in a mempool is used.
10781         * metadata.c (free_generic_class): In some situations field generic_info type
10782         is not properly dup'ed and leads to double free'ing.
10784         Fixes #400643.
10786 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10788         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10789         this arguments (will be needed later for generic methods).
10790         Collect stats.
10792 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10794         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10795         Create a static RGCTX invoke wrapper for methods which require it.
10797 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10799         * object.c, class-internals.h: New function for checking whether
10800         an individual field is special static.
10802 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10804         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10805         linear search since the table is sorted.
10807         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10808         Fixes #324180.
10810 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10812         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10813         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10815         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10817         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10818         
10819         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10820         InterlockedCompareExchange to query and modify 
10821         thread->interruption_requested.
10823         * object-internals.h (struct _MonoThread): Change interruption_requested
10824         to a gint32 so it can be modified by atomic operations. Add 
10825         'critical_region_level' from the managed side, change small_id to a guint32,
10826         add new set of 'unused' fields.
10828         * appdomain.c: Bump corlib version.
10830 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10832         * class.c (mono_class_from_name): Search modules as well. Fixes
10833         #322332.
10835 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10837         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10838         templates.  Templates are generalized with an additional type_argc
10839         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10840         have type_argc>0.
10842         * domain-internals.h, domain.c: New hash table for looking up
10843         MRGCTXs.
10845         * metadata.c, metadata-internals.h: Rename hash and equal
10846         functions for MonoGenericInst's and make them public.
10848         * class-internals.h: New data structures for the MRGCTX.  Macros
10849         for distinguishing slots in the RGCTX and the MRGCTX.
10851 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10853         * object.c (mono_method_get_imt_slot): Put the same methods of
10854         different instantiations of the same generic interface in the same
10855         IMT slots, to make generic sharing simpler.
10857 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10859         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10861         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10862         This function works just like mono_metadata_field_info, but
10863         accept a mempool as argument to be used allocating memory.
10865         * marshal.c (mono_marshal_load_type_info): Use new function
10866         to load marshal data into image mempool.
10868 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10870         * class.c (mono_class_inflate_generic_type_with_mempool):
10871         This function allows to inflate a generic type using
10872         a mempool.
10874         * class.c (inflate_generic_type): Take a mempool as argument
10875         and use it to do type dup'ing.
10877         * class.c (mono_class_setup_fields): Field type for generic
10878         generic classes are allocated from the image mempool.
10880         * metadata.c (free_generic_class): Inflated field type is
10881         now allocated in the image mempool.
10883 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10885         * threads.c (thread_cleanup): Free MonoThread::name.
10887 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10889         * appdomain.c (ensure_directory_exists): avoid unnecessary
10890         mkdir(2) calls when the shadow directory already exists.
10891         (mono_make_shadow_copy): copy also satellite assemblies from the
10892         private bin directories.
10894 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10896         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10897         
10898         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10899         a page boundary. Fixes #396219.
10901 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10903         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10904         due to double-checked locking.
10906 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10908         * assembly.c (build_assembly_name): Release memory on failure.
10910         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10912 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10914         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10915         memory on failure.
10917 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10919         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10920         memory on failure.
10922 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10924         * loader.c (field_from_memberref): Check if field signature type is equal
10925         to the non-inflated type of the field. Fixes #398980.
10927 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10929         * assembly.c (mono_assembly_load_from_full): Call 
10930         mono_assembly_load_friends () outside the assemblies lock, since it can
10931         acquire the loader lock. Fixes #323696.
10933         * reflection.c (resolve_object): Inflate the inst with the context for
10934         FieldOnTypeBuilderInst. Fixes #399010.
10936 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10938         * reflection.c (mono_image_get_field_on_inst_token): Don't
10939         inflate the field to encode it's signature. If it's a
10940         VAR or MVAR it should stay that way in the signature.
10941         Fixes #399047.
10943 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10945         * reflection.c (resolve_object): Release memory of inflated types.
10947 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10949         * loader.c (mono_method_get_signature_full): Remove assert about
10950         loading a methodspec to a generic method. We have such methods, such as
10951         System.Threading.Interlocked::CompareExchange<T>.
10952         This assert was removed since it crashes the verifier when it checks
10953         methods calling CompareExchange<T>.
10955 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10957         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10958         of Type array and not MonoType.
10960 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10962         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10963         <lupus@ximian.com>
10965 2008-06-10  Martin Baulig  <martin@ximian.com>
10967         * debug-mono-symfile.h
10968         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10969         changes to the file format, but we were generating incorrect
10970         source file indices in the line number table due to a bug, which
10971         made backtraces report an incorrect source file.
10973 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10975         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10976         mini/debug-mini.c to here.
10978         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10980         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10981         use it to release structs returned by mono_debug_find_method.
10983 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10985         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10986         since it needs to set method->slot for all interface methods.
10988 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10990         * class-internals.h: Forgot to add.
10992 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10994         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10996         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10997         Lookup the custom attributes from property_hash.
10999         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11000         in property_hash. Allocate all data using the image mempool.
11002         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11003         for dynamic_custom_attrs to checks if the image is dynamic.
11005 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11007         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11008         assemblies array.
11009         
11010         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11011         runtime functions while holding the domain assemblies lock.
11013 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11015         * verify.c: Reapplied the last bit of the reverted changes.
11017 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11019         * verify.c: Reapplied more of the reverted changes.
11021 2008-06-09  Martin Baulig  <martin@ximian.com>
11023         * debug-mono-symfile.c (load_symfile): Check the major version
11024         first; if it's wrong, don't print the minor version in the error message.
11026 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11028         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11029         lock instead of the domain lock to avoid deadlocks, since the thread might
11030         already hold the loader lock.
11032         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11033         (mono_thread_attach): Ditto.
11035         * monitor.c: Use a TLS variable for holding the current thread id instead
11036         of calling pthread_self ().
11037         (mono_monitor_init_tls): New internal function to initialize the TLS
11038         variable.
11039         (mono_monitor_try_enter_internal): Put the owner == id check after the
11040         owner == 0 check.
11042         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11043         missed optimizations when using gcc-4.3.
11045 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11047         * reflection.c (mono_dynamic_image_free): Free the memory
11048         used by MonoGenericParam in MonoDynamicImage::gen_param.
11050         * reflection.c (mono_reflection_setup_generic_class): Allocate
11051         container from mempool.
11053         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11054         container from mempool.
11056 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11058         * threads.c (mono_set_pending_exception): New internal function to set the
11059         pending exception of the current thread.
11060         (mono_thread_get_and_clear_pending_exception): Check for 
11061         thread->pending_exception as well.
11063         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11065         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11066         it can trigger a collection.
11068 2008-06-06  Martin Baulig  <martin@ximian.com>
11070         Merged the `debugger-kahalo' branch.
11072         * mono-debug.h
11073         (MONO_DEBUGGER_VERSION): Bumped to 72.
11075         * debug-mono-symfile.h
11076         (MonoSymbolFileMethodIndexEntry): Removed.
11077         (MonoSymbolFileMethodEntry): New public typedef.
11078         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11079         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11080         `data_offset'.
11081         (MonoSymbolFileMethodEntry): Removed.
11082         (MonoSymbolFileLexicalBlockEntry): Removed.
11083         (MonoSymbolFileLineNumberEntry): Removed.
11084         (MonoDebugLexicalBlockEntry): Removed.
11085         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11086         removed `num_il_offsets' and `il_offsets'.
11087         (MonoSymbolFile): Replace `version' with `major_version' and
11088         `minor_version'.
11089         (MONO_SYMBOL_FILE_VERSION): Replace with
11090         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11091         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11093         * debug-mono-symfile.c
11094         (mono_debug_symfile_lookup_location): Add support for the new line
11095         number table format.
11097 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11099         * metadata.c (free_generic_class): Release the inflated
11100         MonoClass of dynamic generic classes if it's not a generic
11101         type definition.
11103 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11105         * verify.c: Reapplied more of the reverted changes.
11107 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11109         * reflection.c (lookup_custom_attr): Clean the cached flag or
11110         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11111         for SRE types.
11113 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11115         * verify.c: Reapplied a small part of the reverted changes.
11117 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11119         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11121         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11122         previously in managed code.
11123         (mono_monitor_exit): Ditto.
11124         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11126         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11127         the managed definition.
11129 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11131         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11133 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11135         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11136         
11137         * monitor.c: Add some micro optimizations.
11139         * icall.c (type_from_typename): Handle 'bool'.
11141 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11143         * verify.c: Implement constructor verification per P III 1.8.1.4.
11144         Fixes #396716.
11146 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11148         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11149         holding the assemblies lock here too.
11151 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11153         * verify.c: Kill stack_top function.
11155 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11157         * verify.c: Kill stack_get function.
11159 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11161         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11163 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11165         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11166         more reliable.
11168         * verify.c (mono_method_verify): Inflate params and locals to avoid
11169         mismatch when checking for compatibility.
11171 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11173         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11174         Length prefix should be size in bytes. Fix bug #339530.
11175         
11176         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11177         Length prefix should be size in bytes. Fix bug #339530.
11179         Code is contributed under MIT/X11 license.
11181 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11183         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11185         Contributed under MIT/X11 license.
11187 2008-06-05  Martin Baulig  <martin@ximian.com>
11189         * mono-debug-debugger.c
11190         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11192 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11194         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11195         while holding the assemblies lock to prevent deadlocks. Handle the case
11196         where the search hook returns NULL but the assembly was still loaded.
11197         Fixes #323696.
11199         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11200         modify domain state.
11202 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11204         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11205         * Makefile.am (pedump_LDADD): Post-process object files and
11206         add dtrace-generated object file, if necessary.
11208         Code is contributed under MIT/X11 license.
11210 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11212         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11214 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11216         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11218 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11220         * threads.c: Try to free everything from the delayed free table
11221         when shutting down threads, and set the variable to NULL after the
11222         table is freed so that calling
11223         mono_thread_hazardous_try_free_all() when shutting down the root
11224         domain doesn't crash.
11226 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11228         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11229         the caller if resulting type was inflated.
11231         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11232         was inflated.
11234         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11237 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11239         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11240         class library tests.
11242         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11243         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11244         #396989.
11246 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11248         * domain.c, domain-internals.h: The JIT infos are now freed by the
11249         JIT info table code.  They are freed immediately if there only a
11250         single JIT info table in circulation.  If there is more, the free
11251         is delayed via a queue.
11253         * threads.c, threads-types.h: New hazard pointer function for
11254         freeing all freeable delayed items in one sitting.
11256 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11258         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11260         * reflection.c (typebuilder_setup_properties): Same.
11262         * reflection.c (typebuilder_setup_events): Same.
11264 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11266         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11267         and use it for allocating memory.
11269         * reflection.c (mono_marshal_spec_from_builder): Same.
11271         * reflection.c: Change code to use new signatures.
11273         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11275 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11277         * decimal.c (rescale128): Put back one line which was accidently commented
11278         out.
11279         
11280         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11281         to cause crashes.
11283 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11285         * reflection.c (mono_reflection_generic_class_initialize): Name must
11286         be always malloc'ed so we can free it later on. Do this for field, property
11287         and event.
11289         * metadata.c (free_generic_class): Free field, property and event names.
11291 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11293         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11294         instead of g_memdup.
11296         * reflection.c (typebuilder_setup_fields): Same.
11298 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11300         * decimal.c (rescale128): Optimize this function a bit more.
11302 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11304         * metadata.c (free_generic_class): Release some memory from
11305         SRE generic classes.
11307 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11309         * reflection.c (mono_image_get_generic_field_token): No reference
11310         to name is kept, free it.
11312         * reflection.c (mono_reflection_generic_class_initialize): Free
11313         more memory of the inflated field.
11315 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11317         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11318         code.
11320 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11322         * reflection.c (mono_dynamic_image_free): Release memory used by
11323         MonoDynamicImage::array_methods elements.
11325         * reflection.c (assembly_add_win32_resources): Release memory after
11326         encoding.
11328 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11330         * decimal.c (log2_32): Use an optimized version for this function too.
11331         
11332         * decimal.c (log2_64): Fix this on 32 bit machines.
11334 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11336         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11338         * class.c (mono_metadata_signature_deep_dup): Same.
11340         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11341         a mempool.
11343         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11345         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11347         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11349         * class-internals.h: Update signatures to take a MonoMemPool.
11351 2008-06-02  Dick Porter  <dick@ximian.com>
11353         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11354         * icall-def.h: Add
11355         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11356         FormatMessage API to get the error text.  Fixes bug 321827.
11358 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11360         * decimal.c: Add some micro optimizations to make decimal operations faster.
11362 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11364         * reflection.c (method_encode_clauses): Take a mempool
11365         as parameter and use it to allocate the clause array.
11367         * reflection.c (mono_image_get_field_on_inst_token): Free
11368         the inflated type after encoding it.
11370         * reflection.c (mono_dynamic_image_free): Free each element
11371         of MonoDynamicImage::gen_params.
11373         * reflection.c (reflection_methodbuilder_to_mono_method):
11374         Allocate the generic param array from the mempool.
11375         Allocate signature params from the mempool.
11377         * reflection.c (mono_reflection_generic_class_initialize):
11378         Free inflated fields after been used.
11380 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11382         * icall.c: Reapply the memory leak fixes as they no
11383         longer make mono crash.
11385 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11387         * reflection.c (mono_type_get_object): Don't store the suplied
11388         MonoType with type_hash. A caller which pass a type that
11389         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11390         might end with a pointer to freed memory.
11391         The solution is to use byval_arg or this_arg from the associated
11392         MonoClass of the supplied type.
11394 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11396         * icall.c: Revert the rest of the last change as it breaks the build too.
11398 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11400         * icall.c: Revert a leak fix as it's breaking the build.
11402 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11404         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11406 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11408         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11410 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11412         * icall.c: Fix some memory leaks.
11414 2008-05-29  Dick Porter  <dick@ximian.com>
11416         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11417         async socket operations from the pending list when a socket
11418         closes.  Leaving it until the threadpool services the event
11419         exposes a race condition when a socket descriptor is reused.
11420         Fixes bug 377589.
11422 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11424         * object.c: Fix negative index check for array alocation.
11426 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11428         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11429         This check is performed by the verifier for IL created delegates
11430         and by Delegate::CreateDelegate for programatically created ones.
11431         Fixes #372406.
11433 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11435         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11436         Fix code to use mono_array_size_t instead of int.
11438         Based on patch by Luis F. Ortiz.
11439         Contributed under X11 license.
11440         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11442 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11444         * icall.c: Added ves_icall_System_Array_GetLongLength and
11445         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11446         arrays.
11448         * icall.h: Export both new functions.
11450         Based on patch by Luis F. Ortiz.
11451         Contributed under X11 license.
11452         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11454 2008-05-28  Martin Baulig  <martin@ximian.com>
11456         The debugger now requires exactly r103463.
11458         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11459         This version is not supported by the debugger, wait for 72.
11461 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11463         * object.h: Changed array related functions to use
11464         mono_array_size_t instead of guint32. Forgot to commit this file.
11466         Patch by Luis F. Ortiz.
11467         Contributed under X11 license.
11468         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11471 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11473         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11474         don't define it. Use the number literal instead.
11476 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11478         * icall.c: Changed array related functions to use
11479         mono_array_size_t instead of guint32.
11481         * icall.c (ves_icall_System_Array_GetLength): Check for length
11482         overflow under MONO_BIG_ARRAYS.
11484         Based on patch by Luis F. Ortiz.
11485         Contributed under X11 license.
11486         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11488 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11490         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11492         Based on patch by Luis F. Ortiz.
11493         Contributed under X11 license.
11494         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11496 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11498         * object.c, object.h: Changed array related functions to use
11499         mono_array_size_t instead of guint32.
11501         Patch by Luis F. Ortiz.
11502         Contributed under X11 license.
11503         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11505 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11507         * object.h: Introduced mono_array_size_t typedef. This must be used
11508         in all places an array length is expected. This is 64bits wide if
11509         MONO_BIG_ARRAYS is enabled.
11511         Patch by Luis F. Ortiz.
11512         Contributed under X11 license.
11513         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11515 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11517         * security-manager.c class.c: Set the class exception info by calling
11518         mono_class_set_failure ().
11520         * class.c (mono_class_get_exception_data): New accessor function.
11521         (mono_class_set_failure): Store exception_data in the property hash.
11523         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11524         the struct as a property.
11526         * loader.c (mono_get_method_full): Store the lookup result for method
11527         tokens in method_cache, the others in methodref_cache to decrease the memory
11528         usage of hash tables.
11530         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11531         (mono_image_init): method_cache is lazy inited now.
11533         * metadata-internals.h (struct _MonoImage): Change method_cache to
11534         a MonoValueHashTable, add a separate methodref_cache.
11536 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11538         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11539           Double.ToString as exposed by Bug #383531.
11541 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11543         * number-formatter.h: Make some tables static.
11545         * class.c (mono_method_set_generic_container): New accessor function.
11546         (mono_method_get_generic_container): Ditto.
11548         * class-internals.h (struct _MonoMethod): Remove rarely used 
11549         'generic_container' field, store it in the property hash instead. Add 
11550         'is_generic' boolean field instead.
11552         * image.c (mono_image_init): Initialize property_hash.
11553         (mono_image_close): Destroy property_hash.
11555         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11556         hold rarely used fields of runtime structures belonging to this image.
11558         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11559         to get/set method->generic_container.
11561         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11562         generic methods.
11564 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11566         * class.c (mono_class_inflate_generic_method_full): Don't increase
11567         mono_stats.inflated_method_count for methods found in the cache.
11569         * threads.c (mono_thread_request_interruption): Add a comment about 
11570         QueueUserAPC ().
11572 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11574         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11575         interface_offsets_packed table.
11576         
11577         * class.c (mono_class_init): Remove some dead code.
11579         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11580         mono_class_setup_vtable () when CAS is active to detect security problems.
11582 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11584         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11586         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11587         parameters as it's irrelevant for delegate checking.
11589 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11591         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11593         * class.c (mono_class_init): Control the creation of a generic vtable using
11594         a global which is true by default, but set to false by the runtime startup code.
11595         
11596         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11597         Disabled for now since it breaks the embedding API.
11598         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11599         (mono_class_setup_methods): Add a memory barrier.
11601         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11602         when mono_class_init () doesn't compute the generic vtable.
11603         
11604 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11605         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11606         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11607         to support call chains (backtrace) in the stat profiler.
11608         * profiler.c, profiler-private.h: Likewise.
11610 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11612         * generic-sharing.c: Init generic class when a method of it is
11613         requested via a runtime generic context.
11615 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11617         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11619         * reflection.c (mono_type_get_object): Add a FIXME.
11621         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11623         * class.c (mono_class_get_method_by_index): New helper function, returning an
11624         entry in the class->methods array.
11626 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11628         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11629         Avoid creating a generic vtable for generic instances as well.
11630         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11631         generic instances.
11633 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11635         * loader.c (mono_get_method_constrained): Inflate the signature
11636         with class context. Fix #325283.
11638 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11640         * object.c (mono_class_create_runtime_vtable): Add a comment.
11642         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11643         where needed.
11644         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11645         (mono_class_setup_vtable_general): Add an assert.
11646         (mono_class_init): Avoid creating a generic vtable for arrays.
11648         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11649         here, let mono_class_init () do that.
11651         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11652         interfaces in mscorlib.
11654         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11655         interfaces. Add some comments.
11656         (mono_class_init): Call mono_class_setup_methods () here since it is no
11657         longer called by mono_class_setup_vtable ().
11659         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11660         not set in class->vtable.
11661         (mono_class_create_runtime_vtable): Reenable the disabled code.
11663         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11664         now as it causes some test failures.
11666         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11667         if using the vtable trampoline. Also remove some strange code which put the
11668         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11669         stuff as it is no longer needed.
11671 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11673         * pedump.c: Give make --verify all option check code as well.
11674         Using --verify code won't check for metadata now.
11676 2008-05-19  Martin Baulig  <martin@ximian.com>
11678         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11680         * mono-debug.c
11681         (_mono_debug_using_mono_debugger): New global variable; it's set
11682         directly by the debugger, so mono_debug_using_mono_debugger() also
11683         works after attaching.
11685 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11687         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11688         as we do double checked locking on MonoClass::runtime_info and
11689         MonoClassRuntimeInfo::domain_vtables.
11691 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11693         * debug-helpers.c (print_field_value): Fix a warning.
11695 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11697         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11698         set in the AOT case.
11700 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11702         * class.c (mono_class_setup_vtable_general): Use memory barriers
11703         as we do double checked locking on MonoClass::vtable.
11705 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11707         * reflection.c (resolve_object): Inflate only if the generic context
11708         is not null. Fixes #389886.
11710 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11712         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11713         instead of g_free.
11715         Code is contributed under MIT/X11 license.
11717 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11719         * class.c: Revert unrelated change.
11721 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11723         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11724         a generic instantiation, use mono_class_from_mono_type instead of playing
11725         with MonoType directly.
11727 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11729         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11730         checks must ignore generic instantiations, so mono_class_has_parent is not
11731         suitable. Fixes #390128.
11733 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11735         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11736         it to avoid registering tokens during metadata generation. Fixes #390023.
11738 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11740         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11741         consistent.
11743         Contributed under MIT/X11 license.
11745 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11747         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11748         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11749         to fixup the EXE image.
11750         (mono_cleanup): Use mono_close_exe_image.
11751         (mono_close_exe_image): New function.
11752         * image.c: Include "marshal.h".
11753         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11754         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11755         counting when the image is loaded outside of mono_image_open_full. Set status
11756         based on GetLastError.
11757         * coree.c: Include required headers. Add init_from_coree.
11758         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11759         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11760         (_CorExeMain): Set init_from_coree.
11761         (CorExitProcess): Only call ExitProcess for now.
11762         (CorBindToRuntimeEx): New stub implementation.
11763         (CorBindToRuntime): New function.
11764         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11765         (MonoFixupExe): ILONLY executables require no fixups.
11766         (mono_set_act_ctx): New function to set activation context.
11767         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11768         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11769         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11770         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11771         as MONO_INTERNAL.
11772         * domain-internals.h: Add mono_close_exe_image.
11774         Contributed under MIT/X11 license.
11776 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11778         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11779         size for generic param and event tables. Fixes #388977.
11781 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11783         * loader.c (mono_method_signature): Use memory barriers because of the double
11784         checked locking pattern.
11786         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11787         aborting or aborted as well. Fixes #376391.
11788         
11789         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11790         existing runtime state in the Suspend handler during shutdown.
11792 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11794         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11796         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11797         which are starting up or shutting down.
11799         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11800         this function never returns if the runtime is already shutting down.
11802         * icall.c (ves_icall_System_Environment_Exit): Update after 
11803         mono_threads_set_shutting_down () signature change.
11804         
11805 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11807         * class.c: Added can_access_instantiation to verify if the instantiation
11808         is visible. Fix access check for nested types as they returned TRUE
11809         before doing type and generic instantiation visibility checks.
11811 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11813         * reflection.c (mono_reflection_create_generic_class): The created type
11814         must have a different container from its TypeBuilder. Otherwise they
11815         will end sharing generic arguments, which is wrong.
11817         Due to the sharing, making a generic instance of the created type using
11818         the TypeBuider generic arguments resulted in the generic type definition
11819         been returned, which is wrong as well.
11821         As a bonus the code was leaking the type_params array. This memory should
11822         be allocated from the image mempool.
11824         This fixes bug #354047.
11826 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11828         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11829         to here         as they are now used in assembly.c new code.
11830         Added a skipverification flag to MonoAssembly.
11831         New internal function mono_assembly_has_skip_verification.
11833         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11834         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11835         part of #387274.
11837 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11839         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11840         needed. Fixes #387034.
11842         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11844 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11846         * assembly.c (mono_assembly_load_reference): Prevent crash while
11847         disassembling Silverlight 2.0 executables while we still do not
11848         have GACed libraries.
11850 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11852         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11854 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11856         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11857         of the dynamic case. Fixes #387404.
11859 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11861         *verify.c (mono_verifier_is_class_full_trust): If under
11862         verify_all and the verifier mode was not set, only
11863         gac and corlib types are fulltrust. This makes --verify-all
11864         usable to detect unverifiable code, which is the expected
11865         use case.
11867 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11869         * verify.h: Ops, commited the header with debug
11870         enabled.
11872 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11874         * verify.c (merge_stack): Use the new value on unverifiable
11875         stack merges.
11877         * verify.c (verify_type_compatibility_full): Comparison
11878         of nullable types can't use mono_class_is_assignable_from.
11880         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11881         that makes all verification errors be reported.
11883         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11884         mono_method_verify.
11886 2008-05-05  Robert Jordan  <robertj@gmx.net>
11888         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11889         support for value types. See #386415.
11891         * object.c: comments.
11893         Code is contributed under MIT/X11 license.
11895 2008-05-05  Martin Baulig  <martin@ximian.com>
11897         * debug-mono-symfile.h
11898         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11899         for old pre-terrania symbol files.
11901 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11903         * mono-config.c: Add ppc64 architecture.
11905         Code is contributed under MIT/X11 license.
11907 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11909         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11910           PPC64 uses function descriptors as well.
11912         Code is contributed under MIT/X11 license.
11914 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11916         * object.c (compute_class_bitmap): Ignore literal static fields.
11918         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11919         var has an invalid format.
11920         (describe_ptr): Add some sanity checks for the vtable.
11921         (add_nursery_frag): Clear unused nursery fragments.
11922         (major_collection): Clear all remaining nursery fragments.
11924 2008-05-03  Robert Jordan  <robertj@gmx.net>
11926         * image.c, metadata-internals.h: add thunk_invoke_cache.
11928         * marshal.c, marshal.h: implement
11929         mono_marshal_get_thunk_invoke_wrapper ().
11931         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11933         Code is contributed under MIT/X11 license.
11935 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11937         * verify.c (do_leave): Empty the stack.
11939 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11941         * class.c (mono_class_is_assignable_from): Variance
11942         doesn't work between reference and value types. For example,
11943         given type C<T+>, C<int32> is not assignable to C<object>.
11944         Break the argument checking loop on first error. 
11946 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11948         * icall.c : base64_to_byte_array() needs some more strict
11949           check for sequence of '=' characters. Patch by Santa
11950           Marta (http://deee.g.hatena.ne.jp/santamarta).
11952           Contributed under MIT/X11 license.
11953           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11955 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11957         * domain.c: Disable LoadLibrary support to fix Win32 build.
11959         Code is contributed under MIT/X11 license.
11961 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11963         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11964         to help with cache behaviour.
11966 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11968         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11969         method. 
11971 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11973         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11975 2008-05-01  Dick Porter  <dick@ximian.com>
11977         * process.c (process_get_fileversion): Only pass 16 bits of
11978         language ID to VerLanguageName.  Fixes bug 381204.
11980 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11982         * verify.c (mono_method_verify): Fix the comparison
11983         operator for code bounds check.
11985 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11987         * verify.c (mono_method_verify): Check the bounds of
11988         all access of the code array.
11990 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11992         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11994 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11996         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11997         not valid.
11999 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12001         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12002         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12003         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12004         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12005         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12006         mono_runtime_load.
12007         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12008         runtime initialization from metadata.
12009         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12010         (mono_set_rootdir): Use mono_get_module_file_name.
12011         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12012         handles.
12013         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12014         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12015         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12016         MonoCLIImageInfo. Add support for module handles.
12017         (load_cli_header): Update mono_cli_rva_image_map signature.
12018         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12019         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12020         (mono_image_rva_map): Add support for module handles.
12021         (mono_image_ensure_section_idx): Add support for module handles.
12022         (mono_image_close): Add support for module handles.
12023         (do_load_header): Add support for module handles.
12024         (mono_image_open_from_module_handle): New function for internal use.
12025         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12026         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12027         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12028         handles.
12029         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12030         * image.h: Add mono_image_fixup_vtable.
12031         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12032         support.
12033         * coree.h: New file.
12034         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12035         unsupported native code.
12036         (mono_marshal_set_callconv_from_modopt): New function splitted from
12037         mono_marshal_get_managed_wrapper.
12038         (mono_marshal_get_managed_wrapper): Use
12039         mono_marshal_set_callconv_from_modopt.
12040         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12041         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12042         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12043         that results in a deadlock when the runtime is loaded in _CorDllMain.
12044         * Makefile.am: Add coree.c and coree.h.
12046         Contributed under MIT/X11 license.
12048 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12050         * generic-sharing.c: Search for type arguments in array element
12051         types as well.
12053 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12055         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12057         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12059         * object.c: Don't setup the RGCTX when the vtable is created,
12060         because we're setting it up lazily now.
12062 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12064         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12065         64 bit support.
12067 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12069         * verify.c (verify_class_for_overlapping_reference_fields): 
12070         If class is under fulltrust allow reference types to overllap
12071         if they have the same RVA.
12073 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12075         * pedump.c: Added new flag valid-only, that makes the verifier
12076         behaves just like --security=validil. It won't fail type load
12077         due to unverifiable restrictions.
12079 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12081         * class-internals.h (struct MonoMethod): Added a verification_success
12082         field to cache verifier executions. Reduced MonoMethod:slot size by
12083         one bit.
12085 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12087         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12088         instead of a 'vt' argument to save an indirection and to allow these to be used
12089         for valuetypes.
12090         (scan_vtype): New helper function to scan an area using a gc descriptor.
12091         (mono_gc_wbarrier_value_copy): Implement this.
12092         (handle_remset): Add support for REMSET_VTYPE.
12093         (find_in_remset_loc): Ditto.
12094         (mono_gc_base_init): Allow some debugging options to be controlled through the
12095         use of the MONO_GC_DEBUG env variable.
12096         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12097         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12099 2008-04-23  Martin Baulig  <martin@ximian.com>
12101         * domain.c (mono_domain_create): Move the call to
12102         mono_debug_domain_create() down, after allocating the domain id.
12104 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12106         verify.c (verify_class_for_overlapping_reference_fields): Skip
12107         static fields while verifying for overlapping fields as they
12108         don't matter at all.
12110 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12112         * domain-internals.h: added a declaration of
12113         mono_make_shadow_copy.
12115         * assembly.c (mono_assembly_open_full): shadow copying of
12116         assemblies moved to here, so that all the assemblies within the
12117         application domain's private binary directories can be
12118         processed. Fixes bug #380546
12120         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12121         mono_make_shadow_copy and made non-static. The decision whether
12122         to shadow-copy an assembly is made based on its location - it's
12123         copied if it's in one of the private application domain binary
12124         directories and its different to the target file in the shadow
12125         directory. Fixes bug #380546
12127 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12129         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12131         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12132         types.
12134         * reflection.c (mono_image_create_token): Handle 
12135         Method/ConstructorOnTypeBuilderInst.
12136         (resolve_object): Ditto.
12137         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12138         so it can be called from resolve_object. Also handle the case when the inflated
12139         class already has its methods setup.
12141 2008-04-21  Martin Baulig  <martin@ximian.com>
12143         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12145 2008-04-20  Geoff Norton  <gnorton@novell.com>
12147         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12148         pointer dereference.
12150 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12152         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12153         portability API to look up the assembly file. Fixes behavior in
12154         situations when the application has a bin/ directory, but the
12155         assembly search patch refers to Bin/ (and thus the requested file
12156         name is Bin/SomeLibrary.dll). Fixes bug #379888
12158 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12160         verify.c (mono_type_is_generic_argument): Extracted this check
12161         from a dozen places to here.
12163         verify.c: Fixed all issues related to boxing generic arguments
12164         and their constraints.
12166 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12168         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12170 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12172         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12173         isn't finished yet. Fixes #363447.
12175 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12177         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12178         Fixes #346419.
12180 2008-04-13  Jb Evain  <jbevain@novell.com>
12182         * domain.c: update the 2.1 profile versions.
12183         Merged from the Moonlight 2 branch.
12185 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12187         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12188         mscorlibs for the non-refonly case as well.
12190         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12191         in mono_assembly_load_from_full (). Fixes #378924.
12193 2008-04-11  Geoff Norton  <gnorton@novell.com>
12195         * icall.c: The global extern environ doesn't exist on Mac.  We
12196         need to call NSGetEnviron instead.
12198 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12200         verify.c: Add generic method constraint verification.
12202 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12204         class.c (mono_class_inflate_generic_method_full): Add a long
12205         explanation to the is_mb_open hack. Remove the FIXME.
12207 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12209         * verify.c (mono_method_verify): Mark all unknown opcodes
12210         as invalid. Mark jmp as unverifiable.
12212 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12214         * verify.c: Add code to do type constraint verification on class instances.
12216         * verify.c (mono_verifier_verify_class): Use the type constraint 
12217         verification code.
12219 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12221         * class.c (mono_class_get_field_default_value): Don't pass cindex
12222         as hint to mono_metadata_get_constant_index. The local is not initialized
12223         and should contain garbage most of the time. This could only work
12224         with a lot of luck.
12226 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12228         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12230 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12232         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12234         * class.c (mono_class_from_generic_parameter): Save the token of the
12235         generic param in MonoClass::sizes.generic_param_token.
12237         * reflection.c (mono_custom_attrs_from_class): If the class type is
12238         VAR or MVAR retrieve the attributes of the generic param.
12240 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12242         * class.c (mono_class_init): Do class verification if the verifier
12243         is enabled.
12245 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12247         * verify-internal.h: Added mono_verifier_verify_class.
12249         * verify.c: Added mono_verifier_verify_class. It checks for
12250         classes with explicit layout that have overlapping reference fields.
12252         * pedump.c: Init the verifier state prior to verification. Fixed
12253         command line arguments.
12255 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12257         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12259 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12261         * verify-internals.h: Fix a warning.
12263 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12265         * verify-internals.h: New header with the verifier configuration
12266         extracted from mini.c.
12268         * verify.c: Implemented the new functions exported by verify-internals.h.
12270 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12272         * verify.c: Add proper verification of ckfinite.
12274 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12276         * verify.c (do_conversion): Improved error message to something
12277         more meanfull.
12279         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12280         with primitive types.
12282 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12284         * verify.c: Added tail prefix checking. Marked icall
12285         as unverifible.
12287 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12289         * verify.c: Fix the detection of branches to the middle
12290         of an instruction.
12292 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12294         * verify.c: Implemented verification of volatile. and
12295         unaligned. prefix. Check if a type is valid after retrieving it.
12297 2008-04-01  Dick Porter  <dick@ximian.com>
12299         * process.c (process_get_fileversion): If there's no string block,
12300         set the file language to en_US.  Fixes the other new part of bug
12301         374600.
12303 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12305         * class.c: New functions mono_method_can_access_field_full and
12306         mono_method_can_access_method_full. They perform type visibility
12307         and type site check.
12309         * class-internal.h: Added exported functions.
12311         * verify.c: Use new functions to implement proper visibility checks.
12313 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12315         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12317 2008-03-28  Dick Porter  <dick@ximian.com>
12319         * process.c (process_get_fileversion): Use the first language ID
12320         we see, rather than insisting on an invariant language.  Fixes bug
12321         374600.
12323 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12325         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12326         the streams to fix reading of invalid memory later.
12328         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12329         to ease debugging.
12331 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12333         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12334         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12336 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12337         * threads.h: Added MonoThreadManageCallback type and
12338         mono_thread_set_manage_callback prototype
12339         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12340         (used to store the mono_thread_manage callback).
12341         * threads.c: Added mono_thread_set_manage_callback, and handle
12342         "MonoThread->manage_callback" in build_wait_tids.
12344 2008-03-26  Dick Porter  <dick@ximian.com>
12346         * process.c (process_get_fileversion): Set FileVersionInfo strings
12347         to Empty when the resource doesn't have the particular info.
12348         Fixes bug 355717.
12350 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12352         * verify.c (mono_method_verify): Proper prefix validation.
12354 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12356         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12357         itself in a separate argument instead of throwing them. Fixes #373448.
12359         * appdomain.c: Bump corlib version.
12361 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12363         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12365 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12367         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12368         version macros.
12370 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12372         * generic-sharing.c, class-internals.h: Code for putting
12373         reflection types into the runtime generic context.
12375 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12377         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12378         Fixes #340662. 
12381 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12383         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12385         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12387         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12389         * verify.c (do_cast): Let the result value keep the boxed status.
12391         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12393 2008-03-17  Jb Evain  <jbevain@novell.com>
12395         * reflection.c: when running on a 2.0 runtime, emit
12396         unconditionally the #~ header version as 2.0, and the
12397         CLI header version as 2.5, for symmetry's sake with csc.
12399 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12401         * class.c: Remove the unused cache_interface_offsets stuff.
12403         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12404         profiler.c: Fix warnings.
12406 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12408         * generic-sharing.c, class-internals.h: Support for putting
12409         methods into the runtime generic context.
12411 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12413         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12414         classes which are generic instances of not-yet finished typebuilders. Fixes
12415         #351172.
12417         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12419 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12421         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12423         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12424         field, replace it with a hash table in MonoDynamicImage.
12426         * reflection.c (inflate_mono_method): Access the generic definition object from
12427         image->generic_def_objects instead of imethod->reflection_info.
12429         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12431         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12432         
12433         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12434         function in reflection.c so it is easier to keep in sync with the dynamic image
12435         creation code.
12437         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12438         mono_image_close ().
12440 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12442         * class.c (mono_class_generic_sharing_enabled): Disable generic
12443         sharing for all architectures except AMD64 and x86 to fix build.
12445 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12447         * verify.c: Use the generic definition MonoGenericContext when available.
12448         Remove code for checking generics instance compatibility in favor of
12449         mono_class_is_assignable_from.
12451 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12453         * marshal.c, marshal.h, metadata-internals.h, image.c,
12454         wrapper-types.h: New wrapper for invoking a shared static method
12455         without having to pass the runtime generic context argument.
12457 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12459         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12461 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12463         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12464         
12465         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12466         create a token from a FieldOnTypeBuilderInst.
12467         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12468         (resolve_object): Ditto.
12470         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12471         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12473 2008-03-14  Martin Baulig  <martin@ximian.com>
12475         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12477         * debug-mono-symfile.h
12478         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12479         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12481 2008-03-10  Martin Baulig  <martin@ximian.com>
12483         * debug-mono-symfile.h
12484         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12485         `lexical_block_table_offset'.
12486         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12487         `lexical_blocks'.
12488         (MonoSymbolFile): Added `version'.
12490         * mono-debug.h
12491         (MonoDebugLexicalBlockEntry): Removed.
12492         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12493         `lexical_blocks'.
12495         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12496         blocks here; the debugger now does this internally.
12498 2008-02-27  Martin Baulig  <martin@ximian.com>
12500         * object.c (mono_runtime_exec_main): Call
12501         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12502         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12504 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12506         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12507         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12509 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12511         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12512         ldftn with a virtual method.
12514 2008-03-13  Geoff Norton  <gnorton@novell.com>
12516         * decimal.c:  Only include memory.h if the platform has it.
12518 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12520         * assembly.c, class.c, metadata-internals.h: make sure public key
12521         tokesns are compared in a case-insensitive way. Also, all
12522         the lookups in the GAC use a lowercase public key token
12523         (gaacutil already does the lowercasing on install). Fixes
12524         bug #369541.
12526 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12528         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12529         and return value.
12531 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12533         * image.c: when someone loads a mscorlib from a file, return the
12534         currently loaded mscorlib (fixes bug #369253).
12536 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12538         * class.c: handle types with no parents by forcing them to have
12539         System.Object as a parent and marking them as broken (this currently
12540         allows the first part of bug #369173 to work as well, likely because
12541         we don't check for typeload exceptions everywhere yet).
12543 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12545         * class.c: more complete check that types belong to corlib
12546         (fixes second part of bug #369173).
12548 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12550         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12551           "inline" to "__inline" before including mono-membar.h.
12552           
12553         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12554           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12555           MSVC builds.
12557         Contributed under MIT/X11 license.
12559 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12561         * verify.c (do_invoke_method): Remove return type validation.
12563         * verify.c (do_ret): Do return type validation at return site instead of
12564         call site.
12566 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12568         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12570         * verify.c: Some todos cleaned and improved a few error messages.
12572 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12574         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12576 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12578         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12579         system types correctly.
12581         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12582         function.
12584 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12586         * assembly.c (build_assembly_name): Fix a warning.
12588 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12590         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12591         the called function takes an object type argument. Fixes storing or
12592         valuetypes across remoting as well as reducing memory usage.
12593         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12594         stfld_remote wrapper caches.
12596 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12598         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12599         is not found.
12601         * reflection.c (mono_image_register_token): New helper function to save
12602         a token->object mapping.        
12604         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12605         managed code.
12607         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12608         one dimension arrays. Fixes #367670.
12609         (mono_reflection_get_type_internal): Ditto.
12611 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12613         * marshal.c: mono_load_remote_field_new() always returns object.
12614         so use the proper signature (fixes bug #366445).
12616 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12617         
12618         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12619         add an 'inline_failure' flag instead.
12621 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12623         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12624         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12625         contains the location of "this", used for exception handling.
12627 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12629         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12630         their size on all platforms for perf reasons.
12632 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12634         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12635         object-internal.h
12637         * object-internal.h: Same.
12639 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12641         * reflection.h: Fix the build I just broke.
12643 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12645         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12646         Test if a token is valid, this remove explicit usage of 
12647         MonoDynamicImage::tokens from the verifier code.
12649         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12651         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12652         instead of direct access to MonoDynamicImage::tokens.
12654 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12656         * verify.c (token_bounds_check): Fix the build I just broke.
12658 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12660         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12662         * verify.c (verifier_load_method): Fixed the errors message.
12664         * verify.c (mono_method_verify): Fixed a debug message.
12666 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12668         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12669         mono-perfcounters.h, class-internals.h: support for predefined
12670         writable counters, query of categories and counters, bugfixes.
12672 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12674         * verify.c (do_refanytype): Verify the refanytype opcode.
12676         * verify.c (mono_method_verify): Use do_refanytype.
12678 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12680         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12682         * verify.c (mono_method_verify): Use do_mkrefany.
12684 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12686         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12687         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12688         implementation.
12690 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12692         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12693         the type load exception.
12695 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12697         * verify.c: Added a few FIXME for method signatures
12699         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12700         of mono_method_get_signature and get vararg call working. Removed unused
12701         checks for return value.
12703         * verify.c (do_refanyval): Verify the refanyval opcode.
12705         * verify.c (mono_method_verify): Implemented verification of arglist and
12706         use do_refanyval.
12708 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12710         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12711         vtypes to marshal.c.
12713         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12714         it works for AOT as well.
12716 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12718         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12719         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12720         the system time is adjusted.
12722 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12724         * icall.c, icall-def.h: use the new time functions (fixes the
12725         non-monotonic behaviour of TickCount).
12727 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12729         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12730         it breaks the build.
12731         
12732         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12733         cattr is not finished yet.
12735 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12737         * verify.c: Proper token validation for field, method and type.
12739 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12741         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12743         * loader.c (method_from_memberref): Generate type load error instead of method missing
12744         if the type is not found.
12746 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12748         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12749         some of the conversions caused the generation of a marshal directive exception.
12751 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12753         verify.c: Report which exception should be thrown by the JIT.
12754         Added a lot of FIXME notes.
12756 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12758         * generic-sharing.c: Runtime generic context slots are not
12759         instantiated on init anymore.  Instead, provide function to do the
12760         instantiating on demand.
12762         * class-internals.h: Added vtable to runtime generic context.
12763         Macros for encoding direct and indirect slot offsets in one
12764         guint32.
12766 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12768         * object.c, generic-sharing.c: Moved some generic sharing code
12769         from object.c to generic-sharing.c.
12771         * generic-sharing.c: Added support for extensible runtime generic
12772         context.
12774         * metadata-internals.h: Two new hash tables in MonoImage for
12775         extensible runtime generic context support.
12777         * domain.c: Unregister generic vtables upon domain unloading.
12779         * image.c: Destroy new hash tables upon image unloading.
12781         * metadata.c: Unregister generic subclasses upon image unloading.
12783         * class-internals.h: New data structure for runtime generic
12784         context template.  New fields in the runtime generic context for
12785         extensible part.
12787         * Makefile.am: Added generic-sharing.c.
12789 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12791         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12792         there is a pending loader exception, raise it.
12794         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12795         same.
12797         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12798         same.
12800         Fixes #363450.
12802 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12804         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12806         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12807         
12808         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12809         ref-only requests for compatibility with MS.
12811 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12813         * reflection.c (mono_custom_attrs_from_method): Don't silently
12814         return an empty list for generic method instances.
12815         (mono_custom_attrs_from_param): Likewise.
12817 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12818             Raja R Harinath  <harinath@hurrynot.org>
12820         Fix #354757
12821         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12822         * class.c (mono_class_inflate_generic_method_full): Initialize it
12823         when a fully-open method is instantiated.
12824         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12825         to new field.
12826         * reflection.c (inflate_mono_method): Don't create a temporary context.
12828 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12830         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12831         Compute correct value, to prepare for imethod->reflection_info going away.
12833 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12835         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12837 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12839         * verify.c: Implement skip visibility flag.
12841 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12843         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12844         which contains an extra field to tell the kind of exception that should be thrown.
12846         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12848 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12850         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12851         'method' is updated.
12853 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12855         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12856         explicit layout as well. Fixes #360375.
12858 2008-02-11  Geoff Norton  <gnorton@novell.com>
12860         * loader.c: Guard and dereference against inflated generic methods
12862 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12864         * class.c: Include Retargetable spec in assembly name.
12865         * assembly.c: Always include PublicKeyToken spec in assembly name
12866         (with value "null" if assembly is not signed), and include
12867         Retargetable spec.
12868         * icall-def.h: Added icall for Assembly.get_fullname.
12869         * icall.c: Added icall returning the fullname of an assembly.
12871 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12873         * class.c (mono_class_setup_vtable_general): Add a missing call to
12874         mono_class_setup_methods () which is needed in the AOT case.
12876 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12878         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12879         stack type of the given MonoType.
12881         * verify.c (verify_type_compatibility_full): Handle the void type.
12883         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12884         way stack merging works.
12886         * verify.c (store_local): Improved verification message.
12888         * verify.c (do_branch_op): If the merging is invalid, the method
12889         is unverifiable and not invalid. Improved error message.
12891         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12892         a reference type diferent than System.Object. Improved error
12893         message.
12895 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12897         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12899         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12900         type of an enum even if the argument is byref.
12902         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12903         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12905         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12907         *verify.c (verify_type_compatibility_full): Make enum types
12908         compatible with their base types.
12910         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12911         types are compatible for the special case of a boxed valuetype and
12912         System.Object.
12914         * verify.c (verify_stack_type_compatibility): The function
12915         is_compatible_boxed_valuetype was extracted from here.
12917         * verify.c (push_arg): Only set ctx->has_this_store if the method
12918         is not static.
12920         * verify.c (do_ldelem): Fixed a typo in an error message and added
12921         strict check for mixing int32 and native int as the array type
12922         and ldelem type.
12924         * verify.c (merge_stacks): Consider boxed valuetypes in the
12925         compatibility checks.
12927 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12928         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12930 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12931         *class.c: use_new_interface_vtable_code: renamed the env var to have
12932         a "MONO_" prefix, and fix the logic to enable it by default.
12934 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12935         *class.c:
12936         mono_class_setup_vtable_general: rewrote the way in which interface
12937         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12938         makes the code more maintainable.
12939         For now the old code is still there, and can be activated setting
12940         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12942 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12944         * verify.c: guarded some debug functions around and #ifdef.
12946         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12948 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12950         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12951         changes for now since they seem to break too many things.
12953 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12955         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12956         mono_marshal_find_nonzero_bit_offset): Added macro and function
12957         for finding the byte- and bit-offset of a bitfield within a
12958         struct.
12960 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12962         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12963         (mono_marshal_get_struct_to_ptr): Ditto.
12965         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12966         cctor_signature.
12968 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12970         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12971         between methods for non-corlib types.
12973 2008-02-02  Geoff Norton  <gnorton@novell.com>
12975         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12976         generic parameters as well. (Fixes #342536)
12978 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12980         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12982         * verify.c (do_invoke_method): Fix for calling with byref structs.
12984         * verify.c (do_cast): push a boxed value type based on the type token and not
12985         the type of stack.
12987 2008-01-31  William Holmes  <billholmes54@gmail.com>
12989         * process.c (process_module_string_read): Check the size returned form 
12990           VerQueryValue to avoid out of memory exception. 
12992 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12994         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12995         Handle properly modules which are not in the moduleref table. Fixes
12996         #356938.
12998 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13000         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13001         the dynamic case which is now in managed code.
13002         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13004         * marshal.c (mono_string_to_bstr): Fix a warning.
13005         (init_com_provider_ms): Ditto.
13007         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13009         * exception.c (mono_get_exception_out_of_memory): New helper function.
13011 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13013         * marshal.c: Add support for BSTR marshalling
13014         using other COM systems.
13016         Code is contributed under MIT/X11 license.
13018 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13020         * object.c (mono_runtime_invoke_array): reverted previous
13021         commit as it breaks the build.
13023 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13025         * object.c (mono_runtime_invoke_array): Verify arguments for
13026         invalid types. Fixes #348522.
13028 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13030         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13031         non-final virtual calls using call. 
13033         * verify.c (do_invoke): fixed some TODOs.
13035         * verify.c (push_arg): set has_this_store for "ldarga 0".
13037 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13039         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13040         which belong to an inflated class. Fixes #356531.
13042 2008-01-26  Robert Jordan  <robertj@gmx.net>
13044         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13045         which resort to FindFirstFile when a certain error condition
13046         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13047         Code is contributed under MIT/X11 license.
13049 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13051         * marshal.c (emit_marshal_string): Fix out string marshalling
13052         to use specified encoding. Fixes #323900.
13054         Code is contributed under MIT/X11 license.
13056 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13058         * class.c (mono_class_inflate_generic_method_full): Don't modify
13059         iresult->context after cache check.
13061 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13063         * class.c (mono_class_inflate_generic_method_full): Change the
13064         struct assignments to memcpy for better visibility and add some comments.
13066 2008-01-23  Dick Porter  <dick@ximian.com>
13068         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13069         procedure, and make it work on windows.
13071 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13073         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13074         a MonoReflectionTypeBuilder since it is always of that type.
13076         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13078         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13080         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13081         
13082         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13084         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13086         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13087         instantiations from the type cache.
13089 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13091         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13093         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13095 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13097         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13099         * verify.c (mono_method_verify): removed old TODO
13101 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13103         * verify.c (do_newobj): add visibility check.
13105 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13107         * verify.c (do_load_function_ptr): add visibility check.
13109 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13110         *class.c:
13111         mono_generic_class_get_class: hook profiler events.
13112         mono_field_get_offset: added to support heap-shot in the new profiler.
13113         *class.h: exported mono_field_get_offset.
13114         * reflection.c:
13115         mono_reflection_setup_internal_class: hook profiler events.
13117 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13119         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13120         argument here too and use it to avoid checking for pending exceptions if 
13121         possible.
13123 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13125         * assembly.c (build_assembly_name): add arg for passing the assembly
13126         flags. Do not consider a PublicKey with value "null" valid.
13127         (mono_assembly_name_parse_full): added boolean argument that will be
13128         set if the assembly name contains a PublicKeyToken spec. Added support
13129         for the Retargetable spec for which only Yes or No are allowed as valid
13130         value. Consider assembly name invalid if Retargetable spec is set, but
13131         either version, culture or public key (token) are not specified.
13132         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13133         with implementation in assembly.c.
13134         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13135         from MonoAssemblyName.
13136         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13137         introduced argument for mono_assembly_name_parse_full to know if the
13138         assembly name has a PublicKeyToken spec, and if it has instruct
13139         fill_reflection_assembly_name to use default value for keyToken (if
13140         PublicKeyToken is null).
13142 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13144         * verify.c (mono_method_verify): fixed ovf ops with
13145         float values. They are unverifiable now.
13147 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13149         * class.c (set_failure_from_loader_error): add BadImageException to the
13150         list of exceptions that can cause a type to fail to load.
13152         * class.c (mono_class_get_exception_for_failure): same.
13154 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13156         * verify.c (in_any_exception_block): added, check if offset
13157         is part of any exception handling clause.
13159         * verify.c (get_stack_type): added VAR and MVAR types.
13161         * verify.c (do_stobj): better error messages.
13163         * verify.c (do_cpobj): added, check cpobj.
13165         * verify.c (do_initobj): added, check initobj.
13167         * verify.c (do_sizeof): added, check sizeof.
13169         * verify.c (do_localloc): added, check localloc.
13171         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13173 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13175         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13176         save_lmf/restore_lmf opcodes.
13178         * threads.c (mono_threads_install_notify_pending_exc): New function to
13179         install a callback notifying the JIT there is a pending exception on a thread.
13180         (mono_thread_request_interruption): Call the new callback.
13181         (mono_thread_get_and_clear_pending_exception): New function to return the
13182         exception pending on a thread.
13184         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13185         to turn off checking for pending exceptions.
13186         (mono_marshal_get_native_wrapper): Ditto.
13188 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13190         * threads-types.h: Get rid of the unnecessary extern declarations.
13192 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13194         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13195         return field from parent class if not private.
13196         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13197         returns fields from parent class if they are not private.
13198         (method_nonpublic): added function to determine if a given method
13199         should be considered non-public. Returns false for private methods
13200         on parent class, and internal methods from parent on the 1.0 profile.
13201         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13202         use method_nonpublic function to determine whether method should be
13203         returned.
13204         (property_accessor_public): use newly introduced method_nonpublic
13205         function to determine whether accessor is non-public. 
13206         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13207         event from parent class if not private. Only return static event if
13208         Static flag is set, and only return static event from parent class if
13209         FlattenHierarchy flag is set.
13210         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13211         include non-private events from parent class.
13213 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13215         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13216         warning.
13218 2008-01-16  Wade Berrier <wberrier@novell.com>
13220         * security.c: Add assembly.h header to appease some warnings
13222 2008-01-16  Dick Porter  <dick@ximian.com>
13224         * process.c (process_module_string_read): Remove trailing null
13225         when saving string.
13227 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13229         * class-internals.h: A new data structure describing the layout of
13230         a runtime generic context (MonoRuntimeGenericContextTemplate).
13232         * metadata-internals.h: Added a hash table to MonoDomain that maps
13233         from open generic classes to their runtime generic context
13234         templates.
13236         * object.c: Building of the runtime generic context, including
13237         proper handling of generic type arguments of superclasses.
13238         Building of the runtime generic context according to the template.
13240 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13242         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13243         Fixes #350856.
13245         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13246         mono_portability_find_file (). Fixes #325466.
13247         (mono_image_get_public_key): Fix a warning.
13249 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13251         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13252         Fixes #353550.
13253         (mono_class_from_name_case): Ditto.
13255 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13257         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13258           common storage for the tables used in the System/NumberFormatter class.
13260 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13262         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13264 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13266         * verify.c (get_boxable_mono_type): check if the token is valid.
13268         * verify.c (set_stack_value): changed to add an error if an
13269         invalid type is set on stack. Changed all callers due to signature change.
13271         * verify.c (do_stobj): implement stobj validation.
13273 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13275         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13276         set container->is_method, it was set earlier.
13278         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13279         generic methods.
13281         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13282         is_method of the generic container to TRUE for methods.
13284 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13286         * metadata.c (type_in_image): Handle type parameters properly.
13288         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13289         memory ownership of this structure.
13291 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13293         * verify.c (get_boxable_mono_type): make typedref types been just
13294         unverifiable. check for void type.
13296         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13298         * verify.c (do_load_function_ptr): accept method spec tokens.
13300 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13302         * marshal.c (mono_class_native_size): Always set *align even if this is called
13303         recursively.
13305 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13307         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13308         out-of-date.
13310 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13312         * verify.c: removed some old unused tables. A huge bunch of small fixes
13313         to things found while testing the verifier with mono basic.
13315         * verify.c (dump_stack_value): dump null literal flag to.
13317         * verify.c (verify_type_compatibility_full): fix comparison
13318         for types that have a generic super type.
13320         * verify.c (verify_stack_type_compatibility): fix compatibility
13321         between null literals and reference types. fix compatibility between
13322         boxed valuetypes and object. fix corner case test for enums.
13324         * verify.c (do_cmp_op): proper verification of cgt.un in case
13325         of reference types.
13327         * verify.c (do_invoke_method): fix error message.
13329         * verify.c (do_store_indirect
13331         * verify.c (check_is_valid_type_for_field_ops): proper verification
13332         of managed pointers to valuetypes and boxed valuetypes. proper verification
13333         of null literals.
13335         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13336         allow token to be a reference type.
13338         * verify.c (do_cast): proper handling of boxes valuetypes.
13340         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13341         in object[].
13343         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13344         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13345         fixed the decoding of unbox_any
13347 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13349         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13351 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13353         * verify.c (do_newobj): do delegate verification.
13355         * verify.c (verify_delegate_compatibility): perform delegate
13356         verification.
13358         * verify.c (verify_ldftn_delegate): perform tests related to
13359         ldftn delegates.
13361         * verify.c (mono_delegate_signature_equal): perform the
13362         slightly diferent signature comparison required by delegates.
13364         * metadata.c (mono_metadata_type_equal_full): added and exported
13365         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13366         allows signature only comparison.
13368         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13369         as MONO_INTERNAL.
13371 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13373         * verify.c: added a bunch of stack_slot_* functions to
13374         make access to stack slot type easier. This is required to
13375         allow optional flags, like null literal, boxed value and
13376         this pointer.
13377         All access paths to IlStackDesc::stype have been changed 
13378         to use these new funcions.
13379         Removed a bunch of unused functions and cleared all warnings.
13380         This patch introduces the usage of the this pointer and 
13381         boxed value flags.
13383 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13385         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13387 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13389         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13390         match managed version.
13392         * appdomain.c: Bump corlib version.
13393         
13394         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13395         argument.
13397 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13399         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13400         Set public key token to zero-length byte array if assembly is not
13401         strongnamed.
13403 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13405         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13406         writing a vtype array elem.
13408 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13410         * assembly.c (build_assembly_name): return FALSE if length of token is
13411         not 16 (if not "null").
13412         (mono_assembly_name_parse_full): return FALSE if value of version,
13413         culture, token or key is 0.
13414         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13415         specify whether public key and public key token must be set to default
13416         value (zero-length byte array) if not available. Set versioncompat to
13417         SameMachine. If public key is available or the default is set, then
13418         set PublicKey flag.
13419         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13420         is available, use empty byte array as default value. On the 2.0
13421         profile, use default value for public key token if not set.
13422         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13423         profile, use default value for public key if not set. On the 2.0
13424         profile, use default value for public key token if not set.
13425         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13426         default values for public key and public key token.
13428 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13430         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13431         field to keep it in synch with the managed object.
13433         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13434         delegates. Fixes #351520.
13436         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13437         contains defined memory.
13438         
13439         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13441         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13442         
13443         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13444         of the GC data structures.
13446         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13448         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13449         
13450         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13451         barrier.
13452         (mono_array_clone_in_domain): Ditto.
13453         (mono_array_clone_in_domain): Ditto.
13455         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13456         (cache_culture): Use a write barrier.
13458         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13459         (ves_icall_get_property_info): Ditto.
13461         * object.h (MONO_STRUCT_SETREF): New macro.
13463         * class-internals.h (MonoStats): Add some GC statistics.
13465         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13467 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13469         * exception.c (mono_exception_from_name_two_strings):
13470         Break from loop after method is found.
13472 2008-01-04  Dick Porter  <dick@ximian.com>
13474         * process.c (process_module_string_read): Rename variable to
13475         reflect correct usage, after fixing bug 345972.
13477 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13479         * verify.c (mono_type_create_fnptr_from_mono_method): 
13480         created a MonoType function pointer instance to be used during
13481         verification. The verifier releases this memory at end.
13483         * verify.c (mono_method_is_constructor): extracted repeated
13484         checks for constructor into a single class.
13486         * verify.c (do_push_field): use new extracted method
13487         for constructor check.
13489         * verify.c (do_newobj): same.
13491         * verify.c (do_ldftn): renamed to do_load_function_ptr
13492         and make it verify ldvirtftn too.
13494         * verify.c (mono_method_verify: proper verification
13495         of ldvirtftn. release created MonoMethod instances.
13497 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13499         * verify.c (token_bounds_check): added.
13501         * verify.c (do_ldftn): added.
13503         * verify.c (mono_method_verify): proper verificartion of ldftn.
13505 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13507         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13508         than the table row count. It's the resposibility of the caller to
13509         make the bounds check and raise the correct error.
13511         * metadata.c (mono_metadata_decode_row_col): Same.
13513         * loader.c (mono_get_method_from_token): perform bounds check
13514         on token for methoddef table.
13516 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13518         * icall.c
13519         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13520         assert into a negative result, the managed code already coped with
13521         that.
13523         Some folks on Windows reported this error. 
13525 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13527         * appdomain.c: Bump corlib version.
13528         * icall.c:
13529         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13530         CultureInfo.CreateCulture to create CultureInfo for name.
13531         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13532         create CultureInfo for name. Fixes bug #347174.
13534 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13536         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13537         flags.
13539         * verify.c (is_valid_branch_instruction): allow branching to the
13540         first instruction of the protected block.
13542         * verify.c (is_valid_cmp_branch_instruction): same.
13544         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13545         avoid double initialization.
13547         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13548         detect which cases the eval stack should just be copied.
13550         * verify.c (mono_method_verify): check if the eval stack
13551         is empty when entering a protected block.
13553 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13555         * verify.c: added is_clause_in_range, is_clause_inside_range,
13556         is_clause_nested and verify_clause_relationship. They perform
13557         the verifications stated in P1 12.4.2.7.
13559         * verify.c (mono_method_verify): remove some unused variables,
13560         add the new exception clause checks, add instruction border
13561         checks for protected block start/end, improved some error 
13562         messages and fixed a bug in the way invalid instruction access
13563         is detected.
13565 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13567         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13568         from GC 7.0 if available.
13570         * object.c: Remove an unused define.
13571         
13572         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13574         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13576         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13578         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13580         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13581         to take the same arguments as the other make_descr functions.
13583         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13585         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13586         directly.
13588         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13589         mini.c.
13591         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13592         call to boehm-gc.c.
13594         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13596         * null-gc.c (mono_gc_register_root): Fix a warning.
13598         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13600         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13601         (mono_gc_base_init): Call GC_init ().
13603         * null-gc.c: Define mono_gc_register_root () as a no-op.
13605         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13607 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13609         * verify.c: add prototype for merge_stacks at top
13611         * verify.c (do_switch): added.
13613         * verify.c (merge_stacks): on some cases the stack merging
13614         was not happening properly. Unequal stack sizes at merge
13615         points should be invalid.
13617         * verify.c (mono_method_verify): added more debug info on stack state.
13618         verify switch properly.
13620 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13622         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13623         marshal.h.
13625         * boehm-gc.c marshal.c: Include method-builder.h.
13627         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13629         * marshal.c: Remove some code which is now in method-builder.c.
13631 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13633         * method-builder.c: New file, extraction of the method builder functionality 
13634         from marshal.c.
13636         * marshal.c: Move the mb functions into method-builder.c.
13638         * marshal.h marshal.c: Export some mono_mb_... functions.
13640         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13642         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13643         the caller.
13645         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13647         * loader.c (mono_field_from_token): Ditto.      
13649         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13650         type as well.
13651         
13652         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13653         Fixes #342565.
13655         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13656         a helper function for setting it.
13658         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13660         
13661         * assembly.c: Significally simplify code now that referenced assemblies are 
13662         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13664         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13665         #349952.
13667 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13669         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13670         instructions that were target of branches or are at protected block boundaries.
13672         * verify.c (in_same_block): handle filter clauses.
13674         * verify.c (is_valid_branch_instruction): added. checks the target of
13675         instructions br or brtrue/false.
13677         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13678         binary branch instructions such as beq and bge.
13680         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13681         and made it pin the instruction as been part of the exception block.
13683         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13684         of in_same_block.
13686         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13687         of in_same_block.
13689         * verify.c (do_ret): ret from a protected block is unverifiable and
13690         not invalid.
13692         * verify.c (do_static_branch): verify br and br.s instructions.
13694         * verify.c (merge_stacks): add extra param to support detection
13695         of branches in the middle of instructions.
13696         
13697         * verify.c (mono_method_verify): verify branches and exception blocks
13698         that target the middle of instructions. Proper verification of br and br.s.
13700 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13702         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13703         skip_visibility field.
13704         (reflection_methodbuilder_from_dynamic_method): Ditto.
13706         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13707         registrations. Fixes #348193.
13709         * threads.h: Move the internal mono_thread_get_pending_exception () to
13710         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13712 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13714         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13715         icall registration. Fixes #348193.
13717         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13718         for corlib classes into object. Fixes #349621.
13720 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13722         * icall.c (property_accessor_nonpublic): new function to determine
13723         whether an accessor allows a property to be considered non-public.
13724         Returns false for private accessor(s) from parent class, and internal
13725         accessor(s) from parent on 2.0 profile (and higher).
13726         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13727         to determine whether property should be included if NonPublic flag
13728         is set. Fixes bug #349078.
13730 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13732         * verify.c (init_stack_with_value): added.
13734         * verify.c (mono_method_verify): extracted common
13735         code for exception initialization into init_stack_with_value.
13737         * verify.c (mono_method_verify): initialize the exception
13738         for handler clauses as well.
13740         * verify.c (mono_method_verify): fix the exception clause
13741         ordering rules, it should use handler end offset and not
13742         start offset.
13744 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13746         * rawbuffer.c: remove useless warning.
13748 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13750         * threads.h, threads-types.h: move functions to the correct header
13751         (fixes bug#349952).
13753 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13755         * verify.c (mono_method_verify): proper verification
13756         of exception handling clauses ranges and fallthru in
13757         and out of protected blocks.
13759 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13761         * verify.c (mono_method_verify): fixed compilation issue.
13763 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13765         * verify.c (mono_method_verify): a printf slipped in, changed
13766         to use verifier debug macro.
13768 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13770         * verify.c (is_correct_leave): check for filter clauses.
13772         * verify.c (do_filter): added.
13774         * verify.c (mono_method_verify): property verification of leave.
13777 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13779         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13780         Win32 build, until we figure out how to do the proper thing on
13781         Win32.
13783 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13785         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13786         by the previous patch.
13787         
13788         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13789         the assembly resolve handler for refonly assemblies.
13791 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13793         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13794         Make sure only one thread is allowed to commence shutdown, and
13795         don't allow new threads to be started once shutdown is in
13796         progress.
13798 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13800         * verify.c (is_correct_endfilter): added.
13802         * verify.c (is_unverifiable_endfilter): added.
13804         * verify.c (do_endfilter): added.
13806         * verify.c (mono_method_verify): property verification of endfilter
13807         and fixed a corner case or endfinally.
13809 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13811         * verify.h: new flags to support fail fast of unverifiable code and
13812         do non-strict verification. Non-strict verification is required to
13813         have MS runtime compatibility. There are a huge amount of unverifiable
13814         code that it accepts as verifiable. The strict mode verifies the code
13815         as the specs says.
13816         Non-strict mode will be required in cases where code needs to be
13817         accepted as verifiable but fails under strict mode.
13819         * pedump.c: added support to fail fast and non-strict verification.
13821         * verify.c: added support for both fail fast and non-strict verification.
13823 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13825         * verify.c (is_correct_endfinally): added.
13827         * verify.c (mono_method_verify): property verification of endfinally.
13829 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13831         * verify.c (in_any_block): check for filter clauses.
13833         * verify.c (is_correct_rethrow): added.
13835         * verify.c (mono_method_verify): property verification of rethrow.
13837         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13839 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13841         * verify.c (do_throw): added.
13843         * verify.c (mono_method_verify): property verification of throw
13845 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13847         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13848         assemblies. Fixes #346425.
13850 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13852         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13853         FieldBuilders.
13855         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13857         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13858         prevent asserts when this is called with a token which might not be valid.
13860         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13861         lookup_dynamic_token_class with valid_token == FALSE.
13863         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13865         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13867         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13868         
13869 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13871         * gc.c: Don't delay threadpool thread finalization unless Mono is
13872         shutting down.
13874 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13876         * threads.c: turn an assert into a non-fatal warning.
13878 2007-12-09  Robert Jordan  <robertj@gmx.net>
13880         * icall.c (GetVirtualMethod): Add missing argument validation.
13882 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13884         * verify.c (do_cast): added.
13886         * verify.c (mono_method_verify): property verification of castclass and isinst.
13889 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13891         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13893         * verify.c (do_stelem): added.
13895         * verify.c (mono_method_verify): property verification of stelem.X.
13897 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13899         * class.c, class-internals.h: Introduce an environment variable
13900         (MONO_GENERIC_SHARING) through which the extent of generic code
13901         sharing can be controlled (share all classes, share only corlib
13902         classes, or share nothing).
13904         * object.c: Only create runtime generic context for classes for
13905         which sharing is enabled.
13907 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13909         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13911         * verify.c (mono_method_verify): property verification of ldelem.any.
13913 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13915         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13916         added ldelem.X opcodes.
13918         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13920         * verify.c: proper verification of ldelem.X 
13922 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13924         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13926 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13928         * verify.c (mono_method_verify): null literal requires special handling,
13929         the value pushed on stack need to be flagged as so.
13931         * verify.c (do_ldelema): Verify ldelema properly.
13933 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13935         * verify.c: Verify ldlen properly.
13937 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13939         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13940         to the target object's type. Fixes #346160.
13942 2007-12-05  Dick Porter  <dick@ximian.com>
13944         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13945         Solaris needs the same workaround as BSD-derived systems.  Fixes
13946         bug 323524, patch by Burkhard Linke
13947         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13949 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13951         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13952         handle to use when error dialog is shown; otherwise, update mask
13953         to show no error dialog when an error occurs.
13955 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13957         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13959         * class.c (mono_class_get_field_default_value): New helper function to initialize
13960         field->def_type and field->data.
13962 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13964         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13965         the general one.
13967         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13969         * marshal.c: Avoid depending on delegate->method_info being set.
13971         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13972         
13973         * object.c (mono_delegate_ctor): Set delegate->method.
13975         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13977         * appdomain.c: Bump corlib version.
13979 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13981         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13982         equality check if we're comparing canonicalized MonoGenericInsts.
13984 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13986         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13987         accessing class->methods.
13989 2007-11-22  Dick Porter  <dick@ximian.com>
13991         * threads.c: Ensure that the synch_cs is set before trying to use
13992         it.
13994 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13996         * profiler.c: r89126 broke the statistial profiler, unbreak.
13998 2007-11-22  Martin Baulig  <martin@ximian.com>
14000         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14002         * mono-debug.c
14003         (mono_debug_debugger_version): Bump to 3.
14004         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14005         -> mono_debugger_class_initialized().
14007         * mono-debug-debugger.c
14008         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14010         * class.c
14011         (mono_debugger_start_class_init_func): Removed.
14012         (mono_debugger_class_loaded_methods_func): Added.
14013         (mono_class_setup_methods): Call it here.
14015 2007-11-22  Martin Baulig  <martin@ximian.com>
14017         * mono-debug.c
14018         (mono_debug_add_delegate_trampoline): New public method.
14019         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14021         * mono-debug.h
14022         (MonoSymbolTable): Added `global_data_table'.
14023         (MonoDebuggerTypeKind): Removed.
14025 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14027         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14028         these methods.
14030         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14031         
14032 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14034         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14036 2007-11-20  Martin Baulig  <martin@ximian.com>
14038         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14040         * mono-debug-debugger.c
14041         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14042         (mono_debugger_remove_breakpoint): Likewise.
14043         (mono_debugger_check_breakpoints): Likewise.
14044         (mono_debugger_register_class_init_callback): New public method.
14045         (mono_debugger_remove_class_init_callback): Likewise.
14046         (mono_debugger_add_type): Likewise.
14048         * mono-debug-debugger.h
14049         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14051 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14053         * class.c: more interface implementations needed for the
14054         array enumerator (fixes bug #341112).
14056 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14058         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14059         fix ParamName of ArgumentNullExceptions.
14061 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14063         * reflection.c (mono_reflection_encode_sighelper): Generate the
14064         modopts and modreqs.   I have a useless test that crashes monodis,
14065         but that shows the code working.
14067 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14069         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14070         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14072 2007-11-15  Dick Porter  <dick@ximian.com>
14074         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14075         When joining a thread, it's the thread that's calling Join that
14076         gets WaitSleepJoin state not the target.  Fixes the standalone
14077         test case in bug 334740, and hopefully the whole bug too.
14079 2007-11-15  Dick Porter  <dick@ximian.com>
14081         * process.c: Read file version info from the files pointed at by
14082         process modules, not the current process.  Fixes bug 315969.
14084         Use windows typedef names in some places to fix warnings on the
14085         windows build.
14087 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14089         * image.c, metadata-internals.h: Added a generic_class_cache hash
14090         to MonoImage for looking up generic classes when sharing generics.
14092 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14094         * sgen-gc.c: warning cleanups.
14096 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14098         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14099         inherited properties.
14101 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14103         * object.c, class-internals.h: Added more information to the
14104         runtime generic context.
14106 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14108         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14109         instead of just the target method. Generalize the abstract method handling to
14110         handle any non-static method.
14112         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14113         mono_marshal_get_delegate_invoke () signature change.
14115 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14117         * class.c, class-internals.h: Made
14118         mono_type_get_basic_type_from_generic () public.  Fixed member
14119         access check for shared generics.
14121         * loader.c: Don't insert field into field cache if it's part of a
14122         non-inflated generic class.
14124         * domain.c, domain-internals.h: The generic sharing context is now
14125         part of the jit info data structure.  Added two accessor
14126         functions.
14128 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14130         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14131         the array Get/Set/Address methods, since the JIT inlines them.
14133         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14135         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14136         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14138         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14139         mono_marshal_get_delegate_invoke signature change.
14141         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14142         an additional argument. Add support for invoking abstract methods.
14144         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14146         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14148 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14150         * class.c: Do field layout for open generic classes as well.
14152 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14154         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14155         other objects, because the threadpool is still around.  Put them
14156         in a list instead and after finalizing all other objects in the
14157         root domain shut down the thread pool and then finalize the
14158         threads.  Fixes bug #337383.
14160         * threads.c, thread-types.h: New mono_thread_create_internal()
14161         function for marking a thread with the threadpool flag before it
14162         started.  Set synch_cs to NULL after freeing it.
14164         * threadpool.c: Mark threadpool threads before they start.
14166 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14168         * reflection.h, reflection.c: don't export random functions
14169         and lazy load dbnull and missing objects.
14171 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14173         * class.c: Initialize COM types if COM interfaces
14174         are present (not just COM classes).
14175         
14176         Code is contributed under MIT/X11 license.
14178 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14179         * reflection.c:
14180         create_dynamic_mono_image: hook module profiler events (dynamic case).
14181         mono_image_basic_init: hook assembly profiler events (dynamic case).
14183 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14184         * profiler.c:
14185         simple_appdomain_unload: completely terminate the profiler
14186         instead of only processing the statistical samples.
14187         simple_shutdown: make sure this is really called exactly once,
14188         even in multithreaded applications, and always listen to
14189         appdomain events.
14190         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14191         here, the "[un]load" functions will do it.
14192         Fixes bugs #333791 and #325261.
14194 2007-11-07  Geoff Norton  <gnorton@novell.com>
14196         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14197         rather than depend on __APPLE__.
14199 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14201         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14203 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14205         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14206         UTF16 MonoString. Fix the crash from bug #335488
14208 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14210         * marshal.c: Correct (for non-Win32 OS) length != size in 
14211         mono_string_from_bstr. Fix #339530.
14213 2007-11-06  Geoff Norton  <gnorton@novell.com>
14215         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14216         to succeed
14218 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14220         * process.c: Added run-time GetProcessId API detection for Windows.
14222 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14224         * reflection.c  (mono_param_get_objects): If a parameter has the
14225         attribute [System.Runtime.InteropServices.Optional] we should
14226         set the DefaultValue of the ParameterInfo to be
14227         System.Reflection.Missing instead of DBNull.
14229         See bug #339013.
14231         (mono_get_reflection_missing_object): New method,
14232         returns the System.Reflection.Missing.Value singleton instance.
14234 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14236         * culture-info-table.h : regenerated.
14238 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14240         * icall.c: Use GetEnvironmentStrings on windows
14241         so we are using the same environment block as 
14242         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14243         #333740.
14244         
14245         Code is contributed under MIT/X11 license.
14247 2007-10-31  Martin Baulig  <martin@ximian.com>
14249         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14251         * mono-debug-debugger.h
14252         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14254 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14256         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14257         classes.
14259 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14261         * culture-info-table.h : regenerated.
14263 2007-10-30  Robert Jordan  <robertj@gmx.net>
14265         * icall-def.h, icall.c:
14266         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14268         Code is contributed under MIT/X11 license.
14270 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14272         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14273         inflated class instead of inflating them again.
14274         
14275         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14276         dynamic case.
14278         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14279         Call setup_supertypes () after klass->parent is set.
14280         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14282         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14283         for inflated instances of not yet created dynamic generic classes.
14284         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14285         times from inflated_method.
14286         (methodbuilder_to_mono_method): Ditto.
14288 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14290         * gc.c: code cleanup and removed old untested option of not creating the
14291         finalizer thread.
14293 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14295         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14296         creating a jump trampoline for dynamic methods.
14298 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14300         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14301         generic TypeBuilders when called from another method of the same type (bug #335131).
14304 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14306         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14307         doesn't seem to work perfectly.
14308         
14309         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14310         called multiple times.
14311         (methodbuilder_to_mono_method): Ditto.
14312         (resolve_object): Inflate FieldBuilder's.
14314 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14316         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14317         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14318         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14320 2007-10-26  Dick Porter  <dick@ximian.com>
14322         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14323         Thread initialisation changes
14325 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14327         * verify.c: fix compatibility check between arrays and System.Array
14329 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14331         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14332         too. Fixes #336999.
14334 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14336         * object.c (mono_value_box): Use typed allocation here.
14338 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14340         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14341         trampoline instead of compiling the method right away.
14343         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14345 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14347         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14348         related fields for dynamic classes. Fixes #334493.
14350 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14352         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14353         
14354         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14356         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14357         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14359         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14361         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14362         if needed.
14363         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14365 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14367         * marshal.c: Use correct key when removing item
14368         from ccw_hash.
14369         
14370         Code is contributed under MIT/X11 license.
14372 2007-10-17  William Holmes  <billholmes54@gmail.com>
14374         *marshal.c: Adding a case to marshal booleans to U1
14376         Code is contributed under MIT/X11 license.
14378 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14380         * class.c (mono_class_from_name): Search the modules compromising dynamic
14381         assemblies. Fixes #331601.
14383 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14385         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14386         exception if the type name contains an assembly component. Fixes #334203.
14388         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14389         modules inside dynamic assemblies. Fixes #334200.
14390         
14391         * reflection.c: Set image->public_key and image->public_key_length;
14393         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14394         fields.
14396         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14397         
14398 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14400         * metadata.c: Implemented correct comparing of generic classes.
14401         An inflated generic class can be equal to a non-inflated one if it
14402         is inflated with generic type variables as type arguments.  Fixes
14403         bug #333798.
14405 2007-10-15  Dick Porter  <dick@ximian.com>
14407         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14408         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14409         81646.
14411         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14412         instead of a monitor lock.  This means that monitor_try_enter and
14413         co can set the thread state safely.
14414         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14415         thread_interrupt_requested, so interrupt actually works.
14417         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14418         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14419         state accessor function
14421 2007-10-15  Martin Baulig  <martin@ximian.com>
14423         * mono-debug.h
14424         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14425         the debugger with the current runtime.
14427 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14429         * object.c, object-internals.h: added the ability to set a single
14430         trampoline for all the slots in a vtable.
14432 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14434         * marshal.c: deal with a possible race condition during multicast
14435         delegate invocation.
14437 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14439         * class.c: ensure value type methods don't have the synchronized
14440         flag set.
14442 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14444         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14445         breaks the build.
14447 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14449         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14450         to take an options parameter so that empty entries can be removed during
14451         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14453 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14455         * marshal.c: make sure we don't store the signature from a dynamic
14456         method into the runtime invoke cache (bug #327189).
14458 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14460         * marshal.c: make sure the wrapper methods are properly initialized.
14462 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14464         * metadata.c, metadata-internals.h: Generalized
14465         mono_type_stack_size() to mono_type_stack_size_internal() which
14466         takes an additional argument specifying whether it allows open
14467         types.
14469 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14471         * verify.c (do_invoke_method): handle typedbyref params
14472         correctly and check for unverifiable return values.
14474         * verify.c (do_newobj): fix a warning.
14476 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14478         * verify.c: don't tread typedbyref as allways unverifable,
14479         so uses, like (ld/st)loc.0 are valid. verify for the cases
14480         that it matters, like boxing related operations.
14482 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14484         * verify.c: add verification of the newobj opcode. verification
14485         of delegate instantation still missing due ldftn and virldftn not
14486         pushing the function type on stack
14488 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14490         * class-internals.h: Runtime generic context data structure
14491         definition.
14493         * object.c: Initialization of runtime generic context at runtime
14494         vtable creation time.
14496 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14497         * class.c (mono_class_create_from_typedef,
14498         mono_class_from_generic_parameter, mono_ptr_class_get,
14499         mono_fnptr_class_get, mono_bounded_array_class_get)
14500         * domain.c (mono_domain_create, mono_domain_free)
14501         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14502         * image.c (do_mono_image_load, mono_image_close):
14503         Hooked up load-unload profiler events.
14505 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14507         * domain.c: track statistics about the actual amount of native code
14508         allocated.
14510 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14512         * class.c: the valuetype enumerators don't have the additional
14513         supertypes interfaces.
14515 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14517         * class.c: need more interfaces setup for the IEnumerator<T>
14518         object created for arrays (tests/ienumerator-interfaces.2.cs).
14520 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14522         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14524 2007-10-05  Alp Toker  <alp@atoker.com>
14526         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14527         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14528         #315863.
14530 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14532         * verify.c (verify_type_compatibility_full): verification of
14533         compatibility improved, validates correctly non-strict checks between
14534         native int and I4 types different than (unsigned)int32.
14536         * verify.c (do_store_indirect): added, do all verification of
14537         ldind.X opcodes. 
14539         * verify.c (get_load_indirect_mono_type): renamed to
14540         get_indirect_op_mono_type, as it now returns the MonoType for 
14541         ldind.X and stind.X opcodes.
14543 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14545         * reflection.c: Fix the encoding of generic type definition for
14546         TypeBuilders.
14548         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14549         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14550         be made. Typespec check is done prior to typeref cache lookup.
14552         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14553         mono_image_typedef_or_ref_full.
14555         * reflection.c (encode_generic_class): encode the generic class
14556         directly instead of calling encode_type.
14558         * reflection.c (encode_type): encode the generic type definition
14559         MonoClass as a generic instantiation.
14561         * reflection.c (create_typespec): cache typespec tokens in
14562         the assembly->typespec cache. Don't create typespec for a generic
14563         instance MonoClass. Create typespec for the generic type defintion.
14565         * reflection.c (create_generic_typespec): encode the generic
14566         class directly instead of calling encode_type.
14568         * reflection.c (mono_image_create_token): encode the generic
14569         type definition not using a typespec for MonoType instances.
14572 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14574         Fix #328812
14575         * class.c (mono_image_init_name_cache): Don't return nested
14576         'protected internal' classes.
14577         (mono_class_from_name_case): Likewise.
14579 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14581         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14582           common function used by both DefaultConfig in System.dll and
14583           InternalConfigurationHost in System.Configuration.dll.
14585 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14587         * class.c: automatically add to vectors only a few essential explicit
14588         generic interfaces. The rest of the interfaces that arrays should
14589         provide are currently implicitly added (but still not lazily, see the
14590         design in the discussion of bug#325495 for the details of what is
14591         needed for that). Additionally, implicit interfaces are assigned the
14592         same vtable slot as the explicit interfaces (as they are compatible):
14593         this enables huge memory savings since we don't need to instantiate
14594         as many memthods and as large vtables anymore. Also, Since
14595         GetEnumerator<T> returns an instance of a type that is required to
14596         support a similarly large set of interfaces as arrays, we add
14597         implicit interfaces and interface offset sharing support to those
14598         types, too. This change adds all the required interfaces so that
14599         the anonarray.cs test case in the bug report works (we don't add
14600         all the interfaces to arrays of arrays 3-level deep and more because
14601         of the memory requirements explained in the bug and since they are much
14602         less common: the lazy-loading support will enabled them to work, too).
14604 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14606         * verify.c (merge_stacks): major clean up, all type compatibility
14607         checks are done by verify_type_compatibility. This fix my earlier lack
14608         of understanding of the CLR type system and merge_stacks no longer looks
14609         scary.
14611         * verify.c: fixed some bad spelling.
14613 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14615         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14616         a given stack slock.
14617         
14618         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14619         verify_type_compatibility_full. This removed a near indentical function and fixed
14620         handling of Int32 and IntPtr across all opcodes.
14622 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14624         * class.c: only vectors have the additional generic interfaces.
14626 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14628         * mono-config.c: Use g_strcasecmp instead of
14629         strcasecmp like everywhere else to fix
14630         compilation with MSVC.
14631         
14632         Code is contributed under MIT/X11 license.
14634 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14636         * object.c, object-internals.h: refactored the IMT code to enable
14637         building a single slot at a time and lazily creating the IMT trampolines
14638         and thunks.
14640 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14642         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14644         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14645         Fixes #328501.
14646         
14647 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14649         * loader.c (method_from_methodspec): Rearrange to avoid
14650         un-necessary exposition.  Don't assert out if the method's
14651         declaring type is a generic type definition.
14653 2007-09-28  Martin Baulig  <martin@ximian.com>
14655         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14657 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14659         * class-internals.h: optimize field layout of MonoClass to
14660         requires less cachelines at runtime and save a few bytes on 64 bit
14661         systems.
14663 2007-09-28  Jb Evain  <jbevain@novell.com>
14665         * reflection.c: when encoding type names in custom attributes,
14666         if the type is a closed generic type, its generic arguments
14667         have to be serialized as AssemblyQualifiedName, so that when
14668         they are deserialized, it's possible to re-create them properly.
14669         Fixes #329450.
14672 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14674         * object.c, class-internals.h: added delegate-creation counter.
14676 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14678         * class.c: cleanup of the code that synthetizes interfaces for
14679         arrays in 2.0: saves quit a bit of corlib mempool memory.
14680         Code to fix bug #325495 ifdeffed out for now until the issues
14681         with memory usage and O(n^2) behaviour are fixed.
14683 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14685         * marshal.c: when possible, do not duplicate the name of the methods
14686         in the method builder and in the generated MonoMethod.
14688 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14689         * verify.c: added support for type checking ldind_* opcodes.
14691 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14693         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14694         which is used to distinguish the fully open instantiation of a TypeBuilder
14695         with the rest. This temporary hack is required to restore the property that
14696         the fully open instantiation is the same type of the generic type definition.
14698         * class-internals.h (mono_generic_class_is_generic_type_definition):
14699         new function as part of the internal API.
14701         * class.c (inflate_generic_type): return NULL when the generic inst is
14702         fully open. The fully open generic type is now the same as the generic type
14703         definition for non TypeBuilder types.
14705         * class.c (mono_generic_class_get_class): removed assert since it is
14706         no longer valid, gklass->cached_class can point to the generic type definition.
14708         * class.c (mono_generic_class_is_generic_type_definition): new.
14710         * metadata.c (mono_generic_class_hash): added is_tb_open field
14711         to the hash calculation.
14713         * metadata.c (free_generic_class): if the generic class is associated
14714         with the generic type definition, its field will come from the mempool and
14715         must not be freed.
14717         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14718         new, this function identifies the corner case of a TypeBuilder fully open
14719         instantiation.
14721         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14722         for lookup. Set gclass->cached_class to be the container class in case of
14723         the fully open instantiation of non TypeBuilder types.
14725         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14726         to compare generic classes.
14728         * reflection.c (method_encode_methodspec): remove assert that
14729         no longer is valid.
14731         * reflection.c (mono_reflection_generic_class_initialize): add
14732         an aditional assert to ensure the proper type is used.
14734 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14736         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14737         to enjoy it.
14739 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14741         * verify.c (push_arg): Fixed support for ldarga
14742         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14743         MonoType used as first arg in case of instance calls.
14745 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14747         * verify.c: Support for verifying VAR and MVAR types, 
14749 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14751         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14752         accessors correctly.
14754 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14756         * threads.c: support OSX and other systems in
14757         mono_thread_get_stack_bounds (bug #328026).
14759 2007-09-25  Martin Baulig  <martin@ximian.com>
14761         * mono-debug.h
14762         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14764 2007-09-24  Martin Baulig  <martin@ximian.com>
14766         * mono-debug.h
14767         (MonoDebugClassEntry): Moved the definition of this struct into
14768         mono-debug.c to make it private.
14770         * mono-debug.c
14771         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14772         type table per symbol file, we don't need to store the symfile id
14773         any longer.
14775 2007-09-24  Martin Baulig  <martin@ximian.com>
14777         Create one type table per symbol file, since a `MonoClass *' gets
14778         invalid when its image is unloaded.
14780         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14781         (MonoDebugHandle): Added `type_table'.
14783 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14785         * mempool.c, mempool.h: added mono_mempool_new_size () API
14786         to be able to specify a smaller initial size for the pool.
14787         Adjusted the code to slowly increase pool size before using
14788         the previous default size.
14789         * image.c: use a small initial size for image mempools.
14791 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14793         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14794         Fixes ##320990.
14796         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14797         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14799 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14801         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14802         free. Fixes #327438.
14804 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14806         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14807         generic instantiations, etc.
14808         <MONO_TYPE_ARRAY>: Likewise.
14810 2007-09-21  Martin Baulig  <martin@ximian.com>
14812         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14813         these structs were never defined.
14814         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14816 2007-09-21  Martin Baulig  <martin@ximian.com>
14818         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14820 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14822         * image.c: removed the guid hash tables: we can get the same info
14823         without the additional memory usage hit (partially fixes also bug #327052).
14825 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14827         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14828         event to handle unloading methods. After the event is called, the
14829         corresponding MonoMethod* must be considered invalid.
14830         * loader.c (mono_free_method): call the new mono_profiler_method_free
14831         event.
14833 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14835         * domain-internals.h: New flag in MonoJitInfo which marks shared
14836         generic methods.  New hash table (shared_generics_hash) in
14837         MonoDomain to keep track of shared generic methods.  Prototypes
14838         for functions to register and lookup shared generic methods.
14840         * domain.c: Support for registering and looking up shared generic
14841         methods via a hash table (shared_generics_hash) in MonoDomain.
14843         * class-internals.h: New exception to signal failure of shared
14844         compilation of a generic method.  New counters for generics
14845         sharing in MonoStats.
14847 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14849         * image.c, metadata-internals.h: don't keep a file descriptor open
14850         for loaded assemblies (bug#325988).
14852 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14854         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14855         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14856         use the corresponding datatypes.
14857         (type_in_image): Update to changes.
14858         (CleanForImageUserData): Simplify.
14859         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14860         Avoid quadratic behaviour in handling the "stolen" list by
14861         separating the filter predicate out, and by prepending the stolen
14862         items rather than appending them.
14863         (steal_ginst_in_image): Likewise.
14864         (mono_metadata_clean_for_image): Update to changes.
14866 2007-09-19  Martin Baulig  <martin@ximian.com>
14868         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14870 2007-09-19  Martin Baulig  <martin@ximian.com>
14872         * mono-debug.c (mono_debug_cleanup): Don't call
14873         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14875 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14877         Fix crash on 'make run-test' in mcs/errors
14878         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14879         Avoid more potential allocations in mono_class_from_mono_type.
14880         (ginst_in_image): Update to changes.
14881         (gclass_in_image): Rearrange slightly.
14883 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14885         * class.c (mono_class_init): Move the code that sets up class->methods to 
14886         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14888         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14889         canonical instance of an inflated generic signature.
14890         (mono_type_create_from_typespec): Remove an invalid free.
14892         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14894 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14896         * domain-internals.h: added a declaration of the
14897         mono_assembly_load_full_nosearch internal function.
14899         * assembly.c (mono_assembly_load_with_partial_name): use
14900         mono_try_assembly_resolve return value properly.
14901         (mono_assembly_load_full_nosearch): copied the function body from
14902         mono_assembly_load_full, without the code to invoke assembly
14903         search hooks.
14904         (mono_assembly_load_full): calls the above new function and if the
14905         assembly is not resolved, invokes the search hooks.
14907         * appdomain.c (mono_runtime_init): restore the global postload
14908         assembly search handlers.
14910 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14912         * class.c (mono_class_init): Make sure class->methods and class->properties
14913         are never NULL in the generics case.
14915         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14917 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14919         * metadata.c (free_generic_class): Disable some code to fix the build.
14921         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14923         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14924         from the image mempool.
14926         * metadata.c (free_generic_class): Free more data from the inflated class.
14928         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14930         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14931         mempool.
14932         (mono_type_create_from_typespec): Ditto.
14934         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14935         MonoImage to the caller.
14936         (mono_init_internal): Save the opened image in a global variable.
14937         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14939         * reflection.c (resolve_object): Fix a leak.
14941         * metadata.c: Fix the freeing of data in the generics caches.
14942         
14943         * metadata.c (free_generic_inst): Comment this out to fix the build.
14944         (free_generic_class): Ditto.
14946         * metadata.c: Free cached generic methods, instantinations and classes when
14947         they are removed from the caches.
14948         (mono_metadata_free_type): Free the type itself.
14950         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14951         places.
14953 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14955         * boehm-gc.c: restrict managed allocs to __thread supporting
14956         architectures.
14958 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14960         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14961         (mono_generic_class_get_class): Fix a leak.
14963         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14964         mono_metadata_free_type ().
14965         (mono_metadata_inflate_generic_inst): Fix a leak.
14967 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14969         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14971         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14972         mempool.
14974         * mono-debug.c (mono_debug_close_image): Fix call to 
14975         g_hash_table_remove ().
14977 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14979         * icall-def.h: redirect all the string ctor to the managed
14980         CreateString () methods.
14981         * string-icalls.c, string-icalls.h: removed dead code for string
14982         ctors and icalls.
14984 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14986         * mono-debug.c: Fix memory leaks.
14988 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14990         * threads-types.h: Implement mono_hazard_pointer_set and 
14991         mono_hazard_pointer_clear macros using do/while(0) to fix
14992         compilation with MSVC.
14993         
14994         Code is contributed under MIT/X11 license.
14996 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14998         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14999         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15001 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15003         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15004         icalls.
15006 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15008         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15009         managed-code allocated as well.
15011 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15013         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15015 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15017         * boehm-gc.c: fixed the build after the AOT changes.
15019 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15021         * wrapper-types.h: Add an ALLOC wrapper type.
15023         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15024         reference managed allocator methods.
15026 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15028         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15029         of Type array and not MonoType, a fix suggested by Hari.
15030         
15031 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15033         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15034         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15035         
15036         Code is contributed under MIT/X11 license.
15038 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15040         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15042 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15044         * image.c (do_mono_image_open): if assembly file fails to open and
15045         MONO_IOMAP is in effect, try to find the path in a
15046         case-insensitive way.
15048         * appdomain.c (mono_runtime_init): do not install postload hooks -
15049         tests show that MS.NET doesn't use anything of that sort to
15050         trigger the AppDomain.AssemblyResolve event.
15051         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15052         made non-static.
15053         (mono_runtime_init): init portability helpers here.
15055         * assembly.c (mono_assembly_load_with_partial_name): if other   
15056         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15057         to resolve the assembly.
15059         * domain-internals.h: added mono_try_assembly_resolve and marked
15060         it as internal.
15062 2007-09-11  Jb Evain  <jbevain@novell.com>
15064         * object-internals.h (MonoReflectionDynamicMethod): add
15065         a `MonoReflectionType *owner` field. The owner is used
15066         * reflection.c:
15067         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15068         method as the class declaring the dynamic method.
15069         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15070         dynamic method to the declaring type of the methodbuilder.
15072 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15074         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15075         rules for calling methods via reflection.
15077 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15079         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15080         Inflate MonoType's.
15082 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15084         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15085         provide a managed method that does fast allocations without needing
15086         a managed->unmanaged transition. Boehm GC implementation currently
15087         enabled for ptrfree objects on sane architectures.
15089 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15091         * marshal.c, marshal.h: exported a couple of useful functions and
15092         added mono_mb_get_label () to easily handle backward branches.
15094 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15096         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15098 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15100         * loader.c (find_method): Fixed the regression introduced while
15101         fixing bug #81466.
15103 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15105         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15106         well.
15107         
15108         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15109         icall.c reflection.c: Pass a MonoGenericContext argument to 
15110         mono_lookup_dynamic_token ().
15112         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15113         #82744.
15114         
15115 2007-09-09  Robert Jordan  <robertj@gmx.net>
15117         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15118         for generic methods.
15120         * object.c (mono_object_get_virtual_method): Handle generic methods.
15121         Fixes bug #78882.
15123         Code is contributed under MIT/X11 license.
15125 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15127         * image.c: fix locking in mono_image_load_file_for_image ().
15129 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15131         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15132         used only as a cache: added an icall to fill it.
15134 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15136         * reflection.h: exposed mono_reflection_free_type_info
15137         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15138         since mono_reflection_bind_generic_parameters makes a copy of it.
15139         * reflection.c (free_type_info): subinfos should be freed.
15140         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15141         made non static.
15142         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15143         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15144         this fixes #82695 and #81726.
15145    
15147 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15149         * process.h, process.c:  added support for user profile/info in
15150           ProcessStartInfo. For now only Windows works.
15152 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15154         * metadata.c: consider the generic arguments when comparing
15155         signatures (bug #82614).
15157 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15159         * cil-coff.h, image.c: updated assembly loader to cope with the
15160         PE32+ 64 bit file format.
15162 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15164         * assembly.c, class.c, domain.c, loader.c: remove useless
15165         inclusion of cil-coff.h.
15167 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15169         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15170         if interface is marked with CoClassAttribute. 
15171    
15172         Code is contributed under MIT/X11 license.
15174 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15176         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15177         if it's seen twice in major collections.
15179 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15181         * sgen-gc.c: big objects are not copied to the gray area, but they
15182         need to be considered for scanning, too, if they are brought alive
15183         by an object ready for finalizations or a survived one.
15185 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15187         * sgen-gc.c: properly account the number of disappearing links when
15188         they are nullified.
15190 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15192         * sgen-gc.c: share the code to scan the registered roots between the
15193         different types of collections.
15195 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15197         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15199 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15201         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15202         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15204 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15206         * security-manager.c (mono_security_manager_get_methods):
15207         LinkDemandSecurityException now has 2 arguments instead of 3.
15209 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15211         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15212         platforms which need it.
15214 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15216         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15217         dtor.
15219 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15221         * threads.c: free the thread static data on thread exit.
15223 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15225         * class.c: walk the hierarchy to find the generic definition for
15226         a class (fixes runtime part of bug #82498).
15228 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15230         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15231         ...
15233         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15235 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15237         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15239 2007-08-24  Robert Jordan  <robertj@gmx.net>
15241         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15243 2007-08-24  Jb Evain  <jbevain@novell.com>
15245         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15246         for byref types.
15248 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15250         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15251         #82286.
15253 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15255         * assembly.c: Fix a warning.
15256         
15257 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15259         * appdomain.c: parse the <runtime> section looking for the probing
15260         element with the 'privatePath' attribute, which sets additional
15261         directories in which the runtime should look for assemblies.
15263 2007-08-23  Robert Jordan  <robertj@gmx.net>
15265         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15266         Fixes #82499.
15268 2007-08-23  Martin Baulig  <martin@ximian.com>
15270         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15271         _mono_debug_init_corlib() and remove it from the header file.
15273 2007-08-23  Martin Baulig  <martin@ximian.com>
15275         * mono-debug-debugger.c
15276         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15277         don't notify the debugger about it.
15279         * mono-debug-debugger.h
15280         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15282 2007-08-23  Robert Jordan  <robertj@gmx.net>
15284         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15285         Code is contributed under MIT/X11 license.
15287 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15289         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15291 2007-08-22  Martin Baulig  <martin@ximian.com>
15293         * mono-debug.c: Store debugging info on a per-domain basis and
15294         free it on domain unload.  Add support for unloading symbol files.
15296         * mono-debug.h
15297         (MonoDebugList): New typedef.
15298         (MonoSymbolTable):
15299         - add `data_tables and `type_table'.
15300         - replace 'symbol_files' and `num_symbol_files' with a
15301           `MonoDebugList *'.
15302         (mono_debug_data_table): Removed.
15303         (mono_debug_list_add): New public function.
15304         (mono_debug_list_remove): New public function.
15305         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15306         (mono_debug_init_2_memory): Renamed into
15307         mono_debug_open_image_from_memory().
15308         (mono_debug_close_image): New public function.
15309         (mono_debug_domain_create): Likewise.
15310         (mono_debug_domain_unload): Likewise.
15311         (MONO_DEBUGGER_VERSION): Bump to 60.
15313         * mono-debug-debugger.h
15314         (MonoDebuggerEvent):
15315         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15316         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15317         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15318         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15319           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15320         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15321           meaning.
15322         (mono_debugger_add_symbol_file): Removed.
15323         (mono_debugger_add_type): Removed.
15324         (mono_debugger_lookup_type): Removed.
15325         (mono_debugger_lookup_assembly): Removed.
15327         * domain.c
15328         (mono_domain_create): Call mono_debug_domain_create().
15329         (mono_init_internal): Call mono_debug_init_corlib().
15331         * assembly.c
15332         (mono_assembly_close): Call mono_debug_close_image().
15334 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15336         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15337         mmap call.
15339 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15341         * sgen-gc.c: ensure section->pin_queue_end is initialized
15342         correctly when non pinning objects in the section have been found.
15344 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15346         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15347         containing a list of directories separated by ':'. MSDN docs say
15348         the directories should be separated with ';'. Part of a bugfix for
15349         bug #81446
15351 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15353         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15354         it should MonoType and not MonoClass.
15356 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15358         * culture-info-table.h : regenerated.
15360 2007-08-20  William Holmes  <billholmes54@gmail.com>
15362         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15363          to call ReplaceFile Kernel32 on windows or in io-layer.
15364         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15365         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15366          as an internal call.
15368         Code is contributed under MIT/X11 license.
15370 2007-08-20  Jb Evain  <jbevain@novell.com>
15372         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15373         and MONO_EXCEPTION_FIELD_ACCESS.
15375         * debug-helpers.[c|h]: new mono_field_full_name function.
15377 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15379         * class.c: Removed class_security_level() and moved it to
15380         security-core-clr.c.
15382         * security-core-clr.c, security-core-clr.h: class_security_level()
15383         is now public and renamed to mono_security_core_clr_class_level().
15384         It also looks for security attributes in the classes a class is
15385         nested in.
15387 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15389         * security-core-clr.c, security-core-clr.h: CoreCLR security
15390         utility functions.
15392         * Makefile.am: Added security-core-clr.[ch].
15394         * security-manager.c, security-manager.h: Functions and enum for
15395         setting and getting the security mode.
15397         * class.c: CoreCLR security checks.
15399 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15401         * icall-def.h, process.c, process.h: implemented icall to get
15402         user/system processor times.
15404 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15406         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15407         reader-lock-free jit_info_table.
15409 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15411         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15413         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15415         * object-internals.h (MonoException): Add missing _data member.
15417 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15419         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15420         checking that only methods with matching qname or fqname are picked
15421         from implemented interfaces.
15423 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15425         * verify.c (do_newarr):added, do type verification of
15426         newarr ops, push the right value on the eval stack.
15427         * verify.c (mono_method_verify): use do_newarr
15430 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15432         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15433         factored the common code into get_boxable_mono_type, which
15434         is now using mono_type_get_full, this fixed byref related tests.
15436 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15438         * class.c: added mono_type_get_full, this function has the same
15439         behavior of mono_class_get_full but the returned MonoType has
15440         all metadata of the associated token in case of a typespec token.
15441         * class.c: added mono_type_retrieve_from_typespec, used by 
15442         mono_type_get_full to retrieve the token type.
15443         * class.c (mono_class_create_from_typespec): changed to use
15444         mono_type_retrieve_from_typespec.
15445         * class.c (mono_ldtoken): changed to use mono_type_get_full
15446         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15447         * class-internals.h: exported mono_type_get_full for internal use.
15449 2007-08-16  Jb Evain  <jbevain@novell.com>
15451         * domain.c (supported_runtimes): add entry for
15452         the 'moonlight' runtime version.
15454 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15456         * verify.c (mono_method_verify): small typo sliped in.  
15458 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15460         * verify.c (do_unbox_value): added, do type verification of
15461         unboxing ops
15462         * verify.c (mono_method_verify): use do_unbox_value
15465 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15467         * verify.c (dump_stack_value): fixed typo, was printing string
15468         instead of object on stack.
15469         * verify.c (do_box_value): moved the byref check up as it leads
15470         to invalid code and should be done earlier.
15471         * verify.c: improved error messages for and ldobj
15473 2007-08-15  William Holmes  <billholmes54@gmail.com>
15475         * marshal.c (emit_marshal_custom): Omit the call to 
15476           marshal_native_to_managed when calling native to managed 
15477           and the argument is specified as an out argument.
15479         Code is contributed under MIT/X11 license.
15481 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15483         * verify.c: fixed the type checks for generics, function pointers and vectors.
15484         Added type verification for ldobj and ldtoken. The verifier
15485         would segfault if header or signature of a method contained references
15486         to non-existant types.
15488 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15490         * marshal.c (cominterop_get_ccw): Patch from
15491         Bill Holmes to no walk up interface hierarchy. 
15492         All parent methods should be present in the interface for COM.
15493    
15494         Code is contributed under MIT/X11 license.
15496 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15498         * marshal.c (emit_marshal_com_interface): Patch from
15499         Bill Holmes to handle COM Interfaces as return values
15500         for native->managed calls.
15501    
15502         Code is contributed under MIT/X11 license.
15504 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15506         * marshal.c (cominterop_get_idispatch_for_object): Implement
15507         for runtime callable wrappers.
15508    
15509         Code is contributed under MIT/X11 license.
15511 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15513         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15514         so 2.0 types are accessible
15517 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15519         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15520         once we load mscorlib.   Due to the order in which we initialize,
15521         the mono_assembly_load_full routine that loads mscorlib did not
15522         load friends.   We now load it once we load the
15523         mono_defaults.internals_visible_class class. 
15525         * assembly.c: Expose the mono_load_friend_assemblies method.
15527 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15529         * verify.c: improved the handling of boxing, better
15530         type checking for unary ops and conversion. Fix bug
15531         regarding managed pointer compatibility checking
15533 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15535         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15537         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15539 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15541         * reflection.c (dup_type): Remove.
15542         * class.c (dup_type): Remove.
15543         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15544         instead of the dodgy 'dup_type'.
15545         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15546         handle the case where 'dup_type' needed the second argument.
15548 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15550         * domain.c: Fix a warning.
15552 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15554         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15555         checking that methods with the same fqname are not overridden
15556         with a method from an ancestor.
15558 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15560         * threads.c (free_thread_static_data_helper): Avoid a crash if
15561         thread->static_data is not yet set.
15563 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15565         * marshal.c: Use correct image when emitting
15566         native wrapper for COM calls.
15567    
15568         Code is contributed under MIT/X11 license.
15570 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15572         * icall-def.h, security.c, security.h :
15573           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15575 2007-08-07  Martin Baulig  <martin@ximian.com>
15577         * mono-debug-debugger.h
15578         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15580         * domain.c (mono_domain_free): Call
15581         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15583 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15585         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15586         * verify.c (in_same_block): code should test if either offset is inside the clauses
15587         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15588         and filter blocks
15590 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15592         * image.c (mono_image_close): Fix a leak.
15594         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15596         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15598 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15600         * domain.c, threads.c, threads-types.h: fix memory retention issue
15601         with thread static variables not being cleared on domain unload.
15602         Reuse thread static slots after domain unload.
15604 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15606         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15607         nullable type.
15609         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15610         now done in mono_runtime_invoke_array.
15612         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15613         receiver is a nullable type.
15615         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15616         generic parameter.
15618 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15620         * marshal.c: Implement COM Objects as return type for 
15621         managed->unmanaged calls. Added Release calls for COM Object
15622         out/return values in managed->unmanaged calls.
15624         Code is contributed under MIT/X11 license.
15626 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15628         * threads.h, threads-type.h: move the hazard pointer declarations
15629         to the private header.
15631 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15633         * file-io.c, appdomain.c: memory leak fixes.
15635 2007-08-02  Dick Porter  <dick@ximian.com>
15637         * socket-io.c
15638         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15639         SO_REUSEADDR setting into io-layer/sockets.c.
15641 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15643         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15644         from Object when called on a generic parameter. Fixes #82211.
15646 2007-08-01  Dick Porter  <dick@ximian.com>
15648         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15649         Fixes bug 79250 yet again.
15651 2007-07-30  Martin Baulig  <martin@ximian.com>
15653         Merged the `debugger-dublin' branch.
15655         * mono-debug.h
15656         (MonoDebugDataTable): New typedef.
15657         (MonoDebugMethodAddressList): New typedef.
15658         (MonoDebugWrapperData): Removed.
15659         (MonoDebugSymbolTable): Removed `current_data_table',
15660         `current_data_table_size', `current_data_table_offset'.
15661         (MonoDebugDataItemType): Moved into mono-debug.c.
15662         (MonoDebugMethodJitInfo): Remove `address'.
15663         (mono_debug_data_table): New global variable.
15664         (mono_debug_lookup_method_addresses): New public function.
15665         (mono_debug_find_method): Take a `MonoMethod *', not a
15666         `MonoDebugMethodInfo *'.
15668         * mono-debug.c: Drop support for the old symbol tables.
15670 2007-06-28  Martin Baulig  <martin@ximian.com>
15672         * mono-debug.c (mono_debug_debugger_version): New public variable.
15674 2007-07-31  William Holmes  <billholmes54@gmail.com>
15676         * metadata.c Changed mono_type_create_from_typespec to not insert
15677           the type into the hash map until after
15678           do_mono_metadata_parse_type has completed.
15679         Fixes Bug #82194
15680         Code is contributed under MIT/X11 license.
15682 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15684         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15685         generic parameter. Fixes #82211.
15687 2007-07-27  Jb Evain  <jbevain@novell.com>
15689         * pedump.c (dump_metadata, dump_metadata_header): dump
15690         versions contained in the metadata header.
15692 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15694         * threads.c: register small_id_table with the GC.
15696 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15698         * threads.c, threads.h, class-internals.h, object-internals.h:
15699         Hazard pointers, to be used by lock-free parallel algorithms.
15701 2007-07-26  Dick Porter  <dick@ximian.com>
15703         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15704         routine on non-windows platforms, as I've not managed to think of
15705         a non-kludgy way of doing this.  Finishes off bug 78739.
15707 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15709         * object.c: properly setup interface_bitmap in proxy vtables.
15711 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15713         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15714         to create unique shadow copy target directories, use the domain's
15715         serial number instead. Each domain gets a unique target directory
15716         that way.
15718         * domain.c (mono_domain_create): added code to increment domain
15719         shadow copy serial number and cache the value in the current
15720         domain structure.
15722         * domain-internals.h (struct _MonoDomain): added a new field -
15723         shadow_serial to hold the serial number used in generation of
15724         shadow-copy directories. This is to make sure that the directory
15725         name is unique for each and every domain created. We avoid a race
15726         condition with overriding assemblies already in use by other app
15727         domains.
15729 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15731         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15732         binding generic parameters.
15734 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15736         * metadata.c (do_mono_metadata_parse_generic_class): Use
15737         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15738         error.
15740 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15742         * loader.c, class-internals.h, reflection.c: removed the per-method
15743         generics hashtable: we use the global one through the call of
15744         mono_class_inflate_generic_method ().
15746 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15748         * class.c, metadata.c, class-internals.h: introduce yet another
15749         generics global cache for inflated methods (fixes 98% of the perf
15750         issue in bug #81806).
15752 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15754         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15755         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15756         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15757         return a MonoGenericInst containing (a copy) of those types.
15758         (mono_metadata_inflate_generic_inst): Update to changes.
15759         (mono_metadata_parse_generic_inst): Likewise.
15760         (mono_get_shared_generic_inst): Likewise.
15761         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15762         (mono_reflection_bind_generic_method_parameters): Likewise.
15763         * metadata-internals.h: Likewise.
15764         * icall.c (free_generic_context): Kill.
15765         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15767         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15768         mono_metadata_type_dup.
15769         * marshal.c (mono_mb_create_method): Likewise.
15771         * metadata.c (mono_metadata_type_dup): Rename from
15772         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15773         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15774         * marshal.c, metadata-internals.h: Update to changes.
15776 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15778         * class.c: fixed a small leak for array classes and removed warning.
15780 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15782         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15783         Return 0x8000000 for return parameters. Fixes #82161.
15785 2007-07-21  Marek Habersack  <grendello@gmail.com>
15787         * appdomain.c (get_shadow_assembly_location): append the current
15788         ticks value to the path. Avoids overwriting the same assemblies by
15789         several threads at the same time.
15791 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15792         and Raja R Harinath  <rharinath@novell.com>
15794         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15795         Simplify slightly.
15796         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15797         property for testing if a method is a generic method definition.
15799 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15801         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15803 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15805         * verify.c: used function from private branch, reverted to the one in class.h 
15807 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15809         * verify.c: a typo slipped in and the code wont compile
15811 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15813         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15814         disabled box instruction as it is doing the wrong thing
15815         improved stack dump messages, now it is easier to debug type related issues
15818 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15820         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15822 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15824         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15825         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15826         grouped with class and valuetype. This change will simply 
15827         the code as it should be handled just like unmanaged pointers.
15829 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15831         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15833 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15835         * verify.c: several stack merge issues fixed, reference comparisons now
15836         check the type size. strict type check now works correctly.
15837         added more uses of IS_MANAGED_POINTER macro.
15838         fixed issues pointed by running the test suite against .net.
15839         
15841 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15843         * class.c, loader.c, class-internals.h: Removed the
15844         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15845         defines.
15847         * icall.c: Better error checking in some internal reflection
15848         methods.
15850 2007-07-18  William Holmes  <billholmes54@gmail.com>
15852         * filewatcher.c : removed unused variable 'filename' in 
15853           ves_icall_System_IO_FSW_SupportsFSW
15855 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15857         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15858         obsolete, removed.
15860 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15862         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15863         
15864         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15866 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15868         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15869         Implement generics support.
15870         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15872         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15873         type_args and method_args arguments.
15874         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15875         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15876         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15878 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15880         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15881           It adds a rootimage parameter to mono_reflection_get_type_internal,
15882           adds new function mono_reflection_get_type_with_rootimage and use
15883           the rootimage to resolve the types instead of the current image
15885 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15887         * culture-info-table.h: Forgot to update after r78304.
15889 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15891         * class.c (mono_class_is_open_constructed_type)
15892         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15894 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15896         * class.c (mono_bounded_array_class_get):  method fails if used with
15897         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15898         avoiding calculating the size for such array as it cannot be instantiated.
15899         Fix bug #82015
15901 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15903         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15904         field.
15905         * metadata.c, reflection.c: Update to changes.
15907 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15909         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15910         mono_class_is_valid_enum, they are used to valide a enum when loading.
15911         * reflection.c: used new functions to throw TypeLoadException when and
15912         invalid enum is build with TypeBuilder. Fixes #82018
15913   
15914 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15916         * object.c: forgot commit of mono_class_setup_methods () to access
15917         iface->methods.
15918         * object-internals.h: added a few more handy fields to
15919         MonoIMTCheckItem.
15921 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15923         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15924         iface->methods.
15926 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15928         * class-internals.h, object-internals.h, object.c: IMT-based
15929         interface invocation core from Massimiliano Mantione
15930         (massi@ximian.com) with a reworked arch-specific interface,
15931         bsearch implementation and a few bugfixes and memory savings by me.
15933 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15935         * class.c (mono_class_create_from_typedef): mono would segfault if 
15936         an enum did not have a __value field. It now throws a TypeLoadException
15937         for such cases. Fix bug #82022
15939 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15941         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15943 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15945         * class.c (mono_class_init): If a class is already inited but has
15946         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15948 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15950         * class.c: Properly handle the case of an unimplemented interface
15951         method.  Fixes: 81673.
15953 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15955         * class-internals.h, object.c: cleanup patch from massi: use
15956         MonoVTable->interface_bitmap since the vtable interfaces offset array
15957         is going away.
15959 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15961         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15962         GetMDStreamVersion icall instead.
15964 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15966         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15967         not use mono_dl_build_path() with a full library name: makes
15968         fallbacks to libgaim and libfam work.
15970 2007-07-06  William Holmes  <billholmes54@gmail.com>
15972         * assembly.c: Added a continue statement in probe_for_partial_name when
15973          parse_assembly_directory_name fails.  Fixes : 82002
15975 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15977         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15978         and added a verification  for TYPEDBYREF.
15979         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15980         make native int interchangeable with int32 and some small cleanup and formating.
15981         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15982         handle byref of byref.
15983         * verify.c (push_local): handle byref of byref.
15984         * verify.c (do_binop): invalid mix of values is unverifiable
15985         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15986         added visibility checks
15987         * verify.c (field related method): added visibility checks
15988         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15990 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15992         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15993         string.
15995 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15997         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15999         * marshal.c (emit_marshal_string): When returning a string from managed code,
16000         allways make a copy even for unicode strings. Fixes #81990.
16002 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16004         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16005         of byref generic inst types (bug #81997).
16007 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16009         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16010         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16012 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16014         * marshal.c (emit_marshal_string): Add support for unicode strings in
16015         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16017 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16019         * verify.c: field load/store are now verified, missing only access checks now
16021 2007-06-28  Martin Baulig  <martin@ximian.com>
16023         * mono-debug.c (mono_debug_debugger_version): New public variable.
16025 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16027         * locales.c: When constructing DateTimeFormat or NumberFormat for
16028         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16029         MonoCultureInfo contructed from the current locale is always
16030         read-only and has UseUserOverride set to true. All MonoCultureInfo
16031         instances returned for GetCultures have both IsReadOnly and
16032         UseUserOverride set to true. Fixes part of bug #81930.
16034 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16036        * icall-def.h: Update System.__ComObject icalls
16037        * marshal.c: Avoid managed transition (and object creation)
16038        when looking up COM interface in RCW.
16039        * marshal.h: Ditto.
16040        
16041        Code is contributed under MIT/X11 license.
16043 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16045         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16046         to avoid crashes during assembly unloading.
16048 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16050         Fix MethodInfo.IsGenericMethodDefinition
16051         * reflection.c (mono_reflection_bind_generic_method_parameters):
16052         Rearrange code to ensure we always uses a generic method definition.
16053         * class.c (mono_class_inflate_generic_method_full): Set
16054         'generic_container' field only for generic method definitions.
16055         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16056         Use presense of 'generic_container' field as indication of being a
16057         generic method definition.
16059 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16061         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16063         * object-internals.h: Reflect changes in the layout of the managed Delegate
16064         class.
16065         
16066         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16067         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16068         runtime memory used by the dynamic method. Fixes #77146.
16070 2007-06-21  Dick Porter  <dick@ximian.com>
16072         * file-io.h: 
16073         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16074         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16075         81767.
16077 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16079         * reflection.c (method_encode_methodspec): Add a tripwire.
16080         * class.c (inflate_generic_type): The fully open generic type is
16081         not the same as the generic type definition.
16083 2007-06-21  Martin Baulig  <martin@ximian.com>
16085         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16087         * mono-debug-debugger.h
16088         (MonoDebuggerBreakpointInfo): Removed.
16089         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16090         (mono_debugger_remove_breakpoint): Likewise.
16091         (mono_debugger_breakpoint_callback): Likewise.
16092         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16094 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16096         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16097         generic type is not the same as the generic type definition.
16098         * class.c (mono_generic_class_get_class): Likewise.
16100 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16102         * icall.c: The second argument to 
16103         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16104         is a MonoType not a MonoClass.
16106 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16108         * verify.c: support for function pointers in the verifier
16110 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16112         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16114 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16116         * assembly.c: removed Mono.Data.SqliteClient from the list of
16117         forward-compatible assemblies as it breaks the ABI (bug #81899).
16119 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16121         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16122         lookup/update with the loader lock.
16123         * reflection.c (mono_class_bind_generic_parameters): No need to
16124         protect mono_metadata_lookup_* with the loader lock.
16125         * class.c (inflate_generic_type): Likewise.
16126         
16127         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16128         on a generic instantiated type.
16130 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16132         *verify.c: produce meanfull error messages on verification error
16133         *verify.c: fixed some cases of verification errors reported as validation errors
16134         *pedump.c: fixed the error name array, now it shows validation errors properly
16135         *verify.h: fixed the contant that should be used for verification errors
16137 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16139         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16140         for bug #77596, 81858 and 80743 (generics data structures on domain
16141         unload).
16143 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16145         Avoid allocating 'MonoGenericContext' on the heap.
16146         * class-internals (_MonoMethodInflated::context): Make field
16147         inline, not a pointer.
16148         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16149         stack.  Use the context embedded within the inflated method as the
16150         hash key, rather than 'new_context'.
16151         * class.c (inflate_generic_context): Simplify.  Return a struct
16152         rather than allocating on the heap.
16153         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16154         doesn't salt away a copy of the context -- simplifying the
16155         lifetime rules of a 'MonoGenericContext *'.
16156         (mono_method_get_context): Return pointer to embedded context.
16157         (setup_generic_array_ifaces): Allocate temporary context on stack.
16158         * reflection.c (inflate_mono_method): Likewise.
16159         (mono_reflection_bind_generic_method_parameters): Likewise.
16160         Use the context embedded within the inflated method as the hash key.
16162         Avoid a source of allocation of 'MonoGenericContext'.
16163         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16164         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16165         * class.c: Update to changes.
16166         (mono_generic_class_get_context): Simplify drastically.  Now just
16167         returns a pointer to the field.
16168         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16169         argument as a const pointer.
16170         (mono_metadata_generic_context_equal): Likewise.
16171         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16172         Update to changes.
16174 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16176         * verify.c improved the handling of brtrue/brfalse, factored out common code
16178 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16180         Kill MonoGenericMethod.
16181         * class-internals.h (MonoGenericContext::method_inst): Rename from
16182         'gmethod' and convert to a MonoGenericInst.
16183         (MonoGenericMethod): Remove.
16184         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16185         * loader.c (method_from_methodspec): Update to changes.  Use a
16186         MonoGenericContext as the key to the hashtable.
16187         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16188         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16189         (mono_metadata_generic_context_hash): Likewise from
16190         'mono_metadata_generic_method_hash'.  Change hash function.
16191         (mono_metadata_load_generic_params): Update to changes.
16192         (mono_get_shared_generic_method): Remove.
16193         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16194         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16195         (inflate_generic_context): Likewise.
16196         (mono_class_inflate_generic_method_full): Likewise.
16197         (setup_generic_array_ifaces): Likewise.
16198         (mono_class_create_from_typespec): Likewise.
16199         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16200         (method_encode_methodspec): Update callsite.
16201         (reflection_methodbuilder_to_mono_method): Update to changes.
16202         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16203         MonoGenericContext as the key to the hashtable.
16204         (inflate_mono_method): Update to changes.
16206         * class-internals.h (MonoGenericMethod::container): Remove.
16207         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16209 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16211         * profiler-private.h, profiler.c, profiler.h: added API to profile
16212         exception events.
16214 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16216         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16218 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16220         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16221         Fixed overflow and underflow not aborting the verification process.
16223 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16225         * class-internals.h (MonoStats): Added stats entries for dynamic
16226         code allocations.
16228 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16230         * loader.c (mono_free_method): Free header->locals and header->clauses.
16232         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16233         dynamic case.
16235         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16237         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16239 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16241         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16242         the tables.
16244 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16246         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16248 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16250         MonoGenericMethod on a diet
16251         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16252         here ...
16253         (_MonoGenericMethod::reflection_info): ... from here.
16254         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16255         Update to changes.
16256         * reflection.c (inflate_mono_method): Likewise.
16257         (mono_reflection_bind_generic_method_parameters): Likewise.
16259 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16261         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16262         *verify.c: factored long ldarg forms to share code with short forms
16264 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16266         *verify.c: fixed code formating factored some duplicate code
16267         into a new function
16269         *verify.h: fixed binary incompatibility introduced earlier
16271         *pedump.c: fixed formating
16273 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16275         Fix assertion when disassembling Mono.C5.dll
16276         * loader.c (method_from_methodspec): Avoid inflating a method
16277         twice with the same context.  If the methodref is inflated, use
16278         the declaring method instead.
16280         * class.c (mono_class_from_generic_parameter): Fix case similar to
16281         bug #81830 handled below, but for method containers.
16283 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16285         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16286         get_shared_generic_class.  Directly inflate the instance.
16287         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16288         (inflate_generic_class): Delete.
16289         (get_shared_generic_class): Delete.  Move setting of
16290         'cached_class' and 'cached_context' ...
16291         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16293         * metadata.c (mono_metadata_lookup_generic_class): Change
16294         signature to take the components of a MonoGenericClass rather than
16295         an allocated MonoGenericClass.  Change semantics to be intern-like.
16296         * reflection.c (mono_class_bind_generic_parameters): Update to
16297         changes.  Make locking region tighter.
16298         * class.c (inflate_generic_class): Update to changes.
16299         (get_shared_generic_class): Likewise.
16300         * metadata-internals.h: Likewise.
16302         * reflection.c (mono_class_bind_generic_parameters): Take and
16303         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16304         (mono_reflection_bind_generic_parameters): Use
16305         'mono_class_bind_generic_parameters' rather than duplicate the code.
16306         * class.c (mono_bounded_array_class_get): Update to changes.
16307         * object-internals.h: Likewise.
16309         * reflection.c (mono_class_bind_generic_parameters): Only support
16310         parameterizing generic type definitions.  Remove support for other
16311         open types.
16313 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16315         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16317         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16318         in the dynamic case.
16320 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16322         * threads.c: When cleaning up thread, reset the Background bit.
16323         Fixes bug #81720.
16325 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16327        * metadata.c: Move variable declarations to top of scope.
16328        * verify.c: Move variable declarations to top of scope.
16330        Code is contributed under MIT/X11 license.
16332 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16334         * reflection.c (mono_class_bind_generic_parameters): Replace
16335         open-coded loop with mono_metadata_inflate_generic_inst.
16337         * class.c (get_shared_generic_class): Don't call
16338         mono_get_shared_generic_inst.  Use the container's own
16339         'class_inst'.
16341         * metadata.c (mono_metadata_load_generic_params): Move
16342         initialization of 'context' field here from ...
16343         * class.c (mono_class_create_from_typedef): ... here, and ...
16344         * loader.c (mono_get_method_from_token): ... here.
16346         * class.c (get_shared_generic_class): Rename from
16347         mono_get_shared_generic_class and make static.
16348         (mono_get_shared_generic_inst): Move to metadata.c.
16349         * loader.c (mono_get_shared_generic_method): Likewise.
16350         * class-internals.h, metadata-internals.h: Update to changes.
16352         Fix #81830
16353         * class.c (mono_class_from_generic_parameter): Don't assume a
16354         generic container owner exists.  Generic containers from monodis
16355         don't have any.
16357 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16359         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16360         * verify.h: new typedefs to returns the non-verifiable status
16361         * verify.c: initial implementation of generics, stack merging and object compatibility check
16363 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16365         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16366         a MonoInternalHashTable again (fixed bug in internal hash table
16367         code).
16369 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16371         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16372         MonoInternalHashTable again (fixed bug in internal hash table
16373         code).
16375 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16377         * class.c, image.c, class-internals.h, domain.c,
16378         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16379         changes.  Have to figure out what makes them break the SWF
16380         regression.
16382 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16384         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16385         a MonoInternalHashTable now.
16387 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16389         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16390         MonoInternalHashTable now.
16392 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16394         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16395         invoke_impl code.
16397         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16399         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16400         dependent trampoline.
16402         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16404         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16406 2007-05-29  Robert Jordan  <robertj@gmx.net>
16408         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16410 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16412         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16414 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16416        * marshal.c: Fix interface lookup loops for
16417        cominterop_get_com_slot_for_method and 
16418        cominterop_get_method_interface. Only need to lookup
16419        if type is a class, else use interface type method is on.
16421        Code is contributed under MIT/X11 license.
16423 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16425         * reflection.c: HasSecurity can be present even if no specially 
16426         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16427         SecurityAttribute). Fix CAS regression tests on buildbot.
16429 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16431        * appdomain.c: Add configure checks for header files.
16432        * image.c: Add configure checks for header files.
16433        * file-io.c: Add configure checks for header files.
16434        * debug-mono-symfile.c: Add configure checks for header files.
16435        * threadpool.c: Add configure checks for header files.
16436        * console-io.c: Add configure checks for header files.
16437        * profiler.c: Add configure checks for header files.
16438        * rawbuffer.c: Add configure checks for header files.
16439        * icall.c: Add configure checks for header files.
16440        * rand.c: Add configure checks for header files.
16441        * socket-io.c: Add configure checks for header files.
16443        Code is contributed under MIT/X11 license.
16445 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16447         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16448         assertion as it breaks the build.
16449         
16450         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16452         * reflection.c (lookup_custom_attr): Make a copy here too.
16454         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16455         dynamic images.
16457         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16458         images.
16460         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16461         info.
16463 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16465         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16466         (load_cattr_value): Ditto.
16468 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16470         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16472 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16474         * threads.c: In "start_wrapper", set apartment_state to MTA if
16475         apartment_state is Unknown and we're running on 2.0 profile or
16476         higher.
16477         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16478         to main method, then set apartment_state to Unknown on 1.0 profile,
16479         and MTA on 2.0 profile.
16481 2007-05-16  Jb Evain  <jb@nurv.fr>
16483         * class-internals.h (MonoDefaults): Add an attribute_class and
16484           customattribute_data_class.
16485         * domain.c (mono_init_internal): Populate them.
16486         * reflection.c: Use them to remove duplicates. Make a vew
16487         MonoClass variables `static'.
16489 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16491         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16492         step in implementing IMT, so that all isinst checks now can go
16493         through the bitmap.
16494         This was needed because vtables for TransparentProxy need to look
16495         like the vtable of the "target" class, so they need to point to
16496         its interface bitmap directly.
16498         * object.c: inside "mono_class_create_runtime_vtable" and
16499         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16501 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16503         * object-internals.h
16504           culture-info.h : added territory field in MonoCulture and
16505           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16506         * locales.c : fill territory field above too.
16507         * culture-info-table.h : regenerated.
16509 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16511         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16512         Fixes #81599.
16514 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16516         * object.c: Always initialize apartment, even if 
16517         there is no custom attributes on entry point.
16518         
16519         Code is contributed under MIT/X11 license.
16521 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16523         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16524         * metadata.c: If no encoding is set, check for unicode
16525         on class.
16526         
16527         Code is contributed under MIT/X11 license.
16529 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16531         * threads.c: Handle if mono_thread_current returns NULL 
16532         
16533         Code is contributed under MIT/X11 license.
16535 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16537         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16538         in start_wrapper. Added mono_thread_init_apartment_state and
16539         mono_thread_cleanup_apartment_state.
16540         * object.c: Initialize thread apartment state on main thread
16541         by checking for STAThreadAttribute on entry point.
16542         * object-internals.h: Add apartment_state field to MonoThread.
16543         * threads-types.h: Add unmanaged definition of 
16544         System.Threading.ApartmentState, MonoThreadApartmentState.
16545         
16546         Code is contributed under MIT/X11 license.
16547         
16548 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16550         * class.c: Fix windows build.
16551         * class-internals.h: Fix windows build.
16552         
16553         Code is contributed under MIT/X11 license.
16555 2007-05-08  Robert Jordan  <robertj@gmx.net>
16557         * process.c (CreateProcess_internal):
16558         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16559         .CreateNoWindow was specified. Fixes #81496.
16561 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16563         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16564         step in implementing IMT, replaced it with two compact arrays
16565         (interfaces_packed and interface_offsets_packed) and a bitmap that
16566         is used for isinst checks (interface_bitmap).
16568         * class.c: (compare_interface_ids): compare function to pass to
16569         bsearch when looking for an interface with a given id.
16570         (mono_class_interface_offset): reimplemented using bsearch on
16571         interfaces_packed, getting the offset from interface_offsets_packed.
16572         (print_implemented_interfaces): utility debugging function.
16573         (setup_interface_offsets): reworked to initialize interfaces_packed,
16574         interface_offsets_packed and interface_bitmap.
16576         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16577         with uses of interfaces_packed and interface_offsets_packed.
16579 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16581         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16582         mono_class_interface_offset prototype to wrap all accesses to
16583         "MonoClass.interface_offsets".
16585         * class.c: Implemented mono_class_interface_offset, and wrapped all
16586         accesses to "MonoClass.interface_offsets".
16588         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16589         "MonoClass.interface_offsets".
16591 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16593         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16594         GetMethodFromHandle overloads (bug #78637).
16596 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16598         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16599         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16601 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16603         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16604         #81498.
16606         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16607         gracefully.
16608         (mono_custom_attrs_from_index): Ditto.
16610         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16611         Fixes #81501.
16613 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16615         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16616         is now allocated from a mempool.
16618 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16620         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16621         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16623 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16625         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16626         mono_loader_clear_error () too late. Fixes #81463.
16628 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16630         * culture-info-table.h : regenerated.
16632 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16634         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16635         is missing.
16637 2007-04-25  Dick Porter  <dick@ximian.com>
16639         * Makefile.am: Put the mingw enforced-optimisation back into the
16640         PLATFORM_WIN32 section.
16642 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16644         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16645         patch.
16647         * image.c (mono_image_load_module): New API function to load a module reference.
16649         * image.c (load_modules): Load modules lazily. Fixes #80812.
16651         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16652         
16653         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16655         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16656         to mono_image_load_module_dynamic.
16658 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16660         * marshal.c: Fix calling convention for CCW on non-windows
16661         platforms. STDCALL on windows, CDECL everywhere else to work 
16662         with XPCOM and MainWin COM.
16663         
16664         Code is contributed under MIT/X11 license.
16666 2007-04-23  Martin Baulig  <martin@ximian.com>
16668         Fix #80969.
16670         * loader.c
16671         (method_from_memberref): Added `gboolean *used_context' argument.
16672         (mono_get_method_from_token): Likewise.
16673         (mono_get_method_full): Don't insert the method in the cache when
16674         `used_context' is true.
16676 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16678         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16680         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16681         create new MonoTypes for returned types.
16682         * class.c (mono_generic_class_get_class): Export mono-internal.
16683         * class-internals.h: Update to changes.
16685 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16687         * threadpool.c, threadpool.h, icall-def.h: patch from
16688         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16690 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16692         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16693         
16694         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16696         * threads.c (mono_thread_get_stack_bounds): New helper function.
16698         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16699         Correctly compute stack bounds when attaching. Fixes #81394.
16701 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16703         * reflection.c: fix handling of doubles in custom attributes
16704         for the arm-fpa format (bug #81368).
16706 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16708         * reflection.c (assembly_add_win32_resources): Mildly relax an
16709         bounds check to let the end pointer point just past the end of the
16710         allocated buffer.  (may fix #81384)
16712 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16714         * culture-info-table.h : regenerated.
16716 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16718         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16719         the thread is aborted early.
16721 2007-04-05  Dick Porter  <dick@ximian.com>
16723         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16724         FindFirstFile()/FindNextFile() to find entries.  This lets the
16725         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16726         81038.
16728         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16729         the parameters of
16730         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16732 2007-04-04  Martin Baulig  <martin@ximian.com>
16734         * debug-helpers.c
16735         (mono_method_desc_full_match): Add support for nested classes.
16737 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16739         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16741 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16743         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16744         waiting for too many threads.
16746 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16748         * environment.c: Fix return value check on uname so we can get the 
16749         executing version on Solaris operating systems.
16751 2007-03-28  Jb Evain  <jbevain@gmail.com>
16753         * class.c (mono_type_get_name_recurse): Complete the
16754         fix for the creation of assembly qualified names for
16755         pointer types. Fixes #81208.
16757 2007-03-27  Dick Porter  <dick@ximian.com>
16759         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16760         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16761         changed.
16763         * threads.c
16764         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16765         the value of ReleaseMutex().
16767 2007-03-27  Dick Porter  <dick@ximian.com>
16769         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16770         in little-endian order, not network endian, so must be converted
16771         to host endian here.  Fixes bug 80593.
16773 2007-03-22  Jb Evain  <jbevain@gmail.com>
16775         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16776         qualified names for pointer types. Fixes #81208.
16778 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16780         * marshal.c: Add support for PreserveSigAttribute. 
16781         
16782         Code is contributed under MIT/X11 license.
16784 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16786         * process.c: Fix endianness issues. Fixes #81126.
16788         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16789         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16791         * image.c (mono_image_lookup_resource): Make this work on big-endian
16792         machines.Change API contract so the caller needs to free the return value.
16793         
16794         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16795         API change.
16796         
16797 2007-03-14  Martin Baulig  <martin@ximian.com>
16799         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16800         mono_type_get_desc() as well.
16802 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16804         * icall.c:  Fix environ access in VS.  
16805         
16806 2007-03-13  Alp Toker  <alp@atoker.com>
16808         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16809         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16810         #63841.
16812 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16814         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16815         circular references among dynamic methods. Fixes #81091.
16817         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16819 2007-03-09  Martin Baulig  <martin@ximian.com>
16821         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16823 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16825         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16826         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16827         
16828         Code is contributed under MIT/X11 license.
16829         
16830 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16832         * loader.c: Reapply patch for bug #79424.
16834 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16836         * metadata.c (mono_type_to_unmanaged): Only convert object to
16837         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16839 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16841         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16842         (and incorrectly set) is_reference field from MonoGenericInst.
16844 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16846         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16847         a little earlier.
16849         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16851         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16853 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16855         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16856         FileOptions.1 value to mean "temporary", map that to
16857         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16859         Fixes 80688
16861 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16863         * appdomain.c: implement MS .Net style shadow copying. Copies of
16864         the assemblies are made in a subdirectory of the dynamic base
16865         directory, the assembly names are preserved.
16866         Copy .mdb and .config files along with the assemblies being shadowed.
16868 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16870         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16871         (emit_marshal_handleref): Ditto.
16873         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16874         on Visual C++. Fixes #80671.
16876 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16878         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16879         for clone operations.
16881 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16883         * marshal.c: Fix warnings.
16885 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16887         * loader.c: allow case-insensitive matching of the dll name
16888         in dllmap handling when prefixed with "i:".
16890 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16892         * threads.c: Fix #ifdef for dummy_apc function for VS.
16894 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16896         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16898 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16899         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16900         giving precedence to the methods with a fully qualified name
16901         (InterfaceName.MethodName) when building the interface sections
16902         of the vtable.
16904 2007-02-16  Dick Porter  <dick@ximian.com>
16906         * threadpool.c (append_job): Fix fast-path array handling, so it's
16907         less likely the array will grow exponentially when the load is
16908         heavy.
16910 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16912         * metadata-internals.h, loader.c: fix dllmap lookup order
16913         for non-function maps, too, and prepare for fallback code.
16915 2007-02-12  Robert Jordan  <robertj@gmx.net>
16917         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16918         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16919         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16920         GlobalFree. Fixes a part of bug #77075.
16922 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16924         * loader.c: implemented typedef parent in field memberref.
16926 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16928         * marshal.c: Fix warnings and remember to call Release on
16929         IUnknown of RCW.
16930         
16931         Code is contributed under MIT/X11 license.
16933 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16935         * class-internals.h: Add MonoHandleRef definition, and
16936         handleref_class to mono_defaults. 
16938         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16939         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16941         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16942         (do nothing on this stage)
16943         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16944         (emit_marshal_handleref): New method, used for argument handling
16945         of HandleRefs. 
16947 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16949         * class.c (mono_class_setup_parent): Lazily init com types.
16950         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16951         init com types.
16952         * object.c (mono_remote_class_vtable): Lazily init com types.
16953         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16954         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16955         * domain-internals.h: Expose mono_init_com_types.
16956         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16957         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16958         Add support for COM Callable Wrapper marshalling.
16959         * marshal.h: Add icall definitions.
16960         * gc.c: Handle freeing of CCWs in finalizer code.
16961         
16962         Code is contributed under MIT/X11 license.
16964 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16966         * reflection.c: changed all the signature encoding code to use
16967         a variable-sized buffer.
16969 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16971         * marshal.c: locking fixes: never take the loader lock
16972         or other runtime locks when holding the marshal lock
16973         (fixes bug#80664).
16975 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16977         * marshal.c: make the delegate function pointer mapping
16978         work for the moving GC.
16980 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16982         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16983         for bug #80618.
16985 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16987         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16988         gmodule.
16990 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16992         * threadpool.c: made the code moving-GC safe.
16994 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16996         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16997         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16998         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16999         warning cleanup.
17000         * reflection.c: warning cleanup, some threading and moving GC fixes.
17002 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17004         * class.c, loader.c: create the needed Set/Get/Address array methods
17005         as well as the .ctors in mono_class_init (), fixes bug #80567.
17007 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17009         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17010         we doesn't decrease its alignment. Should fix the sparc build.
17012 2007-01-24  Dick Porter  <dick@ximian.com>
17014         * socket-io.c
17015         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17016         Create the returned object if we need to ignore an unsupported
17017         socket option.  Fixes a segfault reported by Atsushi.
17019 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17021         * class.c, object.c: restrict GC-tracked fields to
17022         UIntPtr fields used inside corlib, so we provide better
17023         type info to the GC and also allow broken packing as in
17024         bug #80580.
17026 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17028         * sgen-gc.c: removed duplicated function.
17030 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17032         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17033         value that means that the value is not supported, but that we
17034         should not return a failure, but instead report this as a
17035         successful operation.
17037 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17039         Fix tests/bug79956.2.il
17040         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17041         (mono_generic_class_get_class): If the generic definition in an
17042         enum, copy over other fields related to it.
17044 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17046         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17047         genericinst enums (bug #79215).
17049 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17050         * class.c: Fix bug 80307.
17052 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17054         * image.c: if the file table is not present, try to load
17055         all the modules, since we don't have info about them
17056         having or not metadata (bug #80517).
17057         * assembly.c: allow mono_assembly_load_references () to
17058         work for netmodules.
17060 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17062         * image.c, metadata-internals.h, object.c: execute module
17063         cctors when running on the 2 runtime if present (bug #80487).
17065 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17067         * icall.c: optimized InitializeArray() on bigendian.
17069 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17071         * icall.c: fix for the broken ARM FPA double format.
17073 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17075         * icall.c: handle endian issues for r4 and r8 types, too, in
17076         the InitializeArray() icall.
17078 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17080         * loader.c (mono_loader_error_prepare_exception): Clear the error
17081         once we have extracted the information from it, do this before we
17082         call into the JIT's class loading mechanisms.
17084         * object.c (mono_class_create_runtime_vtable): Do not clear the
17085         loader error before calling mono_class_get_exception_for_failure
17086         as the loader error is needed inside
17087         mono_class_get_exception_for_failure to throw the error (thinko).
17089         Fixes #80521
17090         
17091 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17093         * reflection.c: align fields rva data so it's faster to load at
17094         runtime.
17096 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17098         Prepare to simplify GenericMethod handling.
17099         * class-internals.h (mono_method_get_context): New accessor function.
17100         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17101         rather than directly accessing '->context' field.
17103         * class-internals.h (_MonoGenericParam.method): Move ...
17104         (_MonoGenericContainer): ... here.  Add into union with klass field.
17105         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17106         Update to changes.
17108 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17110         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17111         the wrapper type enum and reduce relocations.
17113 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17115         * reflection.c (inflate_mono_method): Reuse method instantiation
17116         from the generic method, if available.
17118 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17120         * marshal.c (emit_marshal_variant): Fix conv_arg
17121         type in last commit, based on whether parameter is byref.
17122         
17123 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17125         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17126         marshalling.
17127         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17128         MONO_TYPE_OBJECT back for VARIANT support.
17130 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17132         * marshal.c, marshal.h, icall-def.h: Implement 
17133         Marshal.ReAllocCoTaskMem.
17135 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17137         * marshal.c: memory retention fixes: use the proper
17138         image cache for runtime_invoke method lookups.
17140 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17142         * mempool.c: added code to help debug mempool allocations.
17144 2007-01-11  Dick Porter  <dick@ximian.com>
17146         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17147         support (experimenting with faking it with IP_MTU_DISCOVER for
17148         systems that don't have IP_DONTFRAGMENT.)
17149         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17150         icall.
17152         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17154         * socket-io.h: Add new fields to MonoSocketAsyncResult
17155         corresponding to the new ones in Socket.cs.
17157 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17159         Fix IronPython regression mentioned in #80249
17160         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17161         'cached_context' field, since it may have been initialized as a
17162         side-effect of metadata parsing.
17164         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17165         (_MonoGenericClass.cached_class): Move here and rename from lone
17166         remaining field of ...
17167         (_MonoInflatedGenericClass): ... this.  Remove.
17168         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17169         to changes.
17171         Fix mcs/tests/test-128.cs regression.
17172         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17173         2007-01-10 change below.
17174         [MONO_TYPE_OBJECT]: Recurse into array case.
17176 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17178         * class-internals.h (mono_get_inflated_generic_class): Remove.
17179         * class.c (mono_get_inflated_generic_class): Remove.
17180         (mono_generic_class_get_class): Rename from
17181         mono_class_create_generic.
17182         (mono_class_from_mono_type) [GENERICINST]: Use it.
17183         * reflection.c, metadata.c: Update to changes.  Use
17184         'mono_class_from_mono_type'.
17186 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17188         * reflection.c: use passed type when encoding an array element
17189         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17191 2007-01-09  Robert Jordan  <robertj@gmx.net>
17193         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17194         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17195         Fixes bug #80392.
17197 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17199         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17201         * object.c (set_value): Avoid aliasing between type->data.klass
17202         and type->data.generic_class.
17204         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17206 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17208         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17209         between type->data.klass and type->data.generic_class.
17211 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17213         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17214         value in out parameters.
17216 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17218         Simplify invariant for MonoGenericClass::klass field.
17219         * class.c (mono_class_create_generic): Verify 'klass' is null.
17220         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17221         initialize 'klass' field.
17223 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17225         Ongoing work to avoid redundant data and simplify invariants.
17226         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17227         'generic_class', and change type to a GenericInst.
17228         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17229         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17231 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17233         * class.c : skip io-layer under PLATFORM_WIN32.
17235 2007-01-03  Tor Lillqvist  <tml@novell.com>
17237         Fix #80305: In a bundled executable, look in the bundled exe
17238         assembly to determine the runtime version. Add the possibility to
17239         bundle also the machine.config file.
17240         
17241         * assembly.c (mono_assembly_open_from_bundle): Make
17242         non-static. Allow being called even if we have no bundled
17243         assemblies, and return NULL right away in that case.
17245         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17246         here.
17248         * domain.c (app_config_parse): Take an assembly exe file name as
17249         parameter instead of a config file name. Check for a bundled
17250         config file for that assembly by calling
17251         mono_config_string_for_assembly_file() (see below) before looking
17252         for one in the file system.
17253         (get_runtimes_from_exe): Corrsponding change to call of
17254         app_config_parse().
17255         (get_runtimes_from_exe): Check for bundled assembly exe file first
17256         by calling mono_assembly_open_from_bundle(). If no bundled
17257         assembly exe file is found, call mono_image_open() as before to
17258         look it up in the file system.
17260         * mono-config.c: Add variable bundled_machinec_onfig.
17261         (mono_config_string_for_assembly_file): New function.
17262         (mono_config_for_assembly): Move code snippet that looks for a
17263         bundled assembly .config file into the above new function. Call
17264         it.
17265         (mono_register_machine_config, mono_get_machine_config): New
17266         functions to set and retrieve
17268         * assembly.h: Declare mono_register_machine_config().
17270         * mono-config.h: Declare mono_get_machine_config() and
17271         mono_config_string_for_assembly_file().
17273         * icall.c: No declaration of environ necessary on Win32. It is
17274         declared (as a macro expanding to a function call) in stdlib.h.
17275         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17276         New internal mono function. Returns the value of
17277         mono_get_machine_config() as a Mono string.
17279         * icall-def.h: Add get_bundled_machine_config().
17281 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17283         Remove redundant field
17284         * class-internals.h (_MonoGenericContext.container): Remove field.
17285         * loader.c (mono_method_get_signature_full): Don't parse a
17286         "container" for a signature parse when the signature is inflated
17287         immediately.
17288         (method_from_methodspec): Likewise, for a generic_inst.
17289         * class.c, metadata.c, reflection.c: Update to changes.
17291 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17293         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17294         'cached_context', and change semantics -- it starts off NULL, and
17295         is initialized on demand.
17296         * class.c (mono_generic_class_get_context): New accessor to
17297         replace 'context' field accesses.
17298         (mono_class_get_context): New helper.
17299         (*): Update to changes.
17300         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17302 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17304         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17305         before the memcpy.   Fixes Marshal2 regression.
17307 2007-01-02  Jb Evain  <jbevain@gmail.com>
17309         * blob.h: add a MONO_TYPE_ENUM definition
17310         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17311         fix the encoding of arrays of enums in custom attributes.
17313         Fixes #79666.
17315 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17317         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17318         string is null terminated, but only cut the string short if it
17319         overflows the buffer.   
17320         
17321         (mono_string_to_byvalstr): Also fix this routine.   The code here
17322         was not properly terminating a string (it was only terminated
17323         because of the previous catch-all memset). 
17325         I left the memset, because I do not know if applications expect
17326         the runtime to clear this region. 
17328         Fixes #79944.
17330         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17331         Clear the error before returning to unmanaged code to prevent the
17332         runtime from being confused later on (fixes  80420).
17333         (ves_icall_type_from_name): Always call mono_loader_clear_error
17334         after parsing a type that could have failed.
17335         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17337         * loader.c (mono_loader_clear_error): Fix indentation.
17339 2006-12-28  Martin Baulig  <martin@ximian.com>
17341         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17343 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17345         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17346         getting a token for an EnumBuilder.
17348 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17350         * reflection.c: be more careful in case resource generation
17351         fails to create the data array.
17353 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17355         * sgen-gc.c: write barrier for clone and fix unregister handles.
17357 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17359         * reflection.c: some fixes needed in the generics code for the moving GC.
17361 2006-12-22  Robert Jordan  <robertj@gmx.net>
17363         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17364         account. Fixes bug #80299.
17366 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17368         Fix WaitHandle usage in delegates.
17369         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17370         * object.c (mono_wait_handle_new): Use the property set method to
17371         initialize the handle.
17372         (mono_wait_handle_get_handle): New.
17373         * threadpool.c (mono_async_invoke): Use it.
17374         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17375         Likewise.
17376         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17378 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17380         * marshal.c (emit_marshal): Call emit_marshal_variant and
17381         emit_marshal_com_interface when applicable.
17382         (emit_marshal_variant, emit_marshal_com_interface): Add
17383         methods for this case and remove if's from emit_marshal_object.
17384         
17385 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17387         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17389 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17391         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17392         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17393         and GlobalFree on Windows. Remove FIXME.
17395 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17397         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17398         implementation for managed objects.
17400 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17402         * object.c: implemented code to be used for checking
17403         that no reference field overlaps with non-references.
17405 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17407         * threadpool.c: fix queue code to be compatible with the
17408         moving GC.
17410 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17412         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17413         in structures by throwing ArgumentNullException.
17415         (emit_marshal_safehandle): Also when they are null parameters.
17417         (emit_marshal_safehandle): Add support for ref
17418         SafeHandles parameters
17420 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17422         * profiler.c: updated to use the mono-dl API instead of
17423         gmodule.
17425 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17427         * profiler.c: updated to use the mono-dl dynamic loading
17428         API instead of gmodule.
17430 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17432         * profiler.c: use readlink, older versions of glib don't have
17433         g_file_read_link ().
17435 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17437         * profiler.c: try to detect the path to mono if libc fails to provide
17438         a useful name (bug #80286).
17440 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17442         Fix #80242
17443         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17444         instance, use the generic type definition instead.
17445         (ves_icall_Type_GetNestedTypes): Likewise.
17446         * class.c (mono_class_create_generic): Always set the
17447         nested_classes of a generic instance to NULL, even if the generic
17448         type definition has nested types.
17450 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17452         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17453         and fix on Linux.
17454         
17455 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17457         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17458         my arguments were in the wrong order.   I also fixed the Windows
17459         version which seems to have had the same issue.
17461         (mono_free_bstr): On Unix, this is g_free.
17462         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17463         conversions (for the tests in corlib to pass).
17465 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17467         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17468         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17469         exception if a ref SafeHandle in a struct has changed).
17470         
17471         (emit_struct_conv): Do not perform layout checks for classes
17472         derived from SafeHandle, as those are specially handled. 
17474         (emit_object_to_ptr_conv): Add support for
17475         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17477         (emit_marshal_safehandle): Implement conversion of return values
17478         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17479         
17480         * threads.c: WaitHandle now is compiled with two different handles
17481         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17482         for 2.0.
17483         
17484         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17485         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17486         these routines to cope with both kinds of fields.
17488 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17490         * metadata.c (mono_type_to_unmanaged): Handle the case where
17491         type->data.klass is a SafeHandle, and in that case, return the
17492         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17493         MONO_MARSHAL_CONV_SAFEHANDLE. 
17495 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17497         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17498         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17499         calling emit_marshal_object.
17501         (emit_marshal_safehandle): Implement marshalling of
17502         SafeHandle parameters (no ref support yet).
17504         (MarshalAction): Document the defines as I implement
17505         them for SafeHandle.
17507         (emit_marshal_object): indentation police.
17509         * class-internals.h: Define MonoSafeHandle.
17510         Add safehandle_class to MonoDefaults type.
17512         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17513         list of classes to check for fields. 
17515         * domain.c (mono_init_internal): Add SafeHandle to the list of
17516         mono_defaults loaded.
17518 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17520         Fix #80253
17521         * reflection.c (mono_reflection_bind_generic_parameters): If the
17522         generic type definition is a type builder, ensure that it is fully
17523         initialized before instantiating it.  Kill some dead code.
17525 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17527         * object.c: clear the loader_error () before loading
17528         more metadata stuff (bug #80258).
17530 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17532         * icall.c, icall-defs.h: type modifiers icalls for
17533         parameters and properties.
17535 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17537         * object.c, icall.c: fixed warnings.
17539 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17541         * marshal.c: fixed a couple of leaks and coding style in a few places.
17543 2006-12-08  Dick Porter  <dick@ximian.com>
17545         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17546         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17547         80173.
17549 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17551         * process.c: ProcessStartInfo may have only filename set and
17552         arguments can be NULL.
17554 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17556         * icall.c: fix leak found by Robert Jordan.
17558 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17560         * marshal.c, marshal.h: generate managed method to access an element
17561         of a multi-dimensional array.
17563 2006-11-30  Paolo Molaro (lupus@ximian.com)
17565         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17567 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17569         * icall.c: back out GetFields () fix until the serialization code is
17570         fixed to not depend on the incorrect behaviour.
17572 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17574         * profiler.c: provide defaults if none are set.
17576 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17578         * Makefile.am, attrdefs.h: new public header file with
17579         constants for attributes for use by embedders.
17581 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17583         * icall.c: GetFields () fix for bug #80064.
17585 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17587         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17588         removed long unused icalls.
17590 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17591   
17592         * marshal.c: 
17593                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17594                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17595                 can be generated without a delegate class.
17596                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17597         
17598         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17600 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17602         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17603         #80069.
17605 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17607         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17608         icall-def.h: added icalls needed by System.GC.
17610 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17612         * loader.c: ensure the class in catch clauses is handled
17613         correctly for generics methods (fixes bug#79980).
17615 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17617         * monitor.h, monitor.c: added mono_locks_dump () function
17618         to help debug deadlocks involving managed locks.
17620 2006-11-13  Dick Porter  <dick@ximian.com>
17622         * file-io.c (get_file_attributes): If the file is a symlink try
17623         and get the stat data for the target, but also add the
17624         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17625         the specs for the windows symlink support, but will probably have
17626         to be reworked when I have test data from a vista machine.  Fixes
17627         bug 79887.
17629 2006-11-13  Dick Porter  <dick@ximian.com>
17631         * gc.c (mono_domain_finalize): 
17632         * marshal.c (mono_delegate_begin_invoke): 
17633         * threadpool.c (socket_io_init, mono_thread_pool_init)
17634         (mono_thread_pool_finish): 
17635         * monitor.c (mono_monitor_try_enter_internal): 
17636         * threads.c (mono_thread_resume, mono_thread_init)
17637         (mono_thread_suspend_all_other_threads)
17638         (mono_thread_execute_interruption): 
17639         * appdomain.c (mono_domain_unload): Check for NULL error returns
17640         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17641         75733.
17643 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17645         * process.c
17646         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17647         Only close the handle if the value of the handle is not
17648         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17649         robust.
17651         Improvement for #75733, so that we do not run into this problem. 
17653         
17654         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17655         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17656         internal variables.  Fixes #79462 
17657         
17659 2006-11-09  Dick Porter  <dick@ximian.com>
17661         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17662         Use poll() not select().  Fixes bug 79397.
17664 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17666         Fix #79872
17667         * assembly.c (mono_assembly_load_from_full): Check that the given
17668         image has an assembly manifest.
17670 2006-11-09  Ankit Jain  <jankit@novell.com>
17672         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17673         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17674         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17676 2006-11-07  Dick Porter  <dick@ximian.com>
17678         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17679         Put the old resolver behaviour back for pre-2.0 profiles.
17681 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17683         * threadpool.c: precise GC and locking fixes.
17685 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17687         * class.c: don't load types that have an explicit unaligned
17688         managed reference. Provide better info in the TypeLoad exception.
17689         Part of the fix for bug #79744.
17690         * object.c: use the correct check for class type load issues.
17692 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17694         * class.c: enforce alignment of fields with managed references
17695         even when Pack=1 is forced by the user (bug #77788).
17697 2006-11-03  Dick Porter  <dick@ximian.com>
17699         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17700         If the address reverse lookup fails, return it as the hostname
17701         anyway.  Fixes bug 79721.
17703 2006-11-03  Dick Porter  <dick@ximian.com>
17705         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17706         Fix build on Windows.
17708 2006-11-02  Dick Porter  <dick@ximian.com>
17710         * icall-def.h: 
17711         * object-internals.h: 
17712         * exception.c (mono_get_exception_thread_interrupted): 
17713         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17714         Fixes bug 74525.
17716         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17717         Check for pending Thread.Interrupt.
17719 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17720         * loader.c: Fixed bug 79684.
17722 2006-10-27  Dick Porter  <dick@ximian.com>
17724         * file-io.c (get_file_attributes): Force symlinks to directories
17725         to be returned as a regular file.  Fixes bug 79733.
17726 2006-10-26  Dick Porter  <dick@ximian.com>
17728         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17729         CreateFile to open a directory then we need to set the
17730         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17732 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17734         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17735         friends.
17737 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17739         * sgengc.c: small cleanup of timer code.
17741 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17743         * sgen-gc.c: fix some warnings and start adding support for
17744         complete object removal on domain unload.
17746 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17748         * assembly.c: build_assembly_name should not consider a version
17749         number without build or revision number invalid. Fixes bug #79715.
17751 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17753         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17754         call kernel32 function OutputDebugString directly.
17755         
17756         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17757         
17758 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17760         * reflection.c: small cleanup, using a function to insert a MonoString
17761         in the string heap.
17763 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17765         * reflection.c: moving GC fixes.
17767 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17769         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17770         all the objects with finalizers belonging to an unloading appdomain.
17772 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17774         * sgen-gc.c: added ability to allocate even when the nursery is fully
17775         pinned and fixed a couple of bugs.
17777 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17779         * threads.h: Revert the last change for now.
17781         * threads.h (mono_thread_get_pending_exception): Rename this to
17782         mono_thread_get_undeniable_exception ().
17784 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17786         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17787         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17788         when fname does not refer to valid assembly. This result in a more
17789         meaningful error message.
17790         * exception.c: added mono_get_exception_bad_image_format2 which 
17791         constructs a BadImageFormatException using the ctor taking a custom
17792         message and the file name. Passing in a NULL msg results in a default
17793         message.
17794         * exception.h: define mono_get_exception_bad_image_format2 function.
17795         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17796         when file name pointed to an invalid IL image. Use 
17797         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17798         as this results in a more meaningful error message.
17800 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17802         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17803         #79465.
17805 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17807         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17808         consistency with the other _size functions.
17809         (mono_type_stack_size): Ditto.
17811         * class.c object.c icall.c: Fix warnings caused by the above change.
17813         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17815         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17817         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17819 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17821         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17822         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17823         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17824         threadpool.h, threads-types.h: mark more internal functions.
17826 2006-10-11  Dick Porter  <dick@ximian.com>
17828         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17829         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17830         reproduce the bug even before applying the fix.)
17832 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17834         * reflection.c: allow retrieving attributes for arguments in generic
17835         methods (bug #79241).
17837 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17839         * debug-mono-symfile.c: properly check fopen () result (found by
17840         coverity).
17842 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17844         * reflection.c: make error message clearer and fixed two
17845         issuelets found by Coverity.
17847 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17849         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17851 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17853         * object-internals.h, gc-internal.h, profiler-private.h:
17854         mark internal functions.
17856 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17858         * reflection.c: put data in the text section.
17859         * icall.c: recognize more types in type_from_typename ().
17860         * process.c, marshal.c: added some GC FIXMEs.
17862 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17864         * loader.c: check for NULL before initializing.
17866 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17868         * gc.c (finalizer_thread): Use a non-alertable wait here.
17870         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17871         until the correct solution is found.
17873 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17875         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17876         modules with no metadata. Fixes #79596.
17878         * image.c (load_metadata_ptrs): Put back the error message when
17879         the #- heap is encountered since the support is not complete yet.
17881 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17883         * gc.c: do not allow the user to SuppressFinalize () a
17884         delegate because it would leak the trampoline if present.
17886 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17888         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17889         PropertyPtr table.
17891 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17893         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17895         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17897         * row-indexes.h: Add definitions for *Ptr tables.
17899         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17901         * metadata.c (mono_metadata_translate_token_index): New helper function to
17902         translate table indexes used in uncompressed metadata.
17903         (mono_metadata_decode_table_row): Ditto.
17904         (mono_metadata_decode_table_row_col): Ditto.
17906         * metadata.c: Add table schema for *Ptr tables.
17908         * class.c loader.c: Use the new helper function to access the affected metadata
17909         tables.
17910         
17911         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17912         #38532.
17913         
17914 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17916         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17917         sequences which can be unbounded in size. Fixes #79583.
17919 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17921         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17922         static initialization.
17924         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17926         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17928         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17930         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17931         ctor fails, i.e. throw the same exception on subsequent accesses.
17932         
17933 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17935         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17936         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17937         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17938         Handle marshalling of interfaces and VARIANTs contained in structs.
17939         
17940         Code is contributed under MIT/X11 license.
17941         
17942 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17944         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17945         
17946         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17947         mempool.
17949 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17951         * console-io.c: ignore previous SIGINT handler.
17953 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17955         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17956         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17957         #79460, #79461, #79485.
17959         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17961         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17962         #79217.
17964 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17966         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17967         could be generated from it.
17969 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17971         * rand.c: fix read loop to correctly handle EINTR.
17973 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17975         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17976         internal calls are defined to keep methods closer to the declaring
17977         type and allow a significant reduction in runtime relocations and
17978         memory usage.
17980 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17982         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17983         exception message to have FileNotFoundException use the default
17984         assembly load error message. Fixes bug #79426.
17985         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17987 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17989         * threadpool.c: (start_thread_or_queue) use the root domain when
17990         creating the thread instead of the async object one.
17992 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17994         * class.c, object.c, class-internals.h, reflection.c:
17995         for arrays, store element_size inside MonoClass (speedup
17996         for array object creation).
17998 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18000         * icall.c: fixed CodeBase to use the file name and not the module
18001         name (bug #79365).
18003 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18005         * mono-debug.c, mono-debug.h: export find_method as
18006         mono_debug_find_method ().
18008 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18010         * debug-helpers.c, class-internals.h: added a few functions useful
18011         when debugging under gdb.
18013 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18015         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18016         characters that need special handling.
18018 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18020         * mono-config.c: make the os/cpu specification more flexible,
18021         allowing lists and negation.
18023 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18025         * marshal.c: COM Interop fixes. Handle case where method->klass.
18026         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18027         calling convention on non-windows platforms. This is for
18028         compatibility with XPCOM and MainWin COM.
18029         
18030         Code is contributed under MIT/X11 license.
18031         
18033 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18035         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18036         correctly. Fixes #79217.
18038         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18040 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18042         * mono-config.c: allow both an os and cpu attribute for dllmap
18043         and dllentry elemnets to enable a single config file to be used
18044         for multiple architectures.
18046 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18048         * loader.c: MonoLoaderError was cleared too soon on load failure.
18049         Fixes bug #79424.
18051 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18053         * icall.c: use the defining class vtable when accessing a
18054         static field, not a pobblibly derived class.
18056 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18058         * icall.c string-icalls.c: Remove references to unicode.h.
18060         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18062         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18064         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18065         indicating the image where custom marshaller types should be looked up.
18066         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18067         custom marshallers, instead of corlib. Fixes #79425.
18069 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18071         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18073 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18075         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18076         Implement Environment.ProcessorCount.
18077         
18078         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18079         Implement Environment.ProcessorCount.
18080         
18081         * icall.c: 
18082         Add Environment.ProcessorCount icall.
18083         
18084         Patch by Jason McFall.
18086 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18088         * assembly.c: don't append .exe/.dll when the filename already contains
18089         one of those extensions.
18091 2006-09-12  Martin Baulig  <martin@ximian.com>
18093         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18094         to array interfaces.
18096 2006-09-11  Martin Baulig  <martin@ximian.com>
18098         * reflection.c (mono_image_build_metadata): Create the
18099         MethodImpl's after emitting all types and methods, so we don't
18100         need another fixup pass for them.
18102 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18104         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18105         change.
18107 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18109         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18110         unload.
18112 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18114         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18115         args is not set. Fixes #78926.
18117 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18119         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18121         * image.c (load_class_names): Move this to class.c, and rename it to 
18122         'mono_image_init_name_cache'.
18123         (load_modules): Fix a warning.
18125         * class.c icall.c image.c: Initialize image->name_cache lazily.
18127         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18128         on its name using information in the AOT file.
18130         * class.c (mono_class_from_name): Use the new hook function.
18132 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18134         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18135         correctly.
18137         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18138         Fixes #79289.
18139         
18140 2006-09-06  Martin Baulig  <martin@ximian.com>
18142         * icall.c (mono_lookup_internal_call): Small fix.
18144 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18146         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18147         double g_free.
18149 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18151         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18152         when --debug is specified.
18154 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18156         * class.c (setup_generic_array_ifaces): Fix a warning.
18158 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18160         * Temporarily remove the patch to assemly.c that checks the
18161         assembly versions as it breaks our gacutil.
18163 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18165         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18167         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18168         a net 1.0 runtime.
18170         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18171         created using the default ctor. Fixes #79152.
18172         (mono_string_builder_to_utf16): Ditto.
18174 2006-09-01  Martin Baulig  <martin@ximian.com>
18176         Fix handling of the generic array interfaces.
18178         * class-internals.h
18179         (MonoDefaults): Removed `generic_array_class' and added
18180         `generic_ilist' class.
18182         * class.c
18183         (mono_bounded_array_class_get): Add the new generic array interfaces.
18184         (setup_generic_array_ifaces): New static method; create vtable
18185         entries for each method in the generic array interfaces.
18187         * metadata.c
18188         (select_container): Allow "parent-less" generic methods.
18190         * marshal.c
18191         (mono_marshal_get_generic_array_helper): New public method.
18193         * icall.c
18194         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18195         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18196         moved the interncall into System.Array.
18198 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18200         A few more cases of avoiding work on types with ->byref set.
18201         Has the real fix for #79238
18202         * icall.c (is_generic_parameter): New helper.
18203         (ves_icall_Type_GetGenericParameterPosition): Use it.
18204         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18205         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18206         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18207         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18208         reference types.
18209         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18210         reference types.
18211         (ves_icall_Type_get_IsGenericInstance): Likewise.
18212         (ves_icall_Type_get_IsGenericType): Likewise.
18214 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18216         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18217         class if possible.
18219         * mempool.h (mono_mempool_get_allocated): New helper function.
18221         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18222         change.
18224         * mempool.c: Fix warnings and the calculation of stats.
18226         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18228         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18230         * loader.c (mono_get_method_from_token): Update method_count stat.
18232         * class-internals.h (MonoStats): Add some stats.
18234 2006-08-31 Robert Jordan  <robertj@gmx.net>
18236         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18237         with managed variants.
18238         All code is contributed under the MIT/X11 license.
18239         
18240 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18242         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18243         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18245         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18247         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18248         with cycles in classes.
18250         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18252         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18253         missing a [MarshalAs] directive. Fixes #79203.
18255         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18256         klass->marshal_info. Fixes #79217.
18258 2006-08-30  Martin Baulig  <martin@ximian.com>
18260         Committing a patch from Joachim Ante <joe@otee.dk>:
18261         Add support for binary data symbol stores.
18263         * debug-mono-symfile.c
18264         (mono_debug_open_mono_symbol_file): Renamed into
18265         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18266         arguments.
18268         * mono-debug.c
18269         (mono_debug_open_image): Added `raw_contents' and `size' args.
18270         (mono_debug_init_2_memory): New public function.
18272 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18274         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18276 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18278         * appdomain.c: implement support for ShadowCopyFiles.
18280 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18282         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18283         when value is NULL (and should remove CID #51).
18285 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18287         * image.c: moved 2 functions to ../utils.
18289 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18291         * gc.c: cope with the target object of a GC handle being NULL
18292         (bug #78877).
18294 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18296         * class.c: recursively check parent's explicit implementations
18297         of interface methods (fixes bug #79125).
18299 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18301         * filewatcher.c: Avoid warnings when building, do not redefine
18302         constants that are defined.
18304         Remove warnings.
18306 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18308         * image.c: don't fail when the link points to an absolute path.
18310 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18312         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18313         Fix CID #3.
18315 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18317         * image.c (full_path): A new method used to obtain the actual path
18318         of an assembly even in the presence of symbolic links.  
18320         This is necessary for the case where we are running a binary that
18321         has been GACed, but we are using the "published" path name
18322         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18323         file in the GAC.
18325         This was the source of the failure for the `xsp' command with the
18326         recent AppDomain changes, as far as the runtime was concerned,
18327         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18328         $prefix/mono/gac/blah/version/blah.exe.
18330         (do_mono_image_open): use full path
18332 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18334         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18336 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18338         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18339         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18341 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18343         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18344         small structures. Fixes #78990.
18346 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18348         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18350         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18352 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18354         * appdomain.c:
18355         * marshal.c: don't load all the assemblies from a domain into newly
18356         created ones. The new domains might have different rules and load
18357         assemblies from different locations. Fixes bug #76757.
18359         Patch by Lluis. Conflicts resolved by Brian Crowell.
18361 2006-08-16  Alp Toker  <alp@atoker.com>
18363         * socket-io.c: First half of the fix for #79084.
18364         Set sa_size to the length of the content, not that of the struct.
18365         Don't add NULL suffix to the content, this should be done in
18366         managed code if needed.
18368 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18370         Fix part of #79012
18371         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18372         mono_metadata_parse_type returns NULL.
18374 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18376         * normalization-tables.h : new file for string normalization data.
18377         * locales.c, locales.h, icall.c :
18378           added load_normalization_resource() for string normalization,
18379           and icall as well.
18380         * Makefile.am : added normalization-tables.h to the sources.
18382 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18384         * marshal.c: Add more helper functions to reduce code duplication and use them
18385         everywhere.
18387 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18389         * marshal.c: Fix non-x86 stdcall warnings.
18390         
18391         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18392         them everywhere.
18394 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18396         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18397         type check on multi-dimensional arrays. Fixes #79000.
18399 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18401         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18402         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18403         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18404         * class-internals.h: add is_com_object to class structure.
18405         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18406         null checks to COM object marshalling. Fix .ctor call on RCW.
18407         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18408         
18409         All code is contributed under the MIT/X11 license.
18411 2006-08-09  Dick Porter  <dick@ximian.com>
18413         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18414         racing mono_monitor_allocator_lock() somewhere, so don't delete
18415         the critical section for now.  Found by running and exiting
18416         monodevelop.
18418 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18420         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18421         (ves_icall_System_ComObject_FindInterface): Ditto.
18422         (ves_icall_System_ComObject_CacheInterface): Ditto.
18424         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18425         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18427 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18429         * threadpool.c: treat pipes from process asynchronous reads as sockets
18430         when reading from them, so we get select/poll or epoll to wait for
18431         data.
18433 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18435         * loader.c: Fix a typo (CID #233) in the null check.
18437 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18439         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18440         Hopefully fixes #78949.
18441         
18442         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18443         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18444         bytes. Fixes #78972.
18446 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18448         * filewatcher.c: we need to set errno here.
18450 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18452         * filewatcher.c: let Win32Exception get the error value.
18454 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18456         * filewatcher.c: translate errno into win32 errors for Win32Exception
18457         to know what happened.
18459 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18461         * threadpool.c: Fix more warnings.
18463         * assembly.c (search_loaded): Fix warnings.
18465         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18466         (mono_async_invoke): Ditto.
18468 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18470         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18471         entries for __ComObject type in addition to ComImport types.
18472         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18473         about hash table.
18474         
18475         All code is contributed under the MIT/X11 license.
18477 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18479         * image.c: avoid tentative loading of modulerefs that contain
18480         no metadata (P/Invoke library names).
18482 2006-07-28  Dick Porter  <dick@ximian.com>
18484         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18485         mono_loader_lock() somewhere, so don't delete the critical section
18486         for now.  Found by running and exiting monodevelop.
18488 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18490         * filewatcher.c: define the inotify syscalls when we're building on
18491         linux and have sys/syscall.h. The build system might not have support
18492         for inotify but the target system might have it.
18494 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18496         * domain.c: Documentation updates.
18498         * loader.c (mono_free_method): Do not release the method
18499         information if we are being profiled, as profilers will use this
18500         information at shut down to present some data to the user.
18502         This is needed so that the profiler does not crash, as the
18503         profiler tends to keep MonoMethods around, and they might become
18504         invalid if we free these.
18506         (mono_get_method_constrained): Return the original CIL stream
18507         method as well, so verification can be performed against it.
18509 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18511         * filewatcher.[ch]: support for inotify file system watcher.
18512         * icall.c: add new internal calls for the inotify file system watcher.
18514 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18516         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18517         #78888.
18519 2006-07-20  Dick Porter  <dick@ximian.com>
18521         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18522         warning.
18524 2006-07-20  Dick Porter  <dick@ximian.com>
18526         * threads.c (start_wrapper): Do the thread cleanup while we still
18527         hold a reference to its object.  Fixes bug 78123.
18529 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18531         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18532         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18533           "managed-to-managed".
18534         * icall.c: Redirect string constructors that take sbyte* to
18535           ves_icall_System_String_ctor_RedirectToCreateString.
18536         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18537           to CreateString () methods with matching signature.
18538         * reflection.c: Use original security informations for
18539           MONO_WRAPPER_MANAGED_TO_MANAGED.
18540         * security-manager.c: Use original security informations for
18541           MONO_WRAPPER_MANAGED_TO_MANAGED.
18542         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18543           that is a placeholder and only its address should be used.
18544         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18545           that is a placeholder and only its address should be used.
18547 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18549         Begin implementing COM Interop.
18550         * appdomain.c: Increment corlib version.
18551         * class.c: Set ComImport classes' parent to __ComObject.
18552         * loader.c: Mark cominterop methods as such.
18553         * domain.c: Add __ComObject class to MonoDefaults structure.
18554         * image.c: Add 2 hashtables to the image for COM Interop related methods
18555         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18556         using the mempool allocator
18557         
18558         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18559         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18560         declaration for mono_metadata_type_dup_mp.
18561         
18562         * debug-helpers.c: Added strings for two additional wrapper types
18563         * object.c: Create proxy objects for ComImport classes
18564         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18565         and added __ComObject class to MonoDefaults structure.
18566         
18567         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18568         MonoComInteropProxy and MonoComObject.
18569         
18570         * marshal.c: Added support for COM Interop
18571         (signature_cominterop): Converts managed signature to corresponding
18572         unmanaged COM signature.
18573         (cominterop_get_function_pointer): gets unmanaged function pointer via
18574         COM object vtable
18575         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18576         (cominterop_get_method_interface): returns interface type that method is defined on
18577         (mono_mb_emit_cominterop_call): emits native call to function pointer
18578         gotten from vtable
18579         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18580         that matches signature of unmanaged function.
18581         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18582         (cominterop_get_invoke): forwards call from proxy to __ComObject
18583         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18584         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18585         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18586         
18587         * marshal.h: Added Marshal icall declarations.
18588         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18589         so we can access them in finalizer
18590         
18591 2006-07-14  Dick Porter  <dick@ximian.com>
18593         * object.c (mono_type_initialization_cleanup): Fix a race
18594         condition by temporarily commenting out the critical section
18595         deletion.
18597 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18599         * reflection.c (create_custom_attr): Fix some warnings.
18600         (create_custom_attr_data): Ditto.
18601         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18602         types. Fixes #78855.
18604 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18606         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18608         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18610 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18612         * reflection.c (resolve_object): Add support for DynamicMethod.
18614         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18615         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18617 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18619         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18620         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18622 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18624         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18625         Fixes #77888.
18627 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18629         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18630         slightly: remove a shadow local variable.
18632 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18634         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18635         definition that introduces the virtual function slot.
18636         Also fix Coverity #105.
18638 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18640         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18641         for dynamic assemblies. Fixes #78724.
18643 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18645         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18646         Fixes #78722.
18648 2006-06-21  Martin Baulig  <martin@ximian.com>
18650         * reflection.c
18651         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18652         fixes #76484.
18654 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18656         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18658 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18660         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18661         nor TYPEREFs.
18662         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18663         Inflate result if necessary.
18664         (mono_class_get_full): Remove old version.  Rename from
18665         'mono_class_get' and add 'context' argument.  Pass it to
18666         ..._create_from_typespec.
18667         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18668         (mono_ldtoken): Revert change below.
18670 2006-06-20  Martin Baulig  <martin@ximian.com>
18672         * class.c (mono_ldtoken): Don't pass the generic context to
18673         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18675 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18677         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18678         and later freeing it. Fixes #78638.
18680 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18682         * icall.c (mono_class_get_throw): Revert over-zealous error
18683         throwing, the caller for mono_class_get_throw will cope with
18684         errors when classes are not properly initialized already.
18686         The code still copes with loader exceptions though.
18688         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18689         
18690 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18692         Fixes the `make run1' version of RuntimeAbort (to be commited,
18693         source is in Bugzilla).
18694         
18695         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18696         FALSE on class loading failure instead of returning true.
18698         * class.c (mono_class_create_from_typedef): It is possible for
18699         mono_metadata_interfaces_from_typedef_full to fail if a class is
18700         not found, cope with this.
18701         
18703 2006-06-14  Dick Porter  <dick@ximian.com>
18705         * socket-io.c: 
18706         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18707         4.1.1
18709 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18711         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18713 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18715         * icall.c: Another fix for building mono in Visual Studio.
18717 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18719         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18720         
18721 2006-06-09  Martin Baulig  <martin@ximian.com>
18723         * debug-mono-symfile.c: Put this back and really fix it this
18724         time. Sorry for all the trouble.
18726 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18728         * icall.c (mono_class_get_throw): Fix a warning.
18729         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18730         ReflectionTypeLoadException if needed. Fixes #78606.
18732         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18733         (mono_class_init): Ditto.
18735         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18736         ref_only exceptions.
18737         (mono_loader_clear_error): Make this work even if there is no error.
18739 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18741         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18742         Marshal.GetComSlotForMethodInfo using internal call.
18744 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18746         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18747         a function for signalling it.
18749         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18750         a referenced assembly is not found.
18752         * loader.c (mono_loader_error_prepare_exception): Add support for 
18753         LOADER_ERROR_ASSEMBLY. Fix formatting.
18755 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18757         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18758         for VARIANT marshalling on windows and increment corlib version
18759         since Variant struct was added.
18761 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18763         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18764         stack trace line information:
18766         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18767         (Martin) when looking up B which is between A and C, return A not C.
18769         Bug is #78573.
18771         Thanks to Alexander Olk for tracking this down.
18773 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18775         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18776         
18777         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18778         avoid clobbering its value.
18779         (mono_string_to_lpstr): Fix a warning on windows.
18781 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18783         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18785         * reflection.c loader.c: Removed references to 'dummy' flag.
18787         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18789         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18790         it gets GC tracking.
18792         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18793         GC tracking.
18794         
18795         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18797         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18799         * appdomain.c: Bump corlib version.
18801 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18803         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18804         CEE_STIND_REF when working with object references.
18806 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18808         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18809         Fixes #78539.
18811 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18813         * loader.c (method_from_memberref): Fix argument value for
18814         mono_loader_set_error_method_load (I was passing the MonoClass
18815         instead of the class name char *).
18817 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18819         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18820         CEE_STIND_REF when working with object references.
18822 2006-05-30  Martin Baulig  <martin@ximian.com>
18824         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18825         mono_method_full_name() change and replace the ':' with a '.'
18826         here.
18828 2006-05-30  Martin Baulig  <martin@ximian.com>
18830         * debug-mono-symfile.c
18831         (mono_debug_symfile_lookup_location): Fix the algorithm:
18832         when looking up B which is between A and C, return A not C.
18834 2006-05-29  Martin Baulig  <martin@ximian.com>
18836         * mono-debug.h
18837         (MonoDebugMethodInfo): Make the typedef public.
18838         (MonoDebugSourceLocation): New public struct.
18840         * mono-debug.c
18841         (mono_debug_source_location_from_address): Removed.
18842         (mono_debug_source_location_from_il_offset): Removed.
18843         (mono_debug_il_offset_from_address): Removed.
18844         (mono_debug_address_from_il_offset): Removed.
18845         (mono_debug_lookup_method): New public function.
18846         (mono_debug_lookup_source_location): New public function; replaces
18847         the old mono_debug_source_location_from_*() functions; see the
18848         inline documentation.
18849         (mono_debug_free_source_location): New public function.
18850         (mono_debug_print_stack_frame): New public function; see the
18851         inline documentation.
18853         * debug-mono-symfile.c
18854         (mono_debug_find_source_location): Renamed into
18855         mono_debug_symfile_lookup_location(); only take a
18856         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18857         documentation.
18858         (mono_debug_find_method): Renamed into
18859         mono_debug_symfile_lookup_method().
18861 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18863         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18864         returned by mono_image_open_full ().
18866         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18867         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18868         #78517.
18870         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18871         #78518.
18873 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18875         * class.c (mono_class_from_typeref): handle missing images
18876         earlier, deals with bug #78418.   Refactor code; 
18878         Fix a warning introduced in my previous commit (some stale code
18879         from before I revisited my patch).
18881         * class.c (mono_class_create_from_typedef): On failure, remove the
18882         class from the MonoImage->class_cache as the class is not
18883         initialized;   Fixes the leak pointed out by Paolo.
18885 2006-05-25  Dick Porter  <dick@ximian.com>
18887         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18888         DeleteCriticalSections until I figure out which one may still be
18889         sometimes locked when mono_thread_cleanup is called.
18891 2006-05-24  Dick Porter  <dick@ximian.com>
18893         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18894         of mono_thread_manage and back into its own function, so it can be
18895         called after the finalizer thread has finished.
18897         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18899 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18901         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18902         Fixes #78495.
18904         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18905         with non-blittable elements.
18906         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18908 2006-05-24  Martin Baulig  <martin@ximian.com>
18910         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18911         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18913         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18914         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18915         `mono_debugger_event_handler' to NULL.
18917 2006-05-24  Martin Baulig  <martin@ximian.com>
18919         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18921 2006-05-24  Martin Baulig  <martin@ximian.com>
18923         * mono-debug-debugger.h
18924         (mono_debugger_create_notification_function): Added
18925         `MonoCodeManager *' argument.
18927 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18929         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18931 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18933         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18934         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18935         implementation.
18937 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18939         * icall.c: precise GC support: objects can't be stored in unmanaged
18940         memory anymore, even if they are kept alive by other references: since
18941         they can move the GC needs to be able to always find them.
18943 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18945         * object.c: precise GC support for static fields. Support
18946         for moving GCs: write barriers and pinned allocation for interned
18947         strings.
18949 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18951         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18952         structure.
18954 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18956         * class.c, gc.c: sgen and precise GC updates.
18958 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18960         * marshal.h, marshal.c: added write barrier wrapper and precise type
18961         fixes.
18963 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18965         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18966         support.
18968 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18970         * reflection.c: precise and sgen GC updates.
18972 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18974         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18976 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18978         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18980 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18982         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18983         MONO_TYPE_OBJECT. Fixes #78462.
18985 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18987         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18988         and blittable types.
18990 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18992         * class.c (mono_class_get_exception_for_failure): Implement parts
18993         of a TODO: if the loader error is set (instead of the class
18994         error), we return a Loader exception that can be properly thrown
18995         elsewhere.
18997         This was exposed by some Winforms 2.0 code that I tried to run
18998         (Atsushi pointed me to it).
19000 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19002         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19003         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19004         
19005         * marshal.c (emit_marshal_vtype): Add limited support for 
19006         UnmanagedType.LPStruct. Fixes #78427.
19008         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19009         Applied a patch from kangaroo to fix #77523.
19011 2006-05-17  Martin Baulig  <martin@ximian.com>
19013         * threads.c
19014         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19015         (debugger_thread_created): Removed.
19016         (debugger_thread_exited): Removed.
19018 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19020         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19022         * object-internals.h (MonoReflectionResource): Sync with managed version.
19024 2006-05-12  Wade Berrier <wberrier@novell.com>
19026         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19028 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19030         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19031         functions try to allocate from the image mempool.
19033 2006-05-12  Dick Porter  <dick@ximian.com>
19035         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19037 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19039         * object.c: The FieldGetter and FieldSetter methods require the full
19040         name of the class, not only the name. Fixes bug #78277.
19042 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19044         * loader.c (method_from_memberref): Do not pass the NULL klass to
19045         mono_loader_set_error_() methods.  Pass the non-NULL value
19046         (class). 
19048 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19050         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19051         (mono_assembly_close): Null out assembly->image->references after freeing it.
19053         * image.c (mono_image_close): Free image->references.
19054         
19055         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19057 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19059         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19060         before checking if it's NULL (g_assert).
19062 2006-05-10  Martin Baulig  <martin@ximian.com>
19064         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19065         I thought I already killed that two months ago, but now it somehow reappeared.
19067 2006-05-10  Martin Baulig  <martin@ximian.com>
19069         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19071 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19073         * reflection.c: Allocate memory for dynamically created methods in the image
19074         mempools.
19076 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19078         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19079         don't use the ad pointer before checking if it's NULL (g_assert).
19081 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19083         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19084         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19086         * marshal.c: Allocate all signatures from mempools.
19088         * marshal.c: Allocate some more signatures from mempools.
19090 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19092         * object.c (mono_load_remote_field): The code used to provide a
19093         temporary variable for returning results if the user did not
19094         provide a result pointer.  But our temporary variable was allocted
19095         on the satck.
19097         Fix calling code to always pass a result area.   Coverity ID 103.
19099 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19101         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19102         value, not the old. Fixes #78312.
19103         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19105         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19106         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19107         per-image cache.
19109         * assembly.c (mono_assembly_close): Free image->references.
19111         * assembly.c (mono_assembly_names_equal): Fix a warning.
19112         (mono_assemblies_cleanup): Cleanup more global data.
19114         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19116         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19117         ptr_cache and image->modules.
19119         * image.c (mono_image_init): Allocate array_cache lazily.
19120         
19121 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19123         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19124         behavior was changed recently and has bad side effects.
19126 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19128         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19129         
19130         * assembly.c (mono_assembly_close): Remove a debug printf.
19132         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19134         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19135         to also allow for temporary references between mono_image_open ()/close ().
19137         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19139 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19141         * marshal.c: Fix support for dynamic methods.
19143         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19145         * marshal.c (mono_marshal_cleanup): New cleanup function.
19147         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19148         image mempools.
19150         * class.c (mono_class_init): Fix leaking class->nested_classes.
19152         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19154         * image.c (mono_image_init): Initialize the new cashes.
19156         * image.c (mono_image_close): Destroy the new cashes.
19158         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19160         * mempool.c (mono_mempool_strdup): New helper function.
19162         * class-internals.h: Add prototype for mono_loader_unlock ().
19164         * domain.c (mono_jit_info_table_find): Fix a warning.
19165         (mono_debugger_check_runtime_version): Ditto.
19167         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19168         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19169         functions to these modules.
19171         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19172         metadata modules.
19173         
19174         * marshal.c (mono_free_bstr): Fix a warning.
19176         * assembly.c (mono_assembly_open_full): Fix another small leak.
19178         * object.c: Fix some unload leaks in the remoting code.
19180         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19181         function.
19183         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19185         * reflection.c: Fix some unload leaks in dynamic assemblies.
19187 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19189         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19190         * marshal.h: Add BSTR support on Win32
19191         * icall.c: Add BSTR icalls
19192         * metadata.h: Add BSTR enums
19194 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19196         Work to catch the crash from #76795 and turn it into an
19197         exception.   As I stubbed out pieces of the VisualBasic support,
19198         I found a number of places where the code was failing and I added
19199         checks to those places. 
19200         
19201         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19202         function return a status code.  If we fail to parse the signature
19203         from mono_metadata_parse_generic_inst, return FALSE.
19205         * loader.c (mono_get_method_from_token): If we fail to load the
19206         method (mono_class_get) return NULL.   
19208         * (method_from_memberref): Return NULL if we are unable to parse
19209         the method signature
19211         (mono_loader_error_prepare_exception): Since we now use the
19212         loader_error flag internally to stop processing, and obtaining
19213         exceptions that might be thrown will walk this code path the
19214         proper way of going from a MonoLoaderError into a
19215         MonoException was convoluted.   This new routine encapsulates the
19216         process of turning the error into an exception and *clearing* the
19217         error afterwards.
19218         
19219 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19221         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19222         with missing assemblies), and to cope with:
19224                 * Missing fieldref from a non-existing assembly.
19225                 * Missing methodref from a non-existing assembly.
19227         The first batch of work to address *some* of the issues from 76661.
19228         
19229         * object.c (mono_class_create_runtime_vtable): If we fail to
19230         initialize the class raise the exception here. 
19232         * metadata.c (mono_class_get_overrides_full): If any methods fail
19233         to load return the failure to the caller.
19235         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19236         flagging assemblies that failed to load.   
19238         Do not crash if we are unable to load the assembly.
19240         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19241         assemblies. 
19243         * loader.c (mono_loader_set_error_type_load): Change the
19244         convention to always pass unallocated strings, so we make our own
19245         copies (I know our own code had duplicated strings before, but
19246         this keeps the normal conventions).
19247         (method_from_memberref): Call mono_loader_set_error_method_load
19248         for all possible failures of loading the class. 
19249         Remove assert, turn into a loader error.
19251         (mono_loader_error_to_exception): Move this routine from mini
19252         (mini_loader_error_to_exception) there was no need to have that in
19253         mini. 
19255         * class.c (mono_class_from_typeref): If we were not able to load
19256         the assembly with mono_assembly_load_reference, call the
19257         mono_loader_set_error_type_load to register the problem.
19259         (mono_class_setup_fields): If we fail to load the type from
19260         mono_metadata_parse_type_full, call mono_class_set_failure and
19261         break from the loop.
19263         If class->exception_type is set, we do not layout the fields as
19264         that might crash the runtime, and instead return (from breaking
19265         from the previous loop).
19267         (mono_class_setup_vtable): This now returns a boolean indicating
19268         whether the table was properly setup.   The decision is driven by
19269         mono_class_get_overrides_full which might run into non-existing
19270         methods. 
19271         
19272         (mono_class_init): Returns TRUE on success or FALSE if there was a
19273         problem in loading the type (incorrect assemblies, missing
19274         assemblies, methods, etc).
19276         When we call mono_class_setup_fields we also check for a potential
19277         error inside this call (either a class exception or a general
19278         loader exception).
19280         (mono_class_create_from_typedef): If the parent fails to load
19281         (calling mono_class_get_full) return NULL.
19282         
19283         ** Important **
19285         calls to mono_metadata_parse_type_full should be checked
19286         everywhere and set the mono_class_set_failure
19287         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19289         The current patch checks the places where my manually constructed
19290         tests show the errors are showing up, but we should do it
19291         everywhere. 
19293         ** Important2 **
19295         mono_class_init return values should be tested everywhere, like
19296         the previous case this is something that we should audit
19297         everywhere and not only on the cases exposed by the tests I
19298         created. 
19300 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19302         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19303         boolean parameter and instead pass the information on `options'
19304         parameter (FileOptions).
19306         * icall.c: Register the new signature for MonoIO.Open.
19308         * debug-helpers.c (dis_one): Trying to understand how coverity
19309         works.  Fix Run 5, item 78.
19311 2006-04-26  Dick Porter  <dick@ximian.com>
19313         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19314         dereference.
19316 2006-04-25  Martin Baulig  <martin@ximian.com>
19318         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19320         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19321         debugger_thread_created().
19322         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19323         special way.
19324         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19325         (mono_debugger_finalize_threads): New function; undo the effects
19326         of mono_debugger_init_threads().
19327         (mono_debugger_create_all_threads): Removed.
19329 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19331         * image.c (mono_image_close): Tidy up trace messages.
19333         * assembly.c (mono_assembly_close): Ditto.
19335         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19336         no longer references an already freed assembly. Fixes #78168.
19338 2006-04-21  Dick Porter  <dick@ximian.com>
19340         * threads.c (mono_thread_detach): Fix reference counting when
19341         detaching threads.
19343 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19345         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19346         #78155.
19348 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19350         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19351         (mono_type_to_stind): Ditto.
19353         * marshal.c: Use the new helper functions to simplify code.
19355         * image.c (mono_image_close): Add some code for help debug assembly unloading
19356         problems.
19358         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19359         image mempool.
19361         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19362         assembly was already loaded in another appdomain. Fixes #78083.
19364 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19366         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19367         referenced assemblies.
19368         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19370         * domain.c (mono_domain_free): Add a trace message.
19372         * appdomain.c (add_assemblies_to_domain): Ditto.        
19374         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19375         field.  
19377 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19379         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19381 2006-04-12  Martin Baulig  <martin@ximian.com>
19383         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19384         `USE_INCLUDED_LIBGC'.   
19386 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19388         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19389         the patch contains ../ and a small directory name later. Hopefully fixes
19390         #78035.
19392 2006-04-10  Martin Baulig  <martin@ximian.com>
19394         Clean up the debugger's thread-handling code.
19396         The debugger's thread-handling code has been moved from
19397         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19398         over the `threads' hash, keep track of exiting threads and also
19399         use proper locking.
19401         We can now debug XSP and XSP based applications with the debugger.
19403         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19405         * threads.h
19406         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19407         (mono_install_thread_callbacks): Likewise.      
19409         * threads.c (mono_thread_callbacks): Removed.
19410         (debugger_thread_created, debugger_thread_exited): New static functions.
19411         (start_wrapper): Call debugger_thread_created().
19412         (thread_cleanup): Call debugger_thread_exited().
19413         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19414         (mono_debugger_init_threads): New public function.
19415         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19416         iterate directly over the `threads' hash and also use proper locking.
19418         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19420         * mono-debug-debugger.h
19421         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19423 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19425         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19426         argument type=array. Fixes #78057.
19428 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19430         * culture-info-table.h : regenerated. Fixed bug #69652.
19432 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19434         * loader.c metadata.c: Reapply a variant r59116.
19435         
19436         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19438         * class.c (mono_class_setup_interface_offsets): New internal function.
19440         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19441         interfaces too. Fixes #77398.
19443         * reflection.c (encode_cattr_value): Add support for 
19444         parameter type=object, argument type=array.
19445         (load_cattr_value): Ditto. Fixes #77916.
19447         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19448         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19450         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19451         a byval char array and CharSet is Ansi.
19453         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19455 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19457         * metadata.c: Add some locking comments.
19458         
19459         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19460         mempool.
19461         (mono_metadata_free_method_signature): Don't free the signature itself.
19463         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19465         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19466         reference the same MonoImage.
19467         (mono_assembly_load_from_full): Add an assert.
19469 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19471         * image.c (mono_image_close): Don't put the image we are about to free into the
19472         loaded_images_guid_hash.
19474         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19475         to reduce code duplication.
19477         * marshal.c: Register the native functions called by this module as icalls, to
19478         somewhat centralize the creation of MonoMethodSignature's.
19480         * loader.c (mono_method_signature): Add a cache for method signatures.
19482         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19483         the parameter attributes of a method.
19484         (mono_metadata_parse_method_signature_full): Refactored the computation of
19485         parameter attributes into a separate function. Also avoid one allocation in
19486         most cases.
19488         * assembly.c (mono_assembly_close): Ditto.
19490         * image.c (mono_image_close): Log trace messages with INFO level.
19492         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19494         * image.c reflection.c: Correct reference counting of image modules.
19495         
19496         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19497         of this function from the image mempool.
19498         
19499         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19500         to allow more cached types to be used.
19502         * mono-debug.c (mono_debug_add_method): Appled patch from
19503         David S. Miller  <davem@sunset.davemloft.net>: Access 
19504         minfo->lexical_blocks[] entry elements using read32().
19506 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19508         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19509         methods as it is allocated from the mempool.
19511         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19512         image mempool.
19514         * metadata-internals.h: Add comments describing the reference counting scheme
19515         used for MonoImage and MonoAssembly.
19517         * image.c assembly.c reflection.c: Rework reference counting of images and 
19518         assemblies so they are freed when the runtime is shut down. Free some 
19519         additional memory structures when an image is unloaded.
19520         
19521 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19523         * class.c loader.c reflection.c: Allocate more data structures in
19524         the image mempool.
19526 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19528         * icall.c
19529         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19530         build on pre glib 2.4 systems.
19532 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19534         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19536         * icall.c: Fix some warnings.
19538 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19540         * culture-info-table.h : regenerated.
19542 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19544         * threads.c, object-internals.h, verify.c: changed the culture caching
19545         code to use a normal MonoArray for storage so the GC can keep track of
19546         them easily. Fixed bits of the cache logic, too and simplified the
19547         code.
19549 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19551         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19552         thread for non-Boehm GCs.
19554 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19556         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19557         needed to keep track of the data for static fields.
19559 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19561         Fix #75172
19562         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19563         for interface classes.  Use 'num_methods' instead.
19564         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19565         before using '->vtable_size' field.
19567 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19569         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19570         doesn't contain managed pointers, so use a normal hashtable.
19572 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19574         * reflection.c, class-internals.h, domain.c: fixed handling of types
19575         used as values for objects in custom attributes (bug #77915):
19577 2006-03-24  Martin Baulig  <martin@ximian.com>
19579         * class.c (mono_class_setup_fields): Added support for generic
19580         instances; fixes #77580.
19582 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19584         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19586 2006-03-24  Dick Porter  <dick@ximian.com>
19588         * file-io.c (get_file_attributes): More stat macro breakage.
19589         Fixes bug 77759.
19591 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19593         * profiler.c: added the file=filename option in the default profiler
19594         to output the profile data to filename.
19596 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19598         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19599         bug #77877.
19601 2006-03-22  Martin Baulig  <martin@ximian.com>
19603         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19604         allocated `MonoClassField *' in `fb->handle'.
19606 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19608         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19609         allocate interface ID to save memory and allow better ID reuse on
19610         appdomain unload. setup_generic_vtable () removal from Martin.
19612 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19614         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19615         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19616         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19617         write barriers for reference stores with managed objects accessed with
19618         C structures in the runtime and in embedding programs.
19620 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19622         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19623         'interface_id' and 'max_interface_id' fields of MonoClasses
19624         representing open generic types.
19626 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19628         * object.h, object.c, icall.c: added functions to deal with
19629         storing valuetypes that contain references in managed objects.
19630         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19631         fixes and comments around uses of mono_array_addr ().
19633 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19635         * object.h, icall.c, monitor.c: object.GetHashCode ()
19636         implementation that supports the moving garbage collector.
19638 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19640         * icall.c, threads-types.h, threads.c: implemented finalizer for
19641         LocalDataStoreSlot.
19643 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19645         * metadata.c (mono_type_size): Add a fixme.
19646         (mono_type_stack_size): Ditto.
19648         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19649         'type_forwarders' field.
19651         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19652         attribute from net 2.0.
19654         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19655         from class.c.
19657         * class.c (mono_class_setup_fields): Fix a warning.
19658         
19659         * class.c (mono_class_from_name): Add support for assemblyref entries
19660         in the EXPORTEDTYPE table.
19662         * reflection.c: Add support for handling type forwarders under net 2.0.
19664         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19665         
19666 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19668         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19669         overwriting entries in ModuleBuild->types, also clean up the code
19670         a little. Fixes #77774.
19672 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19674         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19675         load friend assembly info when present.
19677 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19679         Fix crasher on gtest-158.cs.
19680         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19681         the return value if the MonoClass we want is yet in an
19682         inconsistent state.
19683         * class.c (mono_class_create_from_typedef): Add an comment
19684         explaining an order dependency between mono_class_setup_parent and
19685         mono_class_setup_mono_type.
19687 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19689         * class.c: documentation updates and events bug fix.
19691 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19693         * class.c: some cleanup, locking fixes.
19695 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19697         * class.c: fix the generics code to setup nested
19698         type info to the instantiated type (bug #77770).
19700 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19702         * marshal.c: fixed a few type correctness issues.
19704 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19706         * loader.c: the Set/Get/Addrtess array methods should be public.
19708 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19710         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19711         
19712         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19713         info->wrapper.
19715 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19717         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19719         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19721         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19722         (mono_mempool_alloc0): Ditto.
19724 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19726         * socket-io.c:
19727         (create_object_from_sockaddr): it was allocating 4 extra bytes
19728         for the AF_UNIX data. Fixes bug #77747.
19730 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19732         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19734 2006-03-09  Dick Porter  <dick@ximian.com>
19736         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19737         Fixes bug 76966 again.
19739 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19741         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19742         names from r57532
19743         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19745 2006-03-07  Martin Baulig  <martin@ximian.com>
19747         * object.c
19748         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19750 2006-03-07  Martin Baulig  <martin@ximian.com>
19752         * class.c
19753         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19754         regression introduced in r56970; see gtest-252.cs.
19756         * loader.c (mono_get_method_constrained): Correctly handle generic
19757         methods; see gtest-253.cs.
19759 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19761         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19763 2006-03-04  Martin Baulig  <martin@ximian.com>
19765         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19766         compute the parent type at runtime, just like we're already doing
19767         it for interfaces.
19769         * reflection.c
19770         (mono_reflection_bind_generic_parameters): Don't compute the
19771         parent type anymore.
19773         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19775 2006-03-04  Martin Baulig  <martin@ximian.com>
19777         * mono-debug-debugger.h
19778         (mono_debugger_create_notification_function): Allocate memory at
19779         runtime and return a pointer to it.
19781 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19783         * assembly.c: Fix windows build.
19784         
19785         * assembly.c: Fix build.
19787         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19789         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19790         
19791 2006-03-03  Dick Porter  <dick@ximian.com>
19793         * process.c
19794         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19795         Check parameters before dereferencing them.  Fixes Aaron's part of
19796         bug 77393.
19798 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19800         Fix performance regression.
19801         * loader.c (find_method_in_class): Add 'from_class' argument.
19802         Rename 'klass' argument to 'in_class'.  The signature is compared
19803         against the method in 'in_class', and the corresponding method is
19804         returned from 'from_class'.
19805         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19806         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19807         type definition and generic instantiation in parallel.
19808         (mono_get_method_constrained): Update to changes.
19810 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19812         * threads.c: make sure the domain is correct, too when doing
19813         mono_thread_attach ().
19815 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19817         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19818         windows. Fixes #77683.
19820 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19822         * object.h, *: introduced specific way to set elements of an array
19823         of references to be used as write barrier. Still need to audit the
19824         uses of mono_array_addr.
19826 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19828         * object-internals.h: New field to cache the assmebly name, patch
19829         from Tambet Ingo (tambet@ximian.com)
19831 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19833         * decimal.h, class-internals.h, metadata-internals.h,
19834         file-io.h: mark a few function declarations as internal, to
19835         reduce the number of PLT entries.
19837 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19839         * file-io.c: fix typo in warning message.
19841 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19843         * loader.c: on unix, lookup the "*A" version of a function
19844         if charset is auto as a second option before failing.
19846 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19848         * class.h (mono_class_inflate_generic_method): Revert to two
19849         argument version.
19850         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19851         (mono_class_inflate_generic_method_full): Add.
19852         * class.c (mono_class_inflate_generic_method_full): Rename from
19853         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19854         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19855         * loader.c, reflection.c: Update to changes.
19857 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19859         * icall.c: const fixes and small improvements.
19861 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19863         * threadpool.c: for asynchronous connect(), enable the same workaround
19864         for BSD 6 as for the Mac. Fixes bug #77637.
19866 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19868         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19869         formatted classes. Fixes #77524.
19871 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19873         * class.c (inflate_generic_type): Add a couple more
19874         micro-optimizations.
19875         (inflate_generic_context): Don't use the 'gmethod' from
19876         'inflate_with'.
19877         (mono_class_inflate_generic_method): If the method has generic
19878         parameters, but the passed-in context doesn't have a 'gmethod',
19879         create one.  Use the possibly simplified generic instantiation
19880         from the declaring class instead of the one passed in.
19882 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19884         Make generic method signature and method header handling lazy.
19885         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19886         (inflate_generic_header): Likewise.
19887         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19888         parameter to avoid inflating types.
19889         (mono_get_inflated_method): Empty out.
19890         * class.h (mono_class_inflate_generic_method): Update to changes.
19891         * loader.c (mono_get_method_from_token): Don't parse signature for
19892         generic methods, nor methods of generic classes.
19893         (mono_method_signature): Rename from 'mono_method_signature'.
19894         Inflate signature on demand.
19895         (mono_method_get_header): Inflate method header on demand.
19896         * reflection.c: Update to changes.
19898 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19900         * metadata.c (mono_metadata_inflate_generic_inst): If the
19901         instantiation is closed, don't bother expanding it in the new
19902         context.
19903         * class.c (inflate_generic_class): If the generic instantiation
19904         doesn't change after inflation, return the argument itself.
19905         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19906         Add bounds checks.
19907         (inflate_generic_context): If neither the generic class nor the
19908         generic method instantiations change, return the original context.
19909         * reflection.c (mono_method_get_object): Do
19910         'mono_get_inflated_method' before accessing the ->klass field.
19911         (inflate_mono_method): Don't create a MonoGenericMethod unless
19912         necessary.
19913         (inflate_method): Don't pass a constructed type as the declaring
19914         type of a methodbuilder.
19916 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19918         * object.c: fix memory overwrite.
19920 2006-02-22  Dick Porter  <dick@ximian.com>
19922         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19923         it doesn't work any more.
19924         (mono_threads_request_thread_dump): Fix unused variable warnings.
19926 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19928         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19929         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19930         the public header file.
19932 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19934         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19936 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19938         * class-internals.h, object.c: reduce the size of MonoVTable
19939         and store the interface_offsets array at negative offsets.
19941 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19943         * metadata.c: tweak table descriptors data structures to reduce
19944         size and runtime relocations.
19946 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19948         * marshal.c: fix some types and opcodes to be type-safe
19949         in marshaling wrappers.
19951 2006-02-21  Ankit Jain  <jankit@novell.com>
19953         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19955 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19957         * metadata.c (get_constraints): Relax debugging checks for monodis.
19959 2006-02-21  Ankit Jain  <jankit@novell.com>
19961         * metadata.c (mono_metadata_load_generic_params): Move the code
19962         checking for ambiguous generic params from here to mono/dis/get.c
19963         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19965 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19967         Fix assertion triggered when compiling nemerle.
19968         * class.c (mono_get_shared_generic_inst): Rename from
19969         get_shared_inst and make non-static.
19970         * loader.c (mono_get_shared_generic_method): New.  Used to create
19971         the MonoGenericContext-equivalent of a MonoGenericContainer.
19972         (mono_get_method_from_token): Initialize the 'context' field of
19973         the created MonoGenericContainer.
19974         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19975         * metadata.c (get_constraints): Add sanity check.
19976         * class-internals.h: Add new internal methods.
19978         * reflection.c (verify_safe_for_managed_space): New sanity check.
19979         Currently checks that owner-less generic parameters aren't allowed
19980         in managed space.
19981         (mono_type_get_object): Use it.
19982         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19983         that are now in mono_type_get_object.
19984         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19986 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19988         * metadata.c (mono_type_create_from_typespec): Rename from
19989         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19990         argument and caching of types in the generic container.
19991         (unwrap_arrays, find_generic_param): Remove.
19992         * metadata-internals.h: Update.
19993         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19995 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19997         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19999         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20000         return values. Fixes #77581.
20002         * class.c (mono_fnptr_class_get): Switch name and name_space.
20004         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20005         classes and add support for [In, Out] attributes.
20006         (mono_marshal_free_asany): Ditto. Fixes #77524.
20008 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20010         * class.c (mono_class_from_generic_parameter): Make more robust to
20011         incomplete MonoGenericContainers from monodis.
20013 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20015         * class-internals.h: added some more exception types.
20016         * class.c, metadata.c: added a few checks to handle missing
20017         types.
20019 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20021         Use owner-less generic-params some more.
20022         * class.c (my_mono_class_from_generic_parameter): Remove.
20023         (mono_class_from_generic_parameter): Handle null image,
20024         param->name and param->owner.
20025         (mono_class_from_mono_type): Update.
20026         (mono_class_create_from_typespec): Remove 'container' parameter.
20027         If that parameter is non-null, the result is always inflated by
20028         'mono_class_get_full' anyway.
20029         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20030         parameter.
20031         (mono_class_get_full): Update.
20033         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20034         instance is not open, don't bother inflating.
20035         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20036         parse metadata for inflated classes.
20037         (_mono_class_get): Change GenericContext* parameter to
20038         GenericContainer*.
20039         (mono_class_create_from_typespec): Likewise.  Simplify, and
20040         implement trivially.  All the cases are handled in
20041         mono_class_from_mono_type.  Don't inflate returned class.
20042         (mono_class_get_full): Delegate GENERICINST optimization to
20043         inflate_generic_type.
20044         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20046 2006-02-16  Dick Porter  <dick@ximian.com>
20048         * socket-io.c (create_object_from_sockaddr): Fix typo.
20049         (create_sockaddr_from_object): Check array lengths before
20050         potentially accessing items off the end.
20051         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20052         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20053         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20054         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20055         length checks to avoid wraparound overflows.
20056         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20057         contents of the array of sockets
20058         (hostent_to_IPHostEntry2)
20059         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20060         Check return value of inet_ntop ().
20061         (addrinfo_to_IPHostEntry): Fix typo
20063 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20065         Type metadata parsing doesn't use generic-instantiation information.
20066         * metadata.c (mono_metadata_parse_array_full): Change
20067         MonoGenericContext* parameter to MonoGenericContainer*.
20068         (mono_metadata_parse_type_full): Likewise.
20069         (mono_type_create_from_typespec_full): Likewise.
20070         (mono_metadata_parse_mh_full): Likewise.
20071         (mono_metadata_parse_generic_inst): Likewise.
20072         (do_mono_metadata_parse_generic_class): Likewise.
20073         (do_mono_metadata_parse_type): Likewise.
20074         * metadata-internals.h: Update to changes.
20075         * class.c (mono_class_find_enum_basetype): Likewise.
20076         (mono_class_setup_fields): Likewise.
20077         (mono_class_create_from_typespec): Likewise.
20078         * loader.c (method_from_methodspec): Likewise.
20079         (mono_get_method_from_token): Likewise.
20080         (mono_method_get_header): Likewise.
20082 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20084         * marshal.c: handle additional GENERICINST case (patch from
20085         Thong Nguyen <tum@veridicus.com>).
20086         Fix a few cases where LDIND_I/STIND_I was used for references.
20088 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20090         * reflection.c (mono_reflection_get_token): Remove unused variable.
20092 2006-02-16  Martin Baulig  <martin@ximian.com>
20094         * reflection.c (mono_reflection_get_token): Add support for fields
20095         in instantiated generic types.
20097         * icall.c
20098         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20100 2006-02-15  Martin Baulig  <martin@ximian.com>
20102         * icall.c
20103         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20104         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20105         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20106         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20108 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20110         * class.c, metadata.c, metadata.h, object.c, icall.c,
20111         marshal.c: changed mono_type_get_underlying_type () to do
20112         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20113         Fixed handling of instantiated generic valuetypes (bug #75479).
20115 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20117         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20118         Delegate to mono_metadata_decode_value, and work on the returned value.
20120         * icall.c (ves_icall_MonoType_GetGenericArguments):
20121         Add consistency check here too.
20122         
20123 2006-02-15  Ankit Jain  <jankit@novell.com>
20125         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20126         char/short etc.
20128 2006-02-15  Ankit Jain  <jankit@novell.com>
20130         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20131         signed values, used only for representing lower bounds of arrays.
20132         (mono_metadata_parse_array_full): Use new
20133         mono_metadata_decode_signed_value to decode lower bounds.
20135 2006-02-14  Martin Baulig  <martin@ximian.com>
20137         * reflection.c
20138         (mono_reflection_get_token): Support "MonoGenericMethod" and
20139         "MonoGenericCMethod" and allow generic instances / methods.
20141 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20143         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20144         to obtain the terminal size using an ioctl.
20146         * object.c (mono_nullable_init): Revert this as nullable reference
20147         types are not valid.
20148         (mono_nullable_box): Ditto.
20150 2006-02-09  Dick Porter  <dick@ximian.com>
20152         * threads.c (mono_thread_detach): Drop a reference to the thread
20153         we're detaching.
20155 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20157         * object.c (mono_nullable_init): Handle nullable reference types.
20158         (mono_nullable_box): Ditto. Fixes #77446.
20160 2006-02-07  Martin Baulig  <martin@ximian.com>
20162         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20164 2006-02-07  Ankit Jain  <jankit@novell.com>
20166         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20167         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20168         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20169         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20170         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20171         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20173 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20175         * class.c (mono_class_create_generic): Set type_token as well.
20177         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20178         compatible with MS.
20180 2006-02-02  Martin Baulig  <martin@ximian.com>
20182         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20183         has never been used so far.
20185 2006-02-02  Martin Baulig  <martin@ximian.com>
20187         * mono-debug-debugger.h: Changed comment at the top of this file;
20188         the header is not installed, but it's safe to #include it from
20189         within the JIT.
20191         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20192         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20194 2006-02-02  Martin Baulig  <martin@ximian.com>
20196         * mono-debug.h
20197         (MonoSymbolTable): Removed the `metadata_info' field.
20199         * mono-debug.c
20200         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20202         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20203         (mono_debugger_add_builtin_types): Removed.
20204         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20205         (mono_debugger_create_notification_function): We now operate on a
20206         pre-allocated area; take a `gpointer' and return `void'.
20208         * mono-debug-debugger.c
20209         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20210         (mono_debugger_add_builtin_types): Removed.
20212 2006-02-02  Martin Baulig  <martin@ximian.com>
20214         * threads.c (mono_debugger_create_all_threads): New public method.
20216 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20218         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20219         breaks on several platforms.
20221 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20223         * assembly.c: the VS.NET build doesn't supply default values for
20224         MONO_ASSEMBLIES and MONO_CFG_DIR.
20226 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20228         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20229         helper function.
20231         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20233         * loader.c (method_from_memberref): Fix a warning.
20235         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20237         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20238         with explicit layout. Fixes #77433.
20240 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20242         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20243         max_interface_id is initialized before using it. Fixes #77398.
20244         (ves_icall_Type_GetInterfaces): Ditto.
20246 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20248         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20249         allocate memory for parameter attributes when parsing memberref
20250         signatures.
20251         * loader.c (mono_loader_set_error_method_load): Don't warn.
20252         (method_from_memberref): Ensure MissingMethodException gets thrown
20253         if method is not found.  Make warning more informative.
20255 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20257         Fix #77397
20258         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20259         return true if is byref.
20260         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20261         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20262         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20264 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20266         Fix tests/find-method.2.il
20267         * loader.c (find_method, find_method_in_class): Remove is_inflated
20268         argument.  Revert 2006-01-18 change.
20269         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20270         is generic, search for method in its generic definition.
20271         * class.c (mono_class_setup_vtable_general): Print generic
20272         arguments of generic types in debugging printf.
20274 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20276         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20278         * threads.c (mono_threads_request_thread_dump): New helper function.
20280 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20282         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20284 2006-01-25  Ankit Jain  <jankit@novell.com>
20286         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20287         move definition to ..
20288         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20289         
20290 2006-01-25  Ankit Jain  <jankit@novell.com>
20291             Raja R Harinath  <rharinath@novell.com>
20293         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20294         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20295         as necessary.
20297 2006-01-25  Martin Baulig  <martin@ximian.com>
20299         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20300         `MonoDebuggerThread' into debug-debugger.c.
20302 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20304         * profiler.c: fix printing of data.
20306 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20308         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20309           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20311 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20313         * object.c: fix deadlock related to string interning.
20315 2006-01-23  Martin Baulig  <martin@ximian.com>
20317         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20319         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20321 2006-01-23  Martin Baulig  <martin@ximian.com>
20323         * mono-debug.h: Moved the prototypes of some functions which are
20324         used by the JIT here from mono-debug-debugger.h.
20326 2006-01-21  Martin Baulig  <martin@ximian.com>
20328         * Makefile.am: Don't install mono-debug-debugger.h.
20330 2006-01-21  Martin Baulig  <martin@ximian.com>
20332         * mono-debug-debugger.h: Enforce the private status of this header
20333         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20334         Moved some stuff from mono-debugger-jit-wrapper.h here.
20336 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20338         * class.c (mono_class_from_typeref): Add a sanity test to help
20339         catch lack of assembly load/search hooks.
20341 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20343         * marshal.c (emit_struct_conv): Relax the fields with same offset
20344         check even more. Fixes #77230.
20346 2006-01-18  Martin Baulig  <martin@ximian.com>
20348         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20349         argument; if false, we compare the uninstantiated signatures.
20350         (method_from_memberref): Compare the uninstantiated signatures;
20351         fixes #76417.
20353 2006-01-18  Robert Jordan  <robertj@gmx.net>
20355         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20356         Clear the weak link. Fixes bug #77170.
20358         * gc.c (mono_gchandle_free):
20359         Reflect *-gc.c changes (tiny optimization).
20361 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20363         * metadata.c (mono_metadata_signature_dup): Applied patch from
20364         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20365         Fixes #77288.
20367 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20369         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20370         marshalling from native to managed code. Fixes #77230.
20372 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20374         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20375         connect. Fixes bug #77020.
20377 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20379         * class.c: fixed id assignement for nested interfaces (bug #77275).
20380         Added also better info for --print-vtable debugging.
20382 2006-01-12  Martin Baulig  <martin@ximian.com>
20384         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20385         interfaces on-the-fly; fixes #76625.
20387         * class-internals.h
20388         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20389         don't need that anymore.
20391 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20393         * socket-io.c
20394         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20395         To avoid initing the nested_classes when not needed I turned the
20396         PeerCredData as a toplevel internal class, as it has to be shared
20397         anyways. 
20399         Fixes the CASA issue.
20401 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20403         * domain.c: Accessors for MonoJitInfo
20405         * profiler-private.h: Add jitinfo to the end jit hook
20407         * profiler.[ch]: Define new hooks, called after jitting which give
20408         the MonoJitInfo that was compiled
20410 2006-01-10  Martin Baulig  <martin@ximian.com>
20412         * class.c (mono_class_setup_events): Add support for generic
20413         classes; fixes #76440.
20415 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20417         Fix #77160.
20418         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20419         on passed-in method.
20421 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20423         * object.c (mono_runtime_invoke_array): Add Nullable support.
20425         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20427 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20429         * file-io.c: Don't consider sockets as directory and avoid an endless
20430         loop. Fix bug #76966.
20432 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20434         * object.c (mono_nullable_init): New helper function.
20435         (mono_nullable_box): Ditto.
20437         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20439         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20441         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20442         
20443 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20445         * class.c (mono_class_is_assignable_from): Make T assignable to 
20446         Nullable<T>.
20448 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20450         * appdomain.c: Bump corlib version to 46.
20451         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20452         serialization purpose) and changed ves_icall_System_Reflection_
20453         Assembly_get_code_base signature to accept a boolean (to escape, or 
20454         not, the assembly code base).
20456 2005-12-23  Dick Porter  <dick@ximian.com>
20458         * icall.c: 
20459         * threads-types.h: 
20460         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20461         CreateEvent icall now returns "created" boolean parameter.
20463 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20465         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20466         #76967.
20468         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20469         when attr_klass is an interface. Fixes #77045.
20471 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20473         * marshal.c (emit_struct_conv): Fix previous patch.
20474         
20475         * marshal.c (emit_struct_conv): Add a check for fields with the same
20476         offset.
20478 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20480         Fix regression in Mono.C5.
20481         * class.c (mono_class_create_generic): If 'klass' is an interface
20482         set up the interface offsets.
20483         (mono_class_is_assignable_from): Don't throw away generic arguments.
20485 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20487         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20488         type parameters.
20490 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20492         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20493         dead store.
20494         (do_mono_metadata_parse_generic_class): Don't pass the current
20495         generic context when parsing the type being instantiated: it
20496         cannot use it, anyway.
20498         * loader.c (method_from_memberref): Don't inflate a signature if
20499         it doesn't contain any type parameters.
20501 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20503         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20505 2005-12-14  Martin Baulig  <martin@ximian.com>
20507         * class.c
20508         (mono_type_get_name_recurse): Don't return null for type
20509         parameters and open generic classes.
20510         (mono_class_setup_methods): Don't exclude generic instances.
20511         (mono_get_unique_iid): Use different IDs for different
20512         instantiations of the same generic type.
20513         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20514         open generic instances; create a normal vtable for closed generic
20515         instances.
20516         (mono_class_setup_vtable_general): We're now also called for
20517         closed generic instances.
20519         * reflection.c
20520         (mono_reflection_bind_generic_parameters): Correctly use
20521         mono_metadata_lookup_generic_inst() everywhere.
20523 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20525         * object.c (mono_class_create_runtime_vtable): Call 
20526         mono_class_setup_vtable ().
20528         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20529         function.
20530         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20531         #76959.
20533         * loader.c (mono_loader_set_error_type_load): Print the type load
20534         warnings to the console so they are more visible to the user.
20535         (mono_loader_set_error_method_load): Ditto.
20537         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20538         is still broken.
20539         
20540         * reflection.c (ensure_runtime_vtable): Fix build.
20542         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20543         doesn't work in all cases.
20545 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20547         * object.c (mono_array_new_full): Treat a single dimensional array
20548         with 0 lower bounds as an szarray. Fixes #76973.
20550         * reflection.c (custom_attr_visible): Really fix this.
20552 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20554         * reflection.c (custom_attr_visible): Allow nested public attributes
20555         as well.
20557         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20558         interface check.
20560 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20562         * class.c (set_generic_param_owner): Delete.
20563         (mono_class_create_from_typedef): Don't set ->owner field of
20564         generic parameters to "param containers" of enclosing classes.
20565         * reflection.c (mono_reflection_initialize_generic_parameter):
20566         Likewise.
20568 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20570         * reflection.c (custom_attr_visible): Fix build.
20572 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20574         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20575         private attributes.
20576         
20577         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20578         handling of null parameter defaults.
20580 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20582         * class.c (mono_class_from_generic_parameter): Don't set
20583         klass->generic_container.
20584         (my_mono_class_from_generic_parameter): Likewise.
20586 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20588         * reflection.c (load_public_key): Fix a warning.
20589         (method_encode_code): Fix unaligned accesses.
20591 2005-12-07  Martin Baulig  <martin@ximian.com>
20593         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20595         * reflection.c
20596         (write_generic_param_entry): Encode our custom attrs.
20598         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20600 2005-12-07  Martin Baulig  <martin@ximian.com>
20602         * reflection.c (encode_new_constraint): Removed; we don't use the
20603         `NewConstraintAttribute' anymore.
20605 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20607         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20608         not fire a TypeResolve event when Assembly.GetType () is called.
20610 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20612         Beginning of support for nullable types in the runtime. Parts of
20613         this patch are from Martin.
20615         * appdomain.c (MONO_CORLIB_VERSION): Bump
20617         * domain.c (mono_init_internal): get the nullable type
20619         * class.c (mono_class_is_nullable): New method
20620         (mono_class_get_nullable_param): New mehod
20621         (mono_class_create_generic): In types T? set cast_class to T
20623         * class-internals.h (MonoDefaults): new nullable default class
20624         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20625         new methods.
20627 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20629         * metadata.c (select_container): New.  Refactor code to select the
20630         appropriate GenericContainer given the type of generic parameter
20631         we are looking for.
20632         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20633         not a MonoGenericContext.  Use select_container.  Update parameters.
20634         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20635         and MONO_TYPE_MVAR.
20636         (unwrap_arrays): Remove duplicate tests.
20637         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20638         generic instantiated class to find any arguments that are generic
20639         parameters.
20640         (mono_type_create_from_typespec_full): Use find_generic_param to
20641         avoid evicting some generic instantiations from the typespec
20642         cache.
20644 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20646         * reflection.c: fixed writing of doubles on ARM FPA.
20648 2005-12-02  Robert Jordan  <robertj@gmx.net>
20650         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20652 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20654         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20655         least on SUSE 10 they are not the same (on debian, they are just the
20656         same thing).
20658 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20660         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20661         DeclaringType for VARs and MVARs.
20662         * class.c (set_generic_param_owner): Fix initialization of owner
20663         fields.
20665 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20667         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20669 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20671         * threadpool.c: workaround for a bug that shows up on the Mac:
20672         select()+connect() on a blocking socket is not like it should
20673         be, so we proceed to connect() in that case, wasting the I/O
20674         threadpool thread until connect succeedes. Fixes bug #75436.
20676 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20678         * threadpool.c: fix typo when setting file descriptor states.
20680 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20682         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20683         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20684         create a temporary signature container.
20685         (mono_metadata_parse_generic_param): Update to changes.
20686         (mono_type_create_from_typespec_full): Update to changes.
20687         * loader.c (method_from_memberref): Don't use a
20688         MonoGenericContainer while parsing a memberref signature.
20689         (method_from_methodspec): Remove dead-store of the 'container'
20690         variable.  It's overwritten before use.
20692         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20693         checks tighter.
20694         (mono_metadata_parse_generic_param): Likewise.
20695         * loader.c (find_method_in_class): Does not need a
20696         MonoGenericContainer.  Use 'mono_method_signature' rather than
20697         'mono_method_signature_full'.
20698         (find_method, mono_get_method_constrained, method_from_memberref):
20699         Update to changes.
20701         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20702         owner-less generic-parameters are never evicted from the typespec
20703         cache.
20705         * loader.c (method_from_memberref): Don't use the current context
20706         when parsing signatures.
20707         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20709         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20710         side-effects in g_assert.
20711         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20712         that we don't potentially lose information.
20714 2005-11-26  Dick Porter  <dick@ximian.com>
20716         * icall.c:
20717         * threads.c: icalls to implement basic (ie, not named)
20718         System.Threading.Semaphore.
20720 2005-11-24  Dick Porter  <dick@ximian.com>
20722         * process.c
20723         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20724         Use GetProcessId() if it's available.
20726 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20728         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20730 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20731             Ankit Jain  <jankit@novell.com>
20733         * loader.c (mono_get_method_from_token): Initialize 'method' field
20734         of all generic parameters before parsing the signature.  Remove
20735         code that "fixed"-up MVAR references.
20737 2005-11-23  Ankit Jain  <jankit@novell.com>
20739         * metadata.c (mono_metadata_has_generic_params):
20740         (mono_metadata_load_generic_param_constraints):
20741         (mono_metadata_load_generic_params): Move duplicate code ...
20742         (mono_metadata_get_generic_param_row): ... here. Returns the
20743         first row-id in GenericParam table for a given owner (token).
20744         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20745         prototype.
20747 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20748             Ankit Jain  <jankit@novell.com>
20750         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20751         comparing VARs too.
20752         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20753         type->data.generic_param only if the type is an MVAR.
20754         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20755         leak owner-less VARs and MVARs into managed space.
20757 2005-11-21  Martin Baulig  <martin@ximian.com>
20759         * class-internals.h
20760         (MonoMethod): Moved the `generic_container' here from
20761         `MonoMethodNormal' since we now also need it for
20762         `MonoMethodPInvoke';
20763         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20764         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20765         an union containing both `MonoMethodNormal' and
20766         `MonoMethodPInvoke'.
20768         * loader.c
20769         (mono_get_method_from_token): Allow implementing generic methods
20770         as interncalls.
20772         * threads.c
20773         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20774         icall.
20776 2005-11-17  Dick Porter  <dick@ximian.com>
20778         * icall.c: 
20779         * process.h: 
20780         * process.c: Split the Process Start_internal icall into
20781         ShellExecuteEx_internal and CreateProcess_internal, which are
20782         called depending on whether UseShellExecute is true.  Fixes bug
20783         76670.
20785         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20787 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20789         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20790         'msize' parameters, use the information in 'mspec' instead.
20791         (emit_object_to_ptr_conv): Ditto.
20793         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20794         fields out of order. Fixes #76733.
20796 2005-11-17  Ankit Jain  <jankit@novell.com>
20798         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20800 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20802         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20803           bug #76575.
20805 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20807         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20808         for types with non-auto layout. Fixes #76717.
20810 2005-11-16  Ankit Jain  <jankit@novell.com>
20812         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20813         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20814         if generic_context is null.
20815           (mono_metadata_generic_param_equal): param->owner can be null.
20816           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20817         null.
20819 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20821         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20822         the correct value.
20824 2005-11-15  Martin Baulig  <martin@ximian.com>
20826         * object.c (set_value): Use mono_class_from_mono_type() instead of
20827         the hack for generic instances; fixes #76136.
20829 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20831         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20832         fields.
20834         * image.c (load_metadata_ptrs): Initialize the new fields.
20836         * reflection.c (create_dynamic_mono_image): Ditto.
20838         * reflection.c (build_compressed_metadata): Use the new fields.
20840         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20841         icall.
20843         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20844         icall.
20845         
20846 2005-11-15  Ankit Jain  <jankit@novell.com>
20847             Raja R Harinath  <harinath@gmail.com>
20849         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20850         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20851         new per-generic_container cache if the cached MonoType's context matches
20852         the current context.
20853           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20854         to the expected context.
20855           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20857 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20859         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20860         we changed the signature of an icall.
20861         * icall.c: Modify to mono_double_ParseImpl return true/false 
20862         depending on the success, instead of throwing the exception. This will
20863         help us in Double.TryParse methods.
20864         
20865 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20867         * marshal.c (emit_marshal_object): Throw an exception when
20868         marshalling 'object' instead of crashing. Fixes #76696.
20870 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20872         * class-internals.h: Add prototype for mono_type_get_full_name ().
20874 2005-11-11  Dick Porter  <dick@ximian.com>
20876         * threads.c (mono_thread_manage): Make sure the main thread has
20877         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20879 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20881         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20882         console about the missing type.
20883         (mono_loader_set_error_method_load): Ditto.
20885 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20887         * mono-config.c (mono_get_config_dir): Set the system defaults if
20888         none is specified.
20890         * assembly.c (mono_set_dirs): New API entry point to set the
20891         assembly and the config directory in one call
20893 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20895         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20896         the ftnptr was created from a delegate in a domain other than the
20897         current domain. Fixes #75377.
20899         * exception.h exception.c: Add mono_get_exception_not_supported ().
20901 2005-11-08  Martin Baulig  <martin@ximian.com>
20903         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20905 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20907         * security-manager.h: Added definitions to deal with strongname key 
20908         pairs bigger (and smaller) than 1024 bits.
20909         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20910         adjust wrt the public key length being used.
20912 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20914         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20915           Windows build (r51396-51397).
20917 2005-11-03  Martin Baulig  <martin@ximian.com>
20919         * class.c (mono_class_setup_vtable_general): Also add generic
20920         methods to the vtable; fixes #76581.
20922 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20924         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20925         sure that we lookup GetString method from the System.Text.Encoding
20926         class, not the derived class or we get an empty method.
20928         Fixed class #76612.
20930 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20932         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20933         if it has been previously set (embedders). 
20935         Make mono_set_rootdir available also on Unix.
20937 005-10-24  Robert Jordan  <robertj@gmx.net>
20939         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20941 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20943         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20944         only calls which are made to native code use this flag.
20946         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20948 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20950         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20951         Add support for FieldBuilders.
20953 2005-10-29  Martin Baulig  <martin@ximian.com>
20955         * mono-debug.c
20956         (mono_debug_using_mono_debugger): New public method; returns
20957         whether we're running inside the debugger.
20959 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20961         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20962         for Method/Constructor/FieldBuilders.
20964 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20966         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20967         and fields as well.
20969 2005-10-26  Martin Baulig  <martin@ximian.com>
20971         * mono-debug-debugger.c
20972         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20974 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20976         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20977         integer to isspace.
20979 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20981         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20982         when passing valuetypes byref. Fixes #76502.
20984 2005-10-19  Jackson Harper  <jackson@ximian.com>
20986         * profiler.c: Don't put a . in front of types that are not in a
20987         namespace.
20989 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20991         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20993 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20995         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20996         #76436.
20997         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20999 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21001         * assembly.c metadata-internals.h icall.c: Define an additional
21002         parameter for mono_assembly_name_parse_full, so we can avoid creating
21003         S.R.AssemblyName.Version when no version info wasn't passed.
21004         
21005 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21007         * class.c (mono_type_get_full_name): Reimplement method that was
21008         removed. 
21010         * image.c: Some docs
21012 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21014         * profiler.c (output_newobj_profile): Fix printing of Total memory
21015         on x86.
21017 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21019         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21021 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21023         * threads.c: remove debug output.
21025 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21027         * threads.c (mono_thread_manage): Fix crashes if more than 64
21028         threads need to be aborted. Hopefully fixes #75899.
21030         * assembly.c (mono_stringify_assembly_name): New helper function.
21032         * class.c: Use mono_stringify_assembly_name instead of the similar
21033         static function.
21035         * assembly.h assembly.c: Add support for calling a postload search 
21036         hook if an assembly cannot be loaded.
21038         * appdomain.c: Register new search hooks which call the AssemblyResolve
21039         events in AppDomain. Fixes #75231
21041 2005-10-07  Martin Baulig  <martin@ximian.com>
21043         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21044         methods without debug info.
21046 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21048         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21049         wrappers.
21051 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21053         * file-io.c: now that we return symlinks, use lstat and, when the file
21054         is a symbolic link, stat, to get the file attributes. Also avoid the
21055         conversion to/from utf16/external.
21057 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21059         * class.c (mono_class_layout_fields): Compute klass->has_references
21060         correctly if an embedded valuetype is not yet initialized. Fixes
21061         #76331.
21063 2005-10-04  Martin Baulig  <martin@ximian.com>
21065         * metadata.c
21066         (mono_metadata_load_generic_param_constraints): New public
21067         function; splitted the constraints loading out from
21068         mono_metadata_load_generic_params().
21070         * class.c (mono_class_create_from_typedef): Call
21071         mono_metadata_load_generic_param_constraints() after setting up
21072         the type and creating our parent; fixes #75329.
21074 2005-10-04  Martin Baulig  <martin@ximian.com>
21076         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21077         non-dynamic parent classes.
21079 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21081         * file-io.c : win32 build fix (ETXTBSY seems not found).
21083 2005-10-04  Martin Baulig  <martin@ximian.com>
21085         * reflection.c
21086         (mono_image_get_methodspec_token): Make the cache actually work;
21087         fixes #75974.
21089 2005-10-04  Martin Baulig  <martin@ximian.com>
21091         * class.c (mono_class_name_from_token): Removed the unneccessary
21092         `MonoGenericContext *' argument.
21094 2005-10-04  Martin Baulig  <martin@ximian.com>
21096         * loader.c
21097         (method_from_methodspec): Make the caching work again; fixes the
21098         performance regression from #76262.
21100 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21102         * file-io.c:
21103         * file-io.h:
21104         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21105         GetFileSystemEntries that performs the same work but without going
21106         into io-layer, locking, etc.
21108 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21110         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21111         ThreadState_Stopped as well. Fixes #76047.
21113 2005-09-29  Martin Baulig  <martin@ximian.com>
21115         * class.c
21116         (inflate_generic_context): If the new context has a `gmethod', set
21117         its `container' that that gmethod's `container'.
21119         * metadata.c
21120         (mono_metadata_parse_generic_param): Simplify things;
21121         `generic_container = generic_context->container;' is just fine.
21123         * loader.c (method_from_methodspec): Code cleanups.
21125 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21127         * decimal.c: fix warning (and let gcc generate correct
21128         code on ARM with optimizations).
21130 2005-09-28  Martin Baulig  <martin@ximian.com>
21132         * loader.c
21133         (method_from_memberref): Added `MonoGenericContext *class_context'
21134         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21135         (method_from_methodspec): If we're a memberref, use the enclosing
21136         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21138 2005-09-28  Martin Baulig  <martin@ximian.com>
21140         * object.c (mono_runtime_invoke_array): Added support for
21141         MONO_TYPE_GENERICINST; fixes #75917.
21143 2005-09-27  Martin Baulig  <martin@ximian.com>
21145         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21146         `k->byval_arg.type' to determine the actual type.
21148         * loader.c (method_from_methodspec): Removed some hacks.
21150 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21152         * class-internals.h (mono_field_is_deleted): Do the test for
21153         rtspecialname before we check the actual name of the field. This
21154         prevents us from dereferencing a pointer into the string table,
21155         saving us from accessing a few pages
21157         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21158         macros. This will allow a deadlock debugger to easily be plugged
21159         in.
21161 2005-09-27  Martin Baulig  <martin@ximian.com>
21163         * loader.c (method_from_methodspec): Create a "signature"
21164         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21166 2005-09-27  Martin Baulig  <martin@ximian.com>
21168         * class.c
21169         (inflate_generic_class): Correctly set the new context's
21170         container.
21172         * loader.c
21173         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21174         instead of a `MonoGenericContext *'.
21175         (mono_method_signature_full): Take a `MonoGenericContainer *'
21176         instead of a `MonoGenericContext *'.
21178         * metadata.c
21179         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21180         instead of a `MonoGenericContext *'.
21181         (mono_metadata_parse_method_signature_full): Likewise.
21183 2005-09-26  Martin Baulig  <martin@ximian.com>
21185         * class.c
21186         (mono_class_from_generic_parameter): Set `klass->generic_container'
21187         (mono_class_from_generic_parameter): Likewise.
21188         (mono_bounded_array_class_get): We inherit the generic container
21189         from the element class.
21191         * loader.c
21192         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21193         argument rather than computing it here.
21194         (method_from_memberref): Correctly set the generic context before
21195         parsing the signature.  Fixes #75681.
21197 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21199         * object.c (mono_class_has_special_static_fields): Fix warnings.
21201 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21203         * assembly.c: Add parse_public_key function, to
21204         par the public keys. Also added mono_assembly_name_parse_full,
21205         to define it the parsed key should be freed or not.
21206         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21207         to parse a long format assembly name.
21208         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21209         private, since calling it to preserve the key requires
21210         freeing it manually.
21211         
21212 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21214         * locales.c : removed HAVE_ICU part.
21216 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21218         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21219         field_is_special_static if the klass has no special static fields.
21221         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21222         (MonoCachedClassInfo): Likewise.
21224         * object.c (mono_class_has_special_static_fields): New helper function.
21226 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21228         * class.c (mono_class_create_from_typedef): Don't call 
21229         interfaces_from_typedef_full for enums.
21230         (mono_class_create_from_typedef): Compute the base types of enums directly
21231         without calling mono_class_setup_fields ().
21232         (mono_class_find_enum_basetype): New helper function.
21234         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21235         one place inside the string heap.
21236         
21237 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21239         * class.c: locking fixes, code cleanups, some docs added.
21240         Allocate some data structures in the image mempool.
21242 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21244         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21245         the example code.
21246         
21247 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21249         * class-internals.h, class.c, reflection.c: reduce memory taken by
21250         MonoClass.
21252 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21254         * metadata.c, metadata.h, loader.h: documentation updates, code and
21255         API cleanups.
21257 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21259         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21260         the example code.
21262         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21263         page faults caused by the runtime while reading metadata.
21265 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21267         * socket-io.c: the field names were changed 3 months ago and no one
21268         realized until bug #76077 got filed!
21270 2005-09-20  Martin Baulig  <martin@ximian.com>
21272         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21274 2005-09-20  Martin Baulig  <martin@ximian.com>
21276         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21277         write the rank into the class entry.
21279 2005-09-20  Martin Baulig  <martin@ximian.com>
21281         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21283 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21285         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21287         * icall.c (custom_attrs_defined_internal): New icall.
21289         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21290         function.
21291         (mono_custom_attrs_construct_by_type): New helper function.
21293 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21295         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21296         terminate the resulting string. Fixes #76123.
21298 2005-09-16  Martin Baulig  <martin@ximian.com>
21300         * mono-debug.c
21301         (mono_debug_add_method): Ignore inflated methods for the moment.
21303 2005-09-14  Martin Baulig  <martin@ximian.com>
21305         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21307 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21309         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21310         return a success/failure indication.
21311         (mono_metadata_interfaces_from_typedef_full): Ditto.
21312         (get_constraints): Ditto.
21314 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21316         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21317         
21318         * marshal.c (emit_marshal_array): Add support for returning string
21319         arrays from delegates. Fixes #76063.
21321         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21323 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21325         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21326         icall.
21328 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21330         * reflection.c icall.c: Fix after mono_get_exception_type_load
21331         signature change.
21333         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21334         (mono_assembly_load_reference): Use the new helper.
21336         * class-internals.h (MonoLoaderError): New structure containing 
21337         information about type loading errors.
21339         * class-internals.h loader.c: Add APIs to store per-thread loader
21340         error information.
21342         * loader.c class.c: Set the loader error if needed.
21344         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21346 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21348         * decimal.c: fixed to handle the broken ARM fp format.
21350 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21352         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21353         broken.
21355 2005-09-06  Martin Baulig  <martin@ximian.com>
21357         * domain.c (supported_runtimes): Added v2.0.50727.
21359 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21361         * culture-info.h: reduce the size of some structures.
21363 2005-09-05  Martin Baulig  <martin@ximian.com>
21365         Reflect latest API changes in the August CTP.
21367         * icall.c
21368         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21369         ("MonoType.HasGenericArguments"): Removed.
21370         ("MonoMethod.BindGenericParameters"): Renamed to
21371         "MakeGenericMethod".
21372         ("MethodBuilder.BindGenericParameters"): Renamed to
21373         "MakeGenericMethod".    
21375 2005-09-05  Martin Baulig  <martin@ximian.com>
21377         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21379 2005-09-05  Martin Baulig  <martin@ximian.com>
21381         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21383         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21384         generic_container is non-NULL.
21386 2005-09-05  Martin Baulig  <martin@ximian.com>
21388         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21390         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21392 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21394         * reflection.c (encode_locals,
21395         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21396         for large generic types.
21398 2005-09-05  Martin Baulig  <martin@ximian.com>
21400         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21402         * class.c (mono_dup_array_type): New public method.
21403         (mono_metadata_signature_deep_dup): New public method.
21404         (dup_type): Correctly duplicate array and function types.
21406 2005-09-05  Martin Baulig  <martin@ximian.com>
21408         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21410         * reflection.c (get_default_param_value_blobs): Handle generic types
21411         and generic methods.
21413 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21415         * class.c: Fixed error reporting (method/class were inversed) for 
21416         inheritance demands.
21417         * security-manager.c|h: Added the AppDomain when calling the managed
21418         System.Security.SecurityManager.InheritanceDemand method.
21420 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21422         * reflection.c (encode_marshal_blob): 'marshaltype' and
21423         'marshaltyperef' are alternate sources for the custom marshaler
21424         name.
21426 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21428         * class.c: fix creation of array classes with rank == 1
21429         (patch by Ankit Jain <jankit@novell.com>).
21431 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21433         * object.c: fix check for creating the bound data for arrays vs
21434         szarrays.
21436 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21438         * object.c: configuration file name is now based on the executable name,
21439         not the image name. Fixes bug #75931.
21441 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21443         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21444         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21446 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21448         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21450 2005-08-24  Ankit Jain  <jankit@novell.com>
21451             Raja R Harinath  <rharinath@novell.com>
21453         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21454           called by it recursively.
21455           (mono_class_init): Remove special case in pending_init handling, since it's
21456           superseded by the fix to mono_class_from_typeref.
21458 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21460         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21461         BROKEN_THREAD_START stuff.
21463 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21465         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21466         trampoline.
21468         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21469         
21470         * object.c (mono_delegate_ctor): Replace the original function address with
21471         a delegate trampoline.
21473 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21475         * icall.c: add boolean argument to base64_to_byte_array and 
21476         InternalFromBase64String to control whether a whitespace-only string
21477         is allowed (or should casue a FormatException to be thrown). We need
21478         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21479         to match the MS behaviour in both profiles.
21480         * appdomain.c: Bump corlib version.
21482 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21484         This patch implements a big portion of publisher policy
21485         support, used to bind assembly versions and redirect
21486         one assembly from version A to version B.
21488         * assembly.c:
21489         New GSList loaded_assembly_bindings, for storing the cached
21490         assembly bindings.
21491         (assembly_binding_maps_name): New static function for checking if a 
21492         assembly binding information maps an assembly name.
21493         (mono_assembly_binding_info_free): New function for freeing
21494         assembly binding information resources.
21495         (get_publisher_policy_info): New static function for retrieving 
21496         assembly binding information from a MonoImage.
21497         (compare_versions): New static function for comparing an assembly
21498         binding information data and the version of an assembly name.
21499         (check_policy_versions): New static function for checking if an
21500         assembly binding info mapping an assembly name is valid for it.
21501         (mono_assembly_load_publisher_policy): New static function for
21502         loading the 'policy.major.minor.MyAssembly' image for an assembly
21503         with an assembly name 'aname'.
21504         (mono_assembly_bind_version): New static function for updating
21505         assembly redirection.
21506         (mono_assembly_apply_binding): New static function for applying
21507         assembly binding.
21508         (search_binding_loaded): New static function for searching 
21509         loaded assembly binding infos in the cache domain.
21510         (mono_assembly_load_full): Don't apply assembly binding for
21511         reflection only assemblies.
21513         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21514         which contains information about assembly binding. Also
21515         declare signature for mono_config_parse_publisher_policy ()
21516         function, used to retrieve pub policy info.
21517         
21518         * mono-config.c:
21519         (publisher_policy_start): New static function used to parse publisher 
21520         policy config files.
21521         (publisher_policy_parser): New static MonoParseHandler containing 
21522         the functions used when parsing config files.
21523         (mono_config_parse_publisher_policy): New function for parsing
21524         publisher policy files.
21525         
21526 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21528         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21530         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21532         * object.c (mono_get_addr_from_ftnptr): New helper function.
21534         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21536         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21538 2005-08-19  Dick Porter  <dick@ximian.com>
21540         * threads.c, threads.h, appdomain.c, appdomain.h,
21541         profiler-private.h, monitor.c, object.c, object-internals.h,
21542         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21543         store the thread ID, so it can hold a 64 bit value if needed.
21545 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21547         * reflection.c (mono_reflection_create_dynamic_method): Store the
21548         handle class into the method references as well so ldtoken works in
21549         dynamic methods.
21551         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21552         types.
21554 2005-08-19  Ankit Jain <jankit@novell.com>
21556         Fix #75847.
21557         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21558           here rather than using the method signature of a arbitrary function
21559           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21560           two arguments.
21561           Hack done with Harinath.
21563 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21565         * threadpool.c: disable printing stack traces when we get a exception
21566         in a threadpool thread. I need to do more testing to figure out which
21567         cases actually print this. Fixes bug #75828.
21569 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21571         * icall.c: there might be ignored whitespace after the last '='. This
21572         fixes length computation and bug #75840.
21574 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21576         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21577         well. Fixes #75809.
21579         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21580         #75784.
21581         
21582         * reflection.c (create_custom_attr_data): Ditto.
21584 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21586         * locales.c, culture-info.h : removed RegionLCIDMap.
21587         * culture-info-tables.h : regenerated.
21589 2005-08-16  Martin Baulig  <martin@ximian.com>
21591         * class.c (mono_type_get_name_recurse): Small fix.
21593 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21595         * locales.c : indentation fixie.
21597 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21599         * object-internals.h,
21600           locales.h,
21601           locales.c,
21602           culture-info.h,
21603           icall.c : added RegionInfo table support.
21604         * culture-info-table.h : regenerated for region support.
21606 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21608         * reflection.c (resolve_object): handle all kinds of MonoMethod
21609         including generic ones
21611 2005-08-12  Ankit Jain <jankit@novell.com>
21613         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21614           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21616 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21618         * process.c: Don't close a thread handle when it's NULL. This is a
21619         workaround for bug #75733.
21621 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21623         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21625 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21627         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21629 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21631         * threadpool.c: if a work item in the thread pool has a callback that
21632         catches a exception, don't propagate it after invoking the callback.
21633         Fixes bug #75336.
21635 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21637         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21639         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21641         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21643         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21645 2005-08-03  Ankit Jain  <jankit@novell.com>
21647         Fix #75683.
21648         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21649           PInvoke calling convention is 0.
21651 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21653         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21654         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21656 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21658         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21659         to handle threads not started by the GC (patch by Michael Meeks
21660         <michael.meeks@novell.com>).
21662 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21664         * reflection.c: Make buffer used in emitting types larger for some
21665         big generic types (patch by Michal Moskal).
21667 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21669         * mono-debug.c: Fix some (not all) alignment problems.
21671 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21673         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21674         Invoke mono_image_load_from_data_full passing the refonly
21675         parameter.
21677         * assembly.c
21678         (mono_assembly_open_from_bundle): Add the refonly argument, 
21679         in order to pass it to other methods it calls to.
21680         (do_mono_assembly_open): Add the refonly argument, in order 
21681         to pass it to other methods it calls to.
21682         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21683         the refonly parameter to it.
21685         * image.c: Add loaded_images_refonly_hash and
21686         loaded_images_refonly_guid_hash to cache the reflection
21687         only loaded images.
21688         (mono_images_init): Initialize the hash tables used for
21689         caching the reflection only images.
21690         (load_modules): Invoke mono_image_open_full passing the refonly
21691         parameter to load the modules the correct way.
21692         (build_guid_table): Add the refonly argument, to re-build the 
21693         correct hash table.
21694         (do_mono_image_open): Added the refonly argument, in order to
21695         define it for the loaded image.
21696         (mono_image_loaded_full): New function, which receives an
21697         additional parameter to look for the image in the refonly or
21698         non-refonly section.
21699         (mono_image_loaded): Updated, using mono_image_loaded_full.
21700         (mono_image_loaded_by_guid_full): The same case that happens
21701         with mono_image_loaded_full.
21702         (mono_image_loaded_by_guid): Likewise.
21703         (register_image): Use the ref_only variable inside MonoImage
21704         to decide in which hash table store the current image.
21705         (mono_image_open_from_data_full): Rename
21706         mono_image_open_from_data to mono_image_open_from_data_full,
21707         adding the refonly argument, to define the ref_only variable 
21708         inside MonoImage.
21709         (mono_image_open_from_data): Return 
21710         mono_image_open_from_data_full.
21711         (mono_image_open_full): Rename mono_image_open to
21712         mono_image_open_full, receiving the new refonly argument,
21713         to pass it to inner methods.
21714         (mono_pe_file_open): Update this function, to open
21715         a MonoImage as a non-refonly image.
21716         (mono_image_close): Use the refonly variable inside
21717         MonoImage to remove the image from the correct caches.
21719         * image.h: Add the signatures of mono_image_open_full,
21720         mono_image_open_from_data_full, mono_image_loaded_full,
21721         mono_image_loaded_by_guid_full.
21723         * metadata-internals.h: Add the ref_only field to 
21724         MonoImage.
21725         
21726 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21728         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21729         Fix the last behavior, which used to load the assemblies and
21730         extract MonoReflectionAssemblyName information, instead of
21731         extract it from the metadata tables. Needed for Reflection
21732         Only assemblies.
21733         
21734 2005-07-29  Martin Baulig  <martin@ximian.com>
21736         * mono-debug-debugger.c
21737         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21738         not initialized.
21740         * mono-debug.c
21741         (mono_debug_address_from_il_offset): Check whether we have
21742         debugging support before attempting to take the lock.
21743         (mono_debug_source_location_from_address): Likewise.
21744         (mono_debug_source_location_from_il_offset): Likewise.
21745         (mono_debug_il_offset_from_address): Likewise.
21746         (mono_debug_address_from_il_offset): Likewise.
21748 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21750         * class.c (mono_class_from_name_case): Add support for dynamic images.
21751         Fixes #75650.
21753         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21754         for #75479.
21756 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21757         
21758         * reflection.c (mono_method_get_object): Fix warning.
21760 2005-07-28  Martin Baulig  <martin@ximian.com>
21762         * mono-debug.c
21763         (mono_debug_add_wrapper): Also write the wrapper type.
21765 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21767         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21768         
21769         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21770         data indicates the class has none.
21772 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21774         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21775         loader lock with the debugger lock. Prevents deadlocks for beagle.
21777         Beagle can now run on an smp box for a weekend without any
21778         issues. Woohoo!
21780 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21782         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21783         in a module. Fixes #75629.
21785 2005-07-26  Martin Baulig  <martin@ximian.com>
21787         * mono-debug.c (mono_debug_add_wrapper): New static method.
21788         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21789         interncall or a wrapper.
21791         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21792         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21793         (MONO_DEBUGGER_VERSION): Bump to 51.
21795         * mono-debug-debugger.c
21796         (mono_debugger_add_type): Removed this empty function.
21797         (mono_debugger_add_method): Likewise.
21799 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21801         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21802         before accessing method->slot.
21804 2005-07-21  Jb Evain  <jbevain@gmail.com>
21806         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21807         Fixes #75010.
21809 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21811         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21812         #75587.
21814 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21816         * image.h image.c: Add mono_image_get_guid () API function.
21818 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21820         There were issues when multiple threads tried to load
21821         assemblies. A deadlock was created between assemblies_mutex and
21822         mono_domain_assemblies_lock. This fixes the issue by making the
21823         assembly ref counting be lock free. See bug 75586.
21824         
21825         * image.c (mono_image_close): The add ref function here was using
21826         Interlocked operations while the unref was using a mutex and a
21827         --. I don't think this was ever a bug that would be exposed in a
21828         non-pendantic way (ie, by an embedder doing a ref on one thread
21829         and an unref on another), but for the sake of correctness, this is
21830         now Interlocked.
21832         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21833         (mono_assembly_load_reference): Call mono_assembly_addref rather
21834         than touching the refcount ourselves.
21835         (mono_assembly_close): Use InterlockedDecrement to unref the
21836         assembly. Don't acquire the lock unless it is actually needed.
21838 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21840         * class.c (mono_class_layout_fields): Fix calculation of has_references
21841         for generic types.
21843 2005-07-12  Martin Baulig  <martin@ximian.com>
21845         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21847         * metadata.c
21848         (mono_type_hash): Provide better hashing for generic instances.
21849         (mono_generic_inst_hash): Improve hashing.
21850         (mono_generic_class_hash): Likewise.
21852         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21853         generic instances.
21855 2005-07-12  Martin Baulig  <martin@ximian.com>
21857         * reflection.c (mono_reflection_create_runtime_class): Remove the
21858         hack for generic type definitions and non-`Run' assemblies.
21859         (mono_reflection_bind_generic_parameters): Also use
21860         `klass->wastypebuilder' to check for TypeBuilders.
21862 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21864         * class.c (mono_class_layout_fields): Fix calculation of has_references
21865         for generic types.
21867         * class.c (inflate_generic_class): Fix a leak.
21868         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21869         for generic types.
21871 2005-07-11  Martin Baulig  <martin@ximian.com>
21873         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21874         on error.
21876 2005-07-11  Martin Baulig  <martin@ximian.com>
21878         * loader.c (find_method): Also lookup in
21879         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21881 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21883         * appdomain.c (mono_domain_unload): Don't free the error message
21884         before passing it to mono_get_exception_...
21886         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21887         
21888 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21890         * threads.c: try to better guess an available RT signal (bug #75387).
21892 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21894         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21895         and CACHE_OBJECT.
21897 2005-07-07  Martin Baulig  <martin@ximian.com>
21899         * class.c (mono_type_get_name_full): Return NULL for
21900         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21901         fixes #75408.
21903 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21905         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21906         exit the appdomain as well being aborted.
21908         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21909         change back to the root domain after calling managed code. This enables
21910         appdomains using threadpools to be unloaded.
21912 2005-07-07  Martin Baulig  <martin@ximian.com>
21914         * class-internals.h
21915         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21916         into `MonoDynamicGenericClass' since we only need it for dynamic
21917         types.
21919         * reflection.c (mono_class_bind_generic_parameters): We don't need
21920         to compute the `parent' here.
21922 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21924         * culture-info-table.h : regenerated.
21926 2005-07-06  Martin Baulig  <martin@ximian.com>
21928         * icall.c
21929         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21931         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21933 2005-07-06  Martin Baulig  <martin@ximian.com>
21935         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21936         we're doing a signature-only comparision; fixes #74945.
21938 2005-07-06  Martin Baulig  <martin@ximian.com>
21940         * class-internals.h (MonoGenericClass): Moved some things out into
21941         a new `MonoInflatedGenericClass' type.  
21942         (MonoInflatedGenericClass): New type; the `klass' of a
21943         `MonoGenericClass' is now computed lazyly in
21944         mono_get_inflated_generic_class().      
21946         * class.c (mono_get_inflated_generic_class): New public function.
21947         (mono_class_inflate_generic_method): Removed the unused
21948         `MonoClass *' argument.
21949         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21950         all the methods.
21951         (mono_class_create_generic): Make this static and merge it with
21952         mono_class_create_generic_2(); we're now called automatically from
21953         mono_get_inflated_generic_class().
21955         * loader.c (mono_method_signature): Call
21956         mono_get_inflated_method() here.
21958 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21960         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21961         type of fields with RVA.
21963         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21964         for this pseudo class.
21965         (my_mono_class_from_generic_parameter): Likewise.
21966         (mono_class_init): Allow interfaces to have cctors.
21968 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21970         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21971         lazily for AOT methods.
21973 2005-07-05  Martin Baulig  <martin@ximian.com>
21975         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21976         returns FALSE for a successful match, not TRUE.
21978 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21980         * loader.c (mono_method_get_index): Optimize this a bit.
21982 2005-07-04  Martin Baulig  <martin@ximian.com>
21984         * class.c
21985         (class_compute_field_layout): Move the check for generic type
21986         definitions into mono_class_layout_fields().  Fixes #74684.
21987         (mono_class_from_generic_parameter): Correctly compute
21988         `klass->parent'; fixes #75457.
21990         * reflection.c (register_assembly, register_module): Make sure
21991         `domain->rejobject_hash' is already created.
21993 2005-07-02  Martin Baulig  <martin@ximian.com>
21995         * class-internals.h
21996         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21997         `MonoDynamicGenericClass'.      
21999 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22001         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22002         returned by a field getter is null, since null is a valid value.
22004 2005-07-01  Martin Baulig  <martin@ximian.com>
22006         * reflection.c (mono_reflection_generic_class_initialize): Update
22007         the `dgclass->fields [i].parent' to the correct class.
22008         (mono_image_get_fieldref_token): Use the declaring type, not the
22009         reflected type.
22011 2005-07-01  Martin Baulig  <martin@ximian.com>
22013         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22015 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22017         * threads.c (thread_cleanup): assert that thread != NULL
22018         (wait_for_tids_or_state_change): We were using the wrong variable
22019         when accessing wait->threads. `i' was always out of the bounds of
22020         the array.
22022 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22024         * loader.c: map user32 and kernel32 to libMonoSupportW
22026 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22028         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22030 2005-06-28  Martin Baulig  <martin@ximian.com>
22032         * loader.c (method_from_methodspec): Fix #75334.
22034 2005-06-28  Martin Baulig  <martin@ximian.com>
22036         Fix #74953 - Arrays now implement the generic IList<T> interface
22037         on the 2.0 platform.
22039         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22041         * reflection.c (mono_class_bind_generic_parameters): New public
22042         function; similar to mono_reflection_bind_generic_parameters(),
22043         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22045         * domain.c (mono_init_internal): Try to initialize.
22046         `mono_defaults.generic_array_class' here; this'll only succeed if
22047         we're using the 2.0 corlib.
22049         * icall.c
22050         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22051         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22052         (mono_lookup_internal_call): Added support for nested classes.
22054         * loader.c
22055         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22056         we're an interncall and have generic arguments.
22058         * class.c
22059         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22060         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22061         instance of System.Array.InternalArray<T> for arrays, so they
22062         implement the generic IList<T> interface.
22064 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22066         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22067         (chastamar@yahoo.com). Fixes #75374.    
22069 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22071         * culture-info-table.h: regenerated.
22073 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22075         * icall.c: handle spaces correctly for base64 strings.
22077 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22079         * *.c: Kill some warnings.
22081 2005-06-23  Duncan Mak  <duncan@novell.com>
22083         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22084         that this builds on Solaris 10 (x86).
22086 2005-06-23  Martin Baulig  <martin@ximian.com>
22088         * class.c
22089         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22090         generic type definitions.
22092 2005-06-23  Martin Baulig  <martin@ximian.com>
22094         Fix #75331.
22096         * metadata.c (mono_class_get_overrides): Renamed to
22097         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22098         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22099         pass it to mono_get_method_full().
22101 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22103         * reflection.c (mono_reflection_create_runtime_class): take the
22104         mono_domain_lock in this method. Prevents deadlocks
22106 2005-06-22  Martin Baulig  <martin@ximian.com>
22108         * loader.c (method_from_methodspec): Fix #75330.
22110 2005-06-22  Martin Baulig  <martin@ximian.com>
22112         * reflection.c (type_get_qualified_name): Use
22113         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22114         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22115         argument; use it if we don't have an assembly name.
22117 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22119         * object.c: In mono_message_init, set "copy out" flag for in
22120         parameters with the [Out] flag.
22122 2005-06-21  Martin Baulig  <martin@ximian.com>
22124         * class.c
22125         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22126         and MONO_TYPE_PTR.
22128 2005-06-21  Martin Baulig  <martin@ximian.com>
22130         * class.c (mono_class_init): Don't initialize `class->fields' for
22131         generic instances since they're initialized again in
22132         compute_field_layout(). 
22133         (compute_field_layout): Set the field's `generic_info' here; fix
22134         #75320. 
22136 2005-06-21  Martin Baulig  <martin@ximian.com>
22138         * class-internals.h
22139         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22141         * metadata.c (mono_metadata_generic_method_equal): Also
22142         distinguish the `generic_class'; fixes #75334.
22144 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22146         * domain.c:
22147         * appdomain.c:
22148         * domain-internals.h:
22149         * reflection.c: 'domain_assemblies' field is now protected by its own
22150         lock. Don't call into managed code to run the AssemblyLoad event if we
22151         now there are no registered delegates for it.
22153 2005-06-20  Martin Baulig  <martin@ximian.com>
22155         * class.c (mono_class_is_assignable_from): Use a custom version of
22156         mono_class_has_parent() to make things work for generic instances;
22157         fix #75300.
22159 2005-06-20  Martin Baulig  <martin@ximian.com>
22161         * loader.c (method_from_methodspec): Apply a patch from
22162         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22164 2005-06-20  Martin Baulig  <martin@ximian.com>
22166         * class.c (mono_class_init): Reverted Zoltan's last change; it
22167         breaks generics.
22169 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22171         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22173 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22175         * socket-io.c: fix the index in the socket array for writable/error
22176         sockets. Fixes bug #75306.
22178 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22180         * class.c (mono_class_init): Allow interfaces to have static ctors.
22182 2005-06-17  Martin Baulig  <martin@ximian.com>
22184         * loader.c (method_from_methodspec): Use `context->container' when
22185         parsing the `gmethod->inst'.
22187 2005-06-17  Martin Baulig  <martin@ximian.com>
22189         * class.c (mono_type_get_name_recurse): Don't add the assembly
22190         name for type arguments.
22192 2005-06-15  Martin Baulig  <martin@ximian.com>
22194         * reflection.c (mono_image_get_inflated_method_token): Encode
22195         correct klass; fixes #75260.
22197 2005-06-13 Michal Moskal <malekith@nemerle.org>
22199         * icall.c: Make GetCorrespondingMethod/Constructor take
22200         MonoReflectionMethod method not MonoMethod. Removed
22201         MonoType.GetCorrespondingField, and make
22202         MonoGenericType.GetCorrespondingField take name not
22203         MonoClassField.
22205 2005-06-13  Michal Moskal <malekith@nemerle.org>
22207         * reflection.c (field_encode_signature, encode_locals):
22208          Make sizes of buffers for types larger (for big generic types).
22209          (create_generic_typespec,
22210          mono_reflection_sighelper_get_signature_local,
22211          mono_reflection_sighelper_get_signature_field):
22212          Add asserts for too small buffers.
22214 2005-06-15  Martin Baulig  <martin@ximian.com>
22216         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22217         if our parent is not a dynamic type.
22219 2005-06-15  Martin Baulig  <martin@ximian.com>
22221         * class-internals.h (MonoTypeNameFormat): New enum.
22223         * class.c
22224         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22225         (mono_type_get_full_name): Removed.
22226         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22227         argument instead of the boolean's.
22229         * icall.c (ves_icall_System_MonoType_getFullName):
22230         Added `gboolean assembly_qualified'.    
22232         * reflection.h
22233         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22235         * reflection.c (mono_reflection_parse_type): Parse the new type
22236         name format.
22238 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22240         * icall.c: no need to convert from utf16 to utf8 and then back again
22241         after the call to GetLogicalDrives.
22243 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22245         * icall.c: frombase64. Fix problems exposed by new tests.
22247 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22249         * icall.c: added internal calls for converting char [] and strings in
22250         base64 into byte [].
22252 2005-06-10  Martin Baulig  <martin@ximian.com>
22254         * class.c (mono_class_create_generic_2): Read the nested classes
22255         from the metadata rather than from `gklass->nested_classes' since
22256         `gklass' might not be initialized yet.
22258 2005-06-09  Duncan Mak  <duncan@novell.com>
22260         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22261         all public headers. Fixes #74919.
22263 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22265         * domain.c: The key for proxy_vtable_hash is now a pointer
22266         array. Added new GHashFunc and GCompareFunc functions for this.
22268         * class.h: The list of interfaces in MonoRemoteClass is known in
22269         advance and can't grow (we create a new MonoRemoteClass if needed),
22270         so now the interface array can be allocated together with
22271         MonoRemoteClass.
22272         
22273         * object.c: Added a new method create_remote_class_key.
22274         Fixed mono_remote_class so it does not depend on
22275         mono_upgrade_remote_class.
22276         Removed extend_interface_array.
22277         Added new method clone_remote_class(), which makes a copy of a remote
22278         class and adds a new interface or class to it.
22279         mono_upgrade_remote_class() now creates a new remote class (or gets
22280         it from the cache) if an vtable upgrade is needed. In this way
22281         we make sure that other objects sharing the same remote class
22282         don't get the new vtable with unwanted interfaces.
22283         
22284         * object-internals.h:
22285         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22286         
22287         * marshal.c: Track changes in mono_upgrade_remote_class().
22289 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22290         * icall.c: Add runtime methods for obtaining members of inflated
22291         class, which were created from supplied non-inflated members. It
22292         is used in internal Get{Method,Constructor,Field} methods in
22293         System.Type
22295 2005-06-09  Martin Baulig  <martin@ximian.com>
22297         * reflection.c
22298         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22300 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22301         * reflection.c (mono_image_basic_init): Define
22302         Version in MonoDynamicAssembly. 
22303         
22304 2005-06-08  Martin Baulig  <martin@ximian.com>
22306         Fix #75136.
22308         * loader.c
22309         (mono_method_signature_full): New public method; takes a
22310         `MonoGenericContext *'.
22311         (find_method): Use mono_method_signature_full() and pass the
22312         klass'es context to it.
22314         * class.c (mono_class_is_inflated_method): Use
22315         mono_method_signature_full() and pass the context to it.
22317 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22319         * object.c: add proper locking in mono_remote_class_vtable(),
22320         fixes possible memory corruption.
22322 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22324         * marshal.c (mono_remoting_marshal_init): set
22325         initialized after initialization.
22327 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22329         * locales.c : hush.
22331 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22333         * object.c (extend_interface_array): fix really silly
22334         memory corrupting / comparison bug.
22336 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22338         * reflection.c: Functions added to support the creation
22339         of CustomAttributeData, which includes Attribute data
22340         used by ReflectionOnly methods.
22342         * reflection.h:  mono_reflection_get_custom_attrs_data and
22343          mono_custom_attrs_data_construct added (functions exposed).
22345          * icall.c: Added mono_reflection_get_custom_attrs_data
22346          as icall.
22347         
22348 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22350         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22351         lupus's request.
22353 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22355         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22357         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22358         dynamic DllImportAttribute.
22360         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22361         dynamic DllImportAttribute.
22363         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22364         Fixes #75162.
22366 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22368         * threads.c: avoid segfault when an unstarted thread is aborted.
22370 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22372         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22373         Returns the name and version of the runtime for reporting.
22375 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22377         * appdomain.c: bump corlib version.
22378         * object-internals.h: new field in MonoReflectionAssembly.
22380 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22382         * object-internals.h: Carlos forgot to add this field.
22384 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22386         * icall.c: Added create_version to create instances
22387         of Version of MonoReflectionAssemblyName. This change helps
22388         the AssemblyName tests to keep running fine.
22389         
22390 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22391   
22392         * object.c (mono_method_return_message_restore): A somehow less
22393         intrusive fix for #75138.
22395 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22397         * object.c (mono_method_return_message_restore): Fix computation
22398         of expected number of out args.
22400 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22402         * reflection.c (mono_image_get_method_info): Fix the case when the
22403         charset is empty.
22405 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22407         * object.c: Added missing null check in
22408           mono_method_return_message_restore.
22410 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22412         * reflection.c (mono_image_get_method_info): Handle the case when
22413         dllentry is empty.
22415 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22417         * object.c: When creating the vtable for a proxy, take into account
22418         all inherited interfaces, not only the ones registered in
22419         iclass->interfaces. This fixs bug #74996.
22420         Also, in mono_method_return_message_restore, verify that the array
22421         of out args has the expected lengh.
22423 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22425         * socket-io.c: update the timeout in Poll when the call is interrupte.
22427 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22429         * socket-io.c: support abort/suspend in Select_internal after last
22430         change.
22432 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22434         * threadpool.c: remove warning.
22436 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22438         * icall.c:
22439         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22440         removing the 1024 limit from select(). Runtime part of the fix for
22441         bug #71203.
22443 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22445         * socket-io.c: when resolving the addresses for the same
22446         host returned by gethostname(), get the local IPs from the interface
22447         list. Loopback addresses are discarded if the are interfaces up with
22448         non-loopback ones. Fixes bug #63265.
22450 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22452         * appdomain.c, verify.c, object-internals.h, reflection.c:
22453         bumped corlib number to 36, and added new extra_flags field
22454         to ReflectionMethodBuilder and friends.  Fixes #75060.
22456 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22458         * gc.c: register a new weak link only if the object is non-null
22459         (fixes bug#75047).
22461 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22463         * culture-info.h : short time pattern too.
22465 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22467         * culture-info.h : expand long time pattern string length.
22469 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22471         * culture-info-table.h : update (more French date format; #72788).
22473 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22475         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22476         the method is static. Fixes #75029.
22478 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22480         * reflection.c: Update the table_idx field of method builders after
22481         saving the module, since it can change. This is a workaround for
22482         bug #74914. 
22484 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22486         * culture-info-table.h : update (additional French date format).
22488 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22490         * icall.c (ves_icall_type_Equals): Revert last change.
22491         
22492         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22494         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22496 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22498         * class-internals.h: Added executioncontext_class field to 
22499         MonoDefaults structure.
22500         * domain.c: Cache System.Threading.ExecutionContext class in 
22501         mono_defaults.
22502         * object.c: Capture the ExecutionContext for asynchroneous calls in
22503          mono_async_result_new.
22504         * object-internals.h: Added execution_context and original_context 
22505         fields to MonoAsyncResult. Added execution_context to MonoThread.
22506         * security-manager.c|.h: Added mono_get_context_capture_method to 
22507         return the capture method (if required by the security manager or by
22508         the framework version used).
22509         * threadpool.c: Apply capture (if present) ExecutionContext in 
22510         mono_async_invoke and revert to original context after it completes.
22512 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22514         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22516 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22518         * culture-info-table.h : zh-CHT related workaround.
22520 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22522         * marshal.c (emit_marshal_custom): Add some error checking and call the
22523         methods in the ICustomMarshaler interface. Fixes #74875.
22524         
22525         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22526         native->managed wrappers.
22528 2005-05-12  Martin Baulig  <martin@ximian.com>
22530         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22531         here and use the loader lock.
22533         * mono-debug.c: Properly lock when the debugger is not attached.
22534         (mono_debug_init): Release the initial lock if we're not running
22535         in the debugger.
22537 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22539         * marshal.c (emit_marshal_custom): Pass through NULL values without
22540         calling the custom marshalling routines.
22542         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22543         conversion in structures. Fixes #74882.
22545 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22547         * culture-info-table.h : zh-* cultures were missing.
22549 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22551         * threads.c: Added a new event background_change_event which is signaled
22552         when a thread changes its background mode.
22553         Moved here several checks previously done in managed code. The checks
22554         require the thread lock, and using the thread lock in managed code
22555         can result in deadlocks.
22556         Merged Start_internal and Thread_internal into a single method. Now 
22557         Thread_internal does all work of creating and starting a thread.
22558         Added icalls for setting and getting the state of the object. Moved from
22559         managed code to avoid locking there.
22560         Added wait_for_tids_or_state_change() which is called instad of
22561         wait_for_tids when waiting for non-backround threads to end. This method
22562         will return if one of the threads ends or the background_change_event
22563         is signaled.
22564         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22565         the background mode. This method signals the background_change_event
22566         event.
22567         * icall.c:
22568         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22569         removed Start_internal.
22570         
22571 2005-05-11  Martin Baulig  <martin@ximian.com>
22573         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22574         to order of some fields to get proper alignment on 64-bit machines.
22576 2005-05-11  Martin Baulig  <martin@ximian.com>
22578         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22579         changes as they're broken and completely fuck up the debugger.
22581         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22583 2005-05-10  Martin Baulig  <martin@ximian.com>
22585         * reflection.c (mono_reflection_generic_class_initialize): Don't
22586         call mono_class_setup_parent() here.
22588 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22590         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22591         send/receive timeout use an integer in milliseconds. We were using a
22592         struct timeval.
22594 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22596         * locales.c:
22597         (internal_get_cultures): reserve the first slot of the array for the
22598         InvariantCulture, which will be filled in managed code.
22600 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22602         * reflection.c (mono_image_fill_module_table): Initialize the
22603         GENERATION field as well.
22605 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22607         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22608         Monitor.Enter on the object.
22610 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22612         * threads.c: Enable the wait for running threads when exiting.
22613         * icall.c: Suspend all threads before exiting.
22615 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22617         * assembly.c (mono_assembly_load_reference): Fix warning.
22619 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22621         * threadpool.c: changed the default number of threads per cpu. From now
22622         on, the default will be 20 + (5 * number of cpus) instead of 50.
22624 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22626         * loader.c (mono_method_get_signature_full): Add locking here.
22628 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22630         * appdomain.c: Moved methods for parsing and freeing assembly
22631         names to assembly.c.
22632         * assembly.c, domain-internals.h: Created public methods for parsing
22633         assembly names. Fixed mono_assembly_load_with_partial_name:
22634         it now finds the best match, taking into account the version,
22635         token and culture specified in the partial name. Also return
22636         the latest version if no version information is specified.
22638 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22640         * threadpool.c: replace check for SocketAsyncCall class.
22642 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22644         * threadpool-internals.h:
22645         * Makefile.am: added threadpool-internals.h
22647         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22648         that happen in threadpool threads (tested on MS).
22649         (mono_thread_pool_remove_socket): new function that dispatch any pending
22650         AIO call on a socket that is closing. By now only epoll really needs it,
22651         as select/poll wake up when the socket closes.
22654         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22656 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22658         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22660 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22662         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22664 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22666         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22667         has an abort request, convert it into a suspend request.
22669 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22671         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22672         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22673         is not supported yet.
22675 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22677         * image.c: register assemblies loaded from data (bundles) in the loaded
22678         assemblies hash. Fixes bug #74772.
22680 2005-04-29  Martin Baulig  <martin@ximian.com>
22682         * class.c (mono_type_get_name_recurse): Update to the new naming
22683         schema from the latest .NET 2.x beta2.
22684         (mono_class_setup_vtable_general): If we're a generic instance,
22685         copy the vtable from our generic type definition and inflate all
22686         the methods in it.
22688         * loader.c (find_method): Update to the new naming schema from the
22689         latest .NET 2.x beta2.
22691 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22693         * class.c (mono_class_init): Add a mono_loader_unlock to the
22694         #74734 fix.
22696 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22698         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22699         suspend_all_other_threads () call for the time being, since it can hang.
22701         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22702         the background threads to exit, since it can also hang.
22704         * class.c (mono_class_init): Applied patch from Ankit Jain 
22705         (radical@gmail.com). Avoid pending init errors when a field refers
22706         to a nested class using a typeref. Fixes #74734.
22708         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22709         this for dynamic modules.
22711 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22713         * threads.c: don't wait for threads that are in the process of aborting
22714         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22715         and waiting for background threads to finish. This makes xsp and
22716         mod-mono-server exit without random length delays and/or hangs.
22718 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22720         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22722 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22724         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22725         dynamic types to prevent infinite loops. Fixes #74727.
22727         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22728         ..._is_assignable_to.
22730 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22732         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22734 2005-04-25  Martin Baulig  <martin@ximian.com>
22736         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22738         * domain.c
22739         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22741         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22743         * reflection.c (build_compressed_metadata): Set metadata header
22744         version to 2.0.
22746 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22748         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22749         number into an integral and a decimal part. Fixes #70473.
22751         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22753 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22755         * culture-info-table.h : reflected the latest locale-builder output.
22757 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22759         * threadpool.c: check for SuspendRequested too when deciding if
22760         mono_thread_interruption_checkpoint should be called.
22762 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22764         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22765         * threads.c: remove interruption_mutex and use Interlocked instead. When
22766         suspending all the threads, wait for all the suspended events at once.
22767         If we're shutting down and get an APC that is going to be queued,
22768         call mono_thread_execute_interruption immediately, as the thread might
22769         be sleeping on a pthread condition or mutex.
22771         * icall.c: call mono_runtime_set_shutting_down before suspending the
22772         threads.
22774         Fixes bug #74693. And now xsp is happier when exiting.
22776 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22778         * loader.c (mono_stack_walk): Fix #74690.
22780 2005-04-22  Martin Baulig  <martin@ximian.com>
22782         * mono-debug.h (MonoDebugMethodJitInfo): Added
22783         `MonoDebugMethodJitInfo *jit'.
22785         * mono-debug.c (mono_debug_read_method): Cache the
22786         MonoDebugMethodJitInfo in `address->jit'.
22787         (mono_debug_free_method_jit_info): New public method.
22789 2005-04-22  Martin Baulig  <martin@ximian.com>
22791         * class.c (mono_class_is_assignable_from): Disallow
22792         type parameter -> interface.
22794 2005-04-21  Dick Porter  <dick@ximian.com>
22796         * threads.c (mono_thread_create): Turn an assertion into an error.
22798 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22800         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22801         
22802         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22803         Fix some gcc 4.0 warnings.
22805 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22807         * file-io.c: fix alt dir separator char on unix systems
22808         and cleanup (fixes bug #71214).
22810 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22812         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22813         a call to a remote domain, since the method may be an
22814         interface method in the client domain. This fixes bug #74192.
22816 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22818         * threadpool.c: recv/send are now performed before going back to managed
22819         code to save one transition.
22821 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22823         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22825         * metadata/threadpool.c: removed hack to workaround the bug above.
22827         Fixes bug #74618.
22829 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22831         * reflection.c reflection.h: Fix handling of parameter defaults in
22832         dynamic methods. Also fixes handling of parameter attributes.
22833         Fixes #74609.
22835         * mono-debug.c (mono_debug_close_image): Fix warning.
22837 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22839         * socket-io.h: replaced old unused field with new 'blocking'.
22840         * threadpool.c: restore socket blocking state on windows(tm).
22842 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22844         * icall.c: don't return the codebase in the AssemblyName[] returned by
22845         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22846         * object-internals.h: Removed FIXME (fields were presents) and fixed
22847         versioncompat declaration.
22849 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22851         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22852         not closed, so don't cleanup when it happens.
22854 2005-04-13  Chris Toshok  <toshok@ximian.com>
22856         * mono-debug-debugger.h: change prototype for
22857         mono_debugger_lookup_type.
22859         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22860         this function, although it should probably be named
22861         mono_debugger_init_type.
22863 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22865         * threadpool.c: fix non-AIO case.
22867 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22869         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22870         the built-in profiler to measure just JIT compilation times.
22872 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22874         * threadpool.c: the epollfd might be closed by another thread at
22875         any time, so ignore EBADF at treat it as a "we're closing" sign.
22877 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22879         * threadpool.c: release the semaphores with a count equals to the number
22880         of working threads in both IO and regular pools. Fixed typo that messed
22881         up the count of IO pool threads. Don't initialize the pipe handles if
22882         we're using epoll.
22884 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22886         * threadpool.c: some systems don't like a NULL when deleting the socket
22887         from epoll.
22889 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22891         * threadpool.c: fix semaphore allocation.
22893 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22895         * threadpool.c: added epoll() based implementation for asynchronous IO
22896         that is used instead of the default poll() when available.
22897         It can be disabled by setting MONO_DISABLE_AIO.
22899 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22901         * threadpool.c: windows needs 'closesocket' and instead of returning
22902         0 when the stream is closed while in select, it returns -1. Fixes bug
22903         #74573.
22905 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22907         * class.c (class_compute_field_layout): Fix the regression caused by
22908         the previous try.
22910 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22912         * threadpool.c: separate pool for socket async. IO.
22913         * threadpool.h: mono_max_worker_threads is not a global any more.
22915 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22917         * class.c (class_compute_field_layout): Fix #74549.
22919 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22921         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22922         use 2 connected sockets instead.
22924 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22926         * mono-config.c: Add new entry point for mkbundle
22927         mono_config_parse_memory. 
22929 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22931         * threadpool.c: removed another unused function.
22933 2005-04-08  Ankit Jain  <radical@corewars.org>
22935         * reflection.c (get_default_param_value_blobs): Add 'types'
22936         parameter to get the types encoded in the constant table.
22937         (mono_param_get_objects): Use the type from the constant table,
22938         not the type of the parameter, when creating default values.
22939         Handle null default values correctly.
22941 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22943         * file-io.c:
22944         * file-io.h:
22945         * threadpool.c:
22946         * threadpool.h:
22947         * icall.c:
22948         * socket-io.c: removed dead code for async IO.
22950 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22952         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22954         * threadpool.c: intercept socket async. calls and pass them to a thread
22955         that is polling and dispatching the job items to the threadpool as
22956         socket become ready. Fixes bugs #71217, #71933.
22958         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22959         between char and short/ushort arrays.
22961         * socket-io.c: remove dead code.
22963 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22965         * locales.c,
22966           icall.c : removed InternalToUpper_Comp() and
22967           InternalToLower_Comp().
22969 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22971         * char-conversions.h : The tables were incorrectly generated. Should
22972           be generated against invariant culture.
22974 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22976         * object.c (mono_runtime_invoke_array): Fix return value when 
22977         passing pre-created valuetype objects to ctors.
22979         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22980         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22981         Fixes #74338.
22983 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22985         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22986         only used with --security and hides the wrong corlib version error.
22988 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22990         * class.c: Changed mono_class_name_from_token so that types
22991         outside of a namespace don't have an initial period.  Improved
22992         the g_warning message used in _mono_class_get when loading
22993         fails.
22994         * assembly.c: In mono_assembly_load_reference, when an assembly
22995         can't be found, "No such file or directory" is misleading and
22996         unhelpful because a few paths were checked for the presence of
22997         the assembly.  When that happens (ENOENT), display a nicer
22998         message indicating the directories that were searched.  In all
22999         cases, the warning is made easier to read for non-hackers.
23001 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23003         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23004         project/solution.
23005         * appdomain.h|domain.c: Removed inline from functions.
23006         * appdomain.c: Reduced warnings when compiling on windows.
23007         * icall.c: Fixed output_debug declaration to gunichar2*.
23008         * mono-config.c: Reduced warnings when compiling on windows.
23009         * rand.c: Added missing "windows.h". Added missing return value.
23010         * rawbuffer.c: Added missing winsock2.h for windows.
23011         * sysmath.h: Added mono-compiler.h header to allow/ease 
23012         compilation with non-GCC compilers.
23013         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23014         Removed cast warnings.
23016         Adapted from the work of J Lothian (for VC6).
23018 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23020         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23021         from default_path.
23023 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23025         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23026         the 2.0 profile.
23028 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23030         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23031         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23032         stuff, and it would probably use $(prefix)/share rather than
23033         $(prefix)/lib.
23035 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23037         * console-io.c: added 2 includes that might be missing.
23039 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23041         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23042         profile.
23044         * reflection.c (create_custom_attr): Allocate the params array using
23045         alloca so it gets GC tracking.
23047 2005-03-23  Chris Toshok  <toshok@ximian.com>
23049         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23050         out some spew.
23052 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23054         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23055         changes to pick up any changes in prefix, etc.
23057 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23059         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23060         
23061         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23062         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23064 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23066         * class-internals.h object-internals.h class.c reflection.c: Extend the
23067         mono_lookup_dynamic_token () function to return the class of the
23068         token as well. 
23070         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23071         well. Fixes #73848.
23073 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23075         * security-manager.c: Skip inheritance checks for intra-corlib
23076         class inheritance and method overrides. This skips a lot of checks
23077         and (anyway) permissions cannot work until corlib is loaded.
23079 2005-03-23  Martin Baulig  <martin@ximian.com>
23081         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23082         MONO_TYPE_GENERICINST.  
23084 2005-03-23  Martin Baulig  <martin@ximian.com>
23086         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23088 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23090         * class.c: added locking comments to some functions.
23091         Cache the interface offsets arrays (saves about 20 KB
23092         of runtime memory in a typical app).
23093         Reduce the time overhead in mono_class_setup_supertypes ().
23095 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23097         * icall.c: speedup and fix leaks in GetMethodsByName and
23098         GetPropertiesByName.
23100 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23102         * reflection.c: some locking fixes.
23104 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23106         * metadata.c: added missing break in case statement.
23108 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23110         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23111         typedbyref return values. Fixes #73941.
23113 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23115         * security-manager.c|h: Added demandunmanaged method and 
23116         suppressunmanagedcodesecurity class to MonoSecurityManager.
23117         Renamed aptc class to allowpartiallytrustedcallers.
23119 2005-03-17  Martin Baulig  <martin@ximian.com>
23121         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23123 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23125         * file-io.c: disabled file async. IO using aio_*. It uses the
23126         threadpool now. Workaround for bug #73718.
23128 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23130         * assembly.h, mono-config.c: added code to deal with bundled configs
23131         for bundled assemblies.
23133 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23135         * *.c, private.h: cleanup, removing old private.h header file.
23137 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23139         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23140         and throw_on_unmappable_char attributes.
23142 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23144         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23145         _ProcessName_internal.
23147 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23149         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23150         #73631.
23152         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23153         are no longer used.
23155 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23157         * object.c (compute_class_bitmap): Add support for generics. Fixes
23158         #73527.
23160 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23162         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23164 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23166         * filewatcher.c: commented out the code for windows watcher, as we don't
23167         use it (we use the managed implementation instead).
23169 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23171         * object-internals.h (MonoThread): Remove 'unused1' field.
23173         * appdomain.c: Bump corlib version.
23175         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23177         * reflection.c (mono_reflection_create_runtime_class): Remove the
23178         AssemblyBuilder.Save optimization since it causes too many problems.
23180 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23182         * exception.c|h: Added mono_get_exception_reflection_type_load to
23183         create a ReflectionTypeLoadException object.
23184         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23185         to return NULL is a InheritanceDemand fails during reflection. Updated
23186         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23187         ReflectionTypeLoadException if an InheritanceDemand fails during 
23188         reflection. Added icall mapping for GetLinkDemandSecurity.
23189         * security-manager.c|h: Added ves_icall_System_Security_
23190         SecurityManager_GetLinkDemandSecurity internal call to return the
23191         class and methods permissions set for a LinkDemand. Removed unused
23192         fields in MonoSecurityManager.
23194 2005-03-10  Martin Baulig  <martin@ximian.com>
23196         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23197         it's a generic instance.
23199 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23201         * reflection.c (mono_get_object_from_blob): Applied patch from
23202         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23204         * class.c (mono_class_is_assignable_from): Another try at fixing 
23205         #73469 without breaking anything.
23207 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23209         * class.c: (mono_class_is_assignable_from): Revert the last changes
23210         since they don't work with generics.
23211         
23212         * class.c (mono_class_is_assignable_from): Fix build bustage.
23214         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23215         the managed IsAssignableFrom method. Fixes #73469.
23217         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23218         function.
23220 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23222         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23223         memory when the remoting callback does not sets the out arguments.
23224         Fixes #73007.
23226         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23227         by mistake.
23229         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23231         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23233         * appdomain.c: Bump corlib version.
23235 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23237         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23238         function.
23240         * threads.c (mono_thread_attach): Detect threads which are not started
23241         by the GC pthread wrappers.
23243 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23245         * icall.c: Added new icall for RNG.
23246         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23247         single handle on Linux to access /dev/urandom and fix #73183.
23249 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23251         * object.c: setting the new vtable in a transparent proxy object must
23252         not change the GC descriptor.
23254 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23256         * object.c: fixed compilation without GCJ support.
23257         * reflection.c: for runtime-created types ensure klass->has_references
23258         is correct (bug #73215).
23260 2005-03-02  Martin Baulig  <martin@ximian.com>
23262         * class.c (mono_class_is_assignable_from): Make this work if
23263         `oklass' is a generic instance; fixes #72831.
23265 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23267         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23268         with hasthis set.
23269         
23270         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23272         * marshal.c: Reorganize native->managed marshalling code to also use
23273         the emit_marshal_... functions.
23275 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23277         * object.c: typed allocs have issues with bitmap sizes > 30,
23278         so check for max_set >= 30.
23280 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23282         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23283         managed code. Fixes #73012.
23285         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23287         * metadata.c reflection.c: Load/Emit elem_mult as well.
23288         
23289         * metadata.h (MonoMarshalSpec): Add comment.
23291         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23293         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23294         num_elem to -1 if not given.
23296         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23298         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23299         given values.
23301 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23303         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23305 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23307         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23309         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23311 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23313         * object.c: generalized the reference bitmap creation
23314         and added hooks for the new GC.
23315         * class-internals.c: removed the gc_bitmap field from MonoClass.
23317 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23319         * domain.c: help the compiler to produce better code
23320         in mono_jit_info_table_find ().
23322 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23324         * object.c: make all allocations look typed.
23326 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23328         * socket-io.c: load Mono.Posix if it's not loaded already
23329         (fixes bug#73033).
23331 2005-02-24  Martin Baulig  <martin@ximian.com>
23333         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23334         * reflection.c (dup_type): Likewise.
23336 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23338         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23339         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23341 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23343         * domain.c, threads.c, object-internals.h: make the critical thread
23344         local vars use the fast access mode (even when we're compiled in
23345         a lib). Provide accessors to be used by the jit during codegen.
23347 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23349         * appdomain.c: Changed hook functios behavior to include
23350         support for the reflection only assemblies. Some icalls were changed
23351         to support the mentioned assemblies too. Signatures of static methods
23352         try_assembly_resolve and real_load now have an additional parameter:
23353         refonly.
23355         * assembly.c: General changes to mono_assembly_ methods to support
23356         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23357         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23358         suffix, to support an additional gbool parameter to specify whether
23359         the assembli is reflection only or not. Created some new hook functions 
23360         to add support for reflection only assemblies. Signatures of static 
23361         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23362         have now an additional parameter: refonly.
23364         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23365         indicating whether the assembly is reflection only or not.
23367         * exception.c: Add mono_get_exception_invalid_operation.
23369         * icall.c: Throw an InvalidOperationException when trying to invoke
23370         a property/method/event, or trying to set/get the value of a field.
23371         Also add an icall to retrieve the ref_only flag to the
23372         MonoReflectionAssembly.
23374 2005-02-23  Chris Toshok  <toshok@ximian.com>
23376         Part of fix for #72827.
23377         * mono-debug.c (mono_debug_add_method): add lexical block data to
23378         the info we write.  Kind of a hack at the moment - we copy the
23379         lexical block info from the MonoDebugMethodInfo to the
23380         MonoDebugMethodJitInfo here, before writing it.
23381         (mono_debug_read_method): read the lexical block info.
23383         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23385         * debug-mono-symfile.h: add lexical block support.
23387         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23388         support.
23390 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23392         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23394         * object.c (mono_runtime_free_method): Call mono_free_method () and
23395         put the TODOs there.
23397         * loader.c (mono_free_method): Free up most memory allocated for 
23398         dynamic methods.
23400 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23402         * reflection.c: properly flag a Type argument to a
23403         named custom attr value (bug #72248).
23405 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23407         * reflection.c: reduce code duplication in named custom
23408         attribute encoding.
23410 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23412         * reflection.c: properly encode custom attrs of type object
23413         (bug #72649).
23415 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23417         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23419 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23421         * socket-io.c: load System.dll if it's not loaded already
23422         (bug #72850 and #70477).
23424 2005-02-21  Martin Baulig  <martin@ximian.com>
23426         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23427         generic instances.
23429 2005-02-21  Martin Baulig  <martin@ximian.com>
23431         * reflection.c (mono_image_build_metadata): We also need to
23432         "fixup" the MethodImpl table after we computed the final method
23433         indices.  Call fixup_methodimpl() to do that.
23434         (fixup_methodimpl): New private method.
23436 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23438         * assembly.c: special case mscorlib.dll (bug#72536),
23439         patch from Carlos Alberto Cortez.
23441 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23443         * threads-types.h threads.c: Fix build bustage.
23445         * threads.c: Use a union for long<->double conversions.
23447         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23448         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23450         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23451         containing the checkpoint call with NOT_TAKEN.
23452         
23453         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23454         checkpoint before pushing the arguments, so they won't have to be
23455         spilled to stack.
23457 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23459         * domain.c, assembly.c, domain-internals.h: make some data
23460         const and relocation-free.
23462 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23464         * object.c, appdomain.c, class-internals.h: introduce the
23465         MonoClassRuntimeInfo structure to hold the info needed to
23466         use a class at runtime. Made mono_class_vtable() lock-free
23467         for all the appdomains.
23469 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23471         * metadata-internals.h, image.c: introduce a per-image mempool to
23472         be used for memory that has the same lifetime as the image.
23474 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23476         * domain.c: In mono_init_internal(), instead of selecting the first
23477         runtime version supported by an executable, get a list of all
23478         supported versions and select the one for which an mscorlib exists
23479         (since even if the runtime supports a given version, it doesn't mean
23480         that the framework for that version is installed).
23481         Modified get_runtimes_from_exe to support this behavior.
23482         In supported_runtimes, added information about additional system
23483         assembly versions.
23484         
23485         * assembly.c: Added support for more than one system assembly version
23486         per runtime version. Updated the assembly list.
23487         In mono_assembly_remap_version, removed the initial version check,
23488         since we don't know to which version we need to compare until we
23489         get the version set on which the assembly is based.
23490         Moved the code for loading corlib into the new method
23491         mono_assembly_load_corlib(), so it can be used by the initialization
23492         code.
23493         
23494         * domain-internals.h: Updated data structures and added declaration
23495         for mono_assembly_load_corlib.
23497 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23499         * reflection.c (resolve_object): Fix the creation of the signature in 
23500         the SignatureHelper case.
23502         * assembly.c (mono_assembly_remap_version): Fix binary search.
23503         
23504 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23506         * class.c: Added inheritance check when a method is overloaded (from a
23507         virtual method or when implementing an interface) and when a class is
23508         inherited. Added functions to set a failure for a class and to 
23509         retreive the exception from a failure.
23510         * class-internals.h: Added fields to MonoClass to keep the exception
23511         information status for inheritance (or other exceptions) to be thrown
23512         later (i.e. not at load time).
23513         * object.c: Throw the inheritance SecurityException when a type is to 
23514         be created with either class or method inheritance violations.
23515         * reflection.c|h: Fix when getting declsec from a class. Removed 
23516         unrequired code for class. Improved sanity in parameter naming.
23517         * security-manager.c|h: Added functions to check for class and method
23518         inheritance.
23520 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23522         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23523         and has_finalize in dynamic types as well.
23525 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23527         * culture-info-table.h : fixed currency format for en-GB (and so on).
23529 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23531         * gc.c: ensure the GC handles never have 0 as a value.
23533 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23535         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23536         a pointer to a struct to unmanaged code. Fixes #72625.
23538 2005-02-16  Martin Baulig  <martin@ximian.com>
23540         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23542 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23544         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23546 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23548         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23550         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23551         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23552         etc. Fixes #71471.
23554         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23556         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23558 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23560         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23561         changes to make the current context a field in MonoThread.
23563 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23565         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23566         the last change.
23567         
23568         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23569         extracted from mono_marshal_get_native_wrapper.
23571         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23572         to create wrappers around native functions.
23574         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23575         delegates for arbitrary function pointers. Fixes #71472.
23577 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23579         * threads.c: cleaned up the code a little.
23581 2005-02-15  Martin Baulig  <martin@ximian.com>
23583         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23584         the data table.
23586         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23587         allocate larger chunks if needed.
23589 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23591         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23592         in by mistake.
23594 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23596         * domain.c: keep the domains in an array and ensure the domain ids
23597         are kept small, so they can be used as indexes to domain-specific data
23598         with a small memory overhead.
23600 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23602         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23604 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23606         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23608 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23610         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23612         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23613         values.
23615         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23616         
23617 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23619         * domain-internals.h: add the hashtable here.
23621         * class-internals.h: Remove `info' from MonoMethod
23623         * domain.c: Add a new hashtable, jit_trampoline_hash
23625 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23627         * object.c: don't set the value of static fields
23628         (fixes bug#72494).
23630 2005-02-11  Martin Baulig  <martin@ximian.com>
23632         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23633         (mono_debug_add_method): Silently ignore the method if it's too big.
23634         (mono_debug_add_type): Likewise.
23636 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23638         * threads.c, appdomain.c: remove #ifdefs from the code.
23640 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23642         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23643         common security informations. This allows us to stay in unmanaged code
23644         when doing LinkDemand and it's special cases (except for the first 
23645         time for initialization). The flags a very much used with --security.
23646         * reflection.c|h: Added code to get declarative security attributes 
23647         for LinkDemand and InheritanceDemand. This required to refactor the
23648         existing code for Demand.
23649         * security-manager.c|h: Added new method fields for the special cases
23650         of LinkDemand.
23652 2005-02-10  Martin Baulig  <martin@ximian.com>
23654         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23655         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23657 2005-02-10  Martin Baulig  <martin@ximian.com>
23659         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23660         debugging code; this is almost a complete rewrite.
23662         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23664 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23666         * domain.c, object.h: expose mono_string_equal () and 
23667         mono_string_hash ().
23668         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23669         it's implemented in managed code.
23671 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23673         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23674         lo leak objects between appdomains.
23676 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23678         * assembly.c: old compilers compilation fix from 
23679         robertj@gmx.net (Robert Jordan).
23681 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23683         * class-internals.h: Little reminder for the future.
23685         * debug-helpers.c: Fix up wrapper_type_names
23687 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23689         * image.c, metadata-internals.h: when loading an image from a file,
23690         mmap all of it and use the same codepaths as when using a
23691         in-memory image: the code is simpler and we use less memory
23692         (both writable and readonly).
23694 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23696         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23697         API to alloc runtime data structures that need to be tracked by the
23698         GC and contain pointers.
23699         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23700         make the code more readable and eventually use a different GC.
23702 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23704         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23705         for out arguments.
23706         
23707 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23709         * object.c: In release_type_locks(), don't release the cctor lock
23710         if it has already been released. This fixes a crash in the
23711         thread5 test.
23713 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23715         * gc.c, marshal.c, icall.c: register a delegate for finalization
23716         only when the native function pointer has been allocated for it.
23718 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23720         * object.c: cleaned up some code, allocate objects that are
23721         pointer free with the atomic malloc variant. Allocate memory
23722         for static data from the mempool if it's pointer-free.
23723         Allocate the bounds array at the end of the array data, when needed.
23724         * object-internals.h, object.h: move a private function in a private
23725         header.
23726         * class.c: handle missing case in tracking references in fields.
23728 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23730         * class.c, class-internals.h: keep track if a type has
23731         reference fields in either the instance or static fields.
23733 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23735         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23736         and renamed to MonoRuntimeInfo. Added fields to store the expected
23737         framework assembly version. Changed mono_get_framework_version and
23738         mono_get_runtime_version for a single mono_get_runtime_info method.
23739         
23740         * assembly.c: Added method to remap system assembly versions to the
23741         current executing runtime version. Removed old mapping code.
23742         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23743         
23744         * icall.c, reflection.c: Track api changes.
23746 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23748         * loader.c (method_from_memberref): Improve error reporting,
23749         produce the class name instead of the typeref/typedef index. 
23751 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23753         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23755 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23757         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23758         stdcall and charset name mangling.  Reorganize the code and add
23759         some tracing stuff.
23761 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23763         * monodiet.c: More iters!
23765         * marshal.c: Iter usage.
23767         * icall.c: Iter usage.
23769         * object.c: Use iters.
23771         * debug-helpers.c: More iters
23773 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23775         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23776         under win32.
23778 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23780         * mono-debug-debugger.c: use iters
23782         * class.c, class-internals.h: mono_class_setup_events is static
23783         now
23785         * All callers: use iters
23787 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23789         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23790         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23792 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23794         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23796         * marshal.h: Add prototypes for ldfld/stfld_remote.
23798         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23799         this is called during startup.
23800         
23801 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23803         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23804         MonoThreadsSync struct private in monitor.c. Changed the way
23805         MonoThreadsSync is allocated so it's faster and there is no
23806         need to keep track of it with a finalizer and it uses less memory.
23807         This also finally allows us to allocate mono objects as ptrfree when
23808         there are no reference fields.
23810 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23812         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23813         disappearing link to the GC interface and use them to simplify
23814         the gchandles code.
23816 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23818         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23819         stfld_remote which call mono_load/store_field_new. This allows methods
23820         calling ldfld/stfld wrappers to be AOTed.
23822         * console-io.c: Include sys/filio.h under solaris.
23823         
23824         * console-io.c: Include curses.h if needed correctly.
23826 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23827         
23828         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23829         method->klass as well.
23831         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23833         * class.c (mono_class_init): Switch on lazy initialization of 
23834         methods.
23836         * class.c (mono_class_get_finalizer): Handle the case when the 
23837         finalizer is inherited.
23839 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23841         * console-io.c: <curses.h> is needed by term.h on solaris.
23843 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23845         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23846         mono_class_setup_properties where possible. Remove this ftn from
23847         the header file, and make it static.
23849 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23851         * loader.c: Add missing setup_... call.
23853         * class.c: Add missing setup_... calls.
23855         * class.c (mono_class_init): Switch on lazy initialization of 
23856         the generic vtable.
23857         
23858         * class.c (mono_class_init): Fix generics broken by the recent changes.
23860         * monodiet.c (handle_type): Add missing setup_... calls.
23862         * class.c: Back out garbage in previous patch.
23863         
23864         * class.c: Add missing setup_... calls.
23866         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23867         mono_class_setup_methods () if possible.
23869         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23871         * class-internals.h (MonoCachedClassInfo): New structure.
23873         * class.c: Initialize properties and events fields of MonoClass lazily.
23875         * class.c: Add infrastructure for lazily initializing the methods and
23876         vtable fields of MonoClass. Not yet used.
23878         * class.c (mono_class_get_finalizer): New helper function.
23880         * class.c: Add infrastructure for loading some class related data from
23881         an AOT file.
23883         * object.c: Add infrastructure for initializing the vtable from data
23884         in the AOT file.
23886         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23888         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23889         appropriate initialization function before accessing parts of the
23890         MonoClass structure.
23892         * marshal.c: Fix warnings.
23893         
23894         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23896         * mono-debug-debugger.c (get_exception_message): Use 
23897         mono_class_get_method_from_name_flags ().
23899 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23901         * reflection.c, appdomain.c: Replace a few manual searches that
23902         Zoltan missed. (Paolo approved this part of my initial patch).
23904 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23906         * profiler.c: disable recording statistical events at report time.
23908 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23910         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23911         to byteswap arrays of enum values, too (bug #72080).
23913 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23915         * appdomain.c (set_domain_search_path): Allow this to be called if
23916         domain->setup is not yet set.
23918         * loader.c (mono_method_get_index): New helper function.
23920         * loader.c reflection.c: Use mono_method_get_index ().
23922         * class.c (mono_class_get_method_from_name_flags): New helper method.
23924         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23925         this.
23927         * class.c (mono_class_get_cctor): New helper method.
23929         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23930         mono_class_get_method () to look up methods.
23932 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23934         * console-io.c: Fix the build, this should work on Windows.
23936 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23938         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23939         be set to null to keep things valid
23941 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23943         * icall.c: added Console 2.0 icalls.
23944         * Makefile.am: added console-io.[ch]
23945         * console-io.[ch]: internal calls for Console 2.0 API.
23947 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23949         * class.c: make sure we consider all the interfaces
23950         when calculating max_interface_id (bug found by
23951         Jeroen Frijters running ikvm).
23953 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23955         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23956         valuetype fields to null.
23958         * object.c (set_value): Ditto. Fixes #71669.    
23960 2005-01-31  Martin Baulig  <martin@ximian.com>
23962         * metadata.c (mono_metadata_has_generic_params): New public
23963         function; checks whether something is a generic method.
23965 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23967         * appdomain.c: fix infinite recursion when adding assemblies.
23969 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23971         * object.c: Fix small typo to return all items for Environment.
23972         GetCommandLineArgs.
23974 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23976         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23977         reflection.c: more domain and assembly-unload related fixes
23978         and memory leaks plugs.
23980 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23982         * 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.
23984 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23986         * loader.c (mono_method_signature): Make this method lazy
23987         (mono_get_method_from_token): Don't computate the signature here.
23989         Doing this saves quite a bit of memory. I got 90 kb on starting up
23990         monodoc. It should also save some disk reads on startup.
23992         * *: MonoMethod->signature might be NULL now. You *MUST* use
23993         mono_method_signature.
23995 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23997         * object.c (mono_runtime_get_main_args): Return an array from the
23998         current domain here. Fixes #71938.
24000 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24002         * monitor.c: formatting changes to comply with the
24003         mono coding style and remove #ifdefs from the code.
24005 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24007         * metadata.c, private.h: remove some unneeded data
24008         and use a more compact representation for table schemas.
24010 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24012         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24013         to get a better distribution in hash tables.
24014         * *.c: use mono_aligned_addr_hash() where appropriate.
24015         * assembly.c: make var static.
24017 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24019         * domain-internals.h: Put MonoJitInfo on a diet.
24021         * domain.c: Fix a warning.
24023 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24025         * gc.c: rework the gc handles code to reuse handles
24026         when freed.
24028 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24030         * domain.c: fixed long standing bug in mono_string_equal() which
24031         was brought to light with the ldstr changes.
24033 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24035         * reflection.c: Remove warning by adding missing include for marshal.h
24037 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24039         * domain.c, object.c: change the ldstr_table to hold
24040         MonoString* as keys: makes the runtime isinterned lookup
24041         faster and simplifies memory management.
24043 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24045         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24046         possible to add imperative security checks before calling the icall.
24047         * reflection.c: Return security attributes on the original MonoMethod
24048         (and not the wrapped one). This fix permissions on icalls.
24050 2005-01-25  Dick Porter  <dick@ximian.com>
24052         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24053         the check for mktime() support actually test the mktime() return
24054         value.  "Fixes" bug 71682, though the output is still different to
24055         MS.
24057 2005-01-25  Martin Baulig  <martin@ximian.com>
24059         * class.c (mono_class_is_assignable_from): Make this work for
24060         generic instances.
24062 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24064         * marshal.c (mono_string_utf8_to_builder)
24065         (mono_string_builder_to_utf16): We might not have ownership of the
24066         string. In thise case, we need to create a new buffer.
24068         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24069         be null, in which case, use the default capacity.
24071 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24073         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24074         GC events to the profiler.
24076 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24078         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24079         if you don't want the GC to run.
24081 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24083         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24084         start providing a GC API and keeping different implementations in
24085         their own file.
24086         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24088 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24090         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24091         mmap rather than allocating a huge buffer.
24092         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24093         above.
24095 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24097         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24098         and CheckExecutionRights.
24099         * reflection.c|h: Keep the index of the declarative security to be 
24100         used, instead of the pointer, when AOT compiler is used. Also add 
24101         class initialization when requesting demands.
24102         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24103         CheckExecutionRights. Both properties are now FALSE by default, and
24104         unmodifiable, unless the --security option is used.
24106 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24108         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24109         reflection.c: properly refcount images and assemblies, many leaks fixed.
24111 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24113         * threadpool.c: increase the timeout for threads in the thread pool to
24114         10s.  Fixes bug #67159.
24116 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24118         * class-internals.h: Sun's compiler insists on explicit
24119         signed on bit fields to handle then correctly.
24121 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24123         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24124         Make the size of the array fit only the number of invalid path
24125         chars that we have.
24127         * class.c (_mono_class_get): Improve the error reporting when a
24128         class referenced is not found, to assist debugging. 
24130 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24132         * threads.c: fix off-by-one error.
24133         * domain.c: free data allocated in the domain.
24135 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24137         * reflection.c (mono_method_body_get_object): Fill out exception info
24138         as well.
24140         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24141         structure.
24142         
24143 2005-01-19  Martin Baulig  <martin@ximian.com>
24145         * loader.c (mono_get_method_constrained): Make this work again.
24147 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24149         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24150         guint16 to match the managed side.
24152         * reflection.c (mono_reflection_body_get_object): Fill out local
24153         variables array.
24155         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24156         as well.
24158         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24159         'local_var_sig_token'.
24161 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24163         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24164         System.Drawing.
24166         * reflection.c (mono_method_body_get_object): Handle abstract and
24167         runtime methods.
24169 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24171         * marshal.c, loader.c, class-internals.h, reflection.c:
24172         store the emthod data for a wrapper in an array instead of a list.
24174 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24176         * marshal.c: change the code to allocate memory more
24177         conservatively for method wrappers.
24179 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24181         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24182         fields from MonoClass to the marshal info structure where they belong.
24184 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24186         * class.c, object.c, class-internals.h, marshal.c: rearrange
24187         some fields and tweak some types to lower memory usage.
24189 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24191         * threads.c (signal_thread_state_change): Handle the case when the
24192         target thread is the current thread.
24194         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24196         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24197         emit_ptr_to_object_conv. 
24199         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24200         marshalling. Fixes #71352.
24202 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24204         * metadata.h, blob.h: move table enum to blob.h so it can be included
24205         in any header.
24206         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24207         cut the size of MonoImage/MonoDynamicImage.
24209 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24211         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24213 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24215         * reflection.c, reflection.h, icall.c: add a function to check
24216         if an attribute type is defined for a metadata object.
24218 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24220         * object-internals.h: Added some needed fields from StringBuilder class.
24221         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24223 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24225         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24226         threads before shutting down the runtime.
24228         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24230 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24232         * object-internal.h, threads.c: implement stacksize and 
24233         parameterized thread start functionality (requires
24234         matching corlib). Marked broken code for later removal.
24236 2005-01-12  Martin Baulig  <martin@ximian.com>
24238         * class-internals.h (MonoGenericClass): Moved the `initialized'
24239         flag to MonoDynamicGenericClass, removed `init_pending'.
24240         (MonoGenericInst): Added `is_reference' flag.
24242 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24244         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24245         inside the MSDOS header. Fixes #71201.
24247         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24248         gc thread.
24249         (mono_domain_finalize): Ditto.
24251 2005-01-12  Martin Baulig  <martin@ximian.com>
24253         * class.c (mono_get_shared_generic_class): Use the cache for
24254         non-dynamic generic classes.
24256         * class-internals.h (mono_class_create_generic_2): Removed
24257         function prototype, this function is now static inside class.c.
24259         * class.c (mono_class_create_generic_2): Made this static, only
24260         call it from mono_class_init() and mono_class_setup_parent().
24261         (collect_implemented_interfaces_aux): Call mono_class_init() on
24262         the interfaces we collect.
24263         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24265 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24267         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24268         it a real thread handle.
24270         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24271         MonoJitExceptionInfo, since each catch clause needs its own variable.
24272         
24273 2005-01-11  Dick Porter  <dick@ximian.com>
24275         * image.c (mono_pe_file_open): New variant on mono_image_open()
24276         that does not set up the CLI metadata; used for FileVersionInfo so
24277         it can get the data for windows binaries too.
24278         
24279         * process.c (process_read_string_block): Don't read off the end of
24280         the StringTable block.
24282         These both fix bug 70766.
24284 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24286         * gc.c: set some fields to NULL at GC cleanup time.
24287         * threads.c: if we quit the main thread, call exit ().
24289 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24291         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24293 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24295         * threads.h, threads.c, object.c: added accessor and settor for
24296         main_thread. Handle it specially when exiting from it: wait
24297         for other foreground threads to exit.
24299 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24301         * process.c, verify.c: remove some bloat.
24303 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24305         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24306         the calling convention to cdecl under win32.
24308 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24310         * object.c (mono_object_get_size): New function to get the size of
24311         an object instance.
24313         * profiler.c (simple_allocation): Use above.
24315 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24317         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24318         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24319         get an appdomain by it's id and we can't assume the root's id is 0).
24320         * domain-internals.h: Change the function prototype to match.
24321         * icall.c: Change the icall table for AppDomain.
24323 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24325         * locales.c (string_invariant_compare_char): Only compute
24326         GUnicodeTypes in the case where we need them.  Test for ordinality
24327         first and return if so.
24329         From the commit:
24331                 /*
24332                  * FIXME: here we must use the information from c1type and c2type
24333                  * to find out the proper collation, even on the InvariantCulture, the
24334                  * sorting is not done by computing the unicode values, but their
24335                  * actual sort order.
24336                  */
24338 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24340         * loader.c: for P/Invoke methods, allow the "Internal" shared
24341         library name to refer to the calling process symbol namespace.
24343 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24345         * Makefile.am: Add the security manager to the build.
24346         * security-manager.c|h: New. Initialization of the security manager.
24348 2005-01-07  Dick Porter  <dick@ximian.com>
24350         * threads.c: 
24351         * monitor.c: Update thread state during Monitor and WaitHandle
24352         waits.  Fixes bug 71031.
24354 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24356         * reflection.c (property_encode_signature): Correctly handle when the
24357         property has no methods.
24359 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24361         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24362         
24363         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24364         fields from mb, not rmb. Fixes #71017.
24366         * marshal.c (emit_ptr_to_str_conv): Add support for 
24367         ByValTStr -> string conversion. Fixes #71015.
24369         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24371         * mempool.c (mono_mempool_contains_addr): New helper function.
24373 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24375         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24376         HasSematics encoded fields.
24377         
24378         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24379         invalid string marshalling.
24381         * metadata.c: Fix warnings.
24382         
24383 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24385         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24386         profiler support.
24388 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24390         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24391         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24392         tests.
24394 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24396         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24397         so methods containing these can be AOTed.
24399 2005-01-03  Martin Baulig  <martin@ximian.com>
24401         * loader.c (find_method): Removed the hack for generic instances.
24402         (method_from_memberref): If our parent is a generic instance, pass
24403         its generic type definition to find_method() and then inflate the
24404         method.
24405         (mono_get_method_constrained): Pass the generic type definition to
24406         find_method() and inflate the method later.
24408         * class-internals.h (MonoStats): Added `generic_class_count'.
24410         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24411         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24413         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24414         generic type definitions.
24416 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24418         * loader.c icall.c: Fix warnings.
24420 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24422         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24423         blittable types. Fixes #70864.
24425 2004-12-29  Martin Baulig  <martin@ximian.com>
24427         * icall.c
24428         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24430         * reflection.c (mono_method_get_object): Create a
24431         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24432         call mono_get_inflated_method().
24434         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24436 2004-12-27  Martin Baulig  <martin@ximian.com>
24438         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24439         (MonoMethodInflated): Added `inflated' field.
24441         * class.c (mono_class_inflate_generic_method): Don't really
24442         inflate the method here; just set the `is_inflated' flag in the
24443         MonoMethod.
24444         (mono_class_get_inflated_method): Actually inflate the method here
24445         if it's not already inflated; we use the MonoMethodInflated's new
24446         `inflated' field as a cache.
24448 2004-12-26  Martin Baulig  <martin@ximian.com>
24450         * class.c
24451         (inflate_generic_class): Moved some code out of inflate_generic_type().
24452         (mono_class_inflate_generic_method): If we're already inflated,
24453         inflate the context and use the declaring method; ie. make sure
24454         the declaring method of an inflated method is always the generic
24455         method definition.
24456         (mono_class_create_from_typedef): Create
24457         `class->generic_container->context->gclass'.
24459 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24461         * metadata-internals.h, marshal.c, reflection.c: More
24462         MonoGHashTable->GHashTable.
24464         * domain-internals.h, class.c: Change MonoGHashTable's into
24465         GHashTables for some cases where no gc stuff is used
24467         All users: update apis
24469 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24471         * metadata.c (builtin_types): Make this `const'. Makes this get
24472         put into the shareable section.
24473         (mono_metadata_init): Casts to make gcc happy.
24475 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24477         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24479 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24481         * icall.c: Added an internal call to retrieve the position and length
24482         of assembly-level declarative security attributes (RequestMinimum, 
24483         RequestOptional and RequestRefuse). This is used by the Assembly class
24484         to re-create the corresponding permission sets.
24486 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24488         * marshal.c: fix the stelemref wrapper to be type correct
24489         (and faster).
24491 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24493         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24494         to do key & 0x7fffffff. Hashtable already does this. It just
24495         results in longer code.
24497 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24499         * appdomain.c: Bump corlib version.
24500         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24501         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24502         * reflection.c|h: Add functions to get declarative security infos
24503         (blob position and length) for assemblies, classes and methods.
24505 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24507         * reflection.c: sort the constant table (bug #70693).
24509 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24511         * object-internals.h, threads.c, domain.c: add accessors for
24512         the MonoThread and MonoDomain tls keys.
24514 2004-12-18  Martin Baulig  <martin@ximian.com>
24516         * class.c (inflate_generic_type): If we're inflating a generic
24517         instance, set `ngclass->context->container = context->container';
24518         ie. the container we inflated into.
24520         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24521         inflate_generic_type() changes.
24523 2004-12-17  Martin Baulig  <martin@ximian.com>
24525         * class-internals.h
24526         (MonoGenericClass): Replaced `MonoType *generic_type' with
24527         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24528         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24529         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24531 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24533         * exception.c (mono_exception_from_token): New helper function.
24535 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24537         * assembly.c (mono_assembly_load_with_partial_name): Call 
24538         mono_assembly_loaded before invoking the preload hooks. Fixes
24539         #70564.
24541         * object-internals.h (MonoThread): Change culture_info and 
24542         ui_culture_info into an array.
24544         * threads.c: Cache culture info objects from more than one appdomain.
24546         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24547         current UI culture.
24549 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24551         * threads.h threads.c appdomain.c: Clear the culture_info field of
24552         all threads during unloading if they point to an object in the dying
24553         appdomain.
24555 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24557         * culture-info.h (TextInfoEntry): New struct
24558         * object-internals.h: sync with managed
24559         * locales.c: fill the `text_info_data' field
24560         * culture-info-tables.h: update
24562 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24564         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24565         collector.
24567 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24569         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24570         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24572 2004-12-12  Martin Baulig  <martin@ximian.com>
24574         * mono-debug-debugger.c (write_type): If we're an enum and the
24575         builtin types have already been initialized, call mono_class_init().
24577 2004-12-11  Martin Baulig  <martin@ximian.com>
24579         * metadata.c (mono_metadata_load_generic_params): Added
24580         `MonoGenericContainer *parent_container' argument; automatically
24581         compute `container->is_method'; pass the correct owner to
24582         get_constraints().      
24584         * reflection.c (compare_genericparam): Sort the GenericParam table
24585         according to increasing owners. 
24587 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24589         * profiler.c: allow disabling the default profiler.
24591 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24593         * decimal.c, icall.c: allow disabling System.Decimal support.
24595 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24597         * reflection.c: Add support for null attribute arguments.
24599 2004-12-09  Martin Baulig  <martin@ximian.com>
24601         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24602         names to get rid of compiler warnings.
24604 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24606         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24607         mono_marshal_load_type_info (). Fixes #69625.
24608         (mono_marshal_get_ptr_to_struct): Likewise.
24610 2004-12-08  Martin Baulig  <martin@ximian.com>
24612         * mono-debug.h: Bumped version number to 47.
24614         * mono-debug-debugger.c
24615         (mono_debugger_event_handler, mono_debugger_event): Take two
24616         guint64 arguments insteed of a gpointer and a guint32.  
24618 2004-12-08  Martin Baulig  <martin@ximian.com>
24620         * debug-mono-symfile.h
24621         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24622         `address' to `native_offset'.
24624 2004-12-08  Martin Baulig  <martin@ximian.com>
24626         * class.c (mono_class_create_from_typespec): Only inflate if we
24627         either have `context->gclass' or `context->gmethod'.
24629 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24631         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24633         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24635         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24637         * reflection.c (mono_assembly_get_object): Remove the workaround put
24638         in for the release.
24639         
24640         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24642         * appdomain.c: Bump corlib version.
24644         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24645         be visible in other appdomains.
24647 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24649         * threads.c: Interlocked inc and dec for longs were messed up,
24650         use a KISS based impl for this. Fixes 70234
24652 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24654         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24656 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24658         * icall.c: fix to follow policy not to allow struct
24659         arguments in icalls.
24661 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24663         * process.c: make the patch that handles spaces in file paths work
24664         on mono/windows too.
24666 2004-12-06  Martin Baulig  <martin@ximian.com>
24668         * class.c (mono_class_create_generic): Call
24669         mono_class_setup_supertypes() if we're dynamic.
24670         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24672 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24674         * object-internals.h: Add new fields to MonoThread.
24676         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24678         * icall.c threads-types.h threads.c: Add new icalls.
24680         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24682         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24683         managed side.
24685         * appdomain.c: Bump corlib version.
24687         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24688         internal assemblies. Fixes #69181.
24690 2004-12-05  Martin Baulig  <martin@ximian.com>
24692         * class.c (mono_class_inflate_generic_signature): Make this a
24693         no-op if `context' is NULL or we don't have any type parameters;
24694         also copy `sentinelpos'.        
24696 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24698         * image.c: Add unbox_wrapper_cache.
24700         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24702         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24703         function generator.
24704         
24705         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24706         Fixes #70173.
24708         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24709         
24710 2004-12-04  Martin Baulig  <martin@ximian.com>
24712         * loader.c (mono_method_get_signature_full): New public function;
24713         like mono_method_get_signature(), but with an additional
24714         `MonoGenericContext *' argument.
24716         * class.c (mono_class_inflate_generic_signature): Formerly known
24717         as inflate_generic_signature(); make this public.
24719 2004-12-04  Martin Baulig  <martin@ximian.com>
24721         * metadata.c
24722         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24723         instead of a `MonoGenericContainer *'.  
24724         (mono_metadata_parse_array_full): Likewise.
24725         (mono_metadata_parse_signature_full): Likewise.
24726         (mono_metadata_parse_method_signature_full): Likewise.
24727         (mono_metadata_parse_generic_inst): Likewise.
24728         (mono_metadata_parse_generic_param): Likewise.
24729         (mono_metadata_parse_mh_full): Likewise.
24730         (mono_type_create_from_typespec_full): Likewise.
24732 2004-12-03  Martin Baulig  <martin@ximian.com>
24734         * class-internals.h (MonoGenericContainer): Replaced the
24735         `MonoGenericContext * pointer with a `MonoGenericContext'
24736         structure and made it the first element.
24738 2004-12-03  Martin Baulig  <martin@ximian.com>
24740         * class.c
24741         (inflate_generic_type): Set the `context->container' when creating
24742         a new MonoGenericContext.
24743         (mono_class_inflate_generic_method): Likewise.
24744         (mono_class_create_from_typespec): Just use `context->container'
24745         to get the container.
24747         * loader.c (method_from_methodspec): Set `context->parent' from
24748         `context->container' - and if that's a method container, use its
24749         parent.  Also set the `context->container' when creating a new
24750         MonoGenericContext.
24751         (mono_get_method_from_token): Use just `context->container' to get
24752         the container.
24754         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24755         `gclass->context->container'.
24757         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24758         the `context->container' when creating a new MonoGenericContext.
24760 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24762         * reflection.c (compare_genericparam): Sort params with identical
24763         owner by their number. Fixes gen-111 on sparc.
24765 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24767         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24768         around the domain changes.
24770         * appdomain.c (mono_domain_unload): Handle the case when the thread
24771         calling Unload is itself being aborted during unloading. Fixes #70022.
24773         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24775         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24776         checkpoint_func as an icall so it gets a wrapper.
24777         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24778         in the cross-appdomain wrappers too.
24780         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24782         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24784         * reflection.c: Fix some memory leaks.
24785         
24786 2004-12-02  Martin Baulig  <martin@ximian.com>
24788         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24790         * metadata.c (generic_class_cache): New static hashtable.
24791         (mono_metadata_lookup_generic_class): New public method.
24793 2004-12-02  Martin Baulig  <martin@ximian.com>
24795         * class.c (mono_class_create_from_typedef): Call
24796         mono_class_setup_parent() and mono_class_create_mono_type() before
24797         parsing the interfaces.
24799 2004-12-02  Martin Baulig  <martin@ximian.com>
24801         * metadata.c (generic_inst_cache): New static hashtable.
24802         (mono_metadata_lookup_generic_inst): New public function.
24803         (mono_metadata_inflate_generic_inst): New public function.
24804         (mono_metadata_parse_generic_inst): New public function.
24805         (do_mono_metadata_parse_generic_class): Use the new
24806         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24807         since this'll also use the cache.
24809         * reflection.c (mono_reflection_bind_generic_method_parameters):
24810         Use mono_metadata_lookup_generic_inst() to use the new cache.
24812         * class.c (inflate_mono_type): Use
24813         mono_metadata_inflate_generic_inst() to inflate a generic
24814         instance; this'll also use the new cache.
24816         * loader.c (method_from_methodspec): Use
24817         mono_metadata_parse_generic_inst() and
24818         mono_metadata_inflate_generic_inst() rather than parsing it
24819         manually, so we can use the new cache.
24821 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24823         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24824         the wait times out.
24826 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24828         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24829         iter->args based on whether parameters are passed in registers (i.e.
24830         MONO_ARCH_REGPARMS is defined)
24832 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24834         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24835         the exception message. Fixes #70070.
24836         (method_from_methodspec): Fix warnings.
24838 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24840         * process.c: (complete_path) return the path quoted
24842 2004-12-01  Martin Baulig  <martin@ximian.com>
24844         * class-internals.h (MonoGenericInst): New structure.
24845         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24846         `is_open' with `MonoGenericInst *inst'.
24847         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24848         `is_open' with `MonoGenericInst *inst'.
24850 2004-11-30  Martin Baulig  <martin@ximian.com>
24852         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24854         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24855         to `generic_class_cache'.
24857         * metadata.c
24858         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24859         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24860         (mono_generic_inst_is_valuetype): Renamed to
24861         mono_generic_class_is_valuetype().
24863         * class-internals.h
24864         (MonoGenericInst): Renamed to MonoGenericClass.
24865         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24866         (MonoClass): Renamed `generic_inst' to `generic_class'.
24867         (MonoGenericContext): Renamed `ginst' to `gclass'.
24869         * object-internals.h
24870         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24872         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24873         mono_reflection_generic_class_initialize().
24875         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24876         now known as "System.Reflection.MonoGenericClass".
24877         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24879 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24881         * class-internals.h: Added a flag field to MonoClass to cache the
24882         declarative security attributes actions associated with the class.
24883         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24884         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24885         applicable to the JITted method.
24886         * reflection.c|h: Added functions to extract (as flags) which security
24887         actions are available (declaratively) for a method, class or assembly.
24888         * metadata.c|h: Added functions to search the declarative security
24889         table in the metadata.
24890         
24891 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24893         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24894         EXPORTEDTYPES are already in the class name cache, so there is no
24895         need to add extra code here to look at them. Just removes a bit of
24896         cruft.
24898         (ves_icall_System_Environment_get_TickCount): No need for #if
24899         WINDOWS. We already have the code in io-layer.
24901 2004-11-28  Martin Baulig  <martin@ximian.com>
24903         * loader.c
24904         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24905         Fixes gen-112.cs.
24907 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24909         * assembly.c (do_mono_assembly_open): Instead of having a
24910         conditional WITH_BUNDLE, incorporate support for bundles here, by
24911         having a global `bundles' variable holding a pointer to the actual
24912         bundles. 
24914         (mono_register_bundled_assemblies): New API call used by the
24915         bundle code. 
24917         See mkbundle.1 for details.
24918         
24919 2004-11-27  Martin Baulig  <martin@ximian.com>
24921         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24922         the vtable for generic methods.
24924 2004-11-26  Martin Baulig  <martin@ximian.com>
24926         * metadata.c
24927         (mono_metadata_generic_method_hash): New public function.
24928         (mono_metadata_generic_method_equal): Likewise.
24930         * class-internals.h
24931         (MonoGenericContainer): Added `GHashTable *method_hash'.
24933         * reflection.c (ReflectionMethodBuilder): Added
24934         `MonoGenericContainer *generic_container'.
24935         (reflection_methodbuilder_to_mono_method): Don't create a new
24936         MonoGenericContainer each time we're called.
24937         (mono_reflection_bind_generic_method_parameters): Use
24938         `container->method_hash' to cache the results so we don't create a
24939         different method if we're called several times with the same
24940         arguments.
24942         * loader.c (method_from_methodspec): Use the new
24943         `container->method_hash' here, too.
24945 2004-11-26  Martin Baulig  <martin@ximian.com>
24947         * class.c (inflate_generic_signature): Correctly compute
24948         `res->has_type_parameters'.
24949         (mono_class_vtable): Use the `has_type_parameters' flag to
24950         determine whether we're a generic method.
24952         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24954 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24956         * object.c (mono_runtime_run_main): Fix a small memory leak.
24958 2004-11-25  Martin Baulig  <martin@ximian.com>
24960         * class.c (set_generic_param_owner): Fixed the loop.
24962 2004-11-25  Martin Baulig  <martin@ximian.com>
24964         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24965         generic methods.
24967 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24969         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24970         names. Fixes #69787.
24972 2004-11-24  Martin Baulig  <martin@ximian.com>
24974         * class.c (mono_class_create_generic_2): If we don't have a
24975         `ginst->parent', inflate `gklass->parent' to get our parent.
24977 2004-11-24  Martin Baulig  <martin@ximian.com>
24979         * reflection.c (compare_genericparam): Correctly sort the
24980         GenericParam table; fixes #69779.
24982 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24984         * reflection.c: When writing a PE file, don't create a huge
24985         buffer in memory. Just write the arrays we have to the file.
24986         This reduces memory usage.
24988         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24989         globally.
24991 2004-11-17  Martin Baulig  <martin@ximian.com>
24993         * class.c (mono_class_init): Don't setup `class->parent' for
24994         dynamic instances; moved this to mono_class_generic_2().
24995         (mono_class_create_generic): Also set `klass->inited' for dynamic
24996         generic instances.
24997         (mono_class_create_generic_2): Don't do anything for dynamic
24998         generic instances.  Set `klass->parent' here and also call
24999         mono_class_setup_parent() here. 
25001         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25002         `MonoType *parent' argument; set `ginst->parent' before calling
25003         mono_class_create_generic_2(), so we set the correct parent.
25005 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25007         * reflection.c: allow getting attributes from ModuleBuilder
25008         (used by ikvm).
25010 2004-11-17  Martin Baulig  <martin@ximian.com>
25012         * class.c (mono_class_create_from_typedef): If a type parameter is
25013         inherited from an outer class, set its owner to that class.
25015 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25017         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25018           for (int*) written size. This fixes bug #69592.
25020 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25022         * icall.c: Added IsAuthenticodePresnet internal call.
25023         * image.c|h: New function that check a MonoImage for an Authenticode
25024         signature in the certificate PE data directory.
25025         * security.c|h: New internal call to ask the runtime if an 
25026         Authenticode signature seems referenced in the PE header.
25028 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25030         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25032         * reflection.c (mono_image_create_pefile): Free the assembly streams
25033         after writing out the assembly file.
25035         * object.c (mono_runtime_run_main): Fix small memory leak.
25037         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25038         property access modifiers. Fixes #69389.
25040 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25042         * domain.c, object.c, object-internals.h, domain-internals.h,
25043         object.h, marshal.c: keep dynamic code info per domain.
25045 2004-11-15  Martin Baulig  <martin@ximian.com>
25047         * class.c (mono_type_get_name_recurse): Put type arguments in
25048         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25049         see bug #68387.
25051 2004-11-15  Martin Baulig  <martin@ximian.com>
25053         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25054         (mono_class_setup_vtable): When computing `the_cname' for a
25055         generic instance, don't include the namespace since we'd otherwise
25056         add it twice.
25058 2004-11-15  Martin Baulig  <martin@ximian.com>
25060         * class.c (mono_class_create_generic): Changed return type to void.
25061         (mono_class_create_generic_2): New public function; setup
25062         `class->method', `class->field' and `class->interfaces' here
25063         instead of in mono_class_init().
25065         * class.h (mono_class_create_generic): Moved to class-internals.h.
25067 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25069         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25070         rather than writing to memory, write to this file. Right now,
25071         we are just writting into a buffer, and copying that. However
25072         we can avoid the buffer later.
25074         (mono_dynamic_stream_reset): new function
25076         * icall.c, object-internals.h: update for the above.
25078 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25080         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25081         have been using gc'd memory. First it is slower, unlikely
25082         the comment in the source code said, secondly, it increases
25083         our footprint to do it in the gc.
25085         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25086         the method so that it does not have to copy to managed code.
25088 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25090         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25092 2004-11-12  Martin Baulig  <martin@localhost>
25094         * reflection.c (mono_image_create_token): Allow generic method
25095         definitions here, since they may appear in an `.override'; see
25096         gen-98/gen-99 for an example.
25098 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25100         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25101         #69365.
25103         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25104         descriptive.
25106 2004-11-11  Martin Baulig  <martin@ximian.com>
25108         * class.c (mono_class_setup_vtable): In an explicit interface
25109         implementation, the method name now includes the arity.
25111 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25113         * object.c (mono_array_full_copy): Fix warning.
25115 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25117         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25118         mono_class_get_method_from_name() instead.
25119         
25120         * class-internals.h: Added two new types of wrappers. 
25121         Added MonoRemotingTarget enum. Added new trampoline function type, which
25122         takes an additional MonoRemotingTarget value as parameter, so it is
25123         possible to request a trampoline for a specific target.
25124         
25125         * class.c: Added new mono_class_get_method_from_name() method.
25126         
25127         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25128         general remoting sinks and one specific for cross domain calls.
25129         
25130         * debug-helpers.c: Added new wrapper names.
25131         
25132         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25133         of a remote class.
25134         
25135         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25136         
25137         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25138         with several other methods (mono_marshal_get_xappdomain_dispatch,
25139         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25140         and others) can generate a fast remoting wrapper for cross domain calls.
25141         More information can be found in docs/remoting.
25142         Other changes: Removed mono_find_method_by_name, and used
25143         mono_class_get_method_from_name instead.
25144         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25145         is stored in the remoting invoke hashtable.
25146         
25147         * marshal.h: published the new method for getting the xdomain wrapper,
25148         and also added a method for getting the adequate wrapper for a given
25149         method and target.
25150         
25151         * object-internals.h, object.c: Added a couple of methods for capying and
25152         cloning arrays.
25153         Modified mono_install_remoting_trampoline, which takes the new remoting
25154         trampoline that has a remoting target as parameter.
25155         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25156         will return the most suitable vtable for the target.
25157         Added mono_remote_class_vtable, which returns the vtable of a remote class
25158         (which can be the normal remoting vtable or the xdomain vtable).
25159         
25160         * threads.c: the xdomain invoke and dispatch wrappers must also be
25161         protected against interruptions.
25163 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25165         * icall.c: use memmove in BlockCopyInternal when the source and
25166         destination arrays are the same.
25168 2004-11-09  Martin Baulig  <martin@ximian.com>
25170         * class-internals.h (MonoGenericContainer): Removed `method' and
25171         `signature', replaced them with `is_method' and `is_signature'
25172         flags.  Added `context'.
25174         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25175         instead of a `MonoGenericContainer *'.
25177         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25178         for dynamic type parameters.
25179         (mono_metadata_load_generic_params): Setup `container->context'.
25181         * reflection.c (mono_reflection_setup_generic_class): Setup
25182         `tb->generic_container->context'.
25183         (do_mono_reflection_bind_generic_parameters): Use
25184         mono_class_inflate_generic_type() to correctly inflate types,
25185         rather than using our own hack just for MONO_TYPE_VAR.
25187 2004-11-09  Martin Baulig  <martin@ximian.com>
25189         * class.c (mono_class_inflate_generic_method): Small fix; don't
25190         crash here.
25192         * icall.c
25193         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25194         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25195         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25196         (ves_icall_Type_BindGenericParameters): Likewise.
25197         (ves_icall_Type_get_IsGenericInstance): Likewise.
25198         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25199         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25200         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25201         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25203 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25205         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25206         assembly versions and public key tokens. Fixes #69113.
25208 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25210         * metadata.c: fix bug introduced with the type cache changes
25211         on 2004-11-06.
25213 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25215         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25216         the MonoClass pointer instead of the token in exception clauses.
25217         * reflection.c: updates for the above and make the code not depend
25218         on the structure of MonoExceptionClause.
25220 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25222         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25223         Add support for dynamic assemblies. Fixes #69114.
25225         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25227 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25229         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25230         since most only those methods use it. the code member of
25231         MonoMethodPInvoke was dead, so that can be removed too. Also,
25232         remove inline_count (again, not used), and move slot so that it
25233         can share bits with some other flags. This saves 8 bytes in the
25234         structure and gives us about 50 kb back for mcs helloworld.cs
25236         * *.[ch]: Do naming changes for the above.
25238         * loader.c (mono_method_get_header): Lazily init the header
25239         on first access.
25240         (mono_get_method_from_token): don't init the header here
25241         (mono_free_method): the header may never be allocated
25243         Overall, this saves 150 kb of unmanaged allocations
25244         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25245         memory at runtime.
25246         
25247         * loader.c, loader.h (mono_method_get_header): new accessor.
25249         * *.[ch]: use the above method. Prepares us to lazily load
25250         the header.
25252         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25253         three warnings, which are actual bugs (see 69206).
25255         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25256         unused. Saves a cool 4 bytes / method.
25258 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25260         * metadata.c (builtin_types): Add types for System.Object here.
25261         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25262         for a class or valuetype from klass->this_arg or klass->byval_arg.
25264         On mcs for a hello world, this gets us down from 21836 MonoType's
25265         to 14560.
25267         (mono_metadata_free_type): Account for the above change.
25269 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25271         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25272         exception instead of asserting if name is null.
25273         (ves_icall_System_AppDomain_GetData): Ditto.
25275 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25277         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25278         EnumBuilder.
25280         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25281         Return NULL when the domain does not have entry_assembly set.
25283         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25284         Add a 'resource_modules' argument.
25285         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25287         * reflection.c (mono_reflection_create_runtime_class): Move setting
25288         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25289         for enums too.
25291         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25292         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25293         Throw an ArgumentNullException if 'ptr' is null.
25295         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25296         assemblies here. Fixes #69020.
25298 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25300         * reflection.c (build_compressed_metadata): Fix the previous patch for
25301         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25302         the stack.
25304 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25306         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25307         the cultures is false. Fixes #69090.
25309         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25310         detected by valgrind.
25311         
25312         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25313         TypeResolve multiple times for the same type. Fixes #65577.
25315 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25317         * marshal.c: Avoid using ldftn to call managed functions. It is
25318         much slower than just a call.
25320         * reflection.c (mono_module_get_object): free the basename we
25321         allocate here from glib.
25322         
25323         * reflection.c (ensure_runtime_vtable): make sure to free
25324         overrides.  Also, we were allocating an array of MonoMethod not an
25325         array of MonoMethod*.
25327         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25329         * image.c (mono_image_close): free image->guid here.
25331 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25333         * reflection.c: Fix some spec conformance issues with the PE file
25334         structures so mcs compiled apps run on the Net 2.0 beta.
25336 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25338         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25339         Implement this. Fixes #67264.
25341         * debug-helpers.h debug-helpers.c marshal.c: Move 
25342         mono_find_method_by_name to debug-helpers.c.
25344 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25346         * object.c (mono_release_type_locks): type_initialization_hash is
25347         a GHashTable.
25349         * reflection.c object.c object-internals.h: Fix warnings.
25351         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25352         without accessors. Fixes #61561.
25354         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25355         application base from the root domain if not set. Fixes #65641.
25356         (mono_runtime_init): Fix warning.
25358 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25360         * appdomain.c: call mono_thread_pool_init.
25361         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25362         of worker threads based on the number of CPUs and the environment
25363         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25364         for non-windows (windows) systems.
25366 2004-10-27  Chris Toshok  <toshok@ximian.com>
25368         * mono-debug-debugger.c (write_class): don't call mono_class_init
25369         here, as even with the check for (!klass->init_pending), we get
25370         into a situation where we're hitting cycles in class
25371         initialization.  Fixes #68816.
25373 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25375         * image.c: Avoid overwriting values in the loaded_images_hash when an
25376         assembly is loaded multiple times. Fixes #61152.
25378         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25379         so multiple satellite assemblies for the same name can be loaded.
25380         Fixes #68259.
25382         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25383         not NULL.
25385         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25386         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25388         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25389         pending finalizers are not invoked after the appdomain has been 
25390         unloaded. Fixes #67862.
25392 2004-10-22  Martin Baulig  <martin@ximian.com>
25394         * mono-debug-debugger.c
25395         (mono_debugger_runtime_invoke): Don't box valuetypes.
25397 2004-10-22  Chris Toshok  <toshok@ximian.com>
25399         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25400         don't hide private methods.
25402 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25404         * icall.c: Allows the runtime to "share" (when known) the public key
25405         token of an assembly. This avoid the need to recalculate the token 
25406         (from the public key) in managed code.
25408 2004-10-21  Chris Toshok  <toshok@ximian.com>
25410         * debug-helpers.c (append_class_name): argh, revert last patch.
25411         
25412 2004-10-21  Chris Toshok  <toshok@ximian.com>
25414         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25415         not '/', so that it matches what the debugger uses to look up
25416         methods.
25418 2004-10-21  Martin Baulig  <martin@ximian.com>
25420         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25421         public method; this is called each time an exception is thrown and
25422         allows the debugger to use exception catch points.
25424 2004-10-21  Martin Baulig  <martin@ximian.com>
25426         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25427         the stack pointer and the exception object in some struct and pass
25428         that to the debugger.
25430 2004-10-21  Chris Toshok  <toshok@ximian.com>
25432         * mono-debug-debugger.c (do_write_class): add instance/static
25433         event support.  We don't expose "raise" or "other" yet.
25434         (event_is_static): new method.
25436 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25438         * mono-debug-debugger.c
25439         (mono_debugger_handle_exception): Remove
25440         bogus return value for fussy compilers.
25442 2004-10-20  Martin Baulig  <martin@ximian.com>
25444         * mono-debug-debugger.c
25445         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25446         (mono_debugger_handled_exception): Likewise.
25448 2004-10-20  Martin Baulig  <martin@ximian.com>
25450         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25451         MONO_DEBUGGER_EVENT_EXCEPTION.
25453         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25454         public function to send the debugger a notification for an
25455         exception and inform it about a catch/finally clause.
25457 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25459         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25460         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25461         fix 2.95 build. 
25463         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25465 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25467         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25468         marshalled as [In,Out]. Fixes #58325.
25470 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25472         * reflection.c (mono_method_body_get_object): Implement some fields.
25474 2004-10-12  Martin Baulig  <martin@ximian.com>
25476         * reflection.c (mono_reflection_bind_generic_parameters): Small
25477         fix, correctly retrieve our parent from a generic instance.
25479 2004-10-12  Martin Baulig  <martin@ximian.com>
25481         * metadata.c (mono_metadata_generic_param_equal): We always have
25482         an owner.
25484         * class.c
25485         (mono_class_from_generic_parameter): We need to have an owner.
25486         (my_mono_class_from_generic_parameter): Likewise.
25488         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25489         mono_reflection_create_generic_class() and added a new
25490         mono_reflection_setup_generic_class().  
25491         (mono_reflection_initialize_generic_param): If we're a nested
25492         generic type and inherited from the containing class, set our
25493         owner to the outer class.
25495 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25497         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25499         * reflection.c (mono_method_body_get_object): New function to create
25500         a MethodBody object.
25502         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25504 2004-10-11  Martin Baulig  <martin@ximian.com>
25506         * metadata.c (_mono_metadata_type_equal): Renamed to
25507         do_mono_metadata_type_equal() and made static.
25509 2004-10-11  Martin Baulig  <martin@ximian.com>
25511         * appdomain.c: Bump corlib version number to 28.
25513 2004-10-10  Martin Baulig  <martin@ximian.com>
25515         * class-internals.h
25516         (MonoGenericInst): Added `MonoGenericContainer *container'.
25517         (MonoGenericMethod): Likewise.
25518         (MonoGenericContext): Likewise.
25519         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25521         * metadata.c
25522         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25523         (do_mono_metadata_parse_generic_inst): Likewise.
25524         (mono_metadata_parse_type_full): New public method.  This is the actual
25525         mono_metadata_parse_type() implementation - with an additional
25526         `MonoGenericContainer *' argument.
25527         (mono_metadata_parse_array_full): Likewise.
25528         (mono_metadata_parse_signature_full): Likewise.
25529         (mono_metadata_parse_method_signature_full): Likewise.
25530         (mono_metadata_parse_mh_full): Likewise.
25531         (mono_type_create_from_typespec): Likewise.
25532         (mono_metadata_interfaces_from_typedef_full): New public method;
25533         this is similar to the other _full() methods, but we take a
25534         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25535         (mono_metadata_parse_generic_param): Take an additional
25536         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25537         from that container.
25538         (mono_metadata_generic_param_equal): New static method to compare
25539         two type parameters.
25540         (_mono_metadata_type_equal): New static method; takes an
25541         additional `gboolean signature_only' argument - if true, we don't
25542         compare the owners of generic parameters.
25543         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25544         with a TRUE argument - do a signature-only comparision.
25546         * loader.c: Use the new _full() methods and pass the
25547         MonoGenericContainer to them.
25549         * object-internals.h (MonoReflectionTypeBuilder): Added
25550         `MonoGenericContainer *generic_container' field.
25551         (MonoReflectionMethodBuilder): Likewise.
25553 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25555         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25556         case initial images of dynamic assemblies.
25558         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25560         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25562         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25563         length of event->other array.
25564         (typebuilder_setup_events): Ditto.
25566         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25567         'assembly_by_name' and add an 'assemblies' list.
25569         * assembly.h assembly.c: Add a new search hook for determining whenever
25570         an assembly is already loaded. Use this instead of searching in the
25571         loaded_assemblies list.
25573         * domain.c appdomain.c: Implement the new search hook so loaded 
25574         assemblies are now scoped by appdomain. Fixes #67727.
25576 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25578         * threads.c (mono_thread_attach): Initialize synch_lock field so
25579         mono_thread_detach works again.
25581         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25582         'lib' too. Fixes #63130.
25584 2004-10-06  Jackson Harper  <jackson@ximian.com>
25586         * culture-info-tables.h: regenerated.
25588 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25590         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25591         implemented by other interfaces in the result. Fixes #65764.
25592         
25593         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25594         Handle unloadable modules without crashing.
25596         * image.c (load_modules): Revert the previous patch since modules must
25597         have a fixed index inside the array.
25598         
25599         * image.c (load_modules): Don't include native modules in the modules
25600         array.
25602 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25604         * reflection.h: Add param_defaults field.
25606         * reflection.c: Add support for parameter defaults in dynamic methods.
25607         Fixes #64595.
25609         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25610         an empty string when a type has no namespace. Fixes #64230.
25612 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25614         * tabledefs.h: Added "internal" security actions to support non-CAS
25615         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25616         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25618 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25620         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25621         constructor of abstract class. Fixes #61689.
25623 2004-10-04  Martin Baulig  <martin@ximian.com>
25625         * class-internals.h (MonoGenericContainer): New type.
25626         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25627         `MonoGenericContainer *generic_container'.
25628         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25629         `MonoGenericContainer *generic_container'.
25631         * metadata.c (mono_metadata_load_generic_params): Return a
25632         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25633         removed the `num' argument.
25635 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25637         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25638         for dynamic images.
25640         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25641         machine fields.
25643         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25645         * reflection.c: Save pe_kind and machine values into the generated
25646         image file.
25648         * appdomain.c: Bump corlib version number.
25650         * object-internals.h: Reorganize layout of LocalBuilder.
25652         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25653         New helper function.
25655         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25656         created MonoType for dynamic types. Fixes #66180.
25658 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25660         * threadpool.c: the ares hashtable needs a critical section around it.
25661         this prevents some nasty segfaults
25663 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25665         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25666         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25667         bug 67324).
25668         
25669 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25671         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25672         
25673 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25675         * image.c: Always canonicalize image file names, to avoid loading
25676         the same assembly twice when referenced using a relative path.
25678 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25680         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25682         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25684         * marshal.c: Fix warnings.
25686 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25688         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25689         attempting to marshal the delegate_trampoline as the method_addr.
25690         This patch has a static hashtable of marshalled delegates so that 
25691         we can map delegate_trampoline addresses back to delegates.  This
25692         allows a delegate passed to managed code to be passed back into native
25693         code.  Fixes #67039
25695 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25697         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25699         * reflection.c (method_encode_code): Align method headers properly.
25700         Fixes #66025.
25702 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25704         * marshal.c: In the runtime invoke wrapper, reset the abort
25705         exception if it is cached. This avoids the automatic rethrowal of 
25706         the exception after the catch of the wrapper. Also check for pending
25707         interruptions before calling the managed method. This is done using
25708         the new method emit_thread_force_interrupt_checkpoint, since the
25709         normal checkpoint method is ignored when running the invoke wrapper.
25710         * object.c: If the abort exception is rethrown, set the abort_exc
25711         field of the thread, so it will be rethrown aftere every catch.
25712         * threadpool.c: Only run an interruption checkpoint if what has been
25713         requested is a stop of the thread (aborts will be ignored).
25714         * threads.c: By default, a thread will now never be interrumped while
25715         running the runtime invoke wrapper (this ensures that runtime_invoke
25716         will always return to the caller if an exception pointer is provided).
25717         There is a new special method mono_thread_force_interruption_checkpoint()
25718         to force an interruption checkpoint even if running a protected
25719         wrapper, which is used by the same runtime invoke wrapper to do a check
25720         at a safe point.
25722 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25724         * object.c, object-internals.h: Implemented mono_release_type_locks,
25725         which releases the cctor locks held by a thread.
25726         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25727         by a thread. Added mono_thread_exit() method to be used to safely stop
25728         a thread.
25730 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25732         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25733         Move null check before dereference.  Avoid indexing beyond the end
25734         of the 'modules' array.
25736 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25738         * metadata-internals.h (MonoImage): Add module_count field.
25739         * image.c (load_modules): Set image->module_count.
25740         (mono_image_load_file_for_image): Use image->module_count.
25741         * reflection.c (mono_image_load_module): Append to image->modules array 
25742         of dynamic assembly.
25743         (mono_module_get_object): Fix loop to actually increment index.
25744         Use image->module_count.
25745         * assembly.c (mono_assembly_load_references): Use image->module_count.
25746         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25747         Likewise.
25749 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25751         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25752         Avoid assert on generic types.
25754 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25756         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25758         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25760         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25761         function to convert a MarshalSpec structure to its managed counterpart.
25763         * reflection.c: Fix warnings.
25764         
25765         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25766         field.
25768         * icall.c (mono_create_icall_signature): Fix build.
25770 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25772         * icall.c: Add MakePointType icall.
25774         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25775         warnings.
25777 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25779         * threadpool.c: reuse allocated slots in the queue.
25781 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25783         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25785         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25787         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25788         previous change.
25790         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25791         ThrowOnUnmappableChar.
25793         * icall.c (ves_icall_Type_GetPacking): New icall.
25795 2004-09-24  Martin Baulig  <martin@ximian.com>
25797         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25799 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25801         * appdomain.c:
25802         (mono_domain_set): allow setting a domain that is being unloaded.
25803         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25804         being unloaded.
25806 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25808         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25809         the GetCustomAttributes icall.
25811 2004-09-23  Martin Baulig  <martin@ximian.com>
25813         * object-internals.h (MonoReflectionGenericParam): Replaced
25814         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25815         with `guint32 attrs'.
25817 2004-09-23  Martin Baulig  <martin@ximian.com>
25819         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25821 2004-09-23  Martin Baulig  <martin@ximian.com>
25823         * object-internals.h (GenericParameterAttributes): New enum.
25825 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25827         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25828         
25829         * class.c (init_events): Fill out event->other field.
25831         * class.c: Fix warnings.
25833         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25835 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25837         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25838         walk which doesn't supply the IL offset.
25840 2004-09-22  Martin Baulig  <martin@ximian.com>
25842         * reflection.c (mono_reflection_setup_internal_class): If we're
25843         System.ValueType, System.Object or System.Enum, set
25844         `klass->instance_size' and create the vtable.
25845         (mono_reflection_create_internal_class): If we're an enum type,
25846         get the base class from our current corlib.
25848 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25850         * reflection.h (MonoResolveTokenError): New type.
25852         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25853         icall.
25855         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25857 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25859         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25860         Support also calling constructors, but only for already allocated objects.
25862 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25864         * reflection.c (type_get_qualified_name): If the klass is null
25865         return the typename to avoid a NullRefEx.
25866         (encode_cattr_value): Get the qualified name of the boxed type,
25867         not the underlying enumtype.  Fixes #62984.
25869 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25871         * marshal.c: Fix problems with previous checkin.
25873 2004-09-21    <vargaz@freemail.hu>
25875         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25876         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25878         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25880 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25882         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25883         should only return a type for pointers, arrays, and passbyref types.
25884         Fixes bug #63841.
25886 2004-09-21  Martin Baulig  <martin@ximian.com>
25888         * domain.c (mono_debugger_check_runtime_version): New public
25889         function.
25891         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25893 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25895         * reflection.c: Added missing sort to the declarative security 
25896         attributes table. MS implementation stops seeing the attributes if the
25897         token number regress in the table (as shown by ildasm and permview).
25899 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25901         * object-internals.h (MonoReflectionModule): Add 'token' field.
25902         
25903         * reflection.c (mono_reflection_get_token): Add support for Module
25904         and Assembly.
25905         (mono_module_get_object): Set 'token' field.
25906         (mono_module_file_get_object): Set 'token' field.
25908         * icall.c: Add new Assembly and Module icalls.
25910         * appdomain.c: Bump corlib version.
25912 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25914         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25915         tokens of metadata objects.
25917         * reflection.h reflection.c (mono_reflection_get_token): New function
25918         to obtain the token of a metadata object.
25920         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25922 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25924         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25925         
25926         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25928 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25930         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25931         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25932         AssemblyBuilder to access the permissions set in the class lib.
25933         * reflection.c: Added security attributes encoding step in 
25934         mono_image_build_metadata.
25935         * tabledefs.h: Added new security actions defined in 2.0:
25936         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25938 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25940         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25941         macro parameter.
25943 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25945         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25946           finalized. There where random SIGSEVs at program termination, when
25947           an object being finalized was trying to do a string comparison and
25948           the current culture was already finalized.
25950 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25952         * threads.c: call thread_cleanup before finishing the thread if we get
25953         there.
25955 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25957         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25958         assemblies from the parent. Fixes #65665.
25960 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25962         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25963         modifiers.
25965 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25967         * reflection.h: add prototype for mono_get_dbnull_object
25968         * reflection.c: add prototypes for get_default_param_value_blobs 
25969         and mono_get_object_from_blob for fussier compilers
25971 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25973         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25974         false deadlock checks in class initialization.
25976 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25978         * image.c (mono_image_addref): Fix comment.
25980         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25981         possible.
25983 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25985         * reflection.c (mono_param_get_objects): Modified to return
25986         ParameterInfo.DefaultValue object.
25988         (get_default_param_value_blobs):
25989         (mono_get_object_from_blob):
25990         (mono_get_dbnull_object): New helper routines. 
25992         * object.c (mono_get_constant_value_from_blob): New helper routine
25993         carved out from get_default_field_value ()
25995         * object-internals.h (mono_get_constant_value_from_blob): Added
25996         function declaration.
25998 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26000         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26001         referenced assemblies. Fixes #62135.
26003         * exception.h exception.c (mono_get_exception_file_not_found2): New
26004         helper function.
26006 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26008         * class.h class.c: Add mono_type_get_underlying_type ().
26010 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26012         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26013         Fix GetTypes() to support dynamically created assemblies.
26015 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26017         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26018         
26019         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26020         previous patch.
26022         * reflection.h reflection.c loader.c: Allow dynamic construction of
26023         pinvoke methods. Fixes #65571.
26024         
26025         * reflection.c (mono_reflection_get_type): Revert previous change since
26026         it causes regressions.
26028 2004-09-08  Martin Baulig  <martin@ximian.com>
26030         * class.c (class_compute_field_layout): Don't call
26031         mono_class_layout_fields() for open generic instances.
26033 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26034         * threads.c appdomain.c: fix typo in GC macro
26036 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26038         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26039         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26041 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26043         * image.c (mono_image_close): Applied patch from 
26044         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26045         assembly is loaded multiple times from data.
26046         
26047         * image.c (mono_image_open): Fix warning.
26049 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26051         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26052         once. Fixes #58334.
26053         
26054         * reflection.c (mono_reflection_create_runtime_class): Initialize
26055         klass->nested_classes. Fixes #61224.
26057 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26059         * threads.c: sched_yield() on exit, to allow threads to quit.
26061 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26063         * object.c (mono_unhandled_exception): Remove leftover debug code.
26065 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26067         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26069 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26071         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26072         
26073         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26075 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26077         * marshal.c (emit_marshal_array): Null terminate string arrays.
26078         
26079         * marshal.c (raise_auto_layout_exception): Fix warning.
26081         * reflection.c (mono_param_get_objects): Initialize the default value
26082         with DBNull.Value, not null. Fixes #62123.
26084 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26086         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26087         throw an exception with a cute explanation.
26089 2004-09-06  Dick Porter  <dick@ximian.com>
26091         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26092         Close the new process's thread handle, as we don't use it.  The
26093         handle stays around forever otherwise.
26095 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26097         * object.c (arith_overflow): Fix warning.
26099         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26100         calling conventions in method refs. Fixes #65352.
26102         * reflection.c: Fix warnings.
26104 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26106         * icall.c: Add a new icall for Array.Clear
26108 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26110         * object.c: When allocating an array, we have to throw
26111         an overflow exception if any of the lengths are < 0.
26113 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26115         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26116         properly. Also move implementation of string array marshalling to 
26117         managed code. Fixes #42316.
26119 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26121         * assembly.c: provide more information when loading an assembly fails.
26123 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26125         * filewatcher.c: don't expect the development fam package to be
26126         installed.
26128 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26130         * marshal.c: Make a copy of the signature cookie since it will be
26131         freed by the caller.
26132         
26133         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26135         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26137         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26138         marshal specs.
26140         * marshal.c: More refactoring.
26141         
26142         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26143         smaller functions.
26145 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26147         * object.c: In mono_message_invoke, fill the output parameter array after
26148           calling the managed method (it was done before the call). This fixes
26149           bug #59299.
26151 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26153         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26154         as well.
26156 2004-09-02  Martin Baulig  <martin@ximian.com>
26158         * class.c (mono_class_instance_size): Don't allow generic type
26159         definitions or open generic instances.
26160         (mono_class_array_element_size): If we're a value type, call
26161         mono_class_instance_size() on the original class.
26163         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26164         handle generic instances.
26166         * mono-debug-debugger.c (write_type): Handle generic instances
26167         like classes.
26169 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26171         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26172         the allocation request fails. Fixes #65089.
26174         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26175         
26176         * object.c (mono_runtime_free_method): New function to free a dynamic
26177         method.
26179         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26180         delegate trampoline.
26182         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26183         with hasthis as dynamic,
26185         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26187         * domain.c (mono_jit_info_table_remove): New function to remove an
26188         entry from the jit info table.
26190         * class-internals.h (MonoMethod): Add 'dynamic' field.
26192         * loader.c: Fix warnings.
26194 2004-09-01  Martin Baulig  <martin@ximian.com>
26196         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26197         instead of mono_debugger_lock() because the latter one is a no-op
26198         unless running in the debugger.
26200 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26202         * class.c (class_compute_field_layout): Classes with auto-layout or
26203         reference fields are not blittable.
26204         
26205 2004-09-01  Dick Porter  <dick@ximian.com>
26207         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26208         mono_image_get_filename() to get the assembly location.
26210         * icall.c:
26211         * metadata.h: Fix compile warnings
26213 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26215         * class.c (class_compute_field_layout): System.Object is blittable.
26217         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26218         as in/out. Fixes #59909.
26220 2004-09-01  Martin Baulig  <martin@ximian.com>
26222         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26223         mono_metadata_generic_inst_is_valuetype() if we're a generic
26224         instance to check whether our underlying type is a reference type.
26226 2004-09-01  Martin Baulig  <martin@ximian.com>
26228         * metadata.c (mono_type_size): If we're a generic instance, call
26229         mono_class_value_size() for value types.
26231 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26233         * marshal.c: Implement more custom marshalling functionality. Fixes
26234         #64915.
26236 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26238         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26240 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26242         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26244         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26246         * icall.c: Fix some warnings.
26248         * threads.c (abort_appdomain_thread): Fix unref errors.
26249         (mono_thread_current): Fix THREAD_DEBUG define.
26251 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26253         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26255         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26257 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26259         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26260         string arrays.
26262 2004-08-28  Martin Baulig  <martin@ximian.com>
26264         * metadata.c
26265         (mono_metadata_generic_inst_is_valuetype): New public function.
26267         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26268         mono_metadata_generic_inst_is_valuetype() if we're a generic
26269         instance to check whether our underlying type is a valuetype.
26271 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26273         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26274         #63768.
26276 2004-08-25  Martin Baulig  <martin@ximian.com>
26278         * loader.c (mono_get_method_from_token): Abstract methods can also
26279         be generic and thus have type parameters.
26281         * metadata-internals.h
26282         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26284         * reflection.c (mono_image_get_generic_param_info): Don't create a
26285         metadata row, just add an entry to the `gen_params' array.
26286         (build_compressed_metadata): Sort the `gen_params' array and then
26287         actually create the metadata.
26289 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26291         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26293 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26295         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26297 2004-08-24  Martin Baulig  <martin@ximian.com>
26299         * class.cs (mono_class_is_subclass_of): Like an interface, a
26300         generic instance also derives from System.Object.
26302 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26304         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26305         custom modifiers to be in any order. Fixes #61990.
26307 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26309         * object.c: Register mono_object_new_fast icall.
26310         
26311         * object.c (mono_class_get_allocation_ftn): Return to calling
26312         mono_object_new_fast, since it seems faster to compute the object 
26313         size in unmanaged code than passing it as a parameter.
26315         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26317         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26318         this function with Boehm as the oom handler, so we don't have to check
26319         the result of GC_malloc.
26321         * object.c: Remove checks for oom.
26323         * object.h object.c (mono_class_get_allocation_ftn): New function to
26324         return the icall which can be used to allocate an instance of a given
26325         class. 
26327         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26329         * class-internals.h: Add 'enabled' field.
26331 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26333         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26335 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26336         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26337         value 0x0010.
26339 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26341         * appdomain.c: use the Tls function for appdomain too,
26342         at Zoltan's request. Actually return in mono_context_get
26344         * appdomain.c, profiler.c, threads.c: use __thread
26346 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26348         * appdomain.c threads.c: Call GC_CreateThread on windows.
26350         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26351         multiple libraries since this don't work on windows.
26353 2004-08-18  Martin Baulig  <martin@ximian.com>
26355         * class-internals.h
26356         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26357         MonoMethodHeader.
26359         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26360         MonoMethodNormal since we also need it for abstract and interface
26361         methods.
26363         * reflection.c
26364         (build_compressed_metadata): Sort the GenericParam table.
26365         (mono_image_create_token): Added `gboolean create_methodspec'
26366         argument; this is false when generating a MethodImpl token.
26367         (reflection_methodbuilder_to_mono_method): Abstract and interface
26368         methods may also have generic parameters.
26370 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26372         * appdomain.c: thread local alloc
26374 2004-08-17  Martin Baulig  <martin@ximian.com>
26376         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26378         * icall.c
26379         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26380         argument.
26382         * class.c (mono_type_get_full_name): New public function.
26383         (mono_type_get_name): Don't include the type arguments.
26385 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26387         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26388         for inclusion into the mono executable.
26390 2004-08-16  Martin Baulig  <martin@ximian.com>
26392         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26393         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26395 2004-08-14  Martin Baulig  <martin@ximian.com>
26397         * class.c (dup_type): Also copy the `byref' field.
26399 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26401         * reflection.c (create_dynamic_mono_image): Revert the last change 
26402         since it breaks bootstrap.
26404 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26406         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26408         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26409         not free them with g_free.
26411 2004-08-11  Martin Baulig  <martin@ximian.com>
26413         * reflection.c (mono_reflection_setup_internal_class): Also call
26414         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26416 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26418         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26419         called during default (first) AppDomain creation. Keep track of
26420         Evidence when loading assemblies.
26422 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26424         * opcodes.c, opcodes.h: reduce runtime relocations.
26426 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26428         * culture-info.h, locales.c: fixes and chages to sue the new
26429         optimized format of the locale data.
26430         * culture-info-tables.h: regenerated.
26432 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26433         
26434         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26436 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26438         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26439         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26440         * domain-internals.h: icall declaration.
26441         * icall.c: icall registration.
26442         * object-internals.h: New fields in MonoAssembly for CAS.
26444 2004-08-05  Duncan Mak  <duncan@ximian.com>
26446         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26447         CEE_LDELEM_ANY.
26449 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26451         * reflection.c: fix to deal with object[] arrays in custom ctors
26452         (bug #62550).
26454 2004-08-05  Martin Baulig  <martin@ximian.com>
26456         * class.c (mono_class_array_element_size): Added support for
26457         generic instances and correctly handle "recursive" types.
26459 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26461         * assembly.c: Fix warnings.
26463 2004-08-04  Martin Baulig  <martin@ximian.com>
26465         * class.c
26466         (mono_type_get_name_recurse): Added `gboolean include_arity'
26467         argument specifying whether or not we should include the generic
26468         arity in the type name.
26469         (_mono_type_get_name): New static function.
26470         (mono_class_setup_vtable): If we're a generic instance, don't
26471         include the generic arity in the names of explicit method
26472         implementations.        
26474 2004-08-03  Martin Baulig  <martin@ximian.com>
26476         * class.c (mono_type_get_name_recurse): Enclose the generic type
26477         arguments in `<', '>'.
26479 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26481         * gc.c: make GC warning messages use the trace API, they are just
26482         noise to most of the users.
26484 2004-08-03  Martin Baulig  <martin@ximian.com>
26486         * debug-mono-symfile.c (read_string): Correctly read the string.
26488 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26490         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26491         
26492         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26493         icalls.
26494         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26496 2004-07-30  Martin Baulig  <martin@ximian.com>
26498         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26499         Reflect latest symbol writer changes.   
26501 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26503         * object.c: always create an object if null is passed
26504         to Invoke() where a valuetype is expected.
26506 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26508         * marshal.c (mono_marshal_init): make managed
26509         signatures match native ones better for 64bits.
26511 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26513         * appdomain.c: hack to build correctly the private bin path on windows.
26514         Fixes bug #61991.
26516 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26518         * assembly.c: Load mscorlib from the correct framework directory
26519           (mono/<version>/mscorlib.dll).
26520         * appdomain.h: Added prototypes for new functions.
26521         * internals.h: Added some prototypes.
26522         * domain.c: When initializing the runtime, get from the executable and
26523           the configuration files the runtime version that the app supports.
26524           Added support methods for reading app.exe.config. Added list of versions
26525           supported by the JIT. Added two new methods: mono_init_from_assembly,
26526           which initializes the runtime and determines the required version from
26527           the provided exe file, and mono_init_version, which initializes
26528           the runtime using the provided version.
26529         * icall.c: Get machine.config from version-specific directory.
26530         * reflection.c: When generating an image, embed the version number
26531           of the current runtime.
26533 2004-07-28  Dick Porter  <dick@ximian.com>
26535         * socket-io.c
26536         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26537         returned sockaddr size before creating the remote address object.
26538         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26539         61608.
26541 2004-07-28  Dick Porter  <dick@ximian.com>
26543         * locales.c (string_invariant_compare_char): Fix invariant char
26544         compares between upper and lower cases.  Fixes bug 61458.
26546 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26547         
26548         * marshal.c: actually cache stelem.ref wrappers.
26549         
26550 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26552         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26553         sections and remove the mono_cli_rva_map () function.
26555 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26557         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26558         by Geoff Norton (<gnorton@customerdna.com>).
26560 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26562         * class.c: fix class loads for pointer types (typeof(int) !=
26563         typeof(int*)).
26565 2004-07-27  Martin Baulig  <martin@ximian.com>
26567         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26568         reading the debugging information from an external ".mdb" file.
26570 2004-07-24  Martin Baulig  <martin@ximian.com>
26572         * reflection.c (mono_image_get_type_info): Only write a class
26573         layout entry if we actually have a size or a packing size.
26575 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26577         * reflection.c (type_get_fully_qualified_name): 
26578         insert cast to get type checking of ?: with non-gcc compilers
26580 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26582         * rand.c: use g_getenv for both lookups of
26583         MONO_EGD_SOCKET
26585 2004-07-17  Martin Baulig  <martin@ximian.com>
26587         * reflection.c (mono_reflection_bind_generic_method_parameters):
26588         Set `gmethod->reflection_info'.
26590 2004-07-17  Martin Baulig  <martin@ximian.com>
26592         * class.c (mono_class_create_from_typedef): Insert the newly
26593         created class into the hash table before computing the interfaces
26594         since we could be called recursively.
26596 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26598         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26599         function to implement stelem.ref in managed code
26600         * class-internals.h, debug-helpers.c: a new wrapper type
26601         for the above.
26603 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26605         * gc.c: allow GC handles to work even when no GC is compiled in.
26606         Fix part of bug #61134 (GetAddrOfPinnedObject).
26608 2004-07-13  Peter Williams  <peter@newton.cx>
26610         * process.c (complete_path): Make sure we don't attempt to execute
26611         directories.
26613 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26615         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26616           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26617           and will add/subtract the hour if needed
26619 2004-07-12  Martin Baulig  <martin@ximian.com>
26621         * reflection.c (mono_field_get_object): If we have
26622         `field->generic_info', take the attributes from
26623         `field->generic_info->generic_type'.    
26625 2004-07-12  Martin Baulig  <martin@ximian.com>
26627         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26628         This function must be called before initializing the runtime.
26629         (mono_debug_init_1): New function; call this after initializing
26630         the runtime, but before loading the assembly.  It tells the
26631         debugger to load corlib and the builtin types.
26633         * mono-debug-debugger.c: Did some larger changes in the debugging
26634         code; support recursive class declarations, make sure we actually
26635         add all classes.
26637 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26639         * debug-helpers.c: undo my previous patch and fixed the real issue in
26640         ../mini/exceptions-x86.c
26642 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26644         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26645         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26646         called from other .cctors.
26648 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26650         * loader.c: Removed the mono_loader_wine_init hack now that we are
26651         doing a managed version of Windows.Forms.
26653 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26655         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26656         threadpool.c, threads.c: remove static data from rootset.
26658 2004-07-09  Dick Porter  <dick@ximian.com>
26660         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26661         Don't do any more processing if the matched length was 0.  It was
26662         increasing the size of the string before.  Fixes bug 61167.
26664 2004-07-09  Dick Porter  <dick@ximian.com>
26666         * socket-io.h:
26667         * socket-io.c
26668         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26669         Add support for SO_PEERCRED if its available.
26671 2004-07-09  Peter Bartok <pbartok@novell.com>
26672         * loader.c: winelib.exe.so error message is now only displayed if
26673         MONO_DEBUG is set. To help us avoid questions when people are trying
26674         out the new Managed.Windows.Forms.
26676 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26678         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26679         for isinst and castclass wrappers.
26681         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26682         to libmetadata from the JIT, so they could be used by the marshalling
26683         code and the interpreter.
26685         * marshal.c: Register marshalling related JIT icalls here instead of
26686         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26687         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26689         * metadata.h: Remove unneeded marshalling conversions.
26691         * opcodes.c: Update for new opcodes.
26692         
26693 2004-07-08  Martin Baulig  <martin@ximian.com>
26695         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26696         (mono_debug_get_domain_data): Make this function static.
26698 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26700         * gc.c, object.h: add nice GC handle API for embedders.
26702 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26704         * reflection.c: more changes for the new api
26706         * object.c: When we reflect on a field w/ a constant value, it
26707         will not have a memory location, so we must access metadata. Also,
26708         allow easier reading of strings so that we can read them from
26709         the constant data.
26711         * class.c (mono_class_layout_fields): no need for literal fields here.
26713         * class-internals.h: api changes for const fields
26715         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26717 2004-07-06  Martin Baulig  <martin@ximian.com>
26719         * mono-debug.h: Increment version number to 44.
26721         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26722         now a gpointer, rewrote this whole method.
26724         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26725         function.  Add information about the wrapper in a new "misc table".
26727         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26728         for the new misc table.
26730 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26732         * metadata-internals.h image.c: Add a cache for helper signatures.
26734         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26736 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26738         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26739         delegates from a delegate. Fixes #61033.
26740         
26741         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26742         marshalling of stringbuilder arrays. Fixes #59900.
26744 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26746         * icall.c: Add EnumBuilder:setup_enum_type icall.
26748 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26750         * icall.c: Added a new icall for the property version of
26751         OffsetOfStringData.
26753 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26755         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26756         it has a constant size across platforms.
26758         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26759         stack trace.
26761 2004-06-29  Martin Baulig  <martin@ximian.com>
26763         * mono-debug.c (mono_debug_add_method): Protect the whole function
26764         in mono_debugger_lock(), not just parts of it.
26766 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26768         * reflection.c: make sure padding bytes in heaps are zeroed.
26770 2004-06-24  David Waite  <mass@akuma.org>
26772         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26773         image.c, loader.c, locales.c, marshal.c, metadata.c,
26774         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26775         string-icalls.c, threads.c: change to C90-style comments from C99 /
26776         C++ -style
26778 2004-06-24  Dick Porter  <dick@ximian.com>
26780         * threads.c
26781         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26782         return createdNew.  Fixes bug 60412.
26784         * threads-types.h: 
26785         * icall.c: Add createdNew parameter to CreateMutex icall
26787 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26789         * reflection.c, object-internals.h: save default value in params.
26791 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26793         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26794         no need to build a new path combining that with the application base.
26795         Fixes bug #60442.
26797 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26799         * reflection.c: fixed minor standard compliance issues.
26801 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26803         * reflection.c: fixed issue with encoding some custom attributes
26804         (arrays in properties and fields, bug #60411).
26806 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26808         * reflection.c: fix start address when copying the public key token.
26810 2004-06-23  Martin Baulig  <martin@ximian.com>
26812         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26813         the `exc' object in a static object to put it into the GC's root set.
26815 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26817         * reflection.c: make mono_reflection_setup_internal_class ()
26818         callable a second time to setup a new parent class.
26820 2004-06-23  Dick Porter  <dick@ximian.com>
26822         * threads.c: Check for WAIT_IO_COMPLETION return values.
26824 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26826         * appdomain.c: Removed the g_free on the public key token. Now copy 
26827         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26828         * assembly.c: Added public key token string value when loading 
26829         assemblies. Fix bug #60439.
26830         * icall.c: Added missing informations (like public key) in 
26831         GetReferencedAssemblies. Fix #60519.
26832         * image.h: Changed definition for public key token from const char*
26833         public_tok_value to guchar public_key_token [17];
26834         * reflection.c: Updated for changes to public key token.
26836 2004-06-22  Lluis Sanchez Gual
26838         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26839         for the field in base classes.
26841 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26843         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26844         mark headers as not supported, they are installed only for use by the
26845         debugger.
26847 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26849         * *.c, *.h: avoid namespace pollution in public headers.
26851 2004-06-21  Martin Baulig  <martin@ximian.com>
26853         * exception.c (mono_get_exception_security): It's in
26854         "System.Security", not in "System".
26856         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26857         the exception classes.
26859 2004-06-21  Martin Baulig  <martin@ximian.com>
26861         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26862         Protect the exception object from being finalized.
26864 2004-06-21  Martin Baulig  <martin@ximian.com>
26866         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26867         public function.
26869 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26871         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26872         if it was not loaded before. Fix parts of #60439.
26874 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26876         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26877         code that was broken since Ben's change: wrappers are now
26878         dependent on the method signature only again.
26880 2004-06-21  Martin Baulig  <martin@ximian.com>
26882         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26883         added interface support.
26885 2004-06-21  Martin Baulig  <martin@ximian.com>
26887         * class.c (mono_vtable_get_static_field_data): New public method.
26889 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26891         * filewatcher.c : Windows build fix to be compliant with API changes.
26893 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26895         * class.h, class.c: more accessors.
26896         * metadata.h, metadata.c: prepare for hiding MonoType and
26897         MonoMethodSignature: people should use the accessors from now on
26898         outside of the tree.
26900 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26902         * *.c, *.h: more API cleanups.
26904 2004-06-18  Jackson Harper  <jackson@ximian.com>
26906         * assembly.c: Trace loading assemblies.
26907         * loader.c: Trace loading native libraries.
26908         * mono-config.c: Trace loading config files.
26909         
26910 2004-06-18  Dick Porter  <dick@ximian.com>
26912         * locales.c: Tell ICU the lengths of strings, it can cope with
26913         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26915 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26917         * image.c: swapped name/filename;
26919 2004-06-18  Martin Baulig  <martin@ximian.com>
26921         * mono-debug-debugger.c (write_class): Write the parent class at
26922         the end of the header.
26924 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26926         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26928 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26930         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26931         (bundle_obj): New conditional define.
26932         (BUILT_SOURCES): Remove.
26933         ($(bundle_srcs)): Make parallel-make safe.
26934         (libmonoruntime_la_LIBADD): Make unconditional.
26935         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26936         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26938 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26940         * culture-info-tables.h: It was inconsistent with the latest
26941           supp info files.
26943 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26945         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26946         be loaded.
26948         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26949         with gcc 2.95.
26951 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26953         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26954         cleaned up public header threads.h.
26956 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26958         * Makefile.am, *.c, *.h: more API cleanups.
26960 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26962         * Makefile.am: removed monosn from compilation.
26963         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26964         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26965         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26966         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26967         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26968         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26970 2004-06-15  Jackson Harper  <jackson@ximian.com>
26972         * assembly.c: Make locales lower case when searching the GAC for
26973         assemblies. gacutil will always make locales lowercase when
26974         installing so this effectively makes them case insensitive.
26975         
26976 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26978         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26979         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26980           parameter which allows to choose whether the wait can be interrupted or 
26981           not. Also added the method mono_monitor_enter(), which locks the monitor
26982           using an infinite wait and without allowing interruption.
26983           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26984           interrupted.
26985         * object.h: Added new fields in MonoThread. suspend_event holds the event
26986           used to susped/resume the thread. synch_lock is the lock object to use for
26987           modifying the thread state.
26988         * threads.c: Use the new synch_lock object for locking, instead of "this",
26989           which can generate deadlocks.
26990           Moved thread state change in Thread.Sleep and Thread.Join from managed
26991           to unmanaged code. This avoids a deadlock when the thread was suspended
26992           just after acquiring the thread lock.
26993           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26994           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26995           which is not fully implemented in the io-layer.
26996         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26998 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27000         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27001         threads-types.h: more API cleanups.
27003 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27005         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27006         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27007         threadpool.c, threads.c: first pass at the exported API cleanup.
27009 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27011         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27013 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27015         * icall.c: added internalGetHome.
27017 2004-06-14  Dick Porter  <dick@ximian.com>
27019         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27020         possible to return successfully when '.' or '..' were the only
27021         entries in a directory, but were skipped.  The MonoIOStat was not
27022         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27023         Fixes bug 59574.
27025 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27027         * reflection.c: make binaries run on .Net 1.1 by default.
27029 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27031         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27033 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27035         * marshal.c: keep track of struct size with explicit layout
27036         (bug #59979).
27038 2004-06-12  Martin Baulig  <martin@ximian.com>
27040         * mono-debug-debugger.c: Comment out a debugging g_message().
27042 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27044         * reflection.c, reflection.h: do not free custom attrs that are cached.
27045         * icall.c: use braces to make code clearer.
27047 2004-06-11  Martin Baulig  <martin@ximian.com>
27049         * class.h (MonoInflatedField): New type.
27050         (MonoClassField): Replaced `MonoType *generic_type' with
27051         `MonoInflatedField *generic_info'.
27053         * icall.c
27054         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27056 2004-06-11  Martin Baulig  <martin@ximian.com>
27058         * reflection.c (mono_image_create_method_token): Correctly encode
27059         varargs methods.
27061 2004-06-11  Martin Baulig  <martin@ximian.com>
27063         * metadata.c (mono_metadata_parse_method_signature): When parsing
27064         a MethodDef which has VarArgs, also set sentinelpos if we don't
27065         have any parameters.
27067 2004-06-11  Martin Baulig  <martin@ximian.com>
27069         * verify.c (mono_method_verify): In CEE_CALL, use
27070         mono_method_get_signature() to get the method's signature, unless
27071         we're a PInvoke method.
27073 2004-06-10  Jackson Harper  <jackson@ximian.com>
27075         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27076         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27077         logical name as the supplied path is just a prefix to the gac not
27078         the direct path to it.
27079         
27080 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27082         * reflection.c: make the token for a created method match
27083         the token of the MethodBuilder it was created from
27084         (IKVM requires this behaviour now).
27086 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27088         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27089         reflection.c, socket-io.c: leak fixes.
27091 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27093         * icall.c: handle sentinel pos in vararg methods in position different
27094         from 0.
27096 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27098         * culture-info-tables.h: freshly generated.
27100 2004-06-09  Martin Baulig  <martin@ximian.com>
27102         * loader.c (mono_get_method_constrained): Call `mono_class_init
27103         (constrained_class)'.   
27105 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27107         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27108         any methods. Fixes #59629.
27110 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27112         * culture-info-tables.h: reflecting locale-builder updates.
27114 2004-06-08  Dick Porter  <dick@ximian.com>
27116         * object.h:
27117         * locales.c: Fixed compile warnings, including a real bug in
27118         CompareInfo_internal_compare.
27119         
27120 2004-06-08  Dick Porter  <dick@ximian.com>
27122         * locales.c
27123         (ves_icall_System_Globalization_CompareInfo_internal_index):
27124         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27125         Double-check the resuls of usearches, because ICU currently
27126         ignores most of the collator settings here.  Fixes bug 59720.
27127         
27128 2004-06-08  Dick Porter  <dick@ximian.com>
27130         * locales.c
27131         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27132         Fix memory leak and segfault-causing typo.  No idea how this one
27133         lasted so long without being noticed.
27135 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27137         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27138         any methods. Fixes #59629.
27140 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27142         * assembly.c:
27143         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27144         own the critical section before). Removed dead code (that's done
27145         in the preload hook).
27147         (mono_assembly_load_with_partial_name): call the preload hook.
27149 2004-06-08  Martin Baulig  <martin@ximian.com>
27151         * metadata.c (mono_metadata_signature_alloc): Default
27152         `sentinelpos' to -1.
27154         * reflection.c (mono_image_get_array_token): Likewise.
27156 2004-06-08  Martin Baulig  <martin@ximian.com>
27158         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27160         * metadata.c (mono_metadata_parse_method_signature): When parsing
27161         a MethodDef which has VarArgs, set sentinelpos.
27163         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27164         `gint16' since we're using -1 for non-varargs methods.
27166         * reflection.c
27167         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27168         (method_encode_signature): Added varargs support.
27169         (method_builder_encode_signature): Likewise.
27170         (mono_image_get_varargs_method_token): New static method.
27171         (mono_image_create_method_token): New public method; this is
27172         called via an icall instead of mono_image_create_token() when
27173         calling a varargs method.       
27175 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27177         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27179 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27181         * culture-info-tables.h : Reflecting the latest locale-builder that
27182           fixed empty array representation ({} to {0}).
27184 2004-06-07  Jackson Harper  <jackson@ximian.com>
27186         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27187         looking up extra gac paths. This allows MONO_GAC_PATH to act
27188         exactly like a prefix.
27189         
27190 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27192         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27193         type name before modifying it. Fixes #59405.
27195 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27197         * culture-info.h: added fields for "all datetime patterns".
27198         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27199           _construct_datetime_format ()): fill xxx_patterns fields.
27200         * object.h: added fields for "all datetime patterns" to
27201           MonoDateTimeFormatInfo.
27202         * culture-info-tables.h: reflecting locale-builder updates.
27204 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27206         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27207         the event has no add and remove methods. Fixes #59629.
27209 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27211         * object.c: Fixed possible integer overflow when allocating large
27212         strings.
27214 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27216         * culture-info-tables.h: reflecting locale-builder updates.
27218 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27220         * culture-info-tables.h: reflecting locale-builder updates.
27222 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27224         * culture-info-tables.h: reflecting locale-builder updates.
27226 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27228         * threads.c: Made Thread.Sleep abortable.
27230 2004-06-02  Martin Baulig  <martin@ximian.com>
27232         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27234         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27236 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27238         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27240 2004-05-30  Jackson Harper  <jackson@ximian.com>
27242         * reflection.c: Do not hardcode assembly versions or public key
27243         tokens anymore. All of this except the corlib section was dead
27244         code anyways.
27245         
27246 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27248         * object.c (mono_runtime_invoke_array): Automatically create boxed
27249         objects for byref valuetypes if needed. Fixes #59300.
27250         
27251         * object.c (mono_method_return_message_restore): Handle 
27252         MONO_TYPE_OBJECT as well.
27254 2004-05-28  Jackson Harper  <jackson@ximian.com>
27256         * reflection.c: The modified type encoding was causing build
27257         problems. Reverted for now.
27258         
27259 2004-05-28  Jackson Harper  <jackson@ximian.com>
27261         * reflection.c/h: Take an assembly ref so that we dont create
27262         fully qualified names when encoding types in the same assembly as
27263         the custom attribute being emitted.
27264         * appdomain.c: Increment version number.
27265         
27266 2004-05-26  Duncan Mak  <duncan@ximian.com>
27268         * icall.c
27269         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27270         Set the full version number (major, minor, build, revision).
27272 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27274         * marshal.c (emit_struct_conv): increment src/dst after blit
27275         (mono_marshal_get_managed_wrapper,
27276         mono_marshal_get_native_wrapper): make sure we have marshalling
27277         info before marshalling params (info computation affects
27278         blittable)
27280         * class.c (class_compute_field_layout): correctly deal with
27281         blittable
27282         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27283         value types (as per what windows dows by default)
27284         (mono_class_setup_mono_type): System.ValueType is blittable
27285         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27286         blittable
27288         * marshal.c (mono_marshal_load_type_info): flag types  as
27289         non-blittable if the native layout doesn't match the managed
27290         layout
27292 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27294         * appdomain.c: don't add stuff in the private search path that is
27295         above the application base. If application base is not set, there's
27296         no private search path.
27298 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27300         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27301         byref struct arguments in native->managed marshalling.
27303 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27305         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27306         cache methods using signature (special case for methods
27307         that are value type or string class)
27308         
27309         * image.c (mono_image_close): clean up allocated GSList's
27310         in runtime_invoke_cache.
27312 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27314         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27315         there's no MONO_CFG_DIR environment variable defined.
27317 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27319         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27321 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27323         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27324           is interrumped.
27325         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27326           before waiting for it, and call CloseHandle after the wait to unref it.
27327           This will make sure that handles are not disposed too early.
27329 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27331         * appdomain.c:
27332         * appdomain.h:
27333         * icall.c: removed
27334         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27335         needed now.
27337         * object.c: se the application_base only for the domain that runs
27338         Main. Fixes bug #59216,
27340 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27342         * appdomain.c:
27343         * object.c: only the domain in which Main is run have
27344         SetupInformation.ConfigurationFile set, so moved a few lines from
27345         appdomain.c to object.c.
27347 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27349         * appdomain.c: we tried to load [name].(dll|exe), but according
27350         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27351         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27352         There's a test case attached to bug #58922.
27354 2004-05-27  Dick Porter  <dick@ximian.com>
27356         * icall.c:
27357         * file-io.c: Implemented icalls for locking and unlocking regions
27358         in a file.
27359         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27360         FALSE on error (fixes both compiler warning and real bug.)
27362 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27364         * culture-info-tables.h: reflecting locale-builder updates.
27366           (Added missing ChangeLog entry for 05/26)
27368 2004-05-27  Jackson Harper  <jackson@ximian.com>
27370         * locales.c: Fix some cut and paste errors.
27371         
27372 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27374         * mono-config.c: set the correct path for config. directory on windows.
27376 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27378         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27379           on win32.
27381 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27383         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27384         from pinvoke functions.
27385         
27386         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27388 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27390         * culture-info-tables.h: reflecting locale-builder updates.
27392 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27394         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27395         #59086.
27397 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27399         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27400         * icall.c: Modified icalls for RNG.
27401         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27402         Windows (CryptoAPI).
27404 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27406         * locales.c: Fix build.
27408 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27410         * culture-info-tables.h: reflecting locale-builder updates.
27412 2004-05-25  Jackson Harper  <jackson@ximian.com>
27414         * locales.c: When creating the current culture use the $LANGs
27415         specific culture. So DateTimeFormat and NumberFormat entries are created.
27416         
27417 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27419         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27420         a char array as parameter.
27422 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27424         * image.c: In mono_image_open(), always use an absolute path name to
27425           look for already loaded images.
27427 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27429         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27430         missing in the windows build (like older cygwin include files).
27432 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27434         * icall.c: Fixed check for possible integer overflow in Buffer_
27435         BlockCopy icall. Replaced comments style // by /* */.
27437 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27439         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27440         
27441         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27442         check after MONO_VTADDR. Fixes pinvoke2.exe.
27444         * marshal.h marshal.c metadata.h: Add beginnings of support for
27445         ftnptr -> delegate marshalling.
27447 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27449         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27450         * threads.c: Fix warnings.
27452 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27454         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27455         * icall.c: Registered icalls for Suspend and Resume.
27456         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27457           Thread.Abort.
27458         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27459         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27460         * process.c: Use WaitForSingleObjectEx.
27461         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27462           checkpoints.
27463         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27464           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27465           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27466           background threads. Added basic support for Abort in Windows.
27467           Start new threads using a managed delegate invoke wrapper. This wrapper
27468           has an interruption checkpoint that is needed since an interruption
27469           can be requested before the thread leaves the unmanaged code that starts 
27470           the thread.
27471         * marshal.c: Added interruption checkpoint after every native call, and
27472           also before managed calls for wrappers called from unmanaged code to
27473           go into managed code.
27474         * object.h: Added new field in MonoThread to keep track of interruption
27475           requests.
27477 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27479         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27480         calls.
27482 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27484         * appdomain.c:
27485         * assembly.c:
27486         * gc.c:
27487         * locales.c:
27488         * mono-config.c:
27489         * rand.c: getenv -> g_getenv (windows!)
27491         * process.c: complete_path is also used on non-windows platforms.
27493 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27495         * icall.c: new signature for Process_Start.
27497         * process.[ch]: new signature for Process_Start. If we're on windows
27498         and UseShellExecute is false, we have to search for the program by
27499         ourselves if we don't get a full path.
27501 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27503         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27504         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27506 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27508         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27509         Fixes bug #58373.
27511 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27513         * process.c: use double quotes to quote program name and arguments on
27514         windows. Fixes bug #58575.
27516 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27518         * file-io.c: don't return "." and ".." when using windows Find*File.
27520 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27522         * marshal.c: Don't pass wrappers to message init because method 
27523         addressed used to lookup metadata. part of remoting[2|3] fix.
27525 2004-05-15  Jackson Harper  <jackson@ximian.com>
27527         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27528         path is essentially the same as MONO_PATH except that it points to
27529         GACs instead of lib directories.
27530         * loader.h: The user gac is gone so we dont need function to
27531         enable/disable it.
27532         * mono-config.c: user gac option is now gone.
27533         
27534 2004-05-15  Jackson Harper  <jackson@ximian.com>
27536         * culture-info.h: Make defines more consistent, add calendar data
27537         to the culture info table.
27538         * culture-info-tables.h: Add basic calendar data. Basically
27539         everyone gets default gregorian until all the data is
27540         updated.
27541         * locales.c: Use the new consistent defines. Set calendar data for
27542         culture info objects.
27543         * object.h: add a field for calendar data to CultureInfo
27544         
27545 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27547         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27548         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27549         a signature.
27550         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27551         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27552         an extra param that is the pointer of the method to invoke. The IL for
27553         the invoke method is no longer specific to the method, but to the
27554         signature of the method. Thus, we can share the same code for multiple
27555         methods. This reduces the number of methods that have to be compiled.
27557 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27559         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27561         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27563         * icall.c: Optimize Buffer.BlockCopy.
27565 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27567         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27568         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27569         quote). Changed them to "MMMM yyyy".
27571 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27573         * rand.c
27574         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27576 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27578         * reflection.h: Updated after changes to managed structures.
27580         * appdomain.c: Bump corlib version.
27582 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27584         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27585         windows.
27587 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27589         * Makefile.am: link to ../os/libmonoos.la on windows.
27591         * assembly.c:
27592                 -If MONO_DEBUG, warn about non-existing directories in
27593                 MONO_PATH.
27594                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27595                 compile time variable.
27596                 -Removed init_default_path and call mono_set_rootdir from
27597                 libmonoos.a instead (windows only).
27599         * assembly.h: declare mono_assembly_getrootdir().
27601         * domain.c:
27602         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27604         * loader.c: s/getenv/g_getenv/
27606 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27608         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27610         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27612         * metadata.h: Add new marshalling conversions.
27614         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27615         function.
27617         * reflection.c (mono_reflection_get_type): Lookup the type in all
27618         modules of a multi-module assembly. Fixes #58291.
27620 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27622         * threads.c: Before aborting a background, set the StopRequested
27623         state.  This avoids throwing the Abort exception.
27624         In mono_thread_manage, don't continue with the shutdown until all
27625         aborted threads have actually stopped.
27627 2004-05-10  Jackson Harper  <jackson@ximian.com>
27629         * locales.c: Remove the modifier from culture names.
27630         
27631 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27633         * Makefile.am: monosn is not installed any more. It has been deprecated
27634         in favor of sn.
27636 2004-05-07  Jackson Harper  <jackson@ximian.com>
27638         * locales.c
27639         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27640         Fix array construction, add bailout if the length is 0.
27642 2004-05-07  Dick Porter  <dick@ximian.com>
27644         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27645         machine doesn't have a DNS entry.  Patch by Urs Muff
27646         (umuff@quark.com), fixes bug 57928.
27648 2004-05-06  Jackson Harper  <jackson@ximian.com>
27650         * reflection.c: Handle null PublicTokens properly. alloc mem for
27651         assembly names culture so we dont crash when freeing it.
27652         
27653 2004-05-06  Jackson Harper  <jackson@ximian.com>
27655         * assembly.c: Check the usergac when loading with partial names.
27656         
27657 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27659         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27660         does nothing for now (not required for Linux/Windows) but the class
27661         library can call it (and a newer or modified runtime could need it).
27662         * icall.c: Registred icall.
27664 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27666         * loader.c: prints a message on module loading error we set MONO_DEBUG
27667         environment variable.
27669 2004-05-05  Jackson Harper  <jackson@ximian.com>
27671         * appdomain.c: Handle PublicKeyToken=null properly.
27672         
27673 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27675         * environment.c|h: Added icall ves_icall_System_Environment_
27676         GetOSVersionString to get the current OS version as a string.
27677         * icall.c: Registred icall.
27679 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27681         * object.c: in mono_object_get_virtual_method(), take into account that
27682         non-virtual methods don't have a slot in the vtable. Check needed when
27683         the object is a proxy.
27685 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27687         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27688         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27690         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27692         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27693         passed when a valuetype is expected.
27695         * object.c (mono_unhandled_exception): Only set the exit code if the
27696         exception happens in the main thread. Fixes thread5.exe.
27698         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27699         invalid names. Fixes #58047.
27701 2004-05-03  Jackson Harper  <jackson@ximian.com>
27703         * assembly.c: This line was committed accidently and is unneeded.
27704         
27705 2004-05-03  Jackson Harper  <jackson@ximian.com>
27707         * icall.c: Add new icall for Assembly::LoadWithPartialName
27708         * assembly.c/.h: new function that probes the GAC to load partial
27709         assembly names by Paolo Molaro.
27710         
27711 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27713         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27714         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27715         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27716         full type name.
27718 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27720         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27721         * reflection.c: fix bug when parsing a full type name and Version is not
27722         the last thing in the string.
27724 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27726         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27727         crashes when it is freed.
27729 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27731         * assembly.c: print the compat warning to stderr.
27733 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27735         * assembly.c (mono_assembly_load_references): Add a compatibility
27736         hack to run old applications that might be still referencing the
27737         3300-based assemblies, only do this for System.xxx.
27739 2004-05-01  Jackson Harper  <jackson@ximian.com>
27741         * appdomain.c: If the culture is neutral we set it to "".
27742         
27743 2004-04-29  Jackson Harper  <jackson@ximian.com>
27745         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27747 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27749         * string-icalls.c: added low overhead function for copying chars
27750         * icall.c: added needed icall for the above function
27752 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27754         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27755         Environment.GetLogicalDrives.
27757 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27759         * rand.c: try and talk to egd or prngd
27760         for random bytes if opening devices fail.
27762 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27764         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27765         alignment for the type using the native alignment of its members 
27766         instead of using klass->min_align.
27768         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27770 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27772         * file-io.c:
27773         * socket-io.c: added check for sys/aio.h.
27775 2004-04-28  Dick Porter  <dick@ximian.com>
27777         * threads.c: Don't abort a thread thats already aborting, when
27778         terminating everything.
27780 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27782         * icall.c: added 2 new async calls for Socket.
27784         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27785         IO on *nix systems.
27787         * threadpool.c: removed unused variable.
27789 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27791         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27793 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27795         * locales.c: put back string_invariant_tolower () and
27796         string_invariant_toupper ().
27798 2004-04-26 David Waite <mass@akuma.org>
27800         * file-io.h:
27801         * socket-io.h:
27802         * threads.h:
27803         * unicode.h: remove comma from end of enumeration declarations
27805 2004-04-26 David Waite <mass@akuma.org>
27807         * debug-mono-symfile.h:
27808         * decimal.c:
27809         * mono_debug.h:
27810         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27813 2004-04-26  Jackson Harper  <jackson@ximian.com>
27815         * appdomain.c: Increment version number.
27816         
27817 2004-04-26  Jackson Harper  <jackson@ximian.com>
27819         * appdomain.c: Set assembly references public token value when
27820         PublicKeyToken is specified, not the hash_value. Free public token
27821         values when free assembly name data. Previously the public key
27822         token was hex decoded, however we are using hex encoded public key
27823         tokens, so this is not neccasary.
27824         * assembly.c: Lookup assemblies in the gac if their public token
27825         value is set. Add function to allow enabling user gac
27826         lookups. Specify whether or not the assembly was loaded from the
27827         GAC. Compare full assembly names when checking the cache for
27828         assemblies (Temporarily disabled see comment in code). Remove
27829         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27830         specifies trace-loader they get extra info to stdout on the
27831         loading of assemblies.
27832         * image.h: Add a field for an assembly references public token
27833         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27834         whether an assembly has been loaded from the GAC.
27835         * image.c: Remove a corlib -> mscorlib name mapping.
27836         * loader.h: Add function to enable/disable the user gac.
27837         * mono-config.c: Check if the usergac is enabled in the config
27838         file.
27839         * icall.c: New icall to determine whether or not an assembly has
27840         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27841         * tabldefs.h: Add constant for assemblyref flag that specifies a
27842         full public key is used instead of a public token.
27843         * reflection.c: Remove mscorlib -> corlib mappings. Set
27844         PublicTokenValue instead of hash value. This value is a hex
27845         string so it does not need to be expanded.
27847 2004-04-26  Martin Baulig  <martin@ximian.com>
27849         * mono-debug-debugger.c (mono_debugger_initialize): Set
27850         `mono_debugger_initialized' before calling mono_debug_lock().
27852 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27854         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27855           InternalToUpper/InternalToLower.
27856         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27857           removed invariant culture shortcut.  This is now done in managed code.
27858         * locales.c: (string_invariant_toupper/tolower) removed.
27860 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27862         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27863         Added Poll internal call.
27865         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27866         call for Poll. Select was too heavy for polling a single socket.
27868         * threadpool.[ch]: added mono_threadpool_cleanup.
27869         * threads.c: use it. Don't use Thread_Abort on windows.
27871 2004-04-23  Martin Baulig  <martin@ximian.com>
27873         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27875 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27877         * icall.c: Registred new icalls for key pair protection and added an
27878         icall for Environment.GetFolderPath on Windows.
27879         * security.c|h: Added new icalls for key pair protection.
27881 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27883         * socket-io.c: don't display the non-supported family warning for known
27884         families. Now this is not displayed on windows when checking support
27885         for IPv4/IPv6.
27887 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27889         * class.c: don't display the layout warning for static fields.
27891 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27893         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27894         * locales.c, locales.h: Added new icalls for culture-specific
27895         Char.ToLower and Char.ToUpper.
27897 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27899         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27900         by David Waite.
27902 2004-04-20  Martin Baulig  <martin@ximian.com>
27904         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27905         of the type name before passing it to mono_reflection_type_from_name().
27907 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27909         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27910         encodings here. Fixes #56965.
27912 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27914         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27915         fix test on strstr result not that I can see anything that
27916         relies on the result.
27918 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27920         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27921         Fixes #57081.
27923         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27925         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27926         function to determine which marshalling to use for strings. Fixes
27927         #56965.
27929         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27931         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27933 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27935         * icall.c: #include mono-config.h
27937 2004-04-15  Jackson Harper  <jackson@ximian.com>
27939         * culture-info-tables.h: Fix date formats for en-US culture.
27940         
27941 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27943         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27944         ThreadPool.SetMinThreads.
27945         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27946         ThreadPool.SetMinThreads.
27948 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27950         * mono-config.c: also load the .config file in the directory
27951         where the assembly was found.
27953 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27955         * assembly.c: load per-assembly config files.
27956         * icall.c: decrapified code to get the config dir and moved to
27957         mono-config.c.
27958         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27959         per-assembly config files. When doing a dll map lookup give precedence
27960         to the per-assembly data.
27962 2004-04-14  Martin Baulig  <martin@ximian.com>
27964         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27965         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27966         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27968         * mono-debugger-debugger.c: While the debugger is locked, remember
27969         whether the symbol tables have changes and send one single
27970         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27972 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27974         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27976         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27977         function.
27979         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27980         account when marshalling string arrays. Fixes #56965.
27982 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27984         * icall.c: Add new icalls mapping for security.
27985         * security.c|h: Add internal calls for WindowsIdentity,
27986         WindowsImpersonationContext and WindowsPrincipal.
27988 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27990         * class.c: Added comment to ensure the System.MonoDummy class
27991         is removed when no longer necessary
27993 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27995         * appdomain.c: Pass arguments to the bootstraping exceptions to
27996         minimize JITed methods at boot
27998         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27999         second string to be null.
28001         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28002         Change the protocol to minimize the JIT methods at startup.  Now
28003         it Returns the internal codepage, if the value of "int_code_page"
28004         is 1 at entry, and we can not compute a suitable code page
28005         number, returns the code page as a string.
28007 2004-04-13  Jackson Harper  <jackson@ximian.com>
28009         * culture-info-tables.h: Fix number of decimal digits for all
28010         english locales.
28012 2004-04-13  Jackson Harper  <jackson@ximian.com>
28014         * icall.c: Clairfy out of sync error message. It is not always
28015         your corlib that is out of sync.
28017 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28019         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28020         properties when only the set accessor is overriden. Fixes #55874.
28022 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28024         * assembly.c (mono_assembly_load_references): Make this thread safe.
28025         Fixes #56327.
28027 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28029         * monosn.c: Add missing initialization calls.
28031 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28033         * locales.c:
28034         ves_icall_System_Globalization_CultureInfo_construct_number_format
28035         Fix g_assert so it compiles on fussier compilers re int/ptr
28036         mismatch
28038 2004-04-08  Dick Porter  <dick@ximian.com>
28040         * socket-io.h:
28041         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28042         53992.  Also rearrange the code so that the internal calls return
28043         an error value and exceptions are thrown from managed code.
28045         * icall.c: Add type info to the socket icalls.
28047 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28049         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28050         owes me a beer.
28052 2004-04-07  Martin Baulig  <martin@ximian.com>
28054         * class.c (mono_class_from_generic_parameter): Don't default
28055         `klass->parent' to `mono_defaults.object_type'.
28057 2004-04-07  Martin Baulig  <martin@ximian.com>
28059         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28060         `param->pklass->reflection_info'.       
28062 2004-04-07  Jackson Harper  <jackson@ximian.com>
28064         * culture-info-tables.h: Fix date separator symbol.
28065         
28066 2004-04-07  Martin Baulig  <martin@ximian.com>
28068         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28069         from System.Type to System.MonoType.
28071 2004-04-07  Martin Baulig  <martin@ximian.com>
28073         * reflection.h
28074         (MonoReflectionGenericParam): Added `has_reference_type' and
28075         `has_value_type' fields.
28077         * reflection.c (mono_image_get_generic_param_info): Encode the
28078         correct flags if we have the `class' or `struct' constraint.
28080 2004-04-07  Martin Baulig  <martin@ximian.com>
28082         * reflection.h
28083         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28085 2004-04-07  Jackson Harper  <jackson@ximian.com>
28087         * appdomain.c: Revert extra patches, just wanted to bump the
28088         version number.
28089         
28090 2004-04-07  Jackson Harper  <jackson@ximian.com>
28092         * Makefile.am: Add culture-info private headers.
28093         * icall.c: Add new icalls for contructing locales.
28094         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28095         * locales.h: Declare new culture info construction methods.
28096         * object.h: Add new fields used to avoid the CultureMap to
28097         MonoCultureInfo.
28098         * culture-info.h: Definition of structs used in the culture info
28099         tables.
28100         * culture-info-tables.h: Autogenerated tables that contain culture
28101         info data. This file was generated with the locale-builder tool.
28102         * appdomain.c: Incement corlib version number.
28103         
28104 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28106         * appdomain.c: (mono_runtime_init) move mono_thread_init
28107         to before mono_object_new calls so critical sections
28108         are initialized before use.
28110 2004-04-07  Martin Baulig  <martin@ximian.com>
28112         * icall.c
28113         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28114         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28115         (ves_icall_MonoGenericParam_initialize): Removed.
28116         (monogenericparam_icalls): Removed.
28117         (generictypeparambuilder_icalls): Added new table for
28118         System.Reflection.Emit.GenericTypeParameterBuilder.
28120         * reflection.c
28121         (mono_reflection_define_generic_parameter): Removed.
28122         (mono_reflection_initialize_generic_parameter): This is now called
28123         from GenericTypeParameterBuilder's .ctor.
28125 2004-04-06  Martin Baulig  <martin@ximian.com>
28127         * class.c (mono_class_init): Don't inflate nested classes in a
28128         generic instance.
28129         (mono_type_get_name_recurse): Include the generic arguments for
28130         generic instances and generic type declarations.
28131         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28132         (_mono_class_get_instantiation_name): Removed.
28133         (mono_class_create_generic): Always use `gklass->name' as our name.
28135         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28137         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28138         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28139         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28140         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28141         closed generic methods here.
28143         * reflection.c
28144         (mono_reflection_generic_inst_get_nested_types): Removed.
28145         (inflate_mono_method): Copy the generic parameters from the
28146         MonoMethodHeader into out MonoGenericMethod.
28148 2004-04-06  Martin Baulig  <martin@ximian.com>
28150         * row-indexes.h
28151         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28153         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28155         * reflection.c (build_compressed_metadata): If we have any entries
28156         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28157         set the header version to 1.1.
28159 2004-04-06  Martin Baulig  <martin@ximian.com>
28161         * class.c (mono_class_init): If we're a generic instance,
28162         initialize our nested classes, too.
28163         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28164         suffix. 
28166 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28168         * process.c: quote the argument passed to the shell on windows.
28170 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28172         * threads.c (mono_alloc_special_static_data): Allow this to be
28173         called during startup.
28175 2004-04-02  Martin Baulig  <martin@ximian.com>
28177         * icall.c
28178         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28180 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28182         * icall.c: Fix build.
28184 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28186         * Makefile.am: Added security.c|h.
28187         * icall.c: Added icall for get_UserName;
28188         * security.c: New file for security related icalls. Added function
28189         get_UserName for System.Environment (fix #56144).
28190         * security.h: New. Header file for security.c
28192 2004-04-02  Dick Porter  <dick@ximian.com>
28194         * icall.c: Deleted the icalls that were obsoleted some time ago
28195         by the ICU string code, and which were mixed into the icall
28196         rearranging.  Fixes bug 55969.
28198         * string-icalls.h: 
28199         * string-icalls.c: Deleted the code that those icalls reference.
28201 2004-04-01  Martin Baulig  <martin@ximian.com>
28203         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28205         * class.c (mono_class_from_generic_parameter): Don't set 
28206         TYPE_ATTRIBUTE_INTERFACE.
28207         (my_mono_class_from_generic_parameter): Likewise.
28209 2004-04-01  Martin Baulig  <martin@ximian.com>
28211         * loader.c (find_method): Added an optional `MonoClass *ic'
28212         argument to search in a specific interface.
28213         (mono_get_method_constrained): New public function.
28215 2004-04-01  Martin Baulig  <martin@ximian.com>
28217         * reflection.c (mono_image_get_generic_field_token): Use the
28218         `handleref' cache here.
28220 2004-04-01  Martin Baulig  <martin@ximian.com>
28222         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28224         * reflection.c (create_generic_typespec): Use the `typespec' hash
28225         here, not the `typeref' one.    
28227 2004-04-01  Martin Baulig  <martin@ximian.com>
28229         * class.c (mono_class_inflate_generic_type): Moved the
28230         functionality into a new static inflate_generic_type() which
28231         returns NULL if it didn't do anything.  Only increment the
28232         `mono_stats.inflated_type_count' if we actually inflated
28233         something.
28234         (mono_class_get_full): Check the classes type to see whether we
28235         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28237 2004-04-01  Jackson Harper  <jackson@ximian.com>
28239         * reflection.c: Set culture for assembly references.
28240         
28241 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28243         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28245 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28247         * assembly.c:
28248         (do_mono_assembly_open): the critical section also covers
28249         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28251 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28253         * threads.c:
28254         (mono_manage_threads): abort the background threads when finishing.
28255         Fixes bug #47232.
28257 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28259         * gc.c: only close the done_event handle if there was no timeout.
28260         C-ified comments.
28262 2004-03-30  Martin Baulig  <martin@ximian.com>
28264         * icall.c (icall_entries): It's called "System.Activator", not
28265         "System.Activation".    
28267 2004-03-30  Martin Baulig  <martin@ximian.com>
28269         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28270         (mono_class_create_from_typespec): Likewise.
28272 2004-03-30  Martin Baulig  <martin@ximian.com>
28274         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28275         `has_ctor_constraint' and `initialized'.
28277 2004-03-30  Martin Baulig  <martin@ximian.com>
28279         * reflection.c (encode_new_constraint): New static function to add
28280         the constructor constraint attribute to a type parameter.
28281         (encode_constraints): Call encode_new_constraint() if necessary.
28283         * reflection.h
28284         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28286         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28287         
28288 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28290         * reflection.c, icall.c: add support for pinning variables. 
28292 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28294         * marshal.c (mono_marshal_get_managed_wrapper):
28295         init bool local with zero rather than null.
28297 2004-03-29  Martin Baulig  <martin@ximian.com>
28299         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28300         the "official" behavior here.
28301         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28303 2004-03-29  Martin Baulig  <martin@ximian.com>
28305         * icall.c: Reflect latest API changes.
28307 2004-03-29  Martin Baulig  <martin@ximian.com>
28309         * loader.c (mono_get_method_from_token): Also call
28310         mono_metadata_load_generic_params () for abstract and interface
28311         methods; replace the type arguments in the method signature with
28312         the ones which are loaded from the metadata.
28314 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28316         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28317         of the lock is not the current thread. MS.NET don't do it, in spite of
28318         what the documentation says. See bug #56157.
28320 2004-03-28  Martin Baulig  <martin@ximian.com>
28322         * class.c (mono_class_init): Don't call init_properties() and
28323         init_events() for generic instances; set `prop->parent' when
28324         inflating properties.
28326         * reflection.c (mono_generic_inst_get_object): Call
28327         `mono_class_init (ginst->klass)'.
28328         (mono_type_get_object): Only create a MonoGenericInst if your
28329         generic type is a TypeBuilder.
28330         (do_mono_reflection_bind_generic_parameters): Only set
28331         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28333 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28335         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28336         Fixes #56091.
28338 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28340         * icall.c: added Kill_internal icall.
28341         * process.[ch]: added Kill_internal icall.
28343 2004-03-25  Martin Baulig  <martin@ximian.com>
28345         * class.h (MonoStats): Added `generic_instance_count',
28346         `inflated_method_count', `inflated_type_count' and
28347         `generics_metadata_size'.       
28349 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28351         * reflection.c: no warnings now.
28353 2004-03-25  Martin Baulig  <martin@ximian.com>
28355         * class.c (mono_class_get_full): New public function; does a
28356         mono_class_get(), but also takes a `MonoGenericContext *'.
28358         * loader.c (mono_field_from_memberref): Renamed to
28359         `field_from_memberref', made static and added `MonoGenericContext *'
28360         argument.
28361         (mono_field_from_token): Added `MonoGenericInst *' argument.
28362         (method_from_memberef): Likewise.
28363         (mono_get_method_from_token): Likewise.
28364         (mono_get_method_full): New public function; does a
28365         mono_get_method(), but also takes a `MonoGenericContext *'.
28367         * verify.c (mono_method_verify): Get the method's generic context
28368         and pass it to mono_field_from_token(), mono_get_method_full() and
28369         mono_class_get_full().
28371 2004-03-25  Martin Baulig  <martin@ximian.com>
28373         * class.c (mono_class_inflate_generic_type): Take a
28374         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28375         `MonoGenericMethod *'.
28377 2004-03-25  Martin Baulig  <martin@ximian.com>
28379         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28380         instead of the MonoGenericMethod here.
28382 2004-03-25  Martin Baulig  <martin@ximian.com>
28384         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28385         each time we create a new MonoGenericInst, we also create a new
28386         context which points back to us.
28388         * class.c (inflate_method): Use `ginst->context' instead of
28389         creating a new context.
28391         * loader.c (method_from_memberref): Use
28392         `klass->generic_inst->context' instead of creating a new context.
28394 2004-03-25  Martin Baulig  <martin@ximian.com>
28396         * class.h (MonoGenericContext): New struct.
28397         (MonoGenericMethod): Removed `generic_inst'.
28399         * class.c (mono_class_inflate_generic_method): Take a
28400         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28402 2004-03-25  Martin Baulig  <martin@ximian.com>
28404         * loader.h (MonoMethodInflated): New typedef.
28406         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28407         `generic_param_count' consume just 30 bits, added `is_inflated'
28408         and `has_type_parameters' flags (one bit each).
28410         * class.c (mono_class_inflate_generic_method): Create a
28411         MonoMethodInflated instead of a MonoMethodNormal and set
28412         `is_inflated' in the method signature.
28414         * class.h (MonoGenericMethod): Removed `generic_method'.
28416 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28418         * image.c: Make sure the name of a MonoImage is always an absolute path.
28419           This fixes bug #54415.
28421 2004-03-24  Martin Baulig  <martin@ximian.com>
28423         * class.c (mono_class_setup_vtable): If we're a generic instance,
28424         use our generic type's vtable size.
28426 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28428         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28429         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28430         problems.
28432 2004-03-23  Martin Baulig  <martin@ximian.com>
28434         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28435         `MonoEvent *events'.
28437         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28438         (typebuilder_icalls): Added "get_event_info"; calls
28439         mono_reflection_event_builder_get_event_info(). 
28441         * reflection.c (mono_reflection_generic_inst_initialize): Added
28442         `MonoArray *events'.
28443         (mono_reflection_event_builder_get_event_info): New function.
28445 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28447         * object.h: add mono_type_initialization_init
28449         * object.c (mono_runtime_class_init): 
28450         implement class constructor synchronization rules
28451         to cope with threading issues.  
28452         add mono_type_initialization_init
28454         * appdomain.c (mono_runtime_init): call 
28455         mono_type_initialization_init
28457         * class.h: removing initializing field from MonoVTable
28459 2004-03-23  Martin Baulig  <martin@ximian.com>
28461         * class.c (my_mono_class_from_generic_parameter): Use
28462         `param->name' if it's not NULL. 
28464 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28466         * class.c: do not insert non-virtual methods in the vtable.
28467         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28468         that means the method is non-virtual. This never would have
28469         happened before.
28471 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28473         * profiler.c: Added lock for accessing coverage_hash.
28475 2004-03-22  Martin Baulig  <martin@ximian.com>
28477         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28478         `method->method->signature->generic_param_count != 0' to make it
28479         work for interface methods.
28481 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28483         * process.c: quote the string passed to the shell using g_shell_quote.
28485 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28487         * threads.c:
28488         (mono_threads_manage): don't remove the finalizer thread and self
28489         from the threads hash table so that mono_thread_manage can be called
28490         more than once.
28492 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28494         * process.c: quote the arguments when UseShellExecute is true. Fixes
28495         bug #55790.
28497 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28499         * threads.c: set mono_thread_detach as a cleanup routine for every
28500         thread. This way it's always executed upon thread termination, either
28501         aborted or finished normally. No more xsp hangs!
28503 2004-03-17  Martin Baulig  <martin@ximian.com>
28505         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28506         `int count_nested' and a `MonoType **nested'.
28508         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28509         most of the functionality into a new static
28510         do_mono_reflection_bind_generic_parameters() and don't take a
28511         `MonoType *nested_in' argument any more.  Don't compute nested
28512         types here.
28513         (mono_reflection_generic_inst_get_nested_types): New public method
28514         to get nested types.
28516         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28517         we're a nested class.
28519         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28520         mono_reflection_generic_inst_get_nested_types() to compute the
28521         nested types.
28523 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28525         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28526         descriptive error message under windows.
28527         
28528 2004-03-17  Martin Baulig  <martin@ximian.com>
28530         * class.c (dup_type): Added `const MonoType *original' argument;
28531         copy the attrs from the original type.
28533 2004-03-17  Martin Baulig  <martin@ximian.com>
28535         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28536         `m->generic_inst_cache' here.
28538 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28540         * exception.h exception.c: Add stack_overflow_exception.
28542 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28544         * threadpool.c:
28545         (overlapped_callback): call SetEvent *after* invoking the callback.
28546         No need to call CloseHandle.
28548 2004-03-16  Martin Baulig  <martin@ximian.com>
28550         * reflection.c (mono_image_get_fieldref_token): Take a
28551         `MonoReflectionField *' instead of a `MonoClassField *' and a
28552         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28554 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28556         * appdomain.c: don't add the culture to the filename we're looking for
28557         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28559 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28561         * locales.c: don't ignore symbols when doing case insensitive compares.
28562         Thanks Dick! Fixes bug #54046.
28564         * threads.c: surround 'threads' usage with enter/leave in
28565         mono_thread_manage.
28567 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28569         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28570         implicitly marshalled as [Out]. Fixes #55450.
28572         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28573         an exception.
28575 2004-03-16  Martin Baulig  <martin@ximian.com>
28577         * class.c (mono_class_from_generic_parameter): Use the actual
28578         parameter name. 
28580 2004-03-16  Martin Baulig  <martin@ximian.com>
28582         * reflection.c (type_get_signature_size): New static function.
28583         Compues the size of the type in a method signature.
28584         (method_get_signature_size): New static function; calls
28585         type_get_signature_size() to compute the actual size of the
28586         method's signature.
28587         (method_encode_signature): Use method_get_signature_size() to get
28588         the signature's size rather than using `nparams * 10'.
28590 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28592         * file-io.h: define here WapiOverlapped on windows. I don't want the
28593         regular OVERLAPPED one.
28595         * file-io.c:
28596         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28597         Disabling AIO on windows.
28599 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28601         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28602         bug #55385.
28604 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28606         * appdomain.c: upgraded corlib version.
28608         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28609         and BeginWrite. Allow opening files for asynchrnous operations.
28611         * file-io.h: new struct that maps FileStreamAsyncResult.
28612         * icall.c: added new icalls.
28613         * process.[ch]: support setting child process environment variables
28614         and use the SHELL or COMSPEC when UseShellExecute is true.
28616         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28617         callback for async. IO is here and also BindHandle.
28619         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28620         from here.
28622 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28624         * reflection.c (create_custom_attr): Allow len == 0.
28626         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28627         computation on big-endian machines.
28629 2004-03-13  Martin Baulig  <martin@ximian.com>
28631         * class.h (MonoGenericInst): Added `int count_ifaces'.
28633         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28634         `ginst->count_ifaces' instead `klass->interface_count' since we
28635         may get called before the vtable is created.
28637         * loader.c (mono_method_get_param_names): If we're a generic
28638         instance, return and don't initialize the class.
28640         * reflection.c (mono_reflection_setup_generic_class): Don't call
28641         ensure_runtime_vtable().
28642         (mono_reflection_bind_generic_parameters): Set
28643         `ginst->count_ifaces'.
28645 2004-03-11  Jackson Harper <jackson@ximian.com>
28647         * icall.c:
28648         * unicode.c:
28649         * unicode.h: Remove unused System.Char icalls.
28650         
28651 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28653         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28654         code when we P/Invoke the first library in Windows.Forms, instead
28655         of when we first open the assembly.
28657         * assembly.c: Drop the lookup from here.
28659 2004-03-10  Martin Baulig  <martin@ximian.com>
28661         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28662         class for properties, fields and events.  Finally fixes #54945.
28664 2004-03-10  Martin Baulig  <martin@ximian.com>
28666         * metadata.c (mono_metadata_class_equal): New static function;
28667         checks whether two generic instances or two generic parameters are
28668         equal.
28669         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28670         compare classes.        
28672 2004-03-10  Martin Baulig  <martin@ximian.com>
28674         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28676         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28677         argument and write it into the `reflection_info' field.
28679         * icall.c
28680         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28681         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28683 2004-03-09  Jackson Harper  <jackson@ximian.com>
28685         * char-conversions.h: use 8 bits for numeric data its all we need
28686         * icall.c: numeric data is only 8 bits now.
28688 2004-03-09  Martin Baulig  <martin@ximian.com>
28690         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28692         * class.c (init_properties, init_events): Initialize the new
28693         `parent' field.
28695         * reflection.c (typebuilder_setup_properties): Likewise.
28696         (typebuilder_setup_events): Likewise.
28698         * reflection.h (MonoEventInfo): Replaced `parent with
28699         `declaring_type' and `reflected_type'.
28701         * icall.c (ves_icall_get_property_info): Distinguish between
28702         declaring and reflected type.
28703         (ves_icall_get_event_info): Likewise.
28705 2004-03-09  Martin Baulig  <martin@ximian.com>
28707         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28708         (ves_icall_Type_GetField): Correctly set field->klass.
28710 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28712         * loader.h: Fix warning.
28714 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28716         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28717         library routine if present.  Notice that it will still continue
28718         executing even if its missing, for those working on the Gtk#
28719         edition of Windows.Forms.
28721         * assembly.c (do_mono_assembly_open): If loading the
28722         System.Windows.Forms call mono_loader_wini_init.
28724 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28726         * class.h: Added MonoRemoteClass struct.
28727         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28728         function for MonoStrings.
28729         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28730         Added internal call for getting the proxy type.
28731         * marshal.c: Get the type of transparent proxies from its remote_class.
28732         Added methods that generate the IL for type checks and casts:
28733         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28734         mono_marshal_get_proxy_cancast.
28735         * marshal.h: Declaration of the previous new methods.
28736         * object.c: Added new moethods for creating and updating MonoRemoteClass
28737         instances: mono_remote_class, mono_upgrade_remote_class, 
28738         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28739         * verify.c: FIx transparent_proxy_fields layout.
28740         * appdomain.c: Bump corlib version.
28742 2004-03-04  Jackson Harper  <jackson@ximian.com>
28744         * icall.c: Add icall to access char conversion tables.
28745         * char-conversions.h: Character conversion tables.
28746         * Makefile.am: Add char-conversions.h private header file.
28747         
28748 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28750         * appdomain.c (unload_thread_main): Increase unloading timeout to
28751         10 sec as a temporary workaround for Nant problems.
28753 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28755         * gc.c: Add checks for GC_enable and GC_disable.
28757         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28758         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28759         (bug #54988).
28760         
28761 2004-02-27  Martin Baulig  <martin@ximian.com>
28763         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28764         `MonoReflectionType *' instead of a `MonoType *'.
28766 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28768         * gc.c (run_finalize): Avoid finalizing the object representing the
28769         finalizer thread.
28770         (finalizer_thread): Fix warning.
28772 2004-02-25  Martin Baulig  <martin@ximian.com>
28774         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28775         argument for nested types.
28776         (mono_class_create_generic): Added support for nested generictypes.
28778         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28779         `GList *nested'.
28781         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28783         * reflection.c (method_encode_signature): Increase the minimum
28784         value of `size' from 10 to 11.
28785         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28786         and `MonoType **types' arguments instead of the `MonoArray
28787         *types'; added `MonoType *nested_in'.  Recursively instantiate
28788         nested classes. 
28790 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28792         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28793         stack_overflow_ex members which are used by exception handling.
28795         * appdomain.c (mono_runtime_init): Initialize the new members.
28797         * gc.c (mono_gc_enable): New helper function.
28798         * gc.c (mono_gc_disable): New helper function.
28800 2004-02-23  Martin Baulig  <martin@ximian.com>
28802         * icall.c: I must have been really stupid - make it actually work
28803         this time ;-)
28805 2004-02-23  Martin Baulig  <martin@ximian.com>
28807         * loader.c (method_from_memberref): Only inflate the method if
28808         it's in another klass.
28810 2004-02-23  Martin Baulig  <martin@ximian.com>
28812         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28813         (mono_class_init): If we're a generic instance and an interface,
28814         compute `class->interface_id'; also create `class->interfaces'
28815         here and inflate them.
28817         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28818         `ginst->is_open'.
28819         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28821         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28823 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28825         * reflection.c (method_encode_code): Improved the error message
28826         generated by the exception.
28828 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28830         * icall.c: Martin did not do what he said in the ChangeLog for
28831         2004-02-18, but put back the changes for properties and events.
28832         Commenting those changes out again and adding comment to bug #54518.
28833         
28834         * process.c: removed warning.
28836 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28838         * marshal.c (emit_struct_conv): Print an error message instead of
28839         asserting when a type does not have the StructLayout attribute.
28841 2004-02-20  Martin Baulig  <martin@ximian.com>
28843         * reflection.c (mono_type_get_object): Also use the cache for
28844         generic instances.
28845         (mono_reflection_bind_generic_parameters): Always compute
28846         `ginst->ifaces'.        
28848 2004-02-20  Martin Baulig  <martin@ximian.com>
28850         * class.h (MonoGenericMethod): Removed `klass'.
28852         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28853         *klass' argument.
28855 2004-02-20  Martin Baulig  <martin@ximian.com>
28857         * reflection.c (method_encode_methodspec): Actually use the
28858         uninflated signature for the memberref.
28860 2004-02-20  Martin Baulig  <martin@ximian.com>
28862         * class.h (MonoGenericMethod): Removed `declaring'.
28864         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28865         is NULL, compute it here.
28867 2004-02-20  Martin Baulig  <martin@ximian.com>
28869         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28871         * metadata.c (mono_metadata_generic_inst_hash): New method.
28872         (mono_metadata_generic_inst_equal): New method.
28874         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28875         `klass->image->generic_inst_cache' cache to avoid creating
28876         duplicate MonoGenericInst's.
28878         * class.c (mono_class_inflate_generic_type): Use the cache.
28880 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28882         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28884 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28886         * icall.c: added Socket.WSAIoctl icall.
28888         * socket-io.[ch]: implemented
28889         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28891 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28893         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28895 2004-02-18  Urs C Muff  <umuff@quark.com>
28897         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28898         this work on PPC and other big-endian architectures.
28900         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28901         fields with an underscore to make sure they're only accessed by
28902         the read32() macro.
28904 2004-02-18  Martin Baulig  <martin@ximian.com>
28906         * icall.c: Put the klass->refclass changes back for methods and
28907         fields, but not for properties and events.  We're currently not
28908         distinguishing between DeclaringType and ReflectedType for
28909         properties and events, that's what caused the regressions.
28911 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28913         * object.c:
28914         (mono_async_result_new): the handle can be NULL.
28916         * threadpool.c: Use an event instead of a semaphore, don't initialize
28917         it until needed. This saves quite a few semaphores from being created
28918         when using the threadpool.
28920 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28922         * object.c (mono_string_is_interned_lookup): Fix interning of long
28923         strings. Fixes #54473.
28925         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28927         * icall.c: Revert the klass->refclass changes since they introduce
28928         regressions (bug #54518).
28930 2004-02-18  Martin Baulig  <martin@ximian.com>
28932         * class.c (mono_class_init): If we're a generic instance and don't
28933         come from a TypeBuilder, inflate our members here.
28934         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28935         (mono_class_create_generic): New public method.
28936         (mono_class_initialize_generic): Removed.
28937         (get_instantiation_name): Renamed to
28938         _mono_class_get_instantiation_name() and made it public.
28940 2004-02-18  Martin Baulig  <martin@ximian.com>
28942         * class.c (mono_class_inflate_generic_type): Clear the new
28943         instance's `nginst->klass' when inflating a generic instance.
28944         (mono_class_is_subclass_of): Added (basic) support for generic
28945         instances.
28947 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28949         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28950         MonoMempool to hold compiled native code.
28952 2004-02-17  Martin Baulig  <martin@ximian.com>
28954         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28955         `properties'.
28957         * reflection.c (mono_reflection_generic_inst_initialize): Added
28958         `MonoArray *properties' argument.
28960         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28962 2004-02-17  Martin Baulig  <martin@ximian.com>
28964         * icall.c (ves_icall_Type_GetFields): Renamed to
28965         ves_icall_Type_GetFields_internal() and added a
28966         `MonoReflectionType *rtype' argument; pass it to
28967         mono_field_get_object() to set the field's "reflected" type.
28968         (ves_icall_Type_GetConstructors): Likewise.
28969         (ves_icall_Type_GetEvents): Likewise.
28970         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28971         argument; pass it to mono_method_get_object() to set the method's
28972         "reflected" type.       
28974 2004-02-17  Martin Baulig  <martin@ximian.com>
28976         * class.h (MonoDynamicGenericInst): New type.
28977         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28979         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28980         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28981         (ves_icall_MonoGenericInst_GetFields): New interncall.
28983         * class.c (mono_class_from_generic): Don't call
28984         mono_class_initialize_generic() if this is a dynamic instance;
28985         ie. it's being created from a TypeBuilder.
28986         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28987         `class->byval_arg.type'.
28989         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28990         to `inflate_method' and made static.
28991         (mono_reflection_inflate_field): Removed.
28992         (mono_reflection_generic_inst_initialize): New public method.
28994         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28995         `ctors' and `fields'; added `initialized'.
28997 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28999         * debug-helpers.c (mono_method_full_name): Fix output for empty
29000         namespaces.
29002 2004-02-12  Martin Baulig  <martin@ximian.com>
29004         * class.h (MonoClassField): Added `MonoType *generic_type'.
29006         * reflection.c (mono_image_get_fieldref_token): Added support for
29007         instantiated generic types.
29008         (field_encode_inflated_field): Removed.
29009         (mono_image_get_inflated_field_token): Removed.
29010         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29012         * reflection.h (MonoReflectionInflatedField): Removed.
29014 2004-02-12  Martin Baulig  <martin@ximian.com>
29016         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29017         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29019         * reflection.c (mono_image_get_methodspec_token): Take a
29020         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29021         (mono_image_create_token): Check whether we have a
29022         `method->signature->gen_method' and call
29023         mono_image_get_methodspec_token() if appropriate.
29024         (inflated_method_get_object): Removed.
29025         (mono_reflection_bind_generic_method_parameters): Return a
29026         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29027         (mono_reflection_inflate_method_or_ctor): Likewise.
29029         * reflection.h (MonoReflectionInflatedMethod): Removed.
29031 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29033         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29034         for custom valuetype marshalling.
29036         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29038 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29040         * icall.c: fixed WSAGetLastError_internal name.
29042 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29044         * threads.c (mono_thread_attach): Allow this to be called multiple
29045         times for a thread.
29046         
29047         * threads.c (build_wait_tids): Do not wait for ourselves.
29049         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29050         appdomain list is empty.
29052         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29053         memory returned by mono_string_builder_to_utf16, since it points into
29054         managed memory. Thanks to Bernie Solomon for noticing this.
29056         * icall.c: Add AppDomainSetup icalls.
29058         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29060         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29061         types.
29063         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29064         custom attributes to the method_aux struct. Also fix array indexes etc.
29066         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29067         
29068 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29070         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29071         (both static and runtime) and reduce startup time.
29073 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29075         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29076         AsAny marshalling conversion instead of crashing.
29078         * marshal.c: Fix warnings.
29080 2004-02-09  Martin Baulig  <martin@ximian.com>
29082         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29084         * reflection.h (MonoReflectionInflatedMethod): Removed the
29085         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29087         * reflection.c (method_encode_methodspec): Removed the `method'
29088         argument; we get it from `gmethod->declaring'.
29089         (inflated_method_get_object): Removed the `declaring' argument.
29091 2004-02-09  Martin Baulig  <martin@ximian.com>
29093         * class.h (MonoGenericMethod): New type.
29094         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29095         `generic_method'.
29097         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29098         a `MonoGenericMethod *gen_method' one.
29100         * class.c (mono_class_inflate_generic_type): Take an additional
29101         `MonoGenericMethod * argument.  This is only non-NULL if we're
29102         inflating types for a generic method.   
29103         (mono_class_inflate_generic_signature): Renamed to
29104         inflate_generic_signature() and made static; take a
29105         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29106         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29107         instead of a `MonoGenericInst *' one.
29108         (mono_class_inflate_generic_method): Likewise.
29110         * reflection.c (encode_generic_method_sig): Take a
29111         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29112         (method_encode_methodspec): Likewise.
29113         (inflated_method_get_object): Likewise. 
29115         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29116         field with a `MonoGenericMethod *gmethod' one.  
29118 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29120         * class.h (mono_class_has_parent): add parens to expansion
29121         so you can ! this.
29123 2004-02-08  Martin Baulig  <martin@ximian.com>
29125         * image.h (MonoImage): Removed `generics_cache'.
29127         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29128         instead of a `MonoType *' argument; removed the `inflate_methods'
29129         argument.  Don't inflate methods here.
29131         * loader.c (find_method): If it's a generic instance, call
29132         mono_class_init() on the `sclass->generic_inst->generic_type'.
29134         * metadata.c (mono_type_size): Make this work on uninitialized
29135         generic instances; call it on the `ginst->generic_type's class.
29137         * reflection.c (mono_reflection_bind_generic_parameters): Call
29138         mono_class_from_generic() to create the `ginst->klass'.
29140 2004-02-08  Martin Baulig  <martin@ximian.com>
29142         * class.h (MonoClass): Changed type of `generic_inst' from
29143         `MonoType *' to `MonoGenericInst *'.
29145 2004-02-08  Martin Baulig  <martin@ximian.com>
29147         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29148         mono_type_get_object(), this is now creating a `MonoGenericInst'
29149         for MONO_TYPE_GENERICINST.
29150         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29151         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29153         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29154         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29155         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29156         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29157         and reflected type.
29159         * reflection.h (MonoReflectionInflatedMethod): Removed
29160         `declaring_type' and `reflected_type'.
29162 2004-02-08  Martin Baulig  <martin@ximian.com>
29164         * class.h (MonoGenericInst): Added `MonoType *parent' and
29165         `MonoType **ifaces'.
29167         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29168         `parent' and `interfaces'.
29170         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29171         `MonoType *' argument and return a `MonoType *'.
29173         * icall.c
29174         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29175         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29177 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29179         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29180         valuetype marshalling.
29182 2004-02-06  Martin Baulig  <martin@ximian.com>
29184         * class.c
29185         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29186         (my_mono_class_from_generic_parameter): Likewise.
29188 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29190         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29191         contents of the symbol files lazily.
29193         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29195         * threads.h threads.c icall.c: New icalls for getting and setting the
29196         threads name.
29198 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29200         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29201         Raise an exception when the domain is not found.
29203 2004-02-03  Martin Baulig  <martin@ximian.com>
29205         * reflection.c (mono_image_get_methodspec_token): Use the
29206         uninflated signature; fixes gen-33.
29208 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29210         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29211         the finalizer code can use thread functionality.
29213         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29214         the finalizer thread.
29216         * threads.c: Make some functions more robust.
29218         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29220         * metadata.h: Add new marshalling conventions.
29222         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29223         stringbuilder marshalling. Fixes #53700.
29225         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29227         * reflection.c (mono_image_get_type_info): Save declarative security
29228         info.
29230         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29231         unmanaged fields as well.
29233         * appdomain.c: Bump corlib version.
29235 2004-02-01  Martin Baulig  <martin@ximian.com>
29237         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29238         method type arguments.  
29240 2004-01-30  Duncan Mak  <duncan@ximian.com>
29242         * marshal.h: Add prototype for
29243         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29244         and
29245         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29246         fix the build.
29248 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29250         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29251         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29253 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29255         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29256         custom marshalling of valuetypes.
29258         * marshal.c: Fix some warnings.
29260 2004-01-29  Martin Baulig  <martin@ximian.com>
29262         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29263         for generic method parameters.
29265         * reflection.c (method_encode_methodspec): Write the uninflated
29266         signature into the methodspec table.
29267         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29268         is always the uninflated method.
29269         (reflection_methodbuilder_to_mono_method): Copy the generic
29270         parameters from the MethodBuilder into `header->gen_params'.
29272 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29274         * class.c (mono_class_from_generic_parameter): Fix warning.
29276 2004-01-27  Martin Baulig  <martin@ximian.com>
29278         * class.c (mono_class_from_generic_parameter): Don't create
29279         `klass->methods' here.  
29281 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29283         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29284         extension since it does not work with libraries named lib<FOO>.dll.so.
29286 2004-01-25  Martin Baulig  <martin@ximian.com>
29288         * class.c (mono_class_inflate_generic_type): Added support for
29289         MONO_TYPE_GENERICINST.
29291         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29292         inflate methods on open constructed types.      
29294 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29296         * object.c: fire ProcessExit event in the root AppDomain after running
29297         Main. Fixes bug #53299.
29299 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29301         * socket-io.c: include the new socket-wrappers.h header.
29302         Use the wrappers instead of the unix socket functions to make the code
29303         more clear.
29305 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29307         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29309         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29310         Fixes #22532.
29312 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29314         * reflection.c (mono_image_create_pefile): Handle the case when the
29315         entry point is not a MethodBuilder.
29317         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29318         field to ReflectionMethod since it is not allways a builder.
29320         * reflection.c (type_get_fully_qualified_name): New helper function to
29321         return the fully qualified name of a type.
29323         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29324         type name for custom marshallers.
29326         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29328         * class.c (mono_class_setup_vtable): If a parent class already 
29329         implements an interface, use the implementing methods from that class.
29330         Fixes #53148.
29332 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29334         * threadpool.c: just return instead of ExitThread to allow for thread
29335         clean up earlier.
29337 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29339         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29340         when closing resource modules.
29342         * reflection.c (mono_image_create_pefile): Handle the case when the
29343         entry point is not a MethodBuilder.
29345         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29346         field to ReflectionMethod since it is not allways a builder.
29348 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29350         * marshal.c (mono_marshal_get_managed_wrapper): 
29351         mono_marshal_alloc takes native int so CONV_I
29352         the arg for 64bits.
29354 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29356         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29357         tokens in the cattr table. Fixes #53108.
29359 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29361         * loader.c: don't trim ".dll" before looking up in the config file.
29362         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29364 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29366         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29367         Return the module which contains the resource as well.
29368         (ves_icall_System_Reflection_Module_Close): New icall.
29370         * appdomain.c: Bump corlib version number.
29372         * image.c (mono_image_addref): New public function.
29374         * assembly.c: Call mono_image_addref.
29376         * reflection.c (mono_module_get_object): Increase reference count of 
29377         the image.
29379         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29380         Fixes #22532.
29382         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29383         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29384         proper exceptions on DllImport problems.
29386 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29388         * class.c, metadata.c: eliminate CSIZE macro.
29390 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29392         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29393         * object.h: Added async_callback field in MonoAsyncResult.
29394         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29395         * verify.c: Added async_callback in MonoAsyncResult layout.
29397 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29399         * reflection.c (mono_reflection_get_custom_attrs): Add support
29400         for Modules.
29402 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29404         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29405         marshalling.
29406         (mono_marshal_method_from_wrapper): Add null pointer check.
29408 2004-01-16  Martin Baulig  <martin@ximian.com>
29410         * debug-mono-symfile.h: Set version number to 36 and reflect
29411         latest symbol writer changes.
29413 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29415         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29416         multi-dimensional arrays.
29417         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29418         (mono_class_from_mono_type): Use bounded_array_class_get.
29419         
29420         * class.c (mono_bounded_array_class_get): New function which takes
29421         a 'bounded' bool argument to distinguish vectors from one dimensional
29422         arrays.
29424         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29425         bounded_array_class_get if the array has bounds.
29427         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29428         Search modules loaded using AssemblyBuilder:AddModule as well.
29430 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29432         * appdomain.c: increased corlib version.
29433         * filewatcher.c: removed g_print.
29434         * icall.c:
29435         (get_property_info): only allocate what is actually requested.
29436         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29438 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29440         * Makefile.am: added filewatcher.[ch]
29441         * filewatcher.[ch]: FileSystemWatcher runtime support.
29442         * icall.c: added new FSW icalls.
29444 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29446         * string-icalls.c: fix stringbuilder regression as suggested by
29447         Iain McCoy <iain@mccoy.id.au>.
29449 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29451         * process.c (process_read_stringtable_block): Recognize '007f' as
29452         a language neutral stringtable block.
29454 2004-01-12  Patrik Torstensson
29456         * object.h (MonoStringBuilder) : Changed layout to support our
29457         new stringbuilder class.
29458         * marshal.c: Change marshalling to support the new layout of 
29459         string builder.
29460         * appdomain.c: increased version number because new layout of
29461         string builder.
29463 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29465         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29466         assembly name as an string instead of an AssemblyName, since it is
29467         easier to extract info from it.
29469         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29470         the culture subdirectories too. Fixes #52231.
29472 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29474         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29475         It takes 2 new parameters with an optional name for the method to look
29476         for and case ignoring info.
29478         * threadpool.c: removed unused variable.
29480 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29482         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29483         It takes 2 new parameters with an optional name for the property to look
29484         for and case ignoring info.
29485         Fixes bug #52753.
29487 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29489         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29490         Fix #52451.
29492 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29494         * appdomain.c:
29495         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29496         Fixes bug #52630.
29498 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29500         * reflection.c: Add support for more than one unmanaged resource.
29502         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29503         in field->def_value, as done in all other cases.
29505         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29506         TypeBuilders.
29508         * reflection.c (mono_reflection_create_runtime_class): Remove 
29509         errorneous assignment to klass->element_class, since it is already
29510         done in mono_reflection_setup_internal_class.
29512 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29514         * gc.c: added missing LeaveCriticalSection.
29515         * icall.c: indented a couple of lines.
29516         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29517         if we call EndInvoke inside a callback. Fixes bug #52601.
29519 2004-01-07  Martin Baulig  <martin@ximian.com>
29521         * mono-debug-debugger.h
29522         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29524 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29526         * appdomain.c: Use messages in NotImplementedException.
29528         * exception.c (mono_get_exception_not_implemented): Now this takes
29529         a message argument.
29531         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29532         exception instead of g_asserting an aborting when something is not
29533         implemented.
29535         Add some inline docs.
29537 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29539         * reflection.h: Update after changes to object layout.
29541         * reflection.c: Implement saving of unmanaged aka win32 resources.
29543         * appdomain.c: Bump version number.
29545         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29546         Handle missing domains gracefully.
29548 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29550         * file-io.c : On Windows, there are much more invalid_path_chars.
29552 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29554         * class.h, object.c: prepare for GetType () speedup.
29556 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29558         * profiler.c: workaround for --profile null reference exception on
29559           cygwin. Patch by Patrik Torstensson.
29561 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29563         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29564         make work for unaligned access.
29566 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29568         * class.c: small cleanup (class->fields [i] -> field).
29569         * image.c: check address of metadata is valid.
29571 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29573         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29574         search the list of loaded assemblies.
29576         * reflection.c (mono_reflection_type_from_name): Use 
29577         mono_assembly_loaded instead of mono_image_loaded.
29579         * reflection.c: Fix warnings.
29581 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29583         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29584         is dynamic. This is needed since an assembly can contain both dynamic and
29585         non-dynamic images.
29587         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29588         assembly->dynamic.
29590         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29592         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29593         to store modules loaded using AddModule.
29595         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29596         on Modules.
29598         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29600         * reflection.c (mono_image_fill_export_table_from_module): New function to
29601         fill out the EXPORTEDTYPES table from a module.
29603         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29604         into a separate function. Also handle loaded non-dynamic modules.
29606         * reflection.c (mono_image_basic_init): Fix memory allocation.
29608         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29610         * assembly.c (mono_assembly_load_references): Make this public.
29612 2003-12-19  Martin Baulig  <martin@ximian.com>
29614         * class.c (mono_class_initialize_generic): Made this static, take
29615         a `MonoGenericInst *' instead of a `MonoClass *'.
29616         (mono_class_from_generic): Call mono_class_initialize_generic()
29617         unless we're already initialized or being called from
29618         do_mono_metadata_parse_generic_inst().
29620         * class.h (MonoGenericInst): Added `initialized' and
29621         `init_pending' flags.
29623         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29624         `mono_class_init (gklass)' or mono_class_initialize_generic()
29625         here; set `generic_inst->init_pending' while parsing the
29626         `type_argv'.
29628 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29630         * locales.c: include string.h for memxxx prototypes
29632 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29634         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29635         constructor when accessing literal fields.
29637 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29639         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29641         * reflection.c (assembly_add_resource_manifest): New function to fill
29642         the MANIFESTRESOURCE table.
29644         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29646         * reflection.h: Update to changes in class layout.
29648         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29649         Reenable call to mono_runtime_is_shutting_down ().
29651         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29652         determine if the runtime is shutting down.
29654 2003-12-16  Jackson Harper <jackson@ximian.com>
29656         * icall.c: comment out call to mono_runtime_is_shutting_down to
29657         fix build.
29658         
29659 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29661         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29662         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29664 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29666         * reflection.c: move definition of swap_with_size
29667         to before its first call
29669 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29671         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29673         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29674         icall.
29676         * object.c: Fix warnings.
29678         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29679         members if FlattenHierarchy is set.
29681         * reflection.c (mono_image_add_decl_security): New function to emit
29682         declarative security.
29684         * reflection.h reflection.c: Add support for declarative security.
29686         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29687         
29688 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29690         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29691         
29692         * appdomain.c verify.c: Moved corlib version checking into its own
29693         function in appdomain.c since it needs to create vtables etc.
29695 2003-12-13  Patrik Torstensson <p@rxc.se>
29697         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29698         instead of unwrapped server.
29700 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29702         * verify.c (check_corlib): Fix field index.
29704 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29706         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29707         GetGacPath icall.
29709 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29711         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29712         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29713         cope with sizeof(size_t) != sizeof(guint32).
29715 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29717         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29718         in case of failure.
29720 2003-12-10  Mark Crichton <crichton@gimp.org>
29722         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29723         in managed code.
29725         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29727 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29729         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29730         marked as deleted.
29732 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29734         * verify.c (check_corlib): Handle the case when the version field is 
29735         initialized by a static constructor.
29737 2003-12-08  Patrik Torstensson  <p@rxc.se>
29739     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29741 2003-12-08  Martin Baulig  <martin@ximian.com>
29743         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29744         a MonoReflectionGenericParameter, also take the parameter index
29745         and name as arguments.
29746         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29747         (ves_icall_MonoGenericParam_initialize): New interncall.
29748         (ves_icall_Type_make_byref_type): New interncall.
29750         * reflection.h (MonoReflectionGenericParam): Derive from
29751         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29752         `index' fields.
29754         * reflection.c (mono_reflection_define_generic_parameter): Create
29755         and return a new MonoReflectionGenericParam; don't initialize the
29756         constraints here.
29757         (mono_reflection_initialize_generic_parameter): New public method;
29758         initializes the constraints and creates the `param->pklass'.
29760 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29762         * reflection.h reflection.c: Use the new fields 'num_types', 
29763         'num_fields' and 'num_methods' to track the number of types etc.
29765         * verify.c (check_corlib): Check corlib version number.
29767 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29769         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29770         function works on all methods.
29772 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29774         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29775         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29776         the custom_type_info flag of the transparent proxy.
29777         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29778         objects that supports IRemotingTypeInfo.
29779         * object.h: Added custom_type_info field in transparent proxy.
29781 2003-12-06  Martin Baulig  <martin@ximian.com>
29783         * class.c (mono_class_create_from_generic): Removed.
29784         (mono_class_from_generic): Check `ginst->klass' before doing
29785         anything else.  This is important to fully support "recursive"
29786         generic types.
29788         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29789         empty `generic_inst->klass' before doing anything else.
29791 2003-12-06  Dick Porter  <dick@ximian.com>
29793         * verify.c: 
29794         * object.h:
29795         * icall.c:
29796         * locales.c: Use C structs to access class fields.  Don't do a
29797         conversion between MonoString and UChar because both are
29798         platform-endian UTF-16.  Compare now takes startindex and count
29799         parameters.  Add a char overload for IndexOf.  Speed up the
29800         invariant string IndexOf.
29802 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29804         * Makefile.am (monosn_LDADD): Fix parallel build.
29806 2003-12-04  Martin Baulig  <martin@ximian.com>
29808         * icall.c
29809         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29810         (ves_icall_Type_make_array_type): New interncall.       
29812 2003-12-04  Martin Baulig  <martin@ximian.com>
29814         * locales.c: also change it in the !HAVE_ICU case.
29816 2003-12-04  Dick Porter  <dick@ximian.com>
29818         * icall.c:
29819         * locales.c: construct_compareinfo is now in CompareInfo, not
29820         CultureInfo.
29822 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29824         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29825         image->files array.
29827         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29828         table as well.
29830         * assembly.c (mono_assembly_load_references): Only load references
29831         once.
29833         * class.c (mono_class_from_name): Avoid linear search of the 
29834         EXPORTEDTYPE table.
29836         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29838 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29840         * image.h (MonoImage): Add 'field_cache' field.
29842         * loader.c (mono_field_from_token): Cache field lookups.
29843         
29844         * reflection.c (mono_module_get_object): Fix name property.
29846         * icall.c (ves_icall_get_enum_info): Update after changes to 
29847         mono_metadata_get_constant_index ().
29849         * icall.c: Get rid of get_type_info icall, use a separate icall for
29850         each type property to avoid needless memory allocations. Fixes #51514.
29852         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29853         to avoid needless binary searches.
29855         * class.c (class_compute_field_layout): Move the initialization of
29856         field->def_value to mono_class_vtable ().
29858         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29859         non-corlib types.
29861         * object.c (mono_object_allocate): Make it inline.
29863         * object.c (mono_object_allocate_spec): Make it inline.
29864         
29865 2003-12-02  Dick Porter  <dick@ximian.com>
29867         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29868         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29870 2003-12-01  Dick Porter  <dick@ximian.com>
29872         * threads.c: Fix signature and call in CreateMutex and
29873         CreateEvent.
29875 2003-12-01  Dick Porter  <dick@ximian.com>
29877         * icall.c: 
29878         * locales.c: Implement string compares and searching
29880         * object.h: Add extra Thread field
29882 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29884         * reflection.c (fixup_method): Add support for MonoCMethod.
29886 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29888         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29890         * reflection.c (assembly_name_to_aname): Allow extra characters in
29891         assembly names. Fixes #51468.
29893 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29895         * exception.c (mono_exception_from_name_domain): New helper function.
29897         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29898         exception object in the correct domain.
29900         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29901         formatting + make a copy a the input data.
29903         * loader.c (mono_get_method_from_token): Methods which contain
29904         native code do not have entries in the ImplMap.
29906         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29907         Thanks to Gonzalo for spotting this.
29908         
29909         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29910         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29912         * assembly.h (mono_assembly_load_from): Split the second part of 
29913         assembly loading into a new public function.
29915         * exception.h (mono_get_exception_bad_image_format): New function.
29917 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29919         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29920         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29921         
29922         * icall.c: Add new icall for creating dynamic methods.
29924         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29926         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29928         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29929         create a dynamic method.
29931         * reflection.c (resolve_object): New helper function.
29933         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29934         which manipulate it so they can also work on dynamic methods.
29936         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29937         creating the MonoReflectionMethodAux structure if it is not needed.
29938         
29939         * reflection.h verify.c: Update after changes to object layout.
29941         * reflection.c (method_builder_encode_signature): Fix compilation on
29942         gcc 2.95.x.
29944 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29946         * appdomain.h: Added support for context static fields. Added static_data
29947           field to MonoAppContext and renamed thread_static_fields to a more
29948           generic special_static_fields in MonoAppDomain, since it can now contain
29949           context static fields.
29950         * domain.c: Updated hashtable name.
29951         * object.c: Replaced field_is_thread_static() for a more generic
29952           field_is_special_static() which also checks for context static attribute.
29953           In mono_class_vtable(), added support for static context fields.
29954         * threads.c: Changed methods that manage thread static fields to more
29955           generic methods so they can be reused both for thread and context static
29956           data.
29957         * threads.h: Declared some new methods.
29959 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29961         * reflection.h: Update after changes to the managed types.
29963         * reflection.c (encode_custom_modifiers): New helper function.
29965         * reflection.c (method_encode_signature): Emit custom modifiers.
29967         * reflection.c (field_encode_signature): Emit custom modifiers.
29969 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29971         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29973         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29974         implementation.
29976         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29977         icall.
29979         * object.c (mono_field_get_value_object): New function.
29981         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29982         specific.
29984 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29986         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29987         return a preallocated out-of-memory exception instance.
29989         * object.c (out_of_memory): Use the new function.
29991         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29992         flag is before the custom modifiers. Fixes #49802.
29994 2003-11-16  Martin Baulig  <martin@ximian.com>
29996         * class.c (mono_class_is_open_constructed_type): Implemented the
29997         MONO_TYPE_GENERICINST case.
29999 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30001         * assembly.c (mono_assembly_fill_assembly_name): New function to
30002         fill out the MonoAssemblyName structure.
30003         (mono_assembly_open): Use the new function.
30005         * icall.c (fill_reflection_assembly_name): New helper function.
30007         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30008         new function.
30010         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30012 2003-11-15  Martin Baulig  <martin@ximian.com>
30014         * class.c (mono_class_is_open_constructed_type): New public
30015         function; checks whether a type is an open constructed type,
30016         ie. whether it still contains type parameters.
30017         (mono_class_inflate_generic_type): If we're a type parameter and
30018         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30019         type.
30021         * class.h (MonoGenericInst): Added `guint32 is_open'.
30023         * loader.c (method_from_methodspec): Check whether we're an open
30024         or closed constructed type and set `ginst->is_open'.
30026         * reflection.c (mono_reflection_bind_generic_parameters): Check
30027         whether we're an open or closed constructed type and set
30028         `ginst->is_open'.
30029         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30030         from open constructed types.
30032 2003-11-15  Martin Baulig  <martin@ximian.com>
30034         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30035         a generic instance (instead of a generic type declaration) with
30036         unbound generic parameters, bind them to our actual types.
30038 2003-11-14  Martin Baulig  <martin@ximian.com>
30040         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30042         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30043         an interface type, populate `res->interfaces' with instantiated
30044         versions of all the interfaces we inherit.
30046 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30048         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30049         when MONO_PATH is set but doesn't contain the install dir.
30051 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30053         * icall.c:
30054         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30055         it's also implemented in base classes. Fixes bug #50927.
30057 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30059         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30060         if this method is called from a finalizer. Fixes #50913.
30062 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30064         * threads.c: Implement VolatileRead/VolatileWrite
30066         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30068 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30070         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30071         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30072         2.95.3.
30074         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30075         from Peter Ross (pro@missioncriticalit.com).
30076         
30077 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30079         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30081 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30083         * assembly.c (mono_assembly_load_references): Disable check because it
30084         triggers on older corlibs which lots of people have.
30086 2003-11-12  Jackson Harper  <jackson@ximian.com>
30088         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30089         load corlib.dll if mscorlib.dll is not found.
30090         * assembly.h: Remove corlib name define.
30091         * class.c:
30092         * domain.c:
30093         * image.c: Change corlib name to mscorlib.
30094         
30095 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30097         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30099 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30101         * appdomain.h: Added loader_optimization here to sync with the C#
30102         code, and add disallow_binding_redirects field.
30104 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30106         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30108         * reflection.c (mono_image_build_metadata): Fix crash on modules
30109         with no types.
30111         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30113         * icall.c (ves_icall_get_method_info): Return callingConvention as
30114         well.
30116         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30117         namespaces from the EXPORTEDTYPE table as well.
30119         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30120         from all modules inside the assembly.
30121         
30122 2003-11-11  Martin Baulig  <martin@ximian.com>
30124         * reflection.c (mono_reflection_bind_generic_parameters): Make
30125         this work for interfaces.
30127 2003-11-11  Martin Baulig  <martin@ximian.com>
30129         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30131 2003-11-11  Martin Baulig  <martin@ximian.com>
30133         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30134         "MonoInflatedMethod" and "MonoInflatedCtor".
30136 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30138         * reflection.c (resolution_scope_from_image): Use the assembly table
30139         from the manifest module, since other modules don't have it.
30141         * debug-helpers.c (mono_type_full_name): New helper function.
30143         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30145         * image.c (mono_image_load_file_for_image): New public function which
30146         is a replacement for the load_file_for_image in class.c.
30148         * assembly.c (mono_assembly_load_module): A wrapper for the function
30149         above which does assembly association and reference loading too.
30151         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30153 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30155         * appdomain.c: not all of the attributes for the full assembly name
30156         are required and the order doesn't matter. Fixes bug #50787.
30158 2003-11-10  Dick Porter  <dick@ximian.com>
30160         * locales.c: Use platform-endian UTF16
30162 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30164         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30165         
30166 2003-11-10  Martin Baulig  <martin@ximian.com>
30168         * metadata.c
30169         (mono_metadata_load_generic_params): Make this actually work.
30171         * reflection.c (mono_reflection_bind_generic_parameters): If our
30172         parent is a generic instance, pass all the `types' to it, no
30173         matter whether it has the same number of type parameters or not.
30175 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30177         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30179         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30180         assignment code to this function so it gets called recursively for all
30181         modules.
30183         * image.c (load_modules): Remove the assembly assignment since it is
30184         now done by mono_assembly_load_references.
30185         
30186         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30187         Add 'module' argument.
30188         (mono_module_get_types): New helper function.
30189         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30191 2003-11-08  Martin Baulig  <martin@ximian.com>
30193         * class.c (mono_class_inflate_generic_method): Interface method
30194         don't have a header.
30196         * reflection.c (mono_image_get_methodspec_token): Take an
30197         additional `MonoGenericInst *' argument instead of reading it from
30198         the header; this is necessary to support interfaces.
30199         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30200         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30201         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30202         argument.
30204         * reflection.h (MonoReflectionInflatedMethod): Added
30205         `MonoGenericInst *ginst'.
30207 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30209         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30211 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30213         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30215 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30217         * reflection.c 
30218         (reflection_methodbuilder_from_method_builder):
30219         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30220         initialize a ReflectionMethodBuilder structure.
30221         (mono_image_get_methodbuilder_token):
30222         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30223         tokens which point to types in another module inside the same assembly.
30225         * reflection.c: Use the new helper functions.
30226         
30227         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30229         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30230         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30232         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30233         neccesary.
30235         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30236         current module. Emit the manifest only for the main module.
30238         * reflection.c (mono_image_create_token): Add assertion when a 
30239         memberref needs to be created.
30241         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30243         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30244         larger buffer for the custom attribute blob. Fixes #50637.
30245         
30246 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30248         * threadpool.c: notify listener on async processing handles after
30249         invoking the async callback. Thanks to Zoltan.
30251 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30253         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30254         avoid code duplication.
30256         * reflection.h (MonoDynamicImage): New type which is currently unused,
30257         but will be used through the ref.emit code in place of 
30258         MonoDynamicAssembly.
30260         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30261         object layout.
30263         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30264         a MonoDynamicImage instead of just a MonoImage.
30265         
30266         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30267         icalls to ModuleBuilder but keep their semantics, so they will work
30268         with moduleb->assemblyb. This will change later.
30269         
30270 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30272         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30273         object layout.
30275         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30276         main module, since it is now done by the managed code.
30278 2003-11-03  Martin Baulig  <martin@ximian.com>
30280         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30281         `ginst->klass' here.
30282         (method_encode_methodspec): Don't use the `ginst->generic_method's
30283         klass if it's a generic instance, use `ginst->klass' in this case.
30285 2003-11-03  Martin Baulig  <martin@ximian.com>
30287         * reflection.c (mono_image_get_generic_method_param_info):
30288         Removed, use mono_image_get_generic_param_info() instead.
30289         (mono_image_get_type_info): Write the GenericParam table before
30290         the Method table.  This is neccessary because in the GenericParam
30291         table, type parameters of the class (ie. '!0' etc.) must come
30292         before the ones from its generic methods (ie. '!!0' etc).
30294 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30296         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30298 2003-11-02  Martin Baulig  <martin@ximian.com>
30300         * reflection.c (create_generic_typespec): Take a
30301         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30302         the generic parameters from it.
30304 2003-11-02  Martin Baulig  <martin@ximian.com>
30306         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30307         instead of a `MonoClassField *' since we just need the type.
30308         (create_generic_typespec): New static function.  Creates a
30309         TypeSpec token for a generic type declaration.
30310         (mono_image_get_generic_field_token): New static function.
30311         (mono_image_create_token): If we're a FieldBuilder in a generic
30312         type declaration, call mono_image_get_generic_field_token() to get
30313         the token.
30315 2003-11-02  Martin Baulig  <martin@ximian.com>
30317         * reflection.h
30318         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30319         `MonoReflectionGenericInst *declaring_type' and
30320         `MonoReflectionGenericInst *reflected_type' fields.
30322         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30323         `MonoReflectionGenericInst *declaring_type' and a
30324         `MonoReflectionGenericInst *reflected_type' argument instead of a
30325         single `MonoReflectionGenericInst *type' one.  Set
30326         `res->declaring_type' and `res->reflected_type' from them.
30327         (mono_reflection_inflate_field): Likewise.      
30329 2003-11-02  Martin Baulig  <martin@ximian.com>
30331         * class.c (mono_class_setup_vtable): Don't store generic methods
30332         in the vtable.  
30334 2003-11-02  Martin Baulig  <martin@ximian.com>
30336         * reflection.h (MonoReflectionGenericInst): Added
30337         `MonoReflectionType *declaring_type'.
30339         * reflection.c (mono_reflection_bind_generic_parameters): Use
30340         `if (tb->parent)' instead of `klass->parent'.
30342 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30344         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30345         with an empty ASSEMBLY table.
30347         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30348         variable in the inner and outer loops.
30350 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30352         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30353         argument.
30355         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30356         
30357         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30358         icalls. Instead, do everything in managed code. This is needed since
30359         it is hard to restore the original domain etc. in unmanaged code in the
30360         presence of undeniable exceptions.
30362         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30363         New icalls to push and pop appdomain refs.
30365 2003-10-31  Martin Baulig  <martin@ximian.com>
30367         * class.c (inflate_generic_type): Renamed to
30368         mono_class_inflate_generic_type() and made it public.
30370         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30371         New interncall.
30373         * loader.c (mono_field_from_memberref): Also set the retklass for
30374         typespecs.
30376         * fielder.c (mono_image_get_inflated_field_token): New static
30377         method; creates a metadata token for an inflated field.
30378         (mono_image_create_token, fixup_method): Added support for
30379         "MonoInflatedField".
30380         (fieldbuilder_to_mono_class_field): New static function.
30381         (mono_reflection_inflate_field): New public function.
30383         * reflection.h
30384         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30385         (MonoReflectionInflatedField): New typedef.     
30387 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30389         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30390         for Solaris and other platforms without s6_addr16
30392 2003-10-30  Martin Baulig  <martin@ximian.com>
30394         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30395         argument instead of two.
30396         (mono_class_inflate_generic_signature): Likewise.
30397         (inflate_generic_header): Likewise.
30398         (mono_class_inflate_generic_method): Likewise.  In addition, if
30399         `ginst->klass' is set, it becomes the new `method->klass'.
30401         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30402         field.
30404         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30405         first byte. [FIXME]
30406         (method_encode_methodspec): If we have generic parameters, create
30407         a MethodSpec instead of a MethodRef.
30408         (fixup_method): Added support for "MonoInflatedMethod" and
30409         "MonoInflatedCtor".
30410         (mono_image_create_token): Added support for "MonoInflatedMethod"
30411         and "MonoInflatedCtor".
30412         (inflated_method_get_object): New static function; returns a
30413         managed "System.Reflection.MonoInflatedMethod" object.
30414         (mono_reflection_bind_generic_method_parameters): Return a
30415         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30416         (mono_reflection_inflate_method_or_ctor): Likewise.
30417         (mono_image_get_generic_method_param_info): Initialize unused
30418         fields to zero.
30419         (mono_image_get_generic_param_info): Likewise.
30421         * reflection.h (MonoReflectionInflatedMethod): New public
30422         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30423         "S.R.MonoInflatedCtor" classes.
30425         * loader.c (method_from_memberref): If we're a TypeSpec and it
30426         resolves to a generic instance, inflate the method.
30428 2003-10-28  Dick Porter  <dick@ximian.com>
30430         * object.c (mono_runtime_run_main): Convert command-line arguments
30431         into utf8, falling back to the user's locale encoding to do so.
30433 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30435         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30436         at this time.
30438         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30440         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30441         up icalls at method definition time. Partially fixes #33569.
30443 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30445         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30446         marshalling of arrays. Fixes #50116.
30448         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30450         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30451         points to a vtable in the dying appdomain.
30453         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30454         listeners into unmanaged code inside the lock.
30456         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30457         domains and add some comments.
30459 2003-10-25  Martin Baulig  <martin@ximian.com>
30461         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30463         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30465         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30466         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30467         currently parsing.  Create the generic class and store it in
30468         `generic_inst->klass' before parsing the type arguments.  This is
30469         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30470         for an example.
30471         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30472         to support recursive typespec entries.
30474         * class.c (mono_class_setup_parent): If our parent is a generic
30475         instance, we may get called before it has its name set.
30476         (mono_class_from_generic): Splitted into
30477         mono_class_create_from_generic() and mono_class_initialize_generic().
30479 2003-10-25  Martin Baulig  <martin@ximian.com>
30481         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30482         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30483         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30484         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30486         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30487         (create_typespec): Likewise.
30488         (mono_reflection_bind_generic_parameters): Return a
30489         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30490         (mono_reflection_inflate_method_or_ctor): New public function.
30492         * reflection.h (MonoReflectionGenericInst): New typedef.        
30494 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30496         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30497         inside the domain lock. Fixes #49993.
30498         
30499         * object.c (mono_class_vtable): When typed allocation is used, 
30500         allocate vtables in the GC heap instead of in the mempool, since the
30501         vtables contain GC descriptors which are used by the collector even
30502         after the domain owning the mempool is unloaded.
30504         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30506         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30507         reflect what it does. Also invalidate mempools instead of freeing
30508         them if a define is set.
30510         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30511         of the appdomain.
30512         
30513         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30514         hold the finalizable objects in this domain.
30516         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30517         appdomain.
30519         * appdomain.c (mono_domain_set): New function to set the current
30520         appdomain, but only if it is not being unloaded.
30522         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30523         appdomain which is being unloaded.
30524         
30525         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30526         unloading of the root appdomain.
30528         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30529         icall to execute a method in another appdomain. Intended as a 
30530         replacement for InternalSetDomain, which can confuse the code 
30531         generation in the JIT.
30533         * appdomain.c (mono_domain_is_unloading): New function to determine
30534         whenever an appdomain is unloading.
30536         * appdomain.c (mono_domain_unload): New function to correctly unload
30537         an appdomain.
30539         * assembly.c (mono_assembly_load_references): Check that an assembly
30540         does not references itself.
30542         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30543         domain manually, it asks the finalizer thread to do it, then waits for
30544         the result. Also added a timeout.
30546         * icall.c: Register the new icalls.
30548         * threads.h threads.c: Export the mono_gc_stop_world and 
30549         mono_gc_start_world functions.
30550         
30551         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30552         function to fill out the mempool with 0x2a.
30554 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30556         * reflection.h (MonoReflectionMethodAux): New structure to store
30557         information which is rarely used, thus is not in the MonoMethod
30558         structure.
30560         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30561         store the aux info.
30563         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30564         and marshalling info into the aux structure.
30566         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30567         from the aux structure.
30569         * loader.c (mono_method_get_param_names): Retrieve the param names from
30570         the aux structure.
30571         
30572 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30574         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30575         warning.
30577 2003-10-21  Dick Porter  <dick@ximian.com>
30579         * socket-io.c
30580         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30581         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30583 2003-10-21  Martin Baulig  <martin@ximian.com>
30585         * reflection.c (mono_reflection_bind_generic_parameters):
30586         `klass->parent' is NULL for interfaces.
30588 2003-10-21  Martin Baulig  <martin@ximian.com>
30590         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30592 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30594         * exception.c (mono_exception_from_name_msg): New helper function for
30595         creating exceptions and initializing their message field.
30597         * exception.c: Simplify functions using the new helper.
30599         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30600         New function.
30602         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30603         mono_raise_exception, since otherwise gcc doesn't generate the function
30604         epilog for raise_exception, confusing the stack unwinding in the JIT.
30605         Fixes #45043.
30607         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30608         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30609         Fixes #49499.
30611 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30613         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30614         utf8.
30616 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30618         * icall.c: Removed GetUninitializedObject method because
30619           AllocateUninitializedClassInstance does the same.
30621 2003-10-18  Martin Baulig  <martin@ximian.com>
30623         * class.c (inflate_generic_signature): Renamed to
30624         mono_class_inflate_generic_signature() and made it public.
30625         (my_mono_class_from_generic_parameter): New static function; if we
30626         don't already have the generic parameter's MonoClass, create a
30627         very simple one which is just used internally in the runtime and
30628         not passed back to managed code.
30630         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30632         * metadata.h (MonoMethodSignature): Moved the
30633         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30634         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30636         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30637         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30638         interncall on the MonoMethod class, not on MethodInfo.
30639         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30640         calling mono_reflection_bind_generic_method_parameters() directly.
30642         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30643         return the already computed `method->signature'.
30644         (method_from_methodspec): New static function to load a method
30645         from a MethodSpec entry.
30646         (mono_get_method_from_token): Call the new method_from_methodspec()
30647         for MethodSpec tokens.  
30648         (mono_get_method_from_token): If we're a generic method, load the
30649         type parameters.
30651         * reflection.c (mono_image_get_memberref_token): Allow
30652         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30653         table.
30654         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30655         (mono_image_create_token): First check whether it's a generic
30656         method (so we'd need to create a MethodSpec), then do the other
30657         two alternatives.
30658         (mono_reflection_bind_generic_method_parameters): Return a
30659         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30660         called directly from the interncall.
30662 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30664         * reflection.c (load_public_key): Move loading of the public key
30665         into managed code.
30667         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30669         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30670         fields.
30672         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30673         culture, hash_alg and public_key. Fixes #49555.
30675 2003-10-17  Martin Baulig  <martin@ximian.com>
30677         * class.h (MonoGenericInst): Moved this declaration here and added
30678         `MonoMethod *generic_method'.
30680         * icall.c
30681         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30682         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30684         * metadata.c (mono_metadata_type_equal): Two types of
30685         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30686         index; ie. don't compare the address of the `MonoGenericParam'
30687         structure.
30688         (mono_metadata_load_generic_params): Removed the `MonoMethod
30689         *method' argument.
30691         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30692         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30694         * reflection.c (method_encode_signature): Encode the number of
30695         generic parameters.
30696         (encode_generic_method_sig): New static function.
30697         (method_encode_methodspec): New static function; creates an entry
30698         in the MethodSpec table for a generic method.
30699         (mono_image_get_methodspec_token): New static function.
30700         (mono_image_create_token): Call mono_image_get_methodspec_token()
30701         for generic methods.
30702         (mono_reflection_bind_generic_method_parameters): New public
30703         function.  Instantiates a generic method.
30705 2003-10-16  Martin Baulig  <martin@ximian.com>
30707         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30708         *gen_params' here from MonoMethodHeader.
30710         * metadata.c (mono_metadata_parse_method_signature): If we have
30711         generic parameters, initialize `method->gen_params' and then set
30712         the correct `type->data.generic_param' in all the parameters.
30714 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30716         * threads.c (mono_threads_get_default_stacksize): New function to 
30717         return the default stacksize.
30719         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30720         termination of the finalizer thread, since the previous method had
30721         race conditions. Fixes #49628.
30723         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30724         as for the other managed threads.
30726 2003-10-16  Martin Baulig  <martin@ximian.com>
30728         * class.c (inflate_generic_signature): Copy `generic_param_count'
30729         and `gen_params'.
30731         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30732         New interncall.
30734         * metadata.c (mono_metadata_parse_method_signature): Actually set
30735         the `method->generic_param_count' here.
30736         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30738 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30740         * object.h: Add a new field to TypedRef to simplify the implementation
30741         of the REFANY opcodes in the JIT.
30743         * icall.c: Make use of the new field.
30745         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30746         dynamically.
30748 2003-10-15  Martin Baulig  <martin@ximian.com>
30750         * class.c (mono_class_from_gen_param): Renamed to
30751         mono_class_from_generic_parameter() and moved most of the
30752         functionality from mono_reflection_define_generic_parameter()
30753         here; ie. we create a "real" class here.
30754         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30755         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30756         previously been called.
30758         * class.h (MonoGenericParam): Moved the declaration of this struct
30759         here from metadata.h and added `MonoMethod *method'.
30761         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30762         interncall.
30764         * loader.c (mono_get_method_from_token): If we have any generic
30765         parameters, call mono_metadata_load_generic_params() to read them
30766         from the MONO_TABLE_GENERICPAR.
30768         * metadata.c (mono_metadata_load_generic_params): Added
30769         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30771         * metadata.h (MonoMethodSignature): Replaced
30772         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30773         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30775         * reflection.c (mono_reflection_define_generic_parameter): Moved
30776         most of the functionality into the new
30777         mono_class_from_generic_parameter(); set the `method' field if
30778         we're a method parameter.       
30780 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30782         * marshal.c (emit_struct_conv): if native size is 0
30783         emit no code.
30785 2003-10-14  Martin Baulig  <martin@ximian.com>
30787         * icall.c: The generics API has changed in the spec since it was
30788         added to System.Type; these modifications make it match the spec
30789         again.
30790         (ves_icall_Type_GetGenericParameters): Renamed to
30791         `ves_icall_Type_GetGenericArguments'.
30792         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30793         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30794         `ves_icall_MonoType_get_HasGenericArguments'.
30795         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30796         `ves_icall_MonoType_get_IsGenericParameter'.
30797         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30798         this is no interncall anymore.
30799         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30800         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30802 2003-10-14  Martin Baulig  <martin@ximian.com>
30804         * reflection.c (mono_reflection_bind_generic_parameters): Also
30805         inflate generic methods if we're reading the class from IL.
30807 2003-10-13  Martin Baulig  <martin@ximian.com>
30809         * reflection.c (mono_reflection_define_generic_parameter): This
30810         method isn't called directly from the icall anymore; take a
30811         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30812         method generic parameters.
30813         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30814         (method_builder_encode_signature): Encode generic parameters.
30815         (mono_image_get_method_info): Write generic params to the
30816         MONO_TABLE_GENERICPARAM table.
30818         * reflection.h (MonoReflectionMethodBuilder): Added
30819         `MonoArray *generic_params'.
30821         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30823         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30824         wrapper for mono_reflection_define_generic_parameter().
30825         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30827 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30829         * marshal.h: Add missing function to fix build.
30831         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30832         the SetLastError pinvoke attribute.
30834         * marshal.c (mono_marshal_set_last_error): New helper function called
30835         by the generated code.
30836         
30837         * marshal.c (mono_mb_emit_branch): New helper function.
30839         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30841         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30842         classes as parameters and return values of delegates. Fixes #29256. 
30844 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30846         * locales.c: use gint32 in non HAVE_ICU case
30848 2003-10-11  Martin Baulig  <martin@ximian.com>
30850         * mono-debug.c (mono_debug_add_method): Added a workaround for
30851         bug #48591.
30853 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30855         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30856         delegates passed to native code must use the STDCALL calling 
30857         convention. Fixes #35987.
30859 2003-10-10  Martin Baulig  <martin@ximian.com>
30861         * class.c (inflate_generic_type): If we're inflating for a generic
30862         type instance (and not for a generic method), return
30863         MONO_TYPE_MVAR unchanged.
30865 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30867         * string-icalls.c: Join ignores null strings in the source array.
30868         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30869         * threads.c: GetAvailableTheads is slightly more accurate.
30871 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30873         * threads.h threads.c : add mono_threads_set_default_stacksize
30874         and pass default to CreateThread calls.
30876 2003-10-09  Dick Porter  <dick@ximian.com>
30878         * icall.c:
30879         * locales.h:
30880         * locales.c: Internal calls for constructing CultureInfo and
30881         related objects from libicu (if its available.)
30883 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30885         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30887 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30889         * threadpool.c: added an argument to async_invoke_thread that is the
30890         item to process, pass the MonoAsyncResult to the thread start function
30891         when creating a new thread. This way we don't need to acquire any lock
30892         when we're creating a new thread. Readded a semaphore for faster
30893         response times (instead of that Sleep i added).
30895 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30897         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30898         get daylight change dates better on Windows, fix handling
30899         of platforms without tm_gmtoff.
30901 2003-10-06  Martin Baulig  <martin@ximian.com>
30903         * class.c (inflate_generic_method): Renamed to
30904         mono_class_inflate_generic_method() and made public.
30905         (mono_class_init): Don't inflate the generic methods here.
30906         (mono_class_from_generic): Added `gboolean inflate_methods'
30907         argument.  Inflate the methods here.
30909         * loader.c (mono_method_get_param_names): Ignore instances of
30910         generic types for the moment.
30912         * reflection.c (fixup_method): Added support for inflated methods.
30913         (mono_image_create_token): Use mono_image_get_methodref_token()
30914         for inflated methods.
30915         (mono_custom_attrs_from_param): Ignore instances of generic types
30916         for the moment.
30917         (mono_reflection_bind_generic_parameters): New public function.
30918         Moved all the functionality from
30919         ves_icall_Type_BindGenericParameters() here and added support for
30920         dynamic types.
30921         (mono_reflection_define_generic_parameter): Initialize
30922         `klass->methods' here.
30924         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30925         functionality into mono_reflection_define_generic_parameter().
30926         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30927         TypeBuilder, return that TypeBuilder.
30929 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30931         * appdomain.c: removed mono_delegate_semaphore.
30933         * threadpool.c:
30934         (mono_thread_pool_add): moved hash table creation inside and the thread 
30935         creation outside of the critical region.
30936         (mono_thread_pool_finish): removed obsolete code.
30937         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30938         continue or exit the thread depending on the queue.
30940 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30942         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30943         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30944         handle more bool marshalling options
30946 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30948         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30949         arrays of structs. Also add a more descriptive error message when
30950         a structure member is marshalled as LPArray.
30952 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30954         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30955         marshalling arrays of complex types. Fixes #29098. Also remove an
30956         usused and incomplete function.
30958 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30960         * gc.c: report heap_size - free_bytes as total memory allocated
30961         (bug#49362).
30963 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30965         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30966         fix timezone handling problems on Windows.
30967         
30968         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30969         asserts when the year is outside the range handled by ms the functions.
30971         * class.c (setup_interface_offsets): If the class is an interface,
30972         fill out its interface_offsets slot.
30974 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30976         * threadpool.c: mark threadpool threads as background.
30978 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30980         * decimal.c - define DECINLINE to nothing if not using GCC
30982 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30984         * assembly.c: More refcount fixes.
30986 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30988         * string-icalls.c: if we're not trimming, return the same string.
30989         When not splitting, don't create a new string.
30991 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30993         * image.c:
30994         (mono_image_open): increment the ref_count inside the critical section.
30996 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30998         * image.c (mono_image_open): Fix reference counting bug.
31000 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31002         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31003         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31004         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31005         mono_lookup_pinvoke_call throws.        
31007 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31009         * reflection.c (mono_reflection_parse_type): Fix #49114.
31011         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31012         temporary workaround for cygwin header problem.
31014         * object.c (mono_object_isinst): Synchronize this with the code
31015         generated by the JIT for casts.
31017 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31019         * reflection.c (encode_type): Fix #38332.
31021 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31023         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31024         the original method from the wrapper method.
31026 2003-09-25  Martin Baulig  <martin@ximian.com>
31028         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31029         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31030         (ves_icall_Type_get_IsGenericInstance): New interncall.
31032 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31034         * object.c: fix cast warning in big endian code.
31036 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31038         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31039         
31040 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31042         * assembly.c: don't call check_env from mono_assembly_load. It's
31043         already done once in mono_assemblies_init and may cause headaches when
31044         multiple threads are loading assemblies.
31046 2003-09-19  Martin Baulig  <martin@ximian.com>
31048         * reflection.c (mono_reflection_define_generic_parameter): Don't
31049         allocate `klass->methods', set `klass->flags' to
31050         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31052 2003-09-18  Martin Baulig  <martin@ximian.com>
31054         * class.c (mono_class_init): Don't create `class->methods' if it's
31055         already initialized.
31057         * metadata.c (mono_metadata_load_generic_params): Make this
31058         actually work.
31060         * reflection.c (mono_reflection_define_generic_parameter): Set
31061         parent class and interfaces from the constraints.
31063         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31064         to keep this struct in sync with the declaration in TypeBuilder.cs.
31066 2003-09-17  Martin Baulig  <martin@ximian.com>
31068         * metadata.h (MonoType): Replaced the data's `int type_param'
31069         field with `MonoGenericParam *generic_param'.
31070         (MonoGenericParam): Added `MonoClass *klass'.
31072         * class.c (mono_class_from_gen_param): Removed the
31073         `MonoImage *image' and `int type_num' arguments.
31075         * metadata.c (mono_metadata_parse_generic_param): New static
31076         method; creates a MonoGenericParam which just contains the index.
31077         (do_mono_metadata_parse_type): Call
31078         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31079         MONO_TYPE_MVAR.
31081         * reflection.c (mono_image_typedef_or_ref): Generic type
31082         parameters may be in the same assembly, but never use a typedef
31083         for them.
31084         (mono_reflection_define_generic_parameter): We're now creating a
31085         "real" class for the type parameter; it's now safe to call
31086         mono_class_from_mono_type() on the class'es type, it'll do the
31087         right thing.
31089 2003-09-16  Martin Baulig  <martin@ximian.com>
31091         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31092         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31093         the `symfile' data structure must be fully initialized before it
31094         gets added to the table.
31096 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31098         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31100         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31101         class init trampolines.
31103 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31105         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31106         to the built-in profiler to turn off time and allocation profiling
31107         respectively.
31109 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31111         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31112         g_direct_equal.
31114         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31115         in human readable form.
31117 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31119         * reflection.c icall.c: Fixed warnings.
31121         * image.c (load_class_names): Use a temporary hash table to hold the
31122         namespaces in order to avoid doing many string comparisons.
31124         * image.h: Fix typo.
31126         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31127         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31128         since the NULL case is short-circuited inside g_hash_table_lookup, 
31129         leading to better performance.  
31131         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31132         obtain the first custom attribute for a given index. Depends on the
31133         CustomAttribute table being sorted by the parent field.
31135         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31136         for better performance.
31138 2003-09-07  Martin Baulig  <martin@ximian.com>
31140         * class.c (mono_class_init): If we're a generic instance, inflate
31141         all our methods instead of loading them from the image.
31142         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31144 2003-09-07  Martin Baulig  <martin@ximian.com>
31146         * mono-debug-debugger.c: Added support for constructors.
31148 2003-09-06  Martin Baulig  <martin@ximian.com>
31150         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31151         New interncall.
31153         * reflection.c (mono_reflection_setup_generic_class): Call
31154         ensure_runtime_vtable() to create the vtable.
31156 2003-09-05  Martin Baulig  <martin@ximian.com>
31158         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31159         MONO_TYPE_MVAR.
31161 2003-09-04  Martin Baulig  <martin@ximian.com>
31163         * reflection.c (mono_reflection_define_generic_parameter): Generic
31164         parameters start with zero.
31166 2003-09-04  Martin Baulig  <martin@ximian.com>
31168         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31170         * reflection.h (MonoReflectionGenericParam): New typedef.
31171         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31172         the generic parameters from the managed TypeBuilder.
31174         * reflection.c (mono_reflection_define_generic_parameter): New function.
31175         (mono_reflection_create_runtime_class): Encode generic parameters.
31176         (mono_reflection_setup_generic_class): New function; this is
31177         called after adding adding all generic params to the TypeBuilder.
31178         (encode_type): Added MONO_TYPE_VAR.
31180 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31182         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31183         here from the JIT.
31185         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31186         load hook.
31188 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31190         * reflection.h reflection.c class.h class.c: Delete duplicate 
31191         definition of mono_type_get_name () from reflection.c and export the
31192         one in class.c.
31194         * class.c: Class loading fixes from Bernie Solomon 
31195         (bernard@ugsolutions.com).
31197         * reflection.c: Endianness fixes from Bernie Solomon 
31198         (bernard@ugsolutions.com).
31199         
31200 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31202         * assembly.h assembly.c: Define a file format version for AOT
31203         libraries.
31204         
31205         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31207         * appdomain.h (MonoJitInfo): New field to determine whenever the
31208         code is domain neutral.
31209         
31210 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31212         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31214 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31216         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31217         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31218         Avoid caching the result since strings must be domain specific. Fixes
31219         #48050.
31221 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31223         * marshal.c (mono_marshal_init): Make this callable multiple times
31224         since it is hard to find a correct place to call it.
31226         * object.c (mono_runtime_class_init): Execute static constructors in
31227         the correct appdomain.
31229         * image.c (build_guid_table): Handle the case when multiple images have
31230         the same GUID.
31232 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31234         * icall.c: added a couple of icalls for System.Web.
31236 2003-08-28  Martin Baulig  <martin@ximian.com>
31238         * icall.c (ves_icall_Type_BindGenericParameters): Use
31239         `klass->generic_inst' instead of `&klass->byval_arg' in the
31240         mono_type_get_object() call.  The returned type must be
31241         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31243 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31245         * NOTES: New file.
31247         * object.c (mono_class_proxy_vtable): Make it thread safe.
31249         * pedump.c: Fix warning.
31251         * object.c appdomain.h: Get rid of metadata_section. 
31252         It is no longer needed and it was causing deadlocks with domain->lock.
31254         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31256 2003-08-26  Martin Baulig  <martin@ximian.com>
31258         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31260 2003-08-26  Martin Baulig  <martin@ximian.com>
31262         * pedump.c (main): Call mono_metadata_init(),
31263         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31264         and mono_loader_init().
31266 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31268         * loader.h: Add missing include to fix build.
31270         * image.h: mono_image_load_references is no more.
31272         * assembly.c: Reworked assembly loading to make it really thread safe.
31273         After these changes, the assembly returned by mono_assembly_open is
31274         fully initialized, i.e. all its references assemblies are loaded.
31276         * assembly.c (mono_image_load_references): Renamed to 
31277         mono_assembly_load_references, and made private, since clients no
31278         longer need to call it.
31280         * class.c: Removed calls to mono_assembly_load_references, since it was
31281         a source of deadlocks.
31283         * loader.h loader.c class.h class.c: Protect data structures using a 
31284         new lock, the loader lock.
31286         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31287         GPtrArrays only when needed.
31289         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31290         into empty structures by mcs. Fixes pinvoke7.cs.
31291         
31292         * domain.c (mono_init): Call a new initialization function.
31294         * appdomain.c (mono_runtime_init): Call the new initializer function
31295         of the marshal module.
31297         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31298         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31300         * marshal.h marshal.c: Added locks around the wrapper caches to make
31301         this module thread safe.
31303         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31304         this argument. Fixes pinvoke1.exe.
31306 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31308         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31309         enumeration of values. Removed fields to store remote call output values in
31310         MonoAsyncResult. Not needed any more.
31311         * object.c: Initialize call_type and async_result fields in mono_message_init.
31312         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31313         dispatching the message.
31314         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31315         async call to finish. To do it use a message with EndInvoke call type.
31317 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31319         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31320         determines whenever a method has marshalling info.
31322 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31324         * assembly.c: fix the build on windows.
31326 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31328         * object.cs: Fixed bug #47785.
31330 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31332         * string-icalls.c (StringReplace): If their are no occurances of
31333         the old string found return a reference to the supplied
31334         string. This saves some memory and matches MS behavoir.
31335         
31336 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31338         * socket-io.c: fixed compilation for systems that define AF_INET6
31339         and don't define SOL_IP/SOL_IPV6.
31341 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31343         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31344         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31346         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31348         * domain.c: Make this module thread safe.
31350         * domain.c (mono_init): Call new initialization function.
31352         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31353         reference types too. Fixes #38812.
31355         * image.c (mono_image_init): Fixed warnings.
31357         * class.c (mono_class_from_typeref): Handle assembly load failure
31358         correctly.
31360         * appdomain.c (add_assemblies_to_domain): Handle the case when
31361         the references of an assembly are not yet loaded.
31363         * metadata.c image.c assembly.c: Moved initialization of global
31364         variables to a separate function called at startup since lazy 
31365         initialization of these variables is not thread safe.
31366         
31367         * image.c assembly.c: Made this module thread safe by adding locks in 
31368         the appropriate places.
31370         * domain.c (mono_init): Call the new initialization functions of the
31371         three modules.
31373 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31375         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31376           make a direct call. It is proxy's work to make the call asynchronous.
31377           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31378           the return values.
31379         * object.cs: mono_method_call_message_new(): read AsyncResult and
31380           state object from parameters list, if this info is requested.
31381         * object.h: Added fields to store remote call output values in
31382           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31384 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31386         * object.h: add needed fields to MonoThread.
31387         * threads.c, threads.h: allow registering a function to cleanup data
31388         allocated per thread by the JIT.
31390 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31392         * loader.h: portability fix by Bernie Solomon
31393         * <bernard@ugsolutions.com>.
31395 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31397         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31398         return a MonoArray. This simplifies the code and also ensures that
31399         the cache allways contains an object reference as a value.
31401         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31402         function.
31404 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31406         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31407         fixes a problem with byte ordering when getting the address family for
31408         a socket.
31410 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31412         * .cvsignore: Added monosn.
31414         * reflection.h reflection.c loader.c: Added support for parameter
31415         marshalling to dynamically created types. Fixes #47295.
31417 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31419         * rand.c: remove useless warnings.
31421 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31423         * class.c: implemented ldtoken for methods and fieldrefs.
31425 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31427         * threadpool.c: when mono_async_invoke was called, no one took care of
31428         monitoring the queue. So if the method invoked took some time and we
31429         got new async invoke requests after 500 ms (the thread created waited
31430         that long in WaitForSingleObject), the new async invoke was not called
31431         until the previous one finished.
31433         This is fixed now. Thanks to Totte for helping with it.
31435 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31437         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31439 2003-08-11  Martin Baulig  <martin@ximian.com>
31441         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31443 2003-08-06  Martin Baulig  <martin@ximian.com>
31445         * mono-debug-debugger.c: Added support for static fields,
31446         properties and methods.
31448 2003-08-06  Martin Baulig  <martin@ximian.com>
31450         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31451         make this work for applications with multiple application domains.
31453 2003-08-04  Martin Baulig  <martin@ximian.com>
31455         * mono-debug-debugger.c: Completely reworked the type support; the
31456         most important thing is that we're now just using one single
31457         `MonoType' instance per type.
31459 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31461         * mono-endian.h, mono-endian.c, icall.c: Added icall
31462         ves_icall_System_Double_AssertEndianity to assert double word endianity
31463         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31465 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31467         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31468         support, icalls and fixes.
31470 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31472         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31473         classes that are a punctuation character in .NET is not the same a
31474         g_unichar_ispunct.
31476 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31478         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31480 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31482         * icall.c: Add new MemCopy internalcall.
31483         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31484         Simplified code; It is not necessary to handle all the cases here,
31485         as the C# code takes care of it.  Only handle the case of the name
31486         resource embedded into the assembly.
31488         Changed signature to return the data pointer and the size of the
31489         data. 
31491 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31493         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31494         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31496 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31498         * socket-io.c: ignore EINTR error in select.
31500 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31502         * class.h, class.c: removed unused subclasses field in MonoClass.
31504 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31506         * icall.c: improve fix of get_base_definition(). If the parent class
31507           doesn't have the mehod, look at the parent of the parent.
31508         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31509           to check if a parameter is an in or out parameter
31510           (PARAM_ATTRIBUTE_IN is not set by default).
31511           mono_method_return_message_restore(): Use mono_class_value_size to
31512           get the size of a value type. mono_type_stack_size (parameterType)
31513           does not return the correct value if parameterType is byRef.
31514           mono_load_remote_field(), mono_load_remote_field_new(),
31515           mono_store_remote_field(), mono_store_remote_field_new():
31516           raise exception if the remote call returns an exception.
31518 2003-07-28  Martin Baulig  <martin@ximian.com>
31520         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31521         method.  This is a wrapper around mono_runtime_invoke() which
31522         boxes the instance object if neccessary.
31524 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31526         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31527         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31529 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31531         * icall.c: disable mcs bug workaround.
31533 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31535         * object.c (mono_runtime_class_init): Take the metadata_section
31536         mutex before obtaining the domain mutex.
31538         * appdomain.h: Added definition of metadata_section mutex here. 
31540         * object.c: define metadata_mutex here.
31542 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31544         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31545         fixed.
31547 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31549         * reflection.c: Fix bug #46669
31551 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31553         * exception.c:
31554         * exception.h:
31555         * icall.c:
31556         * object.h: fill in the type name for TypeLoadException.
31558 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31560         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31561         relationship between TypeBuilders while compiling corlib) and bug
31562         45993 (Array types returned from the runtime while compiling
31563         corlib were from the loaded corlib).
31565 2003-07-22  Martin Baulig  <martin@ximian.com>
31567         * mono-debug-debugger.c: Reworked the type support a bit more;
31568         distinguish between types and classes.
31570 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31572         * icall.c: add IsArrayImpl icall.
31574 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31576         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31577         initializing real_size only once. Also fix bug #46602.
31579 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31581         * object.c: Renamed mono_metadata_section to metadata_section.
31583 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31585         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31586           empty array if the type is an array. Fixed.
31587           ves_icall_MonoMethod_get_base_definition: if the base method
31588           is abstract, get the MethodInfo from the list of methods of
31589           the class.
31590         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31591           and it was 1-based. Fixed in mono_param_get_objects.
31593 2003-07-20  Martin Baulig  <martin@ximian.com>
31595         * mono-debug.h: Set version number to 31.
31596         (mono_debug_init): Added `MonoDomain *' argument.
31598         * mono-debug-debugger.c: Reworked the type support; explicitly
31599         tell the debugger about builtin types; pass the `klass' address to
31600         the debugger.
31602 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31604         * image.c: Allow new metadata tables to be loaded without a
31605         warning. Also update the warning message to give the new constant value.
31606                 
31607 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31609         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31610         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31611         array type representation changes.
31613 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31615         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31616         on Environment.Exit () call.
31618 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31620         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31621         requires a matching corlib.
31623 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31625         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31626           Committed again without the CRs.
31627         
31628 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31630         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31631           getting it from the "this" socket instance. Did not work
31632           if the socket is a subclass of Socket.
31633           Also fixed bug #35371.
31635 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31637         * metadata.c: fixed size for TypedByRef.
31638         * loader.c: when searching for a method, consider the vararg amrker.
31639         * unicode.c, decimal.c: constify some arrays.
31641 2003-07-15  Dick Porter  <dick@ximian.com>
31643         * socket-io.c: Fixed compilation for gcc < 3.2.
31645         Fixed compilation for machines that don't have AF_INET6 (thanks to
31646         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31648         Fixed compile warnings.
31649         
31650         Fixed formatting and line endings.
31652 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31654         * socket-io.h:
31655         * socket-io.c: Added IPv6 support.
31657 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31659         * class.c (mono_class_is_assignable_from): New function to implement
31660         the is_assignable_from logic. Used by mono_object_isinst, 
31661         Type::IsAssignableFrom () and the interpreter.
31663         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31664         Object, even interfaces.
31665         
31666         * object.c (mono_object_isinst): Implement in terms of 
31667         is_assignable_from.
31669         * icall.c (ves_icall_type_is_assignable_from): New icall.
31671 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31673         * domain.c (foreach_domain): fix compiler warning.
31675 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31677         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31678         not available on all plattforms
31680 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31682         * image.h image.c: Store the metadata version string in MonoImage.
31683         * icall.c: New icall to retrieve the image version.
31684         * reflection.c (create_dynamic_image): Fill in the image version field
31685         * reflection.c (build_compressed_metadata): Use the image version
31686         from the image structure.
31688 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31690         * appdomain.c: modified comment.
31691         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31692         That will be its last iteration when mono_gc_cleanup is called from
31693         mono_runtime_cleanup and before the domain is unloaded.
31695         Fixes bug #45962.
31697 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31699         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31700         attributes.
31702 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31704         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31705         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31706         Bernie Solomon <bernard@ugsolutions.com>.
31708 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31710         * object.c, object.h: provide mono_object_new_fast() for faster
31711         allocation in some special cases.
31713 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31715         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31716         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31718 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31720         * threadpool.c: fix leaks.
31722 2003-07-01  Dick Porter  <dick@ximian.com>
31724         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31725         using MonoGHashTables.  Fixes threadpool bug posted to list.
31727 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31729         * image.h, image.c: added support to load an assembly from a byte array.
31730         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31731         assembly bundle support.
31733 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31735         * threadpool.c (mono_thread_pool_add): keep a reference to the
31736         AsyncResult to prevent GC
31738 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31740         * class.c: leak fix.
31742 2003-06-25  Dick Porter  <dick@ximian.com>
31744         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31745         for the async object, the WaitHandle object will close the handle.
31746         Fixes bug 45321.
31748 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31750         * class.c: in mono_array_class_get (), lookup from the hash with the
31751         same type we insert: this works around a bug in
31752         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31753         lluis. The real fix will have to wait for after the release.
31755 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31757         * icall.c: fix memory leak when getting type members.
31759 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31761         * reflection.c: added more pubtoken special cases.
31763 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31765         * class.c: handle field offset correctly when class size
31766         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31768 2003-06-20  Martin Baulig  <martin@ximian.com>
31770         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31771         *image' field.
31773 2003-06-20  Martin Baulig  <martin@ximian.com>
31775         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31777 2003-06-20  Martin Baulig  <martin@ximian.com>
31779         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31780         just distinguish between variables in registers and variables at
31781         an offset relative to a register.
31783 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31785         * icall.c: #ifdef out latest changes until mcs is fixed.
31787 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31789         * icall.c: return members in metadata order.
31791 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31793         * icall.c: avoid infinite loop in GetTimeZoneData.
31795 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31797         * icall.c: added Marshal.Prelink/All icalls.
31799 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31801         * object.c, object.h: fix warnings and do some overflow checking
31802         when creating arrays.
31804 2003-06-17  Dick Porter  <dick@ximian.com>
31806         * file-io.h:
31807         * file-io.c: File attributes need to be tweaked slightly when
31808         passed from the managed to the w32 world.
31810 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31811         * profiler.h profiler-private.h profiler.c: Rework last patch
31812         based on suggestion by Paolo.
31813         
31814 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31816         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31817         instruction level coverage data collection.
31818         * profiler.h profiler.c (: Added new callback function which can be
31819         used by the profiler to limit which functions should have coverage
31820         instrumentation.
31821         * profiler.c (mono_profiler_load): Call g_module_build_path to
31822         generate the file name of the profiler library.
31824 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31826         * profiler.c, profiler.h, profiler-private.h: added basic block 
31827         coverage profiling API.
31829 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31831         * reflection.c (mono_reflection_create_runtime_class): Add support
31832         for events in dynamically generated code.
31834         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31835         not allocated.
31837 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31839         * icall.c: when getting timezone info, return reasonable values if we
31840         can't get the actual data.
31842 2003-06-14  Dick Porter  <dick@ximian.com>
31844         * threads.c (start_wrapper): Remove the reference to the thread
31845         object in the TLS data, so the thread object can be finalized.
31846         This won't be reached if the thread threw an uncaught exception,
31847         so those thread handles will stay referenced :-( (This is due to
31848         missing support for scanning thread-specific data in the Boehm GC
31849         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31851 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31853         * reflection.c: ensure streams and tables are first allocated with
31854         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31856 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31858         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31860 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31862         * reflection.c (mono_reflection_create_runtime_class): Add support for
31863         properties to dynamically created classes.
31864         * reflection.c: Fix a few places where non-MonoObjects were inserted
31865         into the tokens hashtable.
31867 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31869         * object.c: some support to handle out of memory exceptions.
31871 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31873         * marshal.c (mono_marshal_get_native_wrapper): support reference
31874         return types
31876 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31878         * object.h, object.c: more portability stuff from Bernie Solomon.
31879         Unexport mono_object_allocate(). Added mono_object_unbox ().
31880         Set exitcode when an unhandled exception is thrown.
31882 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31884         * marshal.c (mono_marshal_get_native_wrapper): use custom
31885         marshaler for return types.
31887 2003-06-10  Dick Porter  <dick@ximian.com>
31889         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31890         ip_mreq is available
31892 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31894         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31895         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31896         by Bernie Solomon <bernard@ugsolutions.com>.
31898 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31900         * gc.c (mono_gc_init): Avoid error message on shutdown when
31901         GC_DONT_GC=1 is used.
31903         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31904         New icall to return the GUID of a module.
31906 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31908         * class.c: ensure instance size always includes the parent's size
31909         even whem class size is set explicitly (fixes bug#44294).
31911 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31913         * profiler.h, profiler.c: made the simple profiler thread-safe,
31914         get more accurate timing info. Allow the loading of an
31915         externally-developed profiler module.
31917 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31919         * marshal.c (mono_marshal_get_native_wrapper): improved
31920         class/byref arguments.
31921         (mono_marshal_get_native_wrapper): better string marshaling support.
31923 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31925         * class.c: ensure .pack and .size are handled correctly and
31926         simplified layout of static fields.
31928 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31930         * appdomain.c
31931         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31933         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31934         current directory (fix bug 44008)
31936 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31938         * marshal.c (mono_marshal_get_native_wrapper): started support for
31939         custom marshalers.
31940         (mono_delegate_to_ftnptr): consider marshalling specifications
31942 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31944         * reflection.c, reflection.h: emit custom marshal info.
31946 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31948         * object.c: free the GError.
31949         * icall.c: added CloseEvent_internal.
31950         * threads.[ch]:
31951         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31952         call.
31954 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31956         * loader.c (mono_method_get_signature): Add support for dynamic
31957         assemblies.
31959 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31961         * reflection.c: fixed bug #43905.
31963 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31965         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31966         handling TypedReference and ArgIterator.
31967         * loader.c, loader.h: added function to get signature at call site.
31969 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31971         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31972         data readonly. Buglets and warning fixes. Some MethodSpec support.
31974 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31976         * class.h, class.c, object.c: remove relative numbering support.
31978 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31980         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31981         free the string, until we get a chance to fix Gtk#
31983 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31985         * marshal.c: revert last patch.
31987 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31989         * icall.c: updates for new mono_class_vtable() not calling
31990         the type constructor anymore.
31992 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31994         * object.h, object.c: separate vtable creation from type
31995         initialization. Make running the .cctor thread safe.
31997 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31999         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32001 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32003         * loader.c (mono_get_method): consider calling convention
32005 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32007         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32008         to return the invisible global type for a module.
32010         * reflection.c (mono_image_build_metadata): Emit global fields too.
32012 2003-05-20  Peter Williams  <peterw@ximian.com>
32014         * loader.c (mono_lookup_internal_call): Add a few newlines.
32016 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32018         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32019         literal strings.
32021         * appdomain.c (set_domain_search_path): Recalculate search path when
32022         AppDomainSetup.PrivateBinPath changes.
32024         * object.c (mono_class_compute_gc_descriptor): It turns out some
32025         parts of the class libs (like System.Thread) holds pointers to
32026         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32027         to treat native int a pointer type here.
32028         
32029 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32031         * appdomain.h, domain.c: add hashtable for jump target resolution.
32033 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32035         * reflection.h reflection.c icall.c: Added new icalls 
32036         GetManifestResourceInfoInternal, GetModulesInternal and support
32037         infrastructure.
32039 2003-05-16  Dick Porter  <dick@ximian.com>
32041         * icall.c:
32042         * file-io.h:
32043         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32045 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32047         * object.c: mono_store_remote_field: little fix to previous patch.
32049 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32051         * class.c: add constructors to array classes.
32052         * icall.c: special case array construction for InternalInvoke (),
32054 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32056         * class.h class.c reflection.c object.c: Added support for field
32057         defaults in dynamically generated classes.
32059 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32061         * reflection.c: properly encode charset for ddlimport.
32063 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32065         * threads.c: allow compiling without GC.
32067 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32069         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32070         handling of thread static data.
32072 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32074         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32076 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32078         * class.c (mono_array_class_get): always set the serializable flags
32079         (mono_array_class_get): always set the SEALED attribute for array types
32081 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32083         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32084         attributes (fix for bug 42021).
32086 2003-05-12  Dick Porter  <dick@ximian.com>
32088         * gc.c: Don't run finalizers when the finalizer thread is
32089         finishing up, because the default domain has already been
32090         destroyed.
32092 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32094         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32095         value is null, we should throw an exception.   This is slightly
32096         different than the other conventions used for the constructor.
32098 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32100         * socket-io.c: fixed windows build.
32102 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32104         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32106 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32108         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32109         compilers.
32111 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32113         * class.c (mono_class_layout_fields): Add experimental GC aware
32114         auto layout facility. Requires class library changes to work correctly.
32116         (mono_class_setup_vtable): Avoid overriding explicit interface
32117         method implementations. Fixes iface3.exe test.
32119         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32120         object reference.
32121         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32122         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32124         * metadata.h: Add new type classification macro which determines
32125         whenever the type holds an object reference.
32127 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32129         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32131 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32133         * gc.c (finalizer_thread): Work around a GC bug.
32135 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32137         * marshal.c (emit_struct_conv): allow unions
32139         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32141 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32143         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32145 2003-05-06  Martin Baulig  <martin@ximian.com>
32147         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32149 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32151         * socket-io.c:
32152         (Select_internal): allow NULLs, don't create arrays if not needed.
32153         Coupled with Socket.cs changes.
32155         * threadpool.c:
32156         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32157         register a finalizer for it that will close the semaphore handle. This
32158         fixes the leak and make Lupus' test run with > 4080 loops.
32160 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32162         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32163         Jerome Laban (bug #42287)
32165 2003-05-02  Martin Baulig  <martin@ximian.com>
32167         * debug-mono-symfile.h
32168         (MonoSymbolFile): Moved declaration into mono-debug.h.
32169         (MonoDebugMethodJitInfo): Likewise.
32170         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32171         argument.
32172         (_mono_debug_address_from_il_offset): Take a
32173         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32175         * mono-debug.h
32176         (MonoDebugDomainData): New struct.
32177         (mono_debug_get_domain_data): New function.
32178         (mono_debug_add_method): Take an additional `MonoDomain *'
32179         argument.
32180         (mono_debug_source_location_from_address): Likewise.
32181         (mono_debug_il_offset_from_address): Likewise.
32182         (mono_debug_address_from_il_offset): Likewise.
32184 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32186         * reflection.c: one more check for null type in custom attrs.
32188 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32190         * reflection.c: avoid warning (comparison is always false due to limited
32191         range of data type).
32193 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32195         * icall.c: throw an exception in Type.GetField if the argument 'name'
32196         is NULL.
32198 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32200         * reflection.c: fixed handling of enums in named arguments to custom
32201         attributes (bug #42123).
32203 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32205         * reflection.c: use the right array element type and handle
32206         a null for a Type argument, too.
32208 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32210         * reflection.c: handle arrays as arguments to custom attributes.
32212 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32214         * reflection.c: handle a string value in a custom attr
32215         ctor that takes an object.
32217 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32219         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32220         (fix bug #42063)
32222 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32224         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32226 2003-04-27  Martin Baulig  <martin@ximian.com>
32228         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32229         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32230         MONO_DEBUGGER_EVENT_BREAKPOINT.
32231         (mono_breakpoint_trampoline_code): Removed.
32232         (mono_debugger_event_handler): The last argument is now a
32233         `guint32'.
32234         (mono_debugger_insert_breakpoint_full): Removed the
32235         `use_trampoline' argument.
32236         (mono_debugger_method_has_breakpoint): Likewise.
32237         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32238         mono_debugger_breakpoint_callback(); take the method and
32239         breakpoint number as arguments.
32241 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32243         * metadata.c: fix off by one when loading parameters attributes.
32245 2003-04-24  Martin Baulig  <martin@ximian.com>
32247         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32249 2003-04-24  Martin Baulig  <martin@ximian.com>
32251         * mono-debug-debugger.c: Moved all code which interacts with the
32252         Mono Debugger here.
32254         * debug-mono-symfile.c: This code now just deals with the symbol
32255         file itself, the debugger code is now in mono-debug-debugger.c.
32257 2003-04-23  Martin Baulig  <martin@ximian.com>
32259         * mono-debug.c (mono_debug_source_location_from_il_offset):
32260         New method; like mono_debug_source_location_from_address(), but
32261         takes an IL offset instead of a machine address.
32263 2003-04-23  Martin Baulig  <martin@ximian.com>
32265         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32266         `line' field; this is now computed by the debugger.
32268 2003-04-23  Martin Baulig  <martin@ximian.com>
32270         * mono-debug.[ch]: New files.  This is the new debugging interface.
32272         * mono-debug-debugger.[ch]: New files.  Moved all code which
32273         interacts with the Mono Debugger here.
32275 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32277         * domain.c (mono_init): initialize mono_defaults.monitor_class
32279 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32281         * reflection.c (method_encode_code): Add a spicy exception to help
32282         future compiler authors.
32284 2003-04-21  Martin Baulig  <martin@ximian.com>
32286         * icall.c
32287         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32288         Make this work with relative pathnames; g_filename_to_uri() needs
32289         an absolute filename.
32291 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32293         * icall.c: Track name changes in Object and ValueType.
32295 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32297         * metadata.c (mono_type_stack_size): size should be a multiple of
32298         sizeof (gpointer)
32300 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32302         * gc.c:
32303         (internal_domain_finalize): moved into mono_domain_finalize. No need
32304         to create another thread because the finalizers will be run in the
32305         finalizer thread.
32306         
32307         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32308         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32309         to be run (MS does this too).
32311 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32313         * object.c (mono_class_compute_gc_descriptor): Update comment.
32315         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32317         * image.h: Add synchronized wrapper cache.
32319         * image.c (do_mono_image_open): Initialize cache.
32321         * reflection.c (create_dynamic_mono_image): Initialize cache.
32323 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32325         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32326         ves_icall_System_Buffer_ByteLengthInternal.
32328 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32330         * reflection.c: setup klass->nested_in earlier. Allow
32331         a dash in the assembly name.
32333 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32335         * metadata.c (mono_type_to_unmanaged): dont access
32336         type->data.klass for MONO_TYPE_OBJECT
32337         (mono_type_to_unmanaged): consider System.Delegate class
32339 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32341         * class.c: just setup supertypes in the proper place instead of
32342         initializing the full element class for arrays.
32344 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32346         * class.c: ensure the element class of arrays is initialized.
32347         Setup the supertype info for array classes, too.
32349 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32351         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32353 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32355         * Makefile.am: re-added -m option when running cygpath. This way,
32356         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32357         separator.
32358         * mono-config.c: same codepath for locating mono config file for WIN32
32359         and the rest.
32360         * assembly.c: if mono_assembly_setrootdir is called, don't override
32361         the value set.
32363 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32365         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32366         MONO_ASSEMBLIES variable.
32368 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32370         * icall.c: added Assembly::GetNamespaces() icall.
32372 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32374         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32376 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32378         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32379         * object.c: fixed bug in the construction of vtable for proxies
32381 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32383         * object.c (mono_array_new): Mark mono_array_new as an icall.
32385 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32387         * class.c: fixed test for public method when overriding interfaces.
32388         Closes bug #40970.
32390 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32392         * appdomain.h, domain.c: added mono_domain_foreach() to
32393         be able to access the currently loaded appdomains.
32394         * object.c: make string interning work across sppdomains.
32395         Mark some functions for use as icalls.
32397 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32399         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32401         * reflection.h reflection.c: Allocate long living data using 
32402         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32404         * reflection.c: Double the allocation size in streams instead of
32405         increasing it, to prevent unneccesary copying on large assemblies.
32406         
32407         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32408         creation if the assembly does not have the Run flag set.
32410 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32412         * class.h: avoid the C++ keywords in header files (Jerome Laban
32413         spotted and fixed this).
32415 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32417         * object.c:
32418         (mono_unhandled_exception): fill in the arguments for the
32419         UnhandledException event. Only trigger that event for the default
32420         domain (as MS does).
32422 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32424         * object.c: Improve typed allocation stuff based on suggestions from
32425         Paolo. Also turn it on if the GC library supports it.
32427 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32429         * object.c object.h class.h: Added experimental typed allocation
32430         facility using the interfaces in gc_gcj.h.
32432         * os/gc_wrapper.h: Added new include files.
32433         
32434 2003-04-03  Martin Baulig  <martin@ximian.com>
32436         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32437         which is not yet enabled by default.
32439         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32440         functions.
32441         (mono_gc_lock, mono_gc_unlock): New static functions.
32443         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32444         functions; stop/start the world for the garbage collector.  This
32445         is using the windows API; we need to complete the SuspendThread()/
32446         ResumeThread() implementation in the io-layer to make this work on Unix.
32447         (mono_gc_push_all_stacks): New public function; tells the garbage
32448         collector about the stack pointers from all managed threads.
32450 2003-04-03  Martin Baulig  <martin@ximian.com>
32452         * object.h (MonoThread): Added `gpointer stack_ptr'.
32454         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32456 2003-04-03  Martin Baulig  <martin@ximian.com>
32458         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32460 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32462         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32463         field.last.
32465 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32467         * loader.c (mono_lookup_internal_call): Report the corlib that is
32468         out of sync.
32470 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32472         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32473         System.DBNull (it's class not valuetype).
32475 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32477         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32478         if the array method was already assigned a token (fixes bug#40646).
32480 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32482         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32483         if no assembly is given.
32485 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32487         * metadata.h: Added the new tables.
32489         * row-indexes.h: Added definitions for new tables.
32491         * metadata.c: Add schemas for new tables, and add support for
32492         computing the sizes of them.
32494         * class.c: Update for handling the new type cases.
32496 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32498         * metadata.h (MONO_TYPE_IS_VOID): new macro
32500 2003-03-31  Martin Baulig  <martin@ximian.com>
32502         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32504         * threads.c (mono_thread_new_init): Call `thread_created' in the
32505         mono_thread_callbacks.
32507 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32509         * loader.h: added marshalbyrefobject_class to mono_defaults
32510         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32511         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32512           generation of output parameters.
32513           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32514         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32515           contextbound and the target object belongs to the context of the caller.
32516         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32517         * object.c: Implemented support for interfaces and abstract classes
32518           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32519           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32521 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32523         * class.h class.c (mono_class_is_subclass_of): New function.
32524         
32525         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32526         routines for most common case (calls from ArrayList::ToArray).
32528         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32529         routine so programs which call Environment::Exit() can be profiled.
32531         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32532         Added MONO_ARCH_SAVE_REGS.
32534         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32536 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32538         * blob.h: Add a couple of new MonoType types definitions.
32540         * tabledefs.h: Add a couple of new call convs.
32542 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32544         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32545         the layout of the class.
32547         * reflection.c (alloc_table): double the size on overflow to avoid
32548         unnecessary copying.
32550         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32551         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32552         null so it can be garbage collected.
32553         
32554 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32556         * reflection.c (mono_reflection_get_type): Return the resolved type
32557         only if it is in the assembly we searched.
32559         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32561         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32562         method.
32564 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32566         * appdomain.c:
32567         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32568         the right one is 'file:///blah', but MS allows it.
32569         * assembly.c:
32570         (mono_assembly_open): allow 'file://blah'
32572         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32574 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32576         * socket-io.c: fixes bug #40310.
32578 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32580         * reflection.c (mono_reflection_parse_type): handle deeply nested
32581         types correctly.
32583         * reflection.c (mono_image_create_token): Use unique token values
32584         since they will be put into a hash table.
32586         * class.c (mono_class_setup_vtable): If a method occurs in more than
32587         one place in the vtable, and it gets overriden, then change the
32588         other occurances too.
32590         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32591         object as return type.
32593 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32595         * icall.c: Deleted "ToString" implementation for double and float
32596         because they are full implemented in managed code.
32598 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32600         * reflection.c, reflection.h: implemented and exported functions
32601         to retrieve info about custom attributes.
32603 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32605         * appdomain.c: moved Uri handling to assembly.c
32606         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32607         work when using a file Uri in *nix and windows.
32609         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32610         GetReferencedAssemblies.
32612 2003-03-18  Dick Porter  <dick@ximian.com>
32614         * icall.c: Rename a couple of internal calls
32616         * threads.c: Set the thread state to Stopped when a thread exits.
32617         Fixes bug 39377.
32619 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32621         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32622         New icall.
32624         * object.c (mono_class_vtable): fix warning.
32626 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32628         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32630         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32631         memory.
32632         (method_encode_clauses): Create exception info structures in the right
32633         order.
32634         (mono_reflection_setup_internal_class): Initialize supertypes field.
32636         * class.c object.c: Handle interfaces which implement other interfaces 
32637         correctly.
32639         * class.h class.c: Move the supertypes array initialization code into 
32640         a separate function so it can be used for dynamic types too. Also call
32641         it earlier, in mono_class_init(), since it can be used before the
32642         type is initialized.
32644 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32646         * Makefile.am:
32647         * assembly.c:
32648         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32650         * appdomain.c:
32651         * appdomain.h:
32652         * marshal.c:
32653         * object.c: remove warnings.
32655 2003-03-13  Martin Baulig  <martin@ximian.com>
32657         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32658         (MonoDebugLexicalBlockEntry): New types.
32660         * debug-mono-symfile.c
32661         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32663 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32665         * process.c: ret can be any non-zero value accroding to MS doc.
32667 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32669         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32670         fixing a warning for a miss-used prototype, would have cause
32671         random memory corruption.
32673 2003-03-07  Martin Baulig  <martin@ximian.com>
32675         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32676         getting really annoying ....
32678 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32680         * reflection.c (fixup_method): added support for array methods.
32682 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32684         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32685         (pointed out by Michael Adams).
32687 2003-03-04  Dick Porter  <dick@ximian.com>
32689         * icall.c: Temporarily reverted the Double and Single ToString()
32690         change, because it broke nunit.
32692 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32694         * object.h, threads.h: make include files compatible with C++
32695         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32697 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32699         * icall.c: Erased ToString helper functions for Double and Single.
32700         Now, that implementations ar all in managed code (Double and Single
32701         Formatters).
32703 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32705         * appdomain.c: Added method for initializing the default context of
32706         a domain. Added internal call for getting the default context.
32707         * appdomain.h: Added context variable in MonoDomain struct.
32708         * domain.c: mono_domain_set also sets the default context of the domain
32709         * icall.c: Mapped internal method InternalGetDefaultContext.
32710         * object.c: mono_object_get_virtual_method returns always a remoting
32711         wrapper if the object is a transparent proxy.
32712         mono_runtime_invoke_array: when creating an object by calling the
32713         constructor, if the created object is a proxy, then the constructor should
32714         be called using the a remoting wrapper.
32716 2003-03-03  Dick Porter  <dick@ximian.com>
32718         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32719         variable so it compiles on solaris.  Problem spotted by
32720         Christopher Taylor <ct@cs.clemson.edu>
32722 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32724         * appdomain.c:
32725         (get_info_from_assembly_name): don't leak value.
32727         * icall.c:
32728         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32729         result.
32731 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32733         * assembly.c: export mono_image_load_references ().
32734         * class.c: handle function pointers. mono_class_from_name() now
32735         supports nested type names directly.
32737 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32739         * reflection.h reflection.c: Encode already created dynamic methods 
32740         and fields correctly as a DEF instead of a REF.
32742         * reflection.c: Get rid of the force_ref argument to 
32743         mono_image_typedef_or_ref since it was wrong in the first place.
32745         * string-icalls.c: add error checking to string constructors according
32746         to the MSDN docs.
32748         * reflection.c: Emit types in the order their TypeBuilders were 
32749         created. Previously, a new table index was assigned to each type before
32750         the tables were emitted. This was wrong because the signature blob
32751         might already refer to a type by its original table index.
32753 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32755         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32756         change.
32757         
32758 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32760         * Makefile.am: make assemblies dir have \ instead of / on windows.
32762 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32764         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32765         iterate over the NESTEDCLASS table using a linear search since the
32766         table is not guaranteed to be sorted by the secondary key.
32768         * class.c (mono_class_create_from_typedef): fixed up call to
32769         mono_metadata_nesting_typedef.
32770         
32771 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32773         * marshal.c (mono_string_to_byvalstr): clear the memory as
32774         suggested by Jerome Laban <jlaban@wanadoo.fr>
32776 2003-02-26  Dick Porter  <dick@ximian.com>
32778         * process.c: Cope with padding in .rsrc blocks
32780 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32782         * metadata.h: reverted the filter_len change, it breaks reflection
32783         
32784 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32786         * metadata.h: added a new field to store the filter_len
32787         
32789 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32791         * reflection.c: handle custom attributes for types and members
32792         created with Reflection.Emit (bug#38422).
32794 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32796         * reflection.c: define RTSpecialName automatically for constructors for
32797         compatibility with MS.NET.
32799         * reflection.c (mono_reflection_create_runtime_class): initialize
32800         nested_in field of dynamically created classes.
32802 2003-02-22  Martin Baulig  <martin@ximian.com>
32804         * debug-mono-symfile.h: Incremented version number.
32806 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32808         * object.h icall.c process.c: fix warnings.
32810 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32812         * appdomain.h appdomain.c:
32813         (mono_domain_try_type_resolve): split the 
32814         name_or_tb argument into a name and a tb argument.
32815         (mono_domain_has_type_resolve): new function to check whenever the
32816         application has registered a TypeResolve event handler.
32817         
32818         * icall.c reflection.h reflection.c: move the type resolve logic into
32819         mono_reflection_get_type () so it will be invoked when 
32820         Assembly::GetType () is called.
32822         * reflection.c:
32823         (mono_reflection_get_type): renamed to get_type_internal.
32824         (mono_reflection_get_type): fixed type name generation so it works 
32825         for nested types too.
32826         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32827         costly type name generation if there is no resolve event handler.
32829 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32831         * class.c, image.c: load exported types from file references.
32833 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32835         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32836           used to cache the managed methods used to create proxies and make 
32837           remote invocation of methods.
32838         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32839           to be remotely created.
32840         * object.c: Modified the method mono_class_vtable(). It now initializes 
32841           the remote flag of the vtable. Modified mono_object_new_specific(), 
32842           so now it checks the remote flag.
32843         * icall.c: Added a couple of internal methods, one for enabling instance 
32844           creation interception for a type, and one for creating objects bypassing
32845           the remote check.
32847 2003-02-18  Martin Baulig  <martin@ximian.com>
32849         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32850         New interncall to get a method's metadata token.
32852         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32853         New interncall for the debugger.
32855 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32857         * class.c (mono_class_setup_vtable): allocate supertype array
32859 2003-02-18  Martin Baulig  <martin@ximian.com>
32861         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32863 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32865         * reflection.c:
32866         (assembly_name_to_aname): jump over unknown properties (i've found
32867         something like: 'type, assembly, version=xxx, custom=null, public...',
32868         so now will ignore custom=null and still get the rest of the values).
32870 2003-02-17  Dick Porter  <dick@ximian.com>
32872         * threads.c: Have Thread.Start() wait for a semaphore to signal
32873         that the thread has set up all its local data.  This fixes bug
32874         34323, where Abort() raced the new thread's TLS data.
32876         Also removes the handle_store() call from start_wrapper, because
32877         threads are now always created suspended and there is no longer a
32878         race between the parent and child threads to store the info.
32880 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32882         * image.c: explain the #- heap issue in a message, hopefully
32883         avoiding FAQs on mono-list.
32885 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32887         * icall.c:
32888         (GetEntryAssembly): if the domain has not invoked
32889         AppDomain.ExecuteAssembly yet, return the assembly of the default
32890         AppDomain.
32892 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32894         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32896 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32898         * metadata.c, reflection.c: simple speedup to type hash
32899         and equals code.
32901 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32903         * image.c, image.h, class.c, assembly.c: move module loading
32904         to MonoImage. When loading metadata, consider alignemnet from
32905         the start of metadata, not from the metadata address in memory.
32907 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32909         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32910         AssemblyBuilder objects. Factored out custom attribute creation into
32911         a separate function.
32912         (create_custom_attr): new function to create custom attributes.
32914 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32916         * Makefile.am: Got tired of typing the full pathname to pedump.
32917         Until there is another option, am installing this.
32919 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32921         * class.c (class_compute_field_layout): always set field->parent 
32922         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32924 2003-02-11  Dick Porter  <dick@ximian.com>
32926         * threads-types.h:
32927         * monitor.c: Rewrote Monitor, making lock much faster and
32928         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32929         creates them as needed.
32931         * exception.c: Added SynchronizationLockException
32933         * threads.c: Deleted old Monitor implementation.  The new one is
32934         in a new file.
32936 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32938         * class.c: handled TypedReference type code. Set the correct size for
32939         class data. Setup interface_offsets for interface classes, too.
32941 2003-02-09  Martin Baulig  <martin@ximian.com>
32943         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32945 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32947         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32948         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32949         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32950         * verify.c: check for code that runs after the end of the method.
32952 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32954         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32955         "System.Math::Round2".
32956         * sysmath.h: Added Floor, Round and Round2 definitions.
32957         * sysmath.c: Modified certain functions that were not 100% compliant
32958         with MS.NET (math precision) and added the implementation of Floor,
32959         Round and Round2.
32961 2003-02-07  Martin Baulig  <martin@ximian.com>
32963         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32965 2003-02-07  Martin Baulig  <martin@ximian.com>
32967         * debug-mono-symfile.c: Reflected latest symwriter changes.
32968         (mono_debug_create_mono_symbol_file): Removed.
32969         (mono_debug_open_mono_symbol_file): Take an argument which
32970         specifies whether to create a dynamic symbol file.
32972 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32974         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32976 2003-02-05  Martin Baulig  <martin@ximian.com>
32978         * reflection.c (mono_image_build_metadata): Make this public,
32979         protect it against being called multiple times, don't create
32980         resources and don't build the compressed metadata here.
32981         (mono_image_create_pefile): Do this here.
32983         * icall.c
32984         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32986 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32988         * socket-io.c: fixed bug #36322.
32990 2003-02-06  Piers Haken <piersh@friskit.com>
32992         * appdomain.[ch]:
32993         * class.h:
32994         * debug-mono-symfile.c:
32995         * icall.c:
32996         * loader.c:
32997         * mono-config.c:
32998         * monosn.c:
32999         * reflection.c:
33000         * socket-io.c: warning cleanups
33002 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33004         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33005         function. works like remoting invoke, but does a check for the Proxy first.
33007 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33009         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33011 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33013         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33014         array of pointers.
33015         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33016         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33018         * object.c (mono_store_remote_field_new): used by the new jit
33019         instead of mono_store_remote_field
33020         (mono_load_remote_field_new): used by the new jit
33021         instead of mono_load_remote_field
33023 2003-02-05  Patrik Torstensson
33025         * appdomain.c: changed unload to take the domain id instead
33026         of domain
33027         
33028         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33031 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33033         * appdomain.c: don't look for assemblies in ApplicationBase if
33034         PrivateBinPathProbe is set.
33036 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33038         * object.c: make the first argument in main_args contain the absolute
33039         path to the assembly. Fixes bug #37511.
33041 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33043         * icall.c: get correct UTC offset for countries not using daylight
33044         time saving. Fixes bug #30030.
33046 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33048         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33049         and 1 are the family).
33051 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33053         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33055         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33057 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33059         * reflection.c: added support for SignatureHelper tokens, which is
33060         needed by the Calli opcode.
33062         * reflection.h: track changes to SignatureHelper class.
33064         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33066 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33068         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33070 2003-02-03  Patrik Torstensson
33071         * appdomain.[c|h], domain.c : 
33072          - Added support for getting a domain via domain id
33073          - Support for setting and getting domain from System.AppDomain 
33074            (used in cross appdomain channel)
33075          - Added support for get/set for a MonoAppContext on a thread 
33076            (Context class in System.Runtime.Remoting.Contexts),
33077          - Removed hack in Get/SetData and ExecuteAssembly.
33078         
33079         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33080         the managed world to get control when a proxy is created.
33082         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33083         
33084 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33086         * icall.c
33087         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33088         Populate the codebase field as well.
33090 2003-02-02  Martin Baulig  <martin@ximian.com>
33092         * debug-mono-symfile.c
33093         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33094         (mono_debug_symfile_add_method): Allow interncalls.
33096 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33098         * icall.c: throw parse exception if strtod fails or the string is empty.
33100 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33102         * marshal.c: handle object type separately from defined
33103         class types.
33105 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33107         * marshal.c: handle NATIVE_LPSTR for strings when it's
33108         explicitly specified.
33110 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33112         * reflection.c, reflection.h, icall.c: setup the reflection
33113         handle cache for ModuleBuilders and AssemblyBuilders.
33115 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33117         * reflection.c (reflection_methodbuilder_to_mono_method): set
33118         pinvoke flag
33120 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33122         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33124 2003-01-29  Dick Porter  <dick@ximian.com>
33126         * threads.c: No need for the fake_thread kludge now that Thread
33127         doesn't run a class constructor
33128         
33129 2003-01-29  Dick Porter  <dick@ximian.com>
33131         * threads.c: Use g_direct_hash instead of the rather bogus
33132         g_int_hash
33134 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33136         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33137         (fix pinvoke12.exe)
33138         (mono_marshal_get_struct_to_ptr): generate valid IL code
33139         (mono_marshal_get_ptr_to_struct): generate valid IL code
33140         (*): correctly set sig->pinvoke, we need to memdup the signature
33141         to do that
33143 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33145         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33146         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33148 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33150         * profiler.c: provide more callers information.
33152 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33154         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33156         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33158         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33160 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33162         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33163         exception instead of going into an infinite loop on dates which it 
33164         can't yet handle.
33166         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33167         out-of-range exception if needed.
33169         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33170         an implementation for an interface method and to override an inherited
33171         method at the same time. 
33172         Imagine a scenario when a virtual method is used to override a
33173         virtual abstract method in a parent class, and this same method 
33174         provides an implementation for an method inherited from an interface. 
33175         In this case, the interface resolution code will set im->slot, which 
33176         means that the virtual method override pass will skip this method 
33177         which means a pointer to the abstract method inherited from the parent
33178         will remain in the vtable of this non-abstract class.
33180         * class.c: (mono_class_setup_vtable): continue search for a real 
33181         method if only an abstract method is found.     
33183 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33185         * reflection.c: add size to encoding for ByValStr and ByValArray
33186         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33188 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33190         * class.c (mono_class_setup_vtable): pass the override info as an
33191         argument.
33193         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33194         correctly.
33195         
33196         * reflection.c (ensure_runtime_vtable); add support for method 
33197         overrides.
33198         
33199 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33201         * reflection.c (resolution_scope_from_image): Hack to work to work with
33202         dynamic assemblies.
33204         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33205         added a 'force_ref' argument to force this function to allways return 
33206         a TypeRef. This is needed by mono_image_get_memberref_token ().
33207         
33208 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33210         * reflection.c (mono_image_get_type_info): interfaces really don't have
33211         a parent.
33213         * reflection.c (mono_image_basic_init): fill out missing fields of
33214         image structure.
33216         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33217         dynamic assemblies. This is required so dynamic assemblies show up in
33218         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33219         Type::GetType() etc. This is consistent with MS behaviour.
33221         * image.c image.h reflection.c: add newly created classes to the name 
33222         cache so mono_class_get () will find them.      
33224 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33226         First part of changes to get IKVM.NET running under mono.
33227         
33228         * appdomain.h, appdomain.c: added new function 
33229         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33230         This function will call AppDomain::DoTypeResolve to do the actual work.
33232         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33233         moved existing code dealing with dynamic tokens to a new function 
33234         called mono_reflection_lookup_dynamic_token (). This function will 
33235         raise TypeResolve events when appropriate. Since reflection.c is not 
33236         part of libmetadata, a new hook function called 
33237         mono_lookup_dynamic_token() is added to class.c which will call this.
33239         * assembly.h assembly.c: make the invoke_load_hook function public,
33240         so it can be called for dynamic assemblies.
33242         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33244         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33245         type isn't found.
33247         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33248         MonoGHashTable, since it contains pointers to objects which the GC 
33249         needs to track.
33251         * assembly.c (search_loaded): remove unused variable.
33252         
33253 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33255         * object.c: fixed issue exposed by gcc-generated IL programs
33256         that use RVA data for pointers.
33258 2003-01-25  Martin Baulig  <martin@ximian.com>
33260         * threads.c (start_wrapper): Moved the initialization of
33261         `start_func' above the mono_new_thread_init() call to which we
33262         pass it as argument.
33264 2003-01-24  Martin Baulig  <martin@ximian.com>
33266         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33267         the MonoThread pointer.
33269 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33271         * icall.c: Rename `PowImpl' to Pow.
33273 2003-01-23  Dick Porter  <dick@ximian.com>
33275         * threads.c (start_wrapper): Create a Thread object if needed, so
33276         the Main() thread can do the class initialisation in a subthread
33277         that has been set up to allow managed code execution.
33279         Pass the thread ID instead of the MonoThread pointer to the thread
33280         start and attach callbacks.  This change is required, because the
33281         jit thread start callback must be called _before_ the Thread
33282         object can be created.
33283         
33284         (mono_thread_init): Removed much object creation code that is no
33285         longer needed.  No managed code is called from here now.
33287         * object.c (mono_runtime_exec_managed_code): Create a subthread
33288         for Main, and call back to the runtime to use it.
33289         Set the exit code when Main exits.
33291         * gc.c: Make sure domain finalisation happens in a subthread.
33292         Re-enable threaded GC, fixing bug 31333 (again).
33294         * environment.c: System.Environment internall calls (so far just
33295         ExitCode is here, the others are still in icall.c)
33297         * appdomain.c (mono_runtime_cleanup): All threads running managed
33298         code should have finished before mono_runtime_cleanup() is
33299         reached, so no need to clean up threads.
33301 2003-01-22  Martin Baulig  <martin@ximian.com>
33303         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33304         `gpointer func' arguments.      
33305         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33306         but added `MonoThread *thread' argument.
33307         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33309         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33310         and pass it to the mono_thread_start_cb callback.
33311         (mono_install_thread_callbacks): New public function to install a
33312         set of callbacks which are set by the debugger.
33313         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33315 2003-01-22  Martin Baulig  <martin@ximian.com>
33317         * Makefile.am: Install debug-mono-symfile.h.
33319 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33321         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33323 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33325         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33326         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33327         (mono_array_class_get): correctly set access levels of arrays
33329 2003-01-20      Patrik Torstensson
33330         * image.h (MonoAssemblyName): changed major, minor, build, revision
33331         from signed to unsigned.
33333 2003-01-20  sean kasun <skasun@azstarnet.com>
33335         * reflection.c (load_cattr_value): Now this handles
33336         MONO_TYPE_SZARRAY.  Fixes bug #35629
33338 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33340         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33341         integer value
33343 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33345         * decimal.c: fixed bug #26056.
33347 2003-01-17  Martin Baulig  <martin@ximian.com>
33349         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33351 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33353         * exception.[ch]:
33354         (mono_get_exception_type_initialization): new function.
33356         * object.c: throw a TypeInitializationException when an exception is
33357         thrown invoking the class constructor.
33359 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33361         * reflection.c: fixed attribute reading.
33363 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33365         * icall.c:
33366         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33367         provided, look for the type in the calling assembly and then in
33368         mscorlib; if the assembly name is provided, only try that one.
33370 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33372         * object.c: register the vtable before there is a chance it's
33373         queried again recursively.
33375 2003-01-13  Duncan Mak  <duncan@ximian.com>
33377         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33378         gc-internal.h. 
33379         
33380 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33382         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33384 2003-01-11  Martin Baulig  <martin@ximian.com>
33386         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33387         this to 20 for the release.
33389 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33391         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33393         * loader.c (mono_method_get_marshal_info): bug fix
33395         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33396         structures with explicit layout
33398 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33400         * profiler.c: made the output more readable (and sorted). 
33401         Added caller information for the allocation profiler.
33403 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33405         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33407 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33409         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33410         to get value types.
33411         
33412 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33414         * object.c, profiler.h, profiler.c, profiler-private.h:
33415         Added object allocation profiler.
33417 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33419         * reflection.h, reflection.c: handle global methods.
33420         Compress blob entries.
33422 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33424         * marshal.c: fix compilation.
33426 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33428         * loader.c (mono_method_get_marshal_info): impl.
33430         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33432 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33434         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33435         for reference types.
33437 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33439         * loader.c: fixed off by one error in loaded parameter names.
33441 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33443         * marshal.c (mono_marshal_get_icall_wrapper): like
33444         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33445         instead of a MonoMethod.
33447 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33449         * decimal.c: fixed bug #36537.
33451 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33453         * marshal.c: throw a missing method exception if a
33454         P/Invoke method is not found.
33456 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33458         * icall.c: allow a null this for constructors.
33460 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33462         * icall.c: raise the proper exceptions if the arguments to the
33463         internal Invoke are incorrect.
33465 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33467         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33469 2003-01-03  Martin Baulig  <martin@ximian.com>
33471         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33473 2002-12-31  Martin Baulig  <martin@ximian.com>
33475         * debug-mono-symfile.c: Completely rewrote the type section.
33476         Instead of using individual malloc()ed fields, we use one big
33477         continuous memory area and offsets into this area.
33478         See the comments in the source code for details.
33480 2002-12-30  Martin Baulig  <martin@ximian.com>
33482         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33484 2002-12-30  Martin Baulig  <martin@ximian.com>
33486         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33487         line number table in this data blob instead of using an external
33488         pointer.
33490 2002-12-28  Martin Baulig  <martin@ximian.com>
33492         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33494 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33496         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33497         as a boxed return type.
33499 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33501         * appdomain.c
33502         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33503         g_build_filename to properly get separators on the filename created.
33505         * object.h: Small change, introduce MonoMarshalByRefObject to
33506         track the layout of that structure in the C# universe as we make
33507         changes there.
33509 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33511         * object.c: removed assert to allow static fields on interfaces.
33512         * loader.c: a TypeSpec may be used for any type, not just arrays.
33514 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33516         * class.c, class.h: added mono_class_array_element_size ().
33517         Ignore static methods in interfaces.
33519 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33521         * threads.c: fixed the build under cygwin.
33523 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33525         * reflection.c: handle nullref constants. Allocate keys for
33526         reflection handles with the GC.
33528 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33530         * threads.c, threads.h: added mono_thread_get_abort_signal()
33531         to get a suitable signal for thread abort.
33533 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33535         * metadata.c: fix handling of ExportedType table.
33537 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33539         * icall.c: added WriteWindowsDebugString internal call.
33541 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33543         * reflection.h: added fields to match C# implementation.
33545 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33547         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33549 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33551         * gc.h, gc-internal.h: Rename header for GC internal calls to
33552         gc-internal.h from gc.h as to not clash with Boehm GC having its
33553         header installed as <gc.h> in outside include paths.
33554         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33555         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33557 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33559         * icall.c: assign minor, build and revision in FillName.
33561 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33563         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33564         Added support for running code generated by Reflection.Emit.
33566 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33568         * appdomain.c: check for NULL argument in LoadFrom.
33570 2002-12-10  Dick Porter  <dick@ximian.com>
33572         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33574 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33576         * appdomain.c: fix buglet when building exe file name.  Handle full
33577         assembly name (needed after latest changes to AssemblyName).
33578         * image.c:
33579         (mono_image_close): free some hashtables.
33581 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33583         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33584         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33585         on some systems (redhat 7.3) 
33587 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33589         * threads.c: delete the critical section of a sync block,
33590         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33592 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33594         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33596 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33598         * appdomain.[ch]: handle the assembly preload event to try loading the
33599         assemblies using the paths we have in the current domain.
33601         * assembly.[ch]: created an assembly preload hook that is called to try
33602         loading the assembly by other means that the ones provided here.
33604         * domain.c: initialize the domain search path.
33606         From now on, assemblies (TODO: except corlib and System) are loaded
33607         according to these rules when using mono_assembly_load ():
33609                 1. It tries to load the assembly from the ApplicationBase
33610                 of the current domain appending .dll and .exe (TODO: have to
33611                 try loading from name/name.dll and name/name.exe).
33613                 2. It tries the search path specified in PrivateBinPath for the
33614                 current domain (if any).
33616                 3. Previous behavior.
33618 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33620         * icall.c: implemented GetInterfaceMap() related icall.
33621         * domain.c, loader.h: load MethodInfo in mono_defaults.
33623 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33625         * gc.c: disable the finalizer thread for now, untill all the issues
33626         with it are resolved.
33628 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33630         * string-icalls.c: handle embedded nulls in string ctor when the
33631         length is specified.
33633 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33635         * class.c: look for explicit interface implementation in parent
33636         classes, too.
33638 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33640         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33642 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33644         * gc.c: protect handles with a critical section.
33646 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33648         * icall.c:
33649         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33650         parameters. If no assembly specified, try getting the type from all
33651         the assemblies in the current domain, else, load the assembly and get
33652         the type from it.
33654 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33656         * marshal.c: applied patch from Aleksey Demakov that fixes
33657         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33659 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33661         * icall.c: fixed get_location.
33663 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33665         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33666         declarations to make it work with older gcc. 
33668         * loader.c (mono_get_method): set signature->pinvoke for native calls
33670 2002-11-20  Dick Porter  <dick@ximian.com>
33672         * threads.c (mono_thread_init): Set the main thread's handle
33674 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33676         * gc.c: allow compilation without GC support. Changed to match the
33677         mono coding style.
33679 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33681         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33683 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33685         * reflection.c: set a public key token on the core assemblies.
33687 2002-11-18  Dick Porter  <dick@ximian.com>
33689         * threads.c: Split out some thread initialisation so that other
33690         files can set the start callback function.
33692         * gc.c: Run finalisers in a separate thread, to avoid stack
33693         overflow.  Fixes bug 31333.
33695         * appdomain.c: Set up GC finalisation thread.
33697         * reflection.c: 
33698         * object.c: 
33699         * domain.c: Use gc.h macros for GC_malloc
33700         
33701 2002-11-15  Dick Porter  <dick@ximian.com>
33703         * threadpool.c: 
33704         * threads.c:
33705         * appdomain.c: Removed mono_runtime_init_with_attach(),
33706         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33707         merging the extra parameter with the existing function.  Removed
33708         unneeded code in mono_thread_attach().
33710 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33712         * image.c (mono_image_loaded_by_guid): a method to get loaded
33713         images by guid. 
33714         (load_metadata_ptrs): we store the guid as string.
33716 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33718         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33720         * metadata.c (mono_guid_to_string): imported method form Zoltan
33721         Varga (slightly modified)
33723         * assembly.c (mono_assembly_open): load precompiled code
33725         * loader.h (MonoMethod): we store the method token for use in the
33726         aot compiler. 
33728 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33730         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33731         the hook function called when an assembly is loaded.
33732         
33733         * domain.c: Modified file.
33734         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33736         Fixes bug #33196.
33738 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33740         * reflection.c: Map PEFileKind to the value expected by the WinNT
33741         image loader. 
33743 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33745         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33746         Read until the buffer is filled completely.
33748 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33750         * icall.c: implemented MonoType.InternalGetEvent ().
33752 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33754         * appdomain.c: implemented InitAppDomainSetup. Delayed
33755         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33756         the entry_assembly.
33758         * assembly.c: base_dir is now an absolute path ending with
33759         G_DIR_SEPARATOR.
33761         * icall.c: modified get_location according to the above changes.
33763         * object.c: init AppDomain.SetupInformation for the default domain after
33764         we have the entry assembly.
33766         * domain.c: when unloading a domain, setup = NULL.
33768 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33770         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33772 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33774         * object.h, object.c: introduced mono_object_get_virtual_method ()
33775         to lookup the method invoked on an object when a callvirt is done on
33776         a method.
33777         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33779 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33781         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33782         current domain when loaded an assembly and failed to load it.
33784         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33786 2002-10-31  Dick Porter  <dick@ximian.com>
33788         * icall.c: 
33789         * file-io.h: 
33790         * file-io.c: Return the error status in a parameter, as the
33791         GetLastError() value has long since been blown away if we try and
33792         look it up in a subsequent internal call invocation.  Delete the
33793         GetLastError() internal call, because it's useless.
33795 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33797         * class.[ch]: added cast_class to fix bug 29517
33799 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33801         * marshal.c: create valid IL code in the filter clause:
33802         the new JIT is less forgiving:-)
33804 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33806         * icall.c: removed get_property internal call.
33808 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33810         * appdomain.h domain.c: Added an ID to appdomains.
33811         
33812         * threads.c threads.h icall.c: Implement icall
33813         Thread:GetDomainID(), and remove unused icall 
33814         CurrentThreadDomain_internal.
33816 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33818         * icall.c: Don't recurse through the base types in GetConstructor.
33819         Fixes bug #32063. 
33821 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33823         * mempool.h, mempool.c: added mono_mempool_empty() and
33824         mono_mempool_stats().
33826 2002-10-23  Dick Porter  <dick@ximian.com>
33828         * file-io.c: 
33829         * file-io.h: 
33830         * icall.c: Added MonoIO.GetFileType internal call
33832 2002-10-17  Dick Porter  <dick@ximian.com>
33834         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33835         delegate semaphore before waiting for all threads to finish,
33836         because new threads can also call async delegates.  Fixes bug
33837         32004.
33839         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33840         of 3 seconds, in case another async job is queued.  (This part is
33841         needed because the bug fix reintroduced the 3s exit lag.)  This
33842         makes the mono_runtime_shutdown flag superfluous.
33844 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33846         * reflection.c: include ehader size in method section headers.
33847         Really check for suplicated modules entries.
33849 2002-10-17  Martin Baulig  <martin@gnome.org>
33851         * debug-mono-symfile.c: Added back support for locals.
33853 2002-10-14  Martin Baulig  <martin@gnome.org>
33855         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33856         MONO_TYPE_VOID.
33858 2002-10-14  Martin Baulig  <martin@gnome.org>
33860         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33861         mono_class_get() instead of looking in the class cache. 
33863 2002-10-13  Martin Baulig  <martin@gnome.org>
33865         * debug-mono-symfile.c: Set version number to 28, include the
33866         signature in method names.
33868 2002-10-13  Martin Baulig  <martin@gnome.org>
33870         * debug-mono-symfile.h: Set version number to 27.
33872 2002-10-11  Martin Baulig  <martin@gnome.org>
33874         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33876 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33878         * metadata.c, metadata.h: added helper function to allocate signatures.
33880 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33882         * icall.c: added internal call to get the location of machine.config.
33884 2002-10-08  Martin Baulig  <martin@gnome.org>
33886         * debug-mono-symfile.c: Ignore classes with a pending init for the
33887         moment.
33889 2002-10-03  Dick Porter  <dick@ximian.com>
33891         * threads.c: Freebsd pthread_t is a pointer
33893 2002-10-03  Dick Porter  <dick@ximian.com>
33895         * socket-io.c: Implemented GetHostName_internal
33897 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33899         * mono-config.c:
33900         (mono_config_parse_file): don't leak the text.
33902 2002-10-02  Martin Baulig  <martin@gnome.org>
33904         * debug-mono-symfile.c: Added support for methods.
33906 2002-10-01  Martin Baulig  <martin@gnome.org>
33908         * debug-mono-symfile.c: Don't emit methods and line numbers for
33909         the dynamic symbol file, just write the type table.  We can easily
33910         have an external helper program which creates a symbol file for an
33911         IL file.        
33913 2002-10-01  Dick Porter  <dick@ximian.com>
33915         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33916         Only add the handle to the cleanup array when we're about to
33917         launch the thread.  Bug 31425 deadlocked when the test was run on
33918         mono under w32.
33920 2002-10-01  Martin Baulig  <martin@gnome.org>
33922         * debug-mono-symfile.c: Added support for properties.
33924 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33926         * reflection.c: unaligned store fix from Mark Crichton
33927         <crichton@gimp.org>.
33929 2002-09-27  Martin Baulig  <martin@gnome.org>
33931         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33932         New interncall.
33934 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33936         * assembly.h, assembly.c: use a sane API to hook into the assembly
33937         loading process instead of a useless special-purpouse hack
33938         (ngen needs a hook, too, for example).
33940 2002-09-27  Dick Porter  <dick@ximian.com>
33942         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33943         io-layer can set up some process handle info.  Not needed on w32,
33944         but doesn't hurt either.
33946         * process.c: Pass the program name in the second parameter to
33947         CreateProcess, so the path is searched.  Include the working
33948         directory. Implemented process name, process enumeration, and some
33949         process detail internal calls.
33950         
33951         * icall.c: Added internal calls for process lookup, and some
33952         process details
33954 2002-09-26  Martin Baulig  <martin@gnome.org>
33956         * assembly.c (mono_install_open_assembly_hook): New global
33957         function to install a function to be invoked each time a new
33958         assembly is loaded.
33959         (mono_assembly_open): Run this callback function if set.
33961         * debug-mono-symfile.c: Put back line numbers for the dynamic
33962         symbol file and also record the .il file as source file.  This
33963         allows us to install the temporary symbol file as `file.dbg' just
33964         like a compiler-generated one.
33966 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33968         * Corrected typo in gc.c (BOHEM vs BOEHM).
33970 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33972         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33973         GetProperties. Also avoid calling g_slist_length in GetProperties and
33974         GetMethods.
33976 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33978         * reflection.c: avoid unaligned stores (bug spotted by
33979         Mark Crichton  <crichton@gimp.org>).
33981 2002-09-25  Martin Baulig  <martin@gnome.org>
33983         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33984         instead of guint64 for addresses and added prologue/epilogue info.
33986 2002-09-25  Martin Baulig  <martin@gnome.org>
33988         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33989         store line number info.  For the dynamic symbol file, we only need
33990         to provide the JIT generated dynamic line number info for the dynamic
33991         symbol file.
33993 2002-09-25  Martin Baulig  <martin@gnome.org>
33995         * debug-mono-symfile.h: Incremented version number.
33997 2002-09-24  Martin Baulig  <martin@gnome.org>
33999         * class.c (mono_debugger_class_init_func): New global function
34000         pointer variable.
34001         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34002         call it.
34004         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34005         function.  This is called via the mono_debugger_class_init_func
34006         hook to add all types to the dynamic type table.
34007         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34008         from its metadata token.
34010         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34011         New interncall for the debugger.
34013 2002-09-24  Nick Drochak <ndrochak@gol.com>
34015         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34016         before using it in case it is null.
34017         
34018 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34020         * metadata.c: allow custom modifiers in local var signatures
34021         (bug spotted by Zoltan Varga).
34023 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34025         * class.c: deal with the <Module> class that may have a NULL vtable.
34026         Eliminate warnings.
34028 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34030         * image.c, image.h: more strong name helpers.
34031         * monosn.c: more work: convert pem keys to cryptoapi format.
34033 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34035         * string-icalls.c: speedup IndexOf.
34037 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34039         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34041 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34043         * icall.c: cleanup: use mono_object_domain ().
34045 2002-09-23  Martin Baulig  <martin@gnome.org>
34047         * debug-mono-symfile.c: Improved type support.
34049 2002-09-22  Martin Baulig  <martin@gnome.org>
34051         * debug-mono-symfile.c: Added support for reference types and strings.
34053 2002-09-22  Martin Baulig  <martin@gnome.org>
34055         * debug-mono-symfile.c: Started to work on the type table.
34057 2002-09-21  Martin Baulig  <martin@gnome.org>
34059         * debug-mono-symfile.c: Largely reworked the symbol table format.
34060         The symbol table is now incrementally updated each time a new
34061         method is added.  We're now also using our own magic and version
34062         so that you don't need to recompile all your classes if the
34063         dynamic table changes.
34064         (mono_debug_update_mono_symbol_file): Removed.
34065         (mono_debug_symfile_add_method): New function to add a method.
34067 2002-09-21  Martin Baulig  <martin@gnome.org>
34069         * icall.c
34070         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34071         New interncall.
34073         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34074         New interncall to get a method from its metadata token.
34076 2002-09-21  Martin Baulig  <martin@gnome.org>
34078         * debug-mono-symfile.c: Create type table.
34080 2002-09-20  Martin Baulig  <martin@gnome.org>
34082         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34084 2002-09-20  Martin Baulig  <martin@gnome.org>
34086         * debug-mono-symfile.c: Provide information about params and locals.
34088 2002-09-20  Martin Baulig  <martin@gnome.org>
34090         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34091         New interncall.
34093         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34094         interncall to get a method from its metadata token.
34096 2002-09-20  Martin Baulig  <martin@gnome.org>
34098         * debug-mono-symfile.c: Added a few checks for method->header
34099         being non-NULL.  This should never happen, but for the moment
34100         let's use a g_warning() rather than a g_assert().
34102 2002-09-19  Mark Crichton  <crichton@gimp.org>
34104         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34105         even if support for it isn't present.  Added an #ifdef to fix this.
34107         * socket-io.c: Added checks back for Solaris support.
34109 2002-09-19  Martin Baulig  <martin@gnome.org>
34111         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34112         changes in the symbol file format.
34114 2002-09-18  Martin Baulig  <martin@gnome.org>
34116         * debug-mono-symfile.c: Set version number to 21.
34118 2002-09-18  Dick Porter  <dick@ximian.com>
34120         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34121         on netbsd.  Fixes bug 30051.
34123 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34125         * reflection.c:
34126         (set_version_from_string): little fix.
34128 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34130         * monosn.c, Makefile.am: added strong name utility.
34131         * reflection.h, reflection.c: implemented delayed signing,
34132         locale, version and hash id assembly attributes.
34134 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34136         * loader.c, metadata.c: load param attributes in signatures.
34138 2002-09-16  Martin Baulig  <martin@gnome.org>
34140         * debug-mono-symfile.c: Added string table with all method names.
34142 2002-09-14  Martin Baulig  <martin@gnome.org>
34144         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34145         fast method lookup.
34147 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34149         * reflection.c: record the public key token of referenced assemblies.
34151 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34153         * image.c, image.h: added functions to get the strong name and the
34154         public key of an assembly.
34155         * pedump.c: use them.
34157 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34159         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34161 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34163         * marshal.c (mono_marshal_get_managed_wrapper): Added
34164         MONO_TYPE_BOOLEAN 
34166 2002-09-11  Martin Baulig  <martin@gnome.org>
34168         * gc.c: Call GC_unregister_disappearing_link() on all links when
34169         finalizing them, this is necessary to aviod a crash in boehm's
34170         finalize handler.
34172 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34174         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34175         nick@chemlab.org.
34177 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34179         * icall.c: implemented MonoType::Module.
34180         * reflection.c, reflection.h: mono_module_get_object () from
34181         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34183 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34185         * icall.c: ignore overridden methods in GetMethods ().
34186         Fix for FieldInfo::SetValue().
34187         * object.c: handle float/double in runtime invoke.
34189 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34191         * object.c: allow a constructor to be called again on an object.
34193 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34195         * class.h, class.c: move field layout code to it's own function and
34196         export it. Get an interface id earlier. Move fields in MonoClass
34197         so they are more cache friendly and align the bitfields.
34198         * loader.c: temporary handle get_param_names() for a runtime method.
34199         * reflection.c, reflection.h: more code to handle runtime creation of
34200         types.
34202 2002-09-09  Martin Baulig  <martin@gnome.org>
34204         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34205         signature with the pinvoke field being set for the actual call.
34207 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34209         * icall.c: removed some unused icalls. Start of map of glib charsets
34210         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34212 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34214         * debug-helpers.c: break infinite loop (found and fixed by
34215         Holger Arnold <harnold@gmx.de>).
34217 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34219         * icall.c: target may be null in create_delegate.
34221 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34223         * marshal.c: handle a boolean return type.
34225 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34227         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34229 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34231         * gc.c: fix weakreferences.
34233 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34235         * icall.c: added icall to get default codepage.
34237 2002-09-03  Dick Porter  <dick@ximian.com>
34239         * threads.h: 
34240         * threads.c: Use MonoThread instead of MonoObject where
34241         apropriate.
34243         Store running thread objects in a hash table, so that we have all
34244         the info to hand when waiting for them to finish
34245         (means we don't need OpenThread() any more, so mingw builds should
34246         be fully functional again.)
34248         * verify.c:
34249         * object.h: Added thread ID to MonoThread
34251 2002-09-03  Martin Baulig  <martin@gnome.org>
34253         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34255 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34257         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34259 2002-09-03  Martin Baulig  <martin@gnome.org>
34261         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34262         argument to store the end address of the disassembled instruction.
34264         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34265         here from debug-symfile.h.
34266         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34267         JIT into this struct.
34268         (MonoSymbolFile): Added `char *image_file' field.
34269         (MonoDebugGetMethodFunc): Removed.
34270         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34271         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34272         (mono_debug_find_method): New method.
34274         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34275         create a full symbol file.
34276         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34277         and static symbol files.
34278         (mono_debug_find_method): The symbol file keeps an internal method hash,
34279         call this to get a MonoDebugMethodInfo from a MonoMethod.
34281         * debug-symfile.[ch]: Removed.
34283 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34285         * image.c (do_mono_image_open): Remove linker version check.
34287 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34289         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34290         wrappers for instance methods.
34291         
34292 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34294         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34296 2002-08-28  Dick Porter  <dick@ximian.com>
34298         * Makefile.am: Export HOST_CC for w32 builds
34300 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34302         * file-io.c process.c: MonoString are null terminated, no
34303         need for mono_string_to_utf16() anymore.
34305 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34307         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34309 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34311         * icall.c, reflection.h: speedup System.MonoType.
34313 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34315         * reflection.c: allow null as the value of a string argument in
34316         custom attributes constructors.
34318 2002-08-27  Martin Baulig  <martin@gnome.org>
34320         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34321         `trampoline_address' field.
34323 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34325         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34326         check (fixes bug #29486) 
34328 2002-08-27  Martin Baulig  <martin@gnome.org>
34330         * debug-mono-symfile.c: Changed the file format in a way that allows us
34331         open it read-only and to use a specially malloced area for all the
34332         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34333         debugging IL code and there is no MCS generated symbol file for it.
34335 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34337         * object.c: added a define for a good string and array
34338         creation speedup (not enabled by default because we need to deal with
34339         the synch stuff).
34341 2002-08-26  Martin Baulig  <martin@gnome.org>
34343         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34344         function to create a dynamic symbol file.  This is used by the
34345         debugger to create a symbol file for IL code on-the-fly.
34347 2002-08-26  Martin Baulig  <martin@gnome.org>
34349         * loader.c (mono_lookup_pinvoke_call): Include the error message
34350         from g_module_error() in the error message.
34352 2002-08-24  Martin Baulig  <martin@gnome.org>
34354         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34355         function to update the symbol file.  The symbol file is mmap()ed
34356         writable, but private.  This allows us to install the symbol file
34357         together with the assembly.
34359 2002-08-24  Martin Baulig  <martin@gnome.org>
34361         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34362         but they can read the new symbol file format which mcs is now creating.
34364         * debug-symfile.c (mono_debug_find_source_location): Moved to
34365         debug-mono-symfile.c; this is now operating on the new symbol file.
34367 2002-08-23  Martin Baulig  <martin@gnome.org>
34369         * debug-helpers.c (mono_method_desc_from_method): New function to get
34370         a MonoMethodDesc from a MonoMethod.
34372 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34374         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34375         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34377 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34379         * string-icalls.[ch]: make helper methods static.
34381 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34383         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34384         types to it and to SetValueInternal.
34386         * object.c: Moved handle_enum label to its proper place. This was the
34387         f... bug! ;-)
34389         This time i compiled mcs and gtk-sharp and they both work.
34391 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34393         * icall.c: reverted partially my previous patch until 
34394         object.c:set_value handles enums correcly.
34396 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34398         * icall.c:
34399         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34400         (ves_icall_System_Environment_get_MachineName): removed warning when
34401         compiling under cygwin.
34403 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34405         * object.c: fixed field_get_value() for reference types.
34407 2002-08-22  Dick Porter  <dick@ximian.com>
34409         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34410         Don't free a buffer while it's still needed.  Patch from Jonathan
34411         Liger <Jonathan.liger@wanadoo.fr>
34413 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34415         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34416         internal call.
34418 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34420         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34421         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34423         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34424         we call unmanaged code which throws exceptions.
34426 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34428         * appdomain.h: added per-domain entry_assembly.
34429         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34430         arguments.
34431         * icall.c: Assembly::GetEntryAssembly icall.
34432         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34433         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34435 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34437         * appdomain.h, gc.c: added mono_domain_finalize ().
34439 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34441         * object.c:
34442         (mono_print_unhandled_exception): changed g_warning by g_printerr
34443         because g_log has a 1024 characters limit (yeah, i got a big stack
34444         trace). Don't print exception name, that should be in ToString 
34445         returned string.
34447 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34449         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34450         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34452 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34454         * object.c:
34455         (mono_print_unhandled_exception): after previous commit, i realized
34456         that MS calls ToString on the exception. I changed this function to
34457         do that. This way we get stack_trace for free.
34459 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34461         * object.c:
34462         (mono_print_unhandled_exception): invoke Message property instead of
34463         getting 'message' field from Exception. Don't allocate memory for
34464         'trace' and 'message' if not needed.
34466 2002-08-18  Dick Porter  <dick@ximian.com>
34468         * unicode.c: Fix asserts to match Encoder.cs checks
34470 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34472         * marshal.c: fix unaligned store issue and a few wrong
34473         opcode argument types.
34475 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34477         * icall.c: added GetUninitializedObjectInternal internal call.
34479 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34481         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34482         to the right domain.
34484 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34486         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34488         * class.c (class_compute_field_layout): set blittable to false for Strings
34490         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34492 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34494         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34495         first chunk of code to create types at runtime. Code to
34496         handle ReflectedType/DeclaringType. Make reflection handles
34497         domain specific.
34499 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34501         * class.c: set correct name in arrays.
34503 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34505         * appdomain.c (mono_domain_transfer_object): make it work with
34506         valuetypes. bug fixes.
34508 2002-08-12  Dick Porter  <dick@ximian.com>
34510         * object.h: Rename some parameters to avoid c++ keywords (Patch
34511         from Joseph Wenninger <kde@jowenn.at>)
34513 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34515         * icall.c: added icall to implement Assembly.GetFile*.
34517 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34519         * reflection.h, reflection.c: code to embed managed resources.
34521 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34523         * class.c: move all the type size stuff into
34524         class_compute_field_layout().
34526 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34528         * class.c: ensure enums have always the correct instance size.
34529         * unicode.c: remove wrong assert.
34531 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34533         * assembly.c: fix mem corruption issue.
34534         * image.h, image.c: added mono_image_get_resource () to access
34535         managed resources.
34536         * icall.c: implemented Assembly.EntryPoint property and some
34537         Managed Resources related internalcalls.
34540 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34542         * image.c, image.h: impemented mono_image_get_entry_point ().
34543         * appdomain.c: use mono_image_get_entry_point.
34545 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34547         * reflection.c: support the object type argument when loading
34548         custom attributes.
34550 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34552         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34553         String as return type.
34555 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34557         * reflection.c: fix encoding of named args for custom attrs to match
34558         the ms implementation. Read them back when instantiating custom
34559         attributes.
34561 2002-08-02  Radek Doulik  <rodo@ximian.com>
34563         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34564         by Dietmar as quick fix
34565         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34566         16 as stack size, used on more places as quick fix before Dietmar
34567         will fix it properly
34569 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34571         * object.h, object.c: added accessors for fields and properties.
34573 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34575         * class.c, class.h: made mono_class_get_field_from_name ()
34576         loop on parent types.
34577         Added mono_class_get_property_from_name ().
34579 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34581         * class.c, class.h: move the code to setup the type vtable in its own
34582         function so that it can be reused also for types created at runtime.
34583         Eliminate the "class" identifier from the header file.
34584         * reflection.c: setup the vtable for enums so that we can create
34585         objects for use in SetConstant ().
34587 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34589         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34590         instead of the delegate itself as this pointer (bug #28383)
34592 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34594         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34595         conversions.
34597 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34599         * loader.c: don't set the pinvoke bit on icalls.
34601 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34603         * debug-helpers.c (mono_method_full_name): only print a number to
34604         indicate wrapper type (so that the output is more readable in traces).
34606 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34608         * class.c (mono_class_init): include method override patch from Paolo
34610 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34612         * icall.c: fixed GetTypeCode().
34614 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34616         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34617         use real delegate invoke function to make it work with multicast
34618         delegates (fix bug# 28291).
34620 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34622         * object.c: load constant strings.
34624 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34626         * reflection.c: no magic numbers.
34627         * tabledefs.h: security action enum.
34629 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34631         * assembly.c: fix possible memory corruption.
34633 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34635         * reflection.h, reflection.c: added support for linking resources.
34636         * verify.c: check we have an updated corlib.
34638 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34640         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34641         string arrays.
34642         (mono_marshal_string_array): null terminate unmanaged string arrays.
34643         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34645 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34647         * icall.c: Type.GetType () can now return also types from the
34648         calling assembly.
34650 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34652         * loader.h, loader.c: stack walking support.
34653         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34654         GetCallingAssembly.
34656 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34658         * marshal.c: added optimisations for blittable types 
34660         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34661         (mono_class_setup_mono_type): set blittable attribute for single
34662         and double.
34664         * marshal.c (mono_string_utf8_to_builder): impl.
34665         (mono_string_builder_to_utf8): impl.
34666         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34668 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34670         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34671         (mono_marshal_get_managed_wrapper): impl. byref types
34673 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34675         * icall.c:
34676         (search_method): don't display debug message. 
34678 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34680         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34682 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34684         * appdomain.c: set the missing filename when throwing exception.
34686 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34688         * metadata.c (mono_type_size): code cleanup
34689         (mono_type_stack_size): removed some test code
34691 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34693         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34694         mono_get_exception_file_not_found now.
34696         * exception.c (mono_exception_from_name_two_strings): New version
34697         that will call a constructor with two string arguments. 
34698         (mono_get_exception_file_not_found): New helper routine, used to
34699         report file-not-found errors.
34701 2002-07-20  Dick Porter  <dick@ximian.com>
34703         * process.h:
34704         * process.c: Pass file handles to CreateProcess
34705         
34706         * icall.c:
34707         * file-io.h:
34708         * file-io.c: Implemented CreatePipe
34710 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34712         * metadata.c (mono_get_param_info): set alignment for value types
34714 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34716         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34717         Constify mono_domain_assembly_open().
34718         * loader.c: handle null namespace in icalls.
34720 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34722         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34723         (emit_str_to_ptr_conv): marshal object as structs
34725         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34727         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34729 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34731         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34732         (mono_marshal_get_native_wrapper): we an now return value types
34734 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34736         * verify.c: more checks implemented.
34738 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34740         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34741         (fix bug #27695)
34742         (mono_marshal_get_native_wrapper): allow byref arguments
34743         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34744         impl. PtrToStringXXX methods
34745         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34746         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34747         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34748         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34749         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34751 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34753         * reflection.c: fix buglet in parsing an assembly name.
34755 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34757         * marshal.c (emit_ptr_to_str_conv): first impl.
34759 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34761         * object.c, class.h: cache the vtable in the class as suggested by
34762         vargaz@freemail.hu (Zoltan Varga).
34764 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34766         * class.h, loader.c: added mono_field_from_token().
34767         * verify.c: first cut of type checking code.
34769 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34771         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34773 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34775         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34776         (fix bug #27782)
34777         (mono_marshal_get_remoting_invoke): impl.
34778         (mono_delegate_begin_invoke): impl.
34779         (mono_mb_emit_save_args): impl.
34780         (mono_delegate_end_invoke): impl.
34781         (mono_marshal_get_delegate_begin_invoke):
34782         (mono_marshal_get_delegate_end_invoke):
34783         (mono_marshal_get_delegate_invoke): generate a special name for
34784         those methods (including the signature) and associate them whith
34785         the delegate class. 
34787 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34789         * reflection.[ch]: 
34790         (mono_reflection_type_from_name): now it has a MonoImage parameter
34791         which is used as the default image to search the type in. If the image
34792         is NULL or getting the type from it fails, it defaults to corlib.
34794         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34795         new parameter.
34797 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34799         * reflection.c: update the parameter table index.
34801 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34803         * domain.c: don't include the mark byte in the string hash.
34805 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34807         * icall.cs: icall for Type.GetTypeCode ().
34808         * verify: a couple of fixes and disabled local initialization checks.
34810 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34812         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34814         * debug-helpers.c (mono_method_full_name): print the type of the
34815         runtime wrapper
34817         * metadata.c (mono_signature_hash): a hash function for signatures
34818         (mono_signature_hash): better hash algorithm
34820         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34822         * debug-helpers.c (mono_method_full_name): this can now generate
34823         method names with signatures
34825         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34826         method dont have this pointers.
34828 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34830         * reflection.c: fixup typebuilder tokens.
34831         * image.c: fix buglet.
34832         * marshal.h: remove whitespace.
34833         * metadata.h, metadata.c: reinstate code that was removed.
34834         * verify.c: handle catch directives and fix another couple of bugs.
34836 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34838         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34839         (mono_marshal_get_native_wrapper): make it comp. with the old code
34840         (mono_marshal_get_native_wrapper): support boolean
34841         (mono_marshal_get_managed_wrapper): support more types
34843 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34845         * class.c (class_compute_field_layout): compute class->blittable attribute.
34847 2002-07-09  Dick Porter  <dick@ximian.com>
34849         * threads.c: Make the thread cleaning up cope with threads that
34850         call ExitThread()
34852 2002-07-08  Radek Doulik  <rodo@ximian.com>
34854         * reflection.c (method_encode_code): use non-translated values to
34855         compute finally_start, this fixes exception handling on ppc, yay!
34857         * decimal.h (struct signscale): fix endianess
34859 2002-07-07  Radek Doulik  <rodo@ximian.com>
34861         * reflection.c: swap box_val and not val
34863 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34865         * reflection.c, reflection.h: handle full assembly info in type name.
34866         Handle Type arguments when loading custom attributes.
34867         * icall.c: updated to use new mono_reflection_type_from_name () method.
34869 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34871         * loader.c:
34872         (method_from_memberref): also print assembly name when method not found.
34874 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34876         * icall.c:
34877         (ves_icall_TypeGetProperties): fixed bug #27473. 
34879 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34881         * reflection.c: display image name and token when cannot find the
34882         .ctor for an attribute.
34884 2002-07-05  Martin Baulig  <martin@gnome.org>
34886         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34888 2002-07-04  Dick Porter  <dick@ximian.com>
34890         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34891         compile on mingw.  This will cause mingw builds to not wait for
34892         subthreads to terminate after the main thread does.  I've lodged a
34893         bug with the mingw developers for them to wrap OpenThread().
34895 2002-07-03  Dick Porter  <dick@ximian.com>
34897         * threads.c: Store thread IDs instead of handles, because
34898         GetCurrentThread() returns a pseudohandle and therefore stores
34899         useless values.  mono_thread_cleanup() continues checking the
34900         array of threads until it is empty, to cope with subthreads
34901         spawning new threads after the main thread has finished.
34903         * profiler.h:
34904         * profiler.c:
34905         * profiler-private.h: Pass the thread ID to thread profiler
34906         functions, instead of a handle
34908 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34910         * verify.c: fixes to make it more usable.
34911         * pedump.c: added --verify code to verify IL code in an assembly.
34913 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34915         * reflection.c: turn errors into warnings to allow compiling corlib.
34917 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34919         * reflection.c: add special cases to compile corlib.
34921 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34923         * reflection.c: handle properties with only a set method.
34925 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34927         * opcodes.h: add enum with opcodes in opval order.
34929 2002-07-01  Dick Porter  <dick@ximian.com>
34930         
34931         * object.h:
34932         * object.c (mono_runtime_run_main): Removed unneeded argument
34934 2002-06-28  Martin Baulig  <martin@gnome.org>
34936         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34938 2002-06-27  Dick Porter  <dick@ximian.com>
34940         * threads.c: Store the handle in both the parent thread and in the
34941         subthread, to minimise the time between starting a new thread and
34942         storing its ID.
34944 2002-06-26  Dick Porter  <dick@ximian.com>
34946         * appdomain.c (mono_runtime_cleanup): Close the socket library
34947         after all the threads have finished, not before
34949 2002-06-26  Martin Baulig  <martin@gnome.org>
34951         * debug-symfile.c (mono_debug_find_source_location): Added
34952         `guint32 *line_number' argument.  If it's not NULL, store the line number
34953         there and return the file name without the line number.
34955 2002-06-25  Dick Porter  <dick@ximian.com>
34957         * icall.c:
34958         * process.h:
34959         * process.c: Process forking and other support functions
34961 2002-06-25  Dick Porter  <dick@ximian.com>
34963         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34964         things dont happen when the image is closed.
34965         (mono_image_lookup_resource): Walk the resource section looking
34966         for a particular entry
34968         * cil-coff.h: PE resource section decoding
34970 2002-06-25  Dick Porter  <dick@ximian.com>
34971         
34972         * assembly.h:
34973         * assembly.c: 
34974         (mono_assembly_foreach): Accessor functions to walk the list of
34975         loaded assemblies
34976         (mono_assembly_set_main):
34977         (mono_assembly_get_main): Process methods need to know which
34978         assembly is the "main" one
34980         * object.c (mono_runtime_run_main): Record the main assembly
34982         * debug-helpers.c: Fix typo
34984 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34986         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34987         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34989 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34991         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34993 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34995         * image.c (do_mono_image_open): Initialize reference count,
34996         otherwise we leak the MonoImage.
34998 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35000         * reflection.c: small tweak to handle self-hosting.
35002 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35004         * reflection.c: fix type name parse code.
35006 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35008         * reflection.c: break out of the loop.
35009         * image.c: special case corlib.
35011 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35013         * reflection.c: add all the custom attrs at the end to ensure the
35014         ctors have been properly initialized when the attributes are defined
35015         in the current assembly.
35017 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35019         * reflection.c: handle correctly multiple-nested types.
35021 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35023         * row-indexes.h: fix typos.
35024         * reflection.c: adjust for typos and fix method_def_or_ref
35025         encoding in MethodImpl table.
35027 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35029         * reflection.c: fix entry point patching (thanks Serge!).
35031 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35033         * verify.c: add check for System.Exception
35035 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35037         * image.c, class.c: minifix for code just c&p'ed.
35038         * reflection.c: warning fix.
35039         * object.h, loader.h, domain.c: load also StringBuilder.
35041 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35043         * marshal.h, marshal.c: some support code to handle complex marshaling.
35045 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35047         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35048         Better signatures with vtable error dump.
35050 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35052         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35054 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35056         * icall.c (ves_icall_Type_GetField): impl.
35058 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35060         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35061         to retrieve a marshal description blob for a field or param.
35063 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35065         * reflection.h, reflection.c: change order of nested type emission
35066         to avoid table corruption. The NestedTypes table is sorted.
35067         * icall.c: change order of GetConstructor results to workaround mcs bug.
35069 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35071         * reflection.h, reflection.c: handle field and param marshal
35072         information.
35074 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35076         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35078 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35080         * reflection.c: fix call convention.
35082 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35084         * reflection.h, reflection.c: mono_image_get_memberref_token()
35085         takes a type instead of a class, now. Added
35086         mono_image_get_array_token() to create tokens for the special
35087         multi-dim array methods.
35089 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35091         * assembly.c: handle modules (no assembly table). Split
35092         loading references in its own function.
35093         * class.c: handle moduleref resolution scope.
35094         * image.c, image.h: cache module name in image.
35096 2002-06-07  Martin Baulig  <martin@gnome.org>
35098         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35099         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35101 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35103         * icall.c: more signature fixes that used uint instead of int.
35105 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35107         * reflection.c: fixed signature of field refs.
35109 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35111         * class.c, reflection.c: handle typerefs of nested types
35112         (both on read and when writing files).
35114 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35116         * icall.c: fix method signatures that tried to workaround the previous
35117         typo, d'oh!
35119 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35121         * debug-helpers.c: fix typo.
35123 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35125         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35126         rewrote the PE/COFF writing code (our programs are understood by the
35127         ms runtime, now).
35129 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35131         * gc.c, gc.h, icall.c: weakreference support.
35133 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35135         * Makefile.am, mono-config.c: use $(sysconfdir).
35137 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35139         * icall.c: changed default precision of Double.ToString() to 15.
35140         Fixed memory leak. Unified with Single.ToString.
35142 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35144         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35146 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35148         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35149         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35150         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35151         and myself.
35153 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35155         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35157 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35159         * reflection.c, socket-io.c: more compilation fixes.
35161 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35163         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35164         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35165         unicode.c: warning and compiler compatibility fixes.
35167 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35169         * class.h, metadata.c: fixed warnings/compilation errors.
35171 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35173         * Makefile.am, mono-config.c, mono-config.h: configuration file
35174         support routines.
35175         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35176         config file. Export methods to insert and lookup mappings.
35178 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35180         * reflection.c: handle types and boxed objects in custom attr
35181         constructors.
35183 2002-05-30  Martin Baulig  <martin@gnome.org>
35185         * debug-symfile.c
35186         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35188 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35190         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35191         to lookup the implmap row for a P/Invoke method.
35192         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35193         P/Invoke method from the runtime on an as needed basis.
35195 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35197         * metadata.c (mono_metadata_parse_signature): impl.
35199 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35201         * class.c: handle .pack directive.
35203 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35205         * object.c: initialize static fields with RVA data.
35207 2002-05-25  Martin Baulig  <martin@gnome.org>
35209         * debug-symfile.c
35210         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35212 2002-05-24  Martin Baulig  <martin@gnome.org>
35214         * debug-symfile.c
35215         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35216         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35217         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35219 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35221         * object.c: special case string ctros in invoke.
35222         * gc.c: silly whitespace changes.
35224 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35226         * threadpool.[ch]: impl. a threadpool that can
35227         be used by mint and mono.
35229 2002-05-22  Martin Baulig  <martin@gnome.org>
35231         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35232         The first argument is now a `MonoReflectionModuleBuilder *', the return
35233         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35234         `methods' field to get the method builder.  The `token' argument is the
35235         unfixed token.
35237         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35238         invalid characters instead of g_assert_not_reached()ing.  This seems
35239         to be the behaviour of mscorlib.
35241 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35243         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35244         Hestilow to fix bug #25104
35246 2002-05-21  Martin Baulig  <martin@gnome.org>
35248         * debug-symfile.c (mono_debug_find_source_location): New function.
35249         Looks up an IL offset in the line number table and returns the source
35250         location as a string.
35252 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35254         * icall.c:
35255         (mono_double_ToStringImpl): changed %f by %g until we have something
35256         better.
35258 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35260         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35261         parameters first in C#.
35263 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35265         * icall.c, reflection.h: added icall to get info about an event.
35267 2002-05-20  Radek Doulik  <rodo@ximian.com>
35269         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35270         endian
35271         (mono_value_box): don't use memcpy for small sizes on
35272         architectures with unaligned access
35274 2002-05-20  Martin Baulig  <martin@gnome.org>
35276         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35277         if `tb->parent == NULL'.
35278         (mono_reflection_create_internal_class): New function.  This is
35279         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35280         for enum types.
35282         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35283         New interncall.
35285 2002-05-19  Martin Baulig  <martin@gnome.org>
35287         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35288         argument to get the length, don't default to the array length.
35290 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35292         * assembly.c (mono_assembly_setrootdir): New function used to
35293         override the MONO_ASSEMBLIES directory.
35295 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35297         * icall.c: ValueType_GetHashCode() initialize local var.
35299 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35301         * reflection.c: sort custom attributes table.
35303 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35305         * reflection.c: support named args in custom attributes (write support).
35307 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35309         * reflection.c: fix finally position calculation.
35311 2002-05-15  Radek Doulik  <rodo@ximian.com>
35313         * reflection.c: fixed endianess at many places
35315         * icall.c (ves_icall_InitializeArray): comment out debug msg
35317 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35319         * object.c (mono_unhandled_exception): new function to handle
35320         unhandled exceptions.
35321         (mono_unhandled_exception): call the UnhandledException event.
35322         (mono_runtime_delegate_invoke): impl.
35324 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35326         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35327         returns the RVA, not the direct pointer to the data. Handle the case
35328         when the class size is fixed.
35330 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35332         * reflection.c: fix some endianess issues.
35334 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35336         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35338         * threads.c (mono_thread_init): added a callback which is invoked
35339         at thread start.
35341 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35342         
35343         * icall.c: make GetHashCode return non-negative values.
35345 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35347         * object.c, icall.c, gc.c: revert to address-based hashcode.
35349 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35351         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35353 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35355         * icall.c, class.c: special case <Module>.
35357 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35359         * icall.c: fix bug in GetNow().
35361 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35363         * object.c (mono_runtime_class_init): make sure that we call all
35364         static class constructors.
35366 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35368         * reflection.c: sort methodsemantics table.
35370 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35372         * reflection.h, reflection.c: honour init locals setting.
35374 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35376         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35378 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35380         * reflection.c: support ContructorBuilders in attribute blob creation.
35382 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35384         * reflection.c: some changes to build a binary that can be run
35385         directly in windows.
35387 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35389         * loader.c: print a big message when an icall can't be found.
35391 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35393         * string-icalls.c: fix bug 24248.
35395 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35397         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35398         icall.c, reflection.h: separate assembly loading by pathname and by
35399         assembly name. Use the MONO_PATH env var to search for assemblies.
35401 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35403         * assembly.c, image.h: add some support for assemblies
35404         with multiple modules.
35405         * class.c, class.h: export mono_class_from_typeref().
35406         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35407         instead.
35409 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35411         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35412         documentation says (the ECMA one is correct).
35414 2002-05-02  Dick Porter  <dick@ximian.com>
35416         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35417         Don't name the synchronisation mutex.
35419 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35421         * rand.c
35422         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35423         Make the prototypes match.
35424         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35425         Same.
35427         * icall.c
35428         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35429         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35430         all systems have tm.tm_zone, so use strftime() with %Z to print
35431         the timezone abreviation into a temp string.
35433         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35434         rather than mono_array_addr() on a MonoString on Big Endian
35435         machines.
35437 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35439         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35440         fix bug 24041
35442 2002-04-30  Dick Porter  <dick@ximian.com>
35444         * socket-io.c: Cope with SOCKET being an integer rather than a
35445         pointer now.
35447         * threads.c: Added Thread_free_internal, to deal with thread
35448         handle cleanup.  Moved calls to handle_store() and handle_remove()
35449         to start_wrapper(), so each can only be called once.  Allocate
35450         synchronisation blocks with GC_malloc(), and use GC finalisation
35451         to close the handles.
35453         * icall.c: added System.Threading.Thread::Thread_free_internal
35455 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35457         * icall.c: support Environment.Exit, CommandLineArgs().
35459 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35461         * object.c, object.h: added mono_runtime_run_main () and
35462         mono_runtime_get_main_args () for use in System.Environment.
35464 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35466         * gc.c: fix thinko, enable actual finalization since the jit is now
35467         fixed.
35469 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35471         * gc.c, object.c: take into account that an object may be offset wrt the address
35472         returned by GC_malloc().
35474 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35476         * image.c: handle files without entries in the assembly table (modules).
35478 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35480         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35481         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35482         allowed to be null when it's System.Object class setup.
35484 2002-04-27  Martin Baulig  <martin@gnome.org>
35486         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35487         if `tb->parent == NULL' rather than crashing.
35489 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35491         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35492         calling acos() where asin() should have been called.
35494 2002-04-26  Martin Baulig  <martin@gnome.org>
35496         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35497         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35498         there's a subdirectory called `System', but we don't want to read that
35499         subdirectory as an assembly.
35501 2002-04-25  Martin Baulig  <martin@gnome.org>
35503         * debug-symfile.c: Reflect latest MonoString changes.
35505 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35507         * rand.c, rand.h: instance method icalls need to have an explicit
35508         this pointer as first argument in the C implementation.
35510 2002-04-25  Nick Drochak <ndrochak@gol.com>
35512         * icall.c: Fix typo in map for GetNonZeroBytes
35514 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35516         * string-icalls.c : String does now passes unit tests without any 
35517         errors, the following changes has been made:
35518         
35519         Implemented replace methods.
35520         Renaming of methods to (try) follow the standard.
35521         Fixed compare ordinal
35522         Made all memory allocated directly to function instead of via icall function.
35523         Small performance fix in is_in_array function
35524                         
35525  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35527         c (mono_string_Internal_ctor_charp_int_int):
35528         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35529         sindex < 0, throw ArgumentOutOfRangeException instead of
35530         ArgumentNullException.
35532         Added new check for length == 0, however
35533         I need to make it return String.Empty from the C code.
35534         
35535         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35536         that calculate the length for us here.
35537         
35538         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35539         mono_string_new_utf16 with mono_string_new, since value is utf8.
35541 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35543         * object.c: register the object for finalization if needed.
35544         Allocate one more char in the string for the terminating 0 char.
35546 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35548         * class.c, class.h, image.c: check if a type implemenst a destructor.
35549         Use the proper key for array class lookups.
35550         * icall.c: register the icalls in the System.GC class.
35551         * gc.c, gc.h: GC-related functions and icalls.
35553 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35555         * icall.c:
35556         * socket-io.c:
35557         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35558         changed a couple of free () by g_free ().
35560         * decimal.c: one-liner in the comments for decimal2string ().
35562 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35564         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35566 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35568         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35569         * object.c (mono_runtime_invoke_array) : handle null in params
35571 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35573         * string-icalls.c: fixed bug in split (one off bug)
35575 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35577         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35578         * icalls.c: added String::Equals as internal method
35580 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35582         * threads.c: fixed bug in the double interlocked functions
35584 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35586         * threads.c: implemented all of the new interlocked icalls.
35587         * string-icalls.c: fix a bug in insert.
35588         * icalls.c: added the icalls for interlocked, removed old string functions.
35589         
35590 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35592         * loader.c: fix off-by-one error when reading argument names.
35594 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35596         * profiler.c: win32 counter implementation (untested).
35597         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35598         (the latter needs testing and more complete impl. from win32 folks).
35600 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35602         * object.c: mono_array_new_full workaround mono_array_class_get
35603         problem.
35605 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35607         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35608         * object.h (mono_string_chars): Changed casting type.
35610 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35612         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35613                            method signatures to use gunichar2 instead of gint16.
35615 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35617         * object.h, object.c: domain-specific versions of mono_object_new and
35618         mono_array_new.
35620 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35622         * object.c: changed String layout
35624         * string-icalls.c (mono_string_Internal_ctor_chara): added
35625         internal string constructors.
35627 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35629         * threads.c: pass 'this' to the thread start routine.
35631 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35633         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35634         InternalCompareStr don't call twice mono_string_cmp_char for the last
35635         character. Improved performance in mono_string_cmp_char.
35637 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35639         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35640         code into its own library: libmonoruntime.
35642 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35644         * object.h, object.c: changed array format so that szarrays do not
35645         require a bounds structure.
35646         * icall.c, appdomain.c: support for new szarray format.
35648 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35650         * metadata.c: compare also the retuns type when comparing signatures:
35651         we didn't do this as an optimization since really overloaded methods
35652         must differ also in the arguments, but this doesn't work with
35653         low-level IL code (or when using explicit conversion operators: see
35654         bug#23498 for an example).
35656 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35658         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35660 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35662         * icall.c: make MonoType::GetElementType its own icall.
35664 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35666         * icall.c: remove MonoMethod_get_Name().
35667         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35668         object.
35670 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35672         * string-icalls.c: optimized a few methods.
35674 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35676         * icall.c: added all new string internal calls
35677         * string-icalls.c: added, new string internal call implementation.
35678         * object.c: added mono_string_new_size for allocating a string a size
35680 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35682         * object.c (mono_object_isinst): use the same code as in the
35683         optimized x86 version.
35685 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35687         * profiler.c: TSC-based timer code (faster and more accurate).
35688         Not hooked up in configure, yet (set USE_X86TSC to 1).
35690 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35692         * profiler.c, profiler.h: track time spent compiling methods.
35693         * threads.c: track thread creation/destruction.
35695 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35697         * profiler.c, profiler.h, profiler-private.h: profiling interface
35698         and sample implementation. Moved here so that it can be used also by
35699         the jit.
35701 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35703         * reflection.c, reflection.h: keep types and other handles separate in
35704         the hash tables for referred tokens. Add guid for modules.
35706 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35708         * assembly.c: fix bugs found with valgrind.
35709         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35711 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35713         * threads: added icall support for getting current domain for
35714                    the thread.
35716 2002-04-13  Martin Baulig  <martin@gnome.org>
35718         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35719         (MonoDebugVarInfo): Added `index' field for register based addresses.
35720         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35721         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35722         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35723         `MonoDebugVarInfo *this_var'.
35725         * debug-symfile.c (relocate_variable): New static function to write
35726         a location description for a local variable or method parameter.
35728 2002-04-12  Martin Baulig  <martin@gnome.org>
35730         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35731         stack offset and begin/end scope address of a local variable.
35732         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35733         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35734         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35736         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35737         Added new relocation types for start/end scope of a local variable.
35739 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35741         * object.h: add mono_object_domain() macro.
35742         * reflection.c: handle typespecs.
35743         * icall.c: MonoMethod::get_Name() implementation.
35745 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35747         * icall.c: String::GetHashCode() icall implementation.
35749 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35751         * icall.c: String::IndexOfAny icall.
35752         * object.c, object.h: make array->max_length more useful.
35753         Intrduced mono_object_class() and mono_string_length() macros.
35755 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35757         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35758         instead of g_unichar_isdigit.
35760 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35762         * icall.c: Implement a simple Double.ToString().
35764 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35766         * appdomain.h: only io-layer.h is supposed to be included.
35767         * icall.c: explicitly import environ. Fix warning.
35769 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35771         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35772                 return true even if it's not Daylight Savings time.
35773                 Only return false for the case where the function isn't
35774                 implemented for a plaform (read Windows).
35776 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35778         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35779         data with a mutex.
35781 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35783         * mempool.c (mono_mempool_alloc): only use g_malloc when
35784         absolutely necessary.
35786 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35788         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35790         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35791         (mono_class_proxy_vtable): use domain mempool
35793 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35795         * appdomain.h, appdomain.c: split initialization that requires the
35796         execution engine support into mono_runtime_init().
35798 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35800         * class.c (mono_class_init): don't include vtable inside MonoClass
35801         to save some memory, gather some statistics.
35802         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35804 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35806         * icall.c: internalcall implementation for ValueType.Equals().
35808 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35810         * object.c (mono_message_init): moved 
35811         (mono_runtime_exec_main): new arch. independent impl.
35812         (mono_runtime_invoke_array): new method - like
35813         mono_runtime_invoke, but you can pass an array of objects.
35814         (mono_remoting_invoke): new arch. independent impl.
35815         (mono_message_invoke): new arch. independent impl.
35816         (mono_runtime_class_init): new arch. independent impl.
35817         (mono_runtime_object_init): new arch. independent impl.
35819 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35821         * metadata.c, object.c, reflection.c: documented the exported
35822         functions.
35824 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35826         * icall.c: simpler code to pass the assembly builder data to corlib.
35827         Implement GetNestedTypes() internalcall.
35829 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35831         * class.c: warn if a type can't be loaded.
35833 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35835         * image.h: typedef MonoImageOpenStatus
35836         * types.h: removed unused file
35837         
35838 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35840         * icall.c: Enum_ToObject accepts enum value arguments.
35842 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35844         * class.c: move initialization of properties, events and nested
35845         classes, so that they happen for interfaces, too.
35847 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35849         * icall.c: cleanup some ugly casts in Array_SetValue*.
35851 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35853         * icall.c: the values array fro enums is of the correct type, now.
35854         Implement (correctly) getFullName instead of assQualifiedName for
35855         MonoType.
35856         * reflection.h, reflection.c: added mono_type_get_name ().
35858 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35860         * assembly.c, image.h: for each MonoImage, record from wich assembly
35861         it was loaded.
35862         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35863         Make Type.Assembly work.
35865 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35867         * debug-symfile.h: use char* instead of gpointer to avoid
35868         unnecessary casts.
35870         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35872         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35873         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35875 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35877         * icall.c (mono_message_init): impl. (code cleanup)
35878         (ves_icall_InternalExecute): impl. FieldGetter
35880         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35881         defined we call all (non-static)methods through the vtable. 
35883 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35885         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35886         finalizer even though the memory is still referenced (and the chunk of
35887         memory is not freed).
35889 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35891         * assembly.c: fix brokeness.
35893 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35895         * class.c: kill some warnings. Check explicit interface method
35896         implementation also without considering the namespace.
35897         Load also literal strings in static class data.
35899 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35901         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35902         (default_assembly_name_resolver): Make the resolver take the
35903         "base" directory where the assembly was originally defined, so we
35904         can load DLLs that are in the same directory as the assembly that
35905         is being referenced.
35907 2002-03-28  Dick Porter  <dick@ximian.com>
35909         * file-io.h: 
35910         * file-io.c:
35911         * socket-io.c: 
35912         * unicode.h: 
35913         * unicode.c: Warning cleanups
35915 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35917         * object.h, reflection.h: use the correct type instead of MonoObject.
35919 2002-03-28  Martin Baulig  <martin@gnome.org>
35921         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35922         (mono_debug_update_symbol_file): Initialize classes if necessary.
35924 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35926         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35927         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35929 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35931         * assembly.h: fix function prototype.
35932         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35933         * mono-endian.h: use const cast.
35935 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35937         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35939 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35941         * loader.c: don't assert when a typeref can't be loaded, give
35942         a chance to the runtime to trow an exception instead.
35943         * loader.h: fix warning.
35945 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35947         * class.c (mono_class_proxy_vtable): added proxy support
35949 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35951         * icall.c: removed last of PAL calls, added System.Environment
35952         * file-io.h, file-io.c: MonoIO implementation
35953         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35955 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35957         * appdomain.c: do not use the byte marker in ldstr table lookup.
35958         * debug-helpers.c: allow two ':' to separate class and method name.
35959         * object.c: allocate arrays bounds with the GC, too.
35960         * verify: add a few more checks.
35962 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35964         * reflection.c: output also literal strings. Allocate parameter data
35965         with GC_malloc() (thanks, Martin, for catching this!).
35967 2002-03-26  Martin Baulig  <martin@gnome.org>
35969         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35970         include the `this' offset in the `param_offsets'.
35972 2002-03-25  Martin Baulig  <martin@gnome.org>
35974         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35975         mono_debug_get_class() function to get the classes. Added new
35976         relocation types for arrays and strings.
35977         (mono_debug_get_class): New static function to search in all
35978         referenced assemblies for a metadata token.
35980         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35982 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35984         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35985         hold gc-allocated objects. Make the string heap a stream like the
35986         others. Removed duplicated code when writing stream info.
35987         Added asserts to catch possible buffer overflows. Set the sorted map
35988         for tables that need sorting. Added some documentation.
35990 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35992         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35993         for interned strings and vtables.
35995 2002-03-24  Martin Baulig  <martin@gnome.org>
35997         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35998         it in the array since it was created with g_slist_prepend().
36000 2002-03-24  Martin Baulig  <martin@gnome.org>
36002         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36003         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36004         (mono_debug_method_from_token): Renamed to
36005         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36006         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36008         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36009         relocation types.
36011         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36013 2002-03-24  Martin Baulig  <martin@gnome.org>
36015         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36016         (mono_debug_method_from_token): New func.
36018         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36019         New interncall, calls mono_debug_local_type_from_signature().
36020         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36021         calls mono_debug_method_from_token().
36023 2002-03-23  Martin Baulig  <martin@gnome.org>
36025         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36026         specifies the number of bytes to be converted, not the array size.
36027         Return the number of chars, not the number of bytes.
36028         (ves_icall_iconv_get_chars): The `byteCount' argument
36029         specifies the number of bytes to be converted, not the array size.
36031 2002-03-23  Martin Baulig  <martin@gnome.org>
36033         * reflection.h (MonoReflectionSigHelper): New type.
36035         * reflection.c (mono_reflection_sighelper_get_signature_local),
36036         (mono_reflection_sighelper_get_signature_local): New functions.
36038         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36039         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36040         interncalls.
36042 2002-03-23  Martin Baulig  <martin@gnome.org>
36044         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36045         is_writeable is set.
36046         (mono_raw_buffer_update): New function to write the modified map
36047         back to disk.
36049         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36051         * debug-symfile.c (mono_debug_update_symbol_file): Call
36052         mono_raw_buffer_update() when done writing.
36054 2002-03-23  Martin Baulig  <martin@gnome.org>
36056         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36058         * debug-symfile.c: Added support for arguments and local variables.
36060 2002-03-23  Dick Porter  <dick@ximian.com>
36062         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36063         protected by ifdefs, hence breaking the w32 build.
36065 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36067         * object.c: implement is_interned() the right way.
36069 2002-03-21  Martin Baulig  <martin@gnome.org>
36071         * debug-symfile.[ch]: New files to handle debugging information
36072         files. There's also support to dynamically update these symbol
36073         files to include machine dependent information.
36075 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36077         * threads.c (mono_thread_create): new function to create thread
36078         from C
36080 2002-03-20  Martin Baulig  <martin@gnome.org>
36082         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36083         method is a constructor.
36084         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36085         points to ves_icall_InternalInvoke().
36087 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36089         * file-io.c: Flush shouldn't throw exceptions.
36091 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36093         * file-io.c: FileStream flush support; FileSetLength now
36094         restores file pointer.
36096 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36098         * class.c: set image for pointer classes.
36100 2002/03/19  Nick Drochak <ndrochak@gol.com>
36102         * sysmath.c: Forgot one.
36104 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36106         * sysmath.c: Avoid redefining existing names.
36108 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36110         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36111         handled by runtime as icall rather than dllimport from libm.so
36112         * file-io.c, file-io.h: fixed handle argument type.
36114 2002-03-18  Dick Porter  <dick@ximian.com>
36116         * reflection.c (mono_image_get_type_info): rename interface to
36117         iface, because of "#define interface struct" on windows.
36119 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36121         * class.c, class.h: rename and export mono_ptr_class_get().
36122         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36123         * reflection.c, reflection.h, icall.c: better/saner type name
36124         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36125         method signatures.
36127 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36129         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36131         * icall.c (ves_icall_InternalInvoke): impl.
36133 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36135         * reflection.c: output the interface map table, too.
36137 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36139         * class.c (class_compute_field_layout): separate computation of 
36140         static field layout
36142 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36144         * icall.c: added System.Buffer support.
36145         * file-io.c: moved file icalls from PAL to FileStream.
36147 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36149         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36151 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36153         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36155 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36157         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36159 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36161         * debug-helpers.{c,h}: moved here from monograph some useful functions
36162         to locate a method by name/signature in a class or image. Included
36163         also a small and flexible IL disassembler.
36165 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36167         * reflection.c: fixup tokens in methods with small header size, too.
36169 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36171         * object.c (mono_string_to_utf8): remove assert(!error), instead
36172         print a warning. 
36174 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36176         * icall.c: update to the new mono_Array_class_get interface.
36178 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36180         * appdomain.c, object.c: Boehm-GC enable.
36181         * icall.c: make get_data_chunk() support split data requests.
36182         Ensure a class is initialized in more cases. Return only the first
36183         property found in GetProperties() or the compiler gets confused. 
36184         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36185         * reflection.h, reflection.c: add fixup mechanism for field and method
36186         tokens. Initialize assembly->typeref in a single place. Output
36187         properties after events. Support custom attributes for events, too.
36188         Typo fix for paramter custom attrs.
36190 2002-03-07  Martin Baulig  <martin@gnome.org>
36192         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36194 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36196         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36198 2002-03-06  Martin Baulig  <martin@gnome.org>
36200         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36201         non-zero lower bounds. See testcases #F10-#F13.
36203 2002-03-05  Martin Baulig  <martin@gnome.org>
36205         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36207         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36208         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36209         here.
36210         (ves_icall_System_Array_SetValue): Likewise.
36211         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36212         as argument and does the actual work. This function is used when copying a
36213         multi-dimensional array.
36214         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36215         now do all the widening conversions of value types.
36216         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36218 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36220         * class.c: remove some magic numbers and use the smbolic names,
36221         instead. Added init_events() to load event info at class init time.
36222         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36223         and mono_metadata_methods_from_event().
36224         * reflection.h, reflection.c: added support for writing out the evnets
36225         related information.
36227 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36229         * reflection.h, icall.c: use a different method (GetInterfaces)
36230         to gather interface info and add isbyref, isprimitive and
36231         ispointer to the ves_icall_get_type_info() return value.
36233 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36235         * class.h: stared adding support for events.
36236         * icall.c: split find_members implementation. Added debug icall to get
36237         the address of an object.
36238         * reflection.c: handle TypeBuilders in mono_type_get_object().
36240 2002-03-01  Martin Baulig  <martin@gnome.org>
36242         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36243         ArgumentOutOfRangeException(), not an ArgumentException().
36244         (ves_icall_System_Array_GetLowerBound): Likewise.
36245         (ves_icall_System_Array_GetValue): Improved argument checking.
36246         (ves_icall_System_Array_SetValue): Improved argument checking.
36248 2002-03-01  Martin Baulig  <martin@gnome.org>
36250         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36251         called with invalid arguments rather than just dying with g_assert().
36252         (ves_icall_System_Array_SetValue): Likewise.
36253         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36254         raise a NotImplementedException instead.
36255         (ves_icall_System_Array_GetLength): Added argument checking.
36256         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36258 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36260         * object.h (mono_assert): new macros mono_assert and
36261         mono_assert_not_reached
36263 2002-02-28  Martin Baulig  <martin@gnome.org>
36265         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36266         and "System::String::IsInterned" to "System::String::_IsInterned".
36268 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36270         * icall.c: remove hacks for typebuilder. Added icall to create a
36271         modified type from a tybebuilder.
36272         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36273         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36274         to create a backing MonoClass for a TypeBuilder.
36276 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36278         * class.c, class.h: more refactoring of class init.
36279         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36281 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36283         * marshal.c, marshal.h: start of marshaling interface.
36285 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36287         * icall.c: fix order in assembly qualified name icall.
36289 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36291         * class.c: do not free str, since we store it in the hash table.
36292         * reflection.h: add label field to MonoILExceptionInfo.
36293         * reflection.c: handle references to more than one assembly. Handle
36294         case when there isn't a module created in the assembly.
36296 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36298         * class.c: Fix typo. Start refactoring of class init code.
36300 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36302         * appdomain.c: exit with 1 on error.
36303         * class.c: we already have the name in MonoClassField.
36304         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36305         MonoStreamHeader instead of an offset of image->raw_metadata.
36307 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36309         * appdomain.c (mono_init): Be even more descriptive about the error.
36311 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36313         * appdomain.c: give the user an informative message when corlib can't
36314         be loaded.
36316 2002-02-26  Martin Baulig  <martin@gnome.org>
36318         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36319         New icall to get the time zone data.
36321 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36323         * reflection.c: set virtual and raw size of section correctly.
36324         * threads.c: transfer domain information to newly created threads.
36326 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36328         * class.c: when instancing a class in a domain, load the default
36329         vaules for static fields from the constant table. Fix System.Enum to
36330         not be an enum.
36331         * icall.c: implement Object::GetType() internalcall. Implemented
36332         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36333         Fixed checking of binding flags in find_members().
36334         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36335         * reflection.c: handle enumerations when writing to the constant
36336         table. Use a different object cache for types.
36339 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36341         * object.c (mono_object_isinst): fix for arrays
36343         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36345 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36347         * object.c: don't use mprotect ()  and fix intern pool hash table
36348         lookup for big endian systems.
36350 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36352         * icall.c: change type_is_subtype_of () signature.
36354 2002-02-21  Mark Crichton  <crichton@gimp.org>
36356         * rand.c, rand.h: Added random number generator for
36357         System.Security.Cryptography classes.
36359         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36361         * icall.c: Added System.Security.Cryptography calls.
36363 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36365         * class.c, icall.c, metadata.c: better support for pointer types.
36366         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36367         * reflection.c: Add support for getting custom attrs for properties
36368         and simplify some code.
36370 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36372         * icall.c: change getToken () and add custom attribute GetBlob()helper
36373         method.
36374         * reflection.h: add custom attrs array to the reflection builder structures.
36375         * reflection.c: encode and emit custom attributes for all the relevant
36376         reflection objects. Cache fieldref and methodref tokens. Change
36377         mono_image_create_token() interface to take a MonoDynamicAssembly.
36378         More complete custom attributes decoder. Load custom attributes for
36379         Assembly, Field, Method and Constructor objects, too. Make the
36380         returned array an Attribute[] one, not object[]. Added
36381         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36382         custom attribute constructor.
36384 2002-02-20  Dick Porter  <dick@ximian.com>
36386         * icall.c:
36387         * rawbuffer.c:
36388         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36389         problem code out for now).
36391 2002-02-19  Radek Doulik  <rodo@ximian.com>
36393         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36395 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36397         * icall.c: register the GetCustomAttributes method.
36398         * object.c, object.h: add mono_string_new_len ().
36399         * reflection.h, reflection.c: added mono_runtime_invoke(),
36400         mono_install_runtime_invoke(). Added
36401         mono_reflection_get_custom_attrs () to load custom attributes and
36402         create the attribute objects.
36404 2002-02-19  Dick Porter  <dick@ximian.com>
36405         * threads-dummy-types.c:
36406         * threads-dummy-types.h:
36407         * threads-dummy.c:
36408         * threads-dummy.h:
36409         * threads-pthread-types.c:
36410         * threads-pthread-types.h:
36411         * threads-pthread.c:
36412         * threads-pthread.h:  Deleted obsolete files
36414 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36416         * class.c (mono_class_vtable): runtime init the class when we
36417         allocate static class data.
36419         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36421         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36422         and String - but we will need generic marshalling support in the
36423         future. 
36424         (mono_init): set the domain name in a ms compatible way
36426         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36427         String[].
36429 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36431         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36432         for sizes
36434         * appdomain.c (mono_domain_unload): impl.
36436 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36438         * appdomain.c, object.c: fix intern pool implementation.
36439         * class.c: fix alignment code.
36441 2002-02-16  Radek Doulik  <rodo@ximian.com>
36443         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36444         and s2 > s1, just copy lower bytes to be compatible with little
36445         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36446         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36448         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36449         force big_endian to be 1 for big endian machines 
36450         (ves_icall_iconv_new_decoder): ditto
36452 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36454         * socket-io.c (convert_sockopt_level_and_name): If the system
36455         doesn't define SOL_IP or SOL_TCP, get them by hand using
36456         getprotobyname() and caching the values (because this could be a
36457         slow operation).
36458         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36459         Use the appropriate struct when the system does support it. Ie,
36460         not all systems have struct ip_mreqn so use struct ip_mreq when
36461         appropriate.
36463 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36465         * reflection.c: handle finally clauses.
36467 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36469         * socket-io.c: use g_snprintf() instead of snprintf.
36471 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36473         * reflection.c (mono_param_get_objects): Cast second argument to
36474         mono_method_get_param_names to a const char** to silence the
36475         compiler warning.
36477         * appdomain.c (mono_domain_assembly_open): Put parens around the
36478         truth statement in the for-loop.
36480         * unicode.c (iconv_convert): Got rid of a compiler warning about
36481         int i being unused when the system has a new iconv.
36482         (iconv_get_length): Same.
36484         * image.c (load_class_names): Cast the second argument to
36485         g_hash_table_insert() to char* to hush compiler warnings about the
36486         arg being a const.
36487         (mono_image_open): Same here.
36489         * socket-io.c: Don't conditionally include sys/filio.h or
36490         sys/sockio.h here anymore since we now get them from
36491         io-layer/io-layer.h
36492         (inet_pton): If the system doesn't support inet_aton, implement
36493         using inet_addr and also #define INADDR_NONE if it isn't defined
36494         by the system.
36496 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36498         * metadata.c, metadata.h: added function to get packing and size info
36499         of a typedef.
36500         * reflection.h, reflection.c: handle field RVA data. Save info about
36501         the table layout if needed. Assign typedef indexes to all the types
36502         before dumping the info about them to avoid forward reference problems.
36504 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36506         * socket-io.c (convert_sockopt_level_and_name): ifdef
36507         SO_ACCEPTCONN because it is not defined on my system (old debian)
36509 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36511         * opcode.c: use stddef.h to get NULL.
36513 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36515         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36516         for FIONBIO, FIONREAD and SIOCATMARK.
36517         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36518         define INADDR_NONE and besides, inet_addr() is deprecated and
36519         should not be used. Use inet_pton() instead - it also has the
36520         added bonus that it can easily handle IPv6 addresses as well.
36521         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36523 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36525         * decimal.c: remove _MSC_VER conditional.
36527 2002-02-13  Dick Porter  <dick@ximian.com>
36529         * socket-io.c: 
36530         * icall.c: Internal calls for Blocking, Select, Shutdown,
36531         GetSocketOption and SetSocketOption
36533 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36535         * assembly.cs: better resolver: use it instead of some kludgy
36536         code.
36538 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36540         * reflection.c: the best way to speed-up the compiler is to avoid
36541         infinite loops.
36543 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36545         * class.c (mono_class_vtable): changed the object layout
36546         (obj->vtable->class). 
36547         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36549 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36551         * assembly.c: look for assemblies in the assembly dir, too.
36553 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36555         * class.c: fix thinko in mono_class_from_type().
36557 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36559         * exception.h, exception.c: added TypeLoadException.
36560         * object.h, object.c: added mono_array_clone ().
36561         * icall.c: handle throwOnError in AssemblyGetType().
36562         Added Array.Clone().
36563         * opcode.h, opcode.c: use a single value for the opcode val.
36564         Compile fix for non-gcc compilers.
36566 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36568         * opcodes.c, opcodes.h: export interesting info about opcodes.
36570 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36572         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36573         icalls. 
36575         * class.c (class_compute_field_layout): set element_class for enums
36576         (mono_class_create_from_typedef): set element_class for normal classes
36578         * icall.c (ves_icall_System_Enum_get_value): impl.
36580         * class.c (mono_class_create_from_typedef): do not set valuetype
36581         flag for System.ValueType and System.Enum
36583 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36585         * unicode.c (iconv_convert): fix big endian problem.
36587 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36589         * class.c: add asserts if we are ever going to scribble over memory.
36590         * socket-io.c: not all systems have AF_IRDA defined.
36592 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36594         * class.c (class_compute_field_layout): do not consider static
36595         fields to compute alignment
36597 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36599         * appdomain.c (mono_appdomain_get): impl.
36600         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36602 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36604         * icall.c: ignore "file://" prefix when loading an assembly.
36606 2002-01-23  Dick Porter  <dick@ximian.com>
36608         * socket-io.c:
36609         * icall.c:
36610         * Makefile.am: Added socket support
36612 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36614         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36615         code back.  This should return the assemblies that are loaded by
36616         the runtime on behalf of an application domain. 
36618         The current implementation is still broken, it just returns every
36619         assembly loaded, but until we get real applications domain this
36620         will do.
36622 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36624         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36625         AppDomain object.
36627 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36629         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36630         the mono_class_from_name lookup.
36631         (ves_icall_get_parameter_info): ditto.
36632         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36633         method.
36634         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36636 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36638         * class.c: load also nested classes on class init.
36639         System.ValueType instance methods gets passed boxed
36640         values, unless methods in derived classed that get a pointer to the
36641         data.
36642         * icall.c: use better name parsing code in GetType().
36643         * image.c, image.h: add mono_image_loaded ().
36644         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36645         * reflection.c, reflection.h: added mono_reflection_parse_type().
36647 2002-01-22  Veronica De Santis <veron78@interfree.it>
36649         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36650         * threads.c : Added the implementation of internal calls for events
36651         * threads.h : Added prototypes of internal calls for events
36652         
36653 2002-01-21  Radek Doulik  <rodo@ximian.com>
36655         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36657 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36659         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36660         (mono_class_value_size): use min_align
36662 2002-01-20  Dick Porter  <dick@ximian.com>
36664         * threads.h:
36665         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36666         so it compiles on w32.
36668 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36670         * metadata.c (mono_type_stack_size): impl.
36672         * class.c (mono_class_get_field): impl. memberref token
36674 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36676         * icall.h : Added the internal calls mapping for CreateMutex_internal
36677                     and ReleaseMutex_internal.
36678         * threads.h : Added the prototype of mutexes internal calls.
36679         * threads.c : Added the implementations of mutexes internal calls.
36681 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36683         * metaparse.h: removed unused file.
36684         * reflection.c, reflection.h: added stream_data_align () function 
36685         to align data in streams and keep stream aligned. Add support for
36686         exception support in method headers.
36688 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36690         * unicode.c: make iconv_convert () return the number of bytess written
36691         in the output buffer.
36693 2002-01-15  Dick Porter  <dick@ximian.com>
36694         * threads.c: Make the runtime's idea of infinite timeouts coincide
36695         with the class library's
36697         Fix a particularly egregious bug in mono_thread_cleanup(). That
36698         code was so utterly bogus it must have been written on a Monday.
36700 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36702         * reflection.h: add subtypes field to TypeBuilder.
36703         * reflection.c: encode constants for literal fields.
36704         Handle subtypes. Fix user string token (and add a zero byte)
36705         at the end.
36706         
36707 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36709         * class.c (mono_class_init): bug fix: assign slot numbers for
36710         abstract methods.
36712 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36714         * reflection.c: don't try to output a code RVA for abstract methods.
36715         Small fixes for method header format. Output parameter info to the
36716         ParamDef table. Save method overriding info to MethodImpl table.
36717         Fix property support. Allow typedef.extends to be a type in the
36718         building assembly.
36719         * verify.c: fix off-by-one error.
36721 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36723         * class.c: fix mono_class_from_mono_type () for szarray types.
36724         Remove unused cache check in mono_class_from_type_spec().
36725         * icall.c: *type_from_name () functions handle simple arrays and byref.
36726         * reflection.c: handle byref and szarray types. Handle methods without
36727         body (gets P/Invoke compilation working). Handle types and fields in
36728         get_token ().
36729         * reflection.h: add rank to MonoTypeInfo.
36731 2002-01-10  Dick Porter  <dick@ximian.com>
36733         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36734         internal calls
36736 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36738         * icall.c: initialize class in type_from_handle ().
36739         Loop also in parent classes for get_method ().
36740         * reflection.c: properly encode class and valuetype types.
36741         Start on encoding TypeBuilder types. Handle fieldrefs.
36742         Use correct length when registering a user string.
36743         Handle ConstructorBuilder and MonoMethod in get_token ().
36744         Make mono_type_get_object () aware of cached types.
36745         * object.c: back out change to mono_string_new ().
36747 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36748         * object.c: mono_string_new should return a NULL when the string 
36749         passed in is NULL -- not try to deference it.
36750         
36751 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36753         * icall.c: hack to make IsSubType work for TypeBuilders.
36754         * reflection.c: emit constructors before methods.
36755         Retrieve param names in mono_param_get_objects().
36757 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36759         * Makefile.am: fix list of headers and sources so automake 1.5
36760         doesn't complain. Removed \# at end of list.
36762 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36764         * reflection.c: get token for a method ref. Set return type of
36765         constructor to void.
36766         * loader.c: debug message.
36767         * class.c: typo fix.
36769 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36771         * icall.c: fix array init with rank > 1. FindMembers
36772         loops in parent class as well.
36773         * image.c: do not insert nested types in name cache.
36774         * reflection.c: warning fix.
36775         * reflection.h: add override method (for interface impl).
36777 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36779         * metadata.c: fix customattr decoding.
36781 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36783         * rawbuffer.cs: Added native Win32 implementation, avoids using
36784         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36786 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36788         * class.c: make the low-level routines handle the cache.
36790 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36792         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36794 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36796         * class.c: fix mono_array_element_size() for objects.
36797         * class.h, class.c: add properties to MonoClass and load them
36798         at init time.
36799         * icall.c: check with isinst() when assigning a value to an array
36800         instead of requiring the classes to match exactly.
36801         Implemented icall for System.Type::GetType().
36802         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36803         enums. Handle bindingflags when looking for methods and fields.
36804         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36805         and mono_metadata_methods_from_property().
36806         * reflection.h, reflection.c: added structures for propreties,
36807         parameters and enums. Implemented mono_property_get_object() and
36808         mono_param_get_objects().
36810 2001-12-18  Dick Porter  <dick@ximian.com>
36812         * file-io.c: Use mono_string_to_utf16() instead of
36813         mono_string_chars()
36815         * object.c: Added mono_string_to_utf16(), which copies the non
36816         NULL-terminated MonoString into a new double-null-terminated
36817         buffer.
36819 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36821         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36823 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36825         * file-io.c: raise exceptions if handle is invalid.
36827 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36829         * assembly.c: yet another check for mscorlib.
36830         * class.c, class.h: load nesting info for classes.
36831         * icall.c: many new functions to support the Reflection classes.
36832         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36833         * reflection.h, reflection.c: mono_image_create_token(),
36834         mono_assembly_get_object(), mono_type_get_object(),
36835         mono_method_get_object(), mono_field_get_object(): methods to return
36836         objects that parallel the C representation of assemblies, types,
36837         methods, fields.
36839 2001-12-11  Dick Porter  <dick@ximian.com>
36841         * icall.c:
36842         * file-io.c: Internal calls for file IO.
36844 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36846         * tabledefs.h: missing FileAttributes.
36847         * verify.h, verify.c: use is_valid_string () to simplify and check for
36848         valid strings more correctly. Fix warnings and speeling.
36849         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36850         Check code: branches, maxstack, method calls.
36852 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36854         * object.c (mono_object_allocate): removed static, so that the jit
36855         can allocate value types.
36857         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36859 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36861         * class.c: init enum types right away and register the
36862         token->MonoClass map in mono_class_create_from_typedef ().
36863         * verify.h, verify.c: first cut of the verifier.
36864         * pedump.c: add --verify switch to verify metadata tables.
36865         * tabledefs.h: add some missing enums.
36867 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36869         * class.c (mono_install_runtime_class_init): impl.
36870         (mono_class_init): renamed mono_class_metadata_init to
36871         mono_class_init, also removed the metadata_inited flag
36873         * object.c (mono_object_isinst): use faster algorithm
36875 2001-11-30  Radek Doulik  <rodo@ximian.com>
36877         * mono-endian.h: reverted last change
36878         added function prototypes
36880         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36881         add mono-endian.c back
36883         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36884         for unaligned access, I've mistaked it with endianess. I am
36885         sorry.
36886         (mono_read16): fix reverted endianess
36887         (mono_read64): ditto
36888         (mono_read32): ditto
36890 2001-11-30  Dick Porter  <dick@ximian.com>
36892         * exception.c: Implement mono_exception_from_name()
36894 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36896         * metadata.h, metadata.c: remove params_size and locals_size and their
36897         calculation from the metadata code: they are only usefult to the
36898         interp.
36900 2001-11-29  Radek Doulik  <rodo@ximian.com>
36902         * object.c (mono_ldstr): swap bytes here, it's probably not the
36903         best place, but works for me now, I'll redo it once I know mono
36904         better, also note that I add PROT_WRITE and don't reset back, also
36905         note that it's only affects big endians, so x86 should be OK
36907         * mono-endian.h (read16): use just glib macros for both endians
36909         * mono-endian.c: removed as glib macros are used in in
36910         mono-endian.h so we don't need to care about endianess for read
36911         macros as glib does that for us already
36913 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36915         * class.h, class.h: take minimum alignment into consideration so
36916         that the fields of a class remain aligned also when in an array.
36918 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36920         * loader.h, loader.c: add mono_method_get_param_names().
36921         * class.c: 0-init class fields.
36923 2001-11-26  Dick Porter  <dick@ximian.com>
36925         * icall.c:
36926         * threads-types.h:
36927         * threads.c: New file that handles System.Threading on all platforms
36929         * object.c: 
36930         * object.h: Remove the synchronisation struct from MonoObject,
36931         replace it with a pointer that gets initialised on demand
36933         * Makefile.am: Replace all the system-specific threading code with
36934         a single file that uses the new wrapper library
36936 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36938         * class.c, class.h: add mono_install_trampoline() so that the runtime
36939         can register a function to create a trampoline: removes the ugly
36940         requirement that a runtime needed to export arch_create_jit_trampoline.
36941         * object.h, object.c: added mono_install_handler() so that the runtime
36942         can install an handler for exceptions generated in C code (with
36943         mono_raise_exception()). Added C struct for System.Delegate.
36944         * pedump.c: removed arch_create_jit_trampoline.
36945         * reflection.c: some cleanups to allow registering user strings and
36946         later getting a token for methodrefs and fieldrefs before the assembly
36947         is built.
36948         * row-indexes.h: updates and fixes from the new ECMA specs.
36950 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36952         * class.h, class.c: add enum_basetype field to MonoClass.
36953         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36954         to get index in the constant table reated to a field, param or
36955         property.
36956         * reflection.h, reflection.c: handle constructors. Set public-key and
36957         version number of the built assembly to 0.
36958         * row-indexes.h: update from new ECMA spec.
36960 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36962         * class.h, class.c: add a max_interface_id to MonoClass.
36963         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36964         since it's used to do that. Added mono_type_type_from_obj().
36965         Make GetType() return NULL instead of segfaulting if the type was not
36966         found. Handle simple arrays in assQualifiedName.
36967         * object.h: add a struct to represent an Exception.
36968         * reflection.c: output call convention in method signature.
36969         Add code to support P/Invoke methods and fixed offsets for fields.
36971 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36973         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36974         the value.
36975         * icall.c: use mono_array_addr instead of array->vector: fixes the
36976         reflection image writing.
36977         * reflection.c: init call convention byte to 0 in method signature.
36978         Encode the property signature. Don't output property-related methods
36979         twice. Really process the properties for a type (don't cast a field to
36980         a property, my mom always told me that).
36981         Fix 64 bit issues in pointer alignment in a different and more
36982         readable way.
36984 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36986         * loader.h: Removed type class from MonoDefaults, added monotype
36988         * loader.c: Loaded MonoType, removed loading of Type
36990         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36991         and fills in System.Type._impl with a RuntimeTypeHandle rather
36992         than the actual MonoClass *
36994         (ves_icall_type_from_handle): change from type_class to
36995         monotype_class
36997         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36998         implemented
37000         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37001         implemented
37003         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37005         (ves_icall_System_Reflection_Assembly_GetType): implemented
37007         (ves_icall_System_MonoType_assQualifiedName): implemented
37009         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37011 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37013         * assembly.c (mono_assembly_open): Implement a cache for the
37014         assemblies. 
37016         (mono_assembly_close): only destroy the assembly when the last
37017         reference is gone.
37018         
37019 2001-11-09  Dick Porter  <dick@ximian.com>
37021         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37023 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37025         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37027 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37029         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37030         from Martin Weindel.
37031         * object.h: add mono_string_chars ().
37033 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37035         * reflection.c (build_compressed_metadata): Eliminates warnings
37036         and uses 64-bit clean code.
37038         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37039         (mono_type_equal): Change signature to eliminate warnings.
37041 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37043         * icall.c, loader.c: remove the internalcall array constructors.
37044         Changes to match the new MonoArray structure.
37045         * object.h, object.c: an array object doesn't allocate an extra
37046         vector. Add mono_array_new_full () to create jagged arrays easily.
37048 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37050         * metadata.h, metadata.c: add mono_metadata_field_info () to
37051         retreive all the info about a field from vairous tables.
37052         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37053         * class.h, class.c: augment MonoClassField with more info.
37054         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37055         policy and load a field's RVA if needed.
37057 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37059         * class.c (mono_class_metadata_init): create a trampoline for all
37060         virtual functions instead of actually compiling them.
37062 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37064         * class.h, class.c: include name in MonoClassField.
37065         * class.c: fix fundamental type of System.Object and System.String.
37066         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37067         tokens in ldtoken.
37068         * icall.c: remove internalcalls for the Reflection stuff that is now
37069         done in C# code.
37070         * loader.c: mono_field_from_memberref () implementation.
37071         * mono-endian.c: thinko (s/struct/union/g).
37072         * object.c, object.h: make the mono_string_* prototypes actually use
37073         MonoString instead of MonoObject.
37074         * reflection.c, reflection.h: updates for changes in the reflection
37075         code in corlib: we use C structures that map to the actual C# classes.
37076         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37077         fat method header if needed and use the info from the ILGenerator for
37078         methods. Handle fields in types. Misc fixes.
37080 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37082         * class.c (mono_class_metadata_init): bug fix: always allocate
37083         space for static class data
37085 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37087         * class.c (mono_compute_relative_numbering): use relative
37088         numbering to support fast runtime type checks.
37090 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37092         * class.c (mono_class_create_from_typeref): added debugging output
37093         to print class name when MonoDummy is returned instead of real class
37095 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37097         * class.c (mono_class_metadata_init): interface offset table now
37098         contains pointers into the vtable - this is more efficient for the jit
37100 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37102         * class.c (mono_class_metadata_init): use a temporary vtable (the
37103         old algorithm only worked for the interpreter, but not for the jit)
37105 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37107         * loader.c (method_from_memberref): use mono_class_get to get the
37108         class of an array instead of using System.Array directly.
37109         (mono_get_method): also add MEMBERREF methods to the method cache
37110         which usefull for arrays.
37112 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37114         * pedump.c (arch_compile_method): added to compute vtable entry
37116         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37117         number of interfaces.
37118         
37119         * class.h: merged MonoArrayClass into MonoClass
37121         * class.c (mono_class_create_from_typedef): compute the vtable size and
37122         allocate space to include the vtable inside MonoClass
37123         (mono_class_metadata_init): initialize the vtable
37125 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37127         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37128         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37129         * image.c: endian fixes by Laurent Rioux.
37130         * object.h, object.c: rename MonoStringObject to MonoString and
37131         MonoArrayObject to MonoArray. Change some function names to conform to
37132         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37133         guint16* as first argument, so don't use char*.
37134         Provide macros to do the interesting things on arrays in a portable way.
37135         * threads-pthread.c: updates for the API changes and #include <sched.h>
37136         (required for sched_yield()).
37137         * icall.c: updates for the API changes above.
37138         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37139         platforms that need them.
37141 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37143         * class.c: set the correct type for all the fundamental
37144         type when loading the class.
37146 2001-10-05  Dick Porter  <dick@ximian.com>
37148         * threads-pthread.c (pthread_mutex_timedlock): Simple
37149         compatibility version for C libraries that lack this call.
37151 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37153         * class.c: MonoTypes stored in MonoClass are stored as
37154         fundamental MonoTypes when the class represents a
37155         fundamental type (System.Int32, ...).
37156         The TypeHandle return by ldtoken is a MonoType*.
37157         * icall.c: ves_icall_get_data_chunk () write out all the
37158         PE/COFF stuff. Implement ves_icall_define_method (),
37159         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37160         * image.c: properly skip unknown streams.
37161         * loader.h, loader.c: add type_class to mono_defaults.
37162         * metadata.c, metadata.h: export compute_size () as
37163         mono_metadata_compute_size () with a better interface.
37164         Typo and C&P fixes.
37165         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37166         * reflection.c, reflection.h: many cleanups, fixes, output method
37167         signatures and headers, typedef and typeref info, compress the metadata
37168         tables, output all the heap streams, cli header etc.
37169         * row-indexes.h: typo fixes.
37171 2001-10-04  Dick Porter  <dick@ximian.com>
37173         * object.h: Add a synchronisation mutex struct to MonoObject
37175         * object.c (mono_new_object): Initialise the object
37176         synchronisation mutexes
37178         * icall.c: System.Threading.Monitor internal calls
37179         
37180         * threads-pthread.h:
37181         * threads-pthread.c: System.Threading.Monitor internal calls
37183         * threads-types.h: New file, includes the system-specific thread
37184         structures
37185         
37186         * threads-pthread-types.h:
37187         * threads-pthread-types.c: New files, handle pthread-specific
37188         synchronisation types
37190         * threads-dummy-types.h: 
37191         * threads-dummy-types.c: New files of dummy support for
37192         thread-specific types
37194         * metadata.c:
37195         * image.c:
37196         * pedump.c: include mono-endian.h not endian.h
37197         
37198         * Makefile.am: More threads files.
37199         Name mono-endian.h not endian.h
37201 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37203         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37204         stuff and implement a few more bits.
37205         * icall.c: a field needs to be dereferenced twice. Do not use the same
37206         name for two variables in the same scope.
37207         * image.c, image.h: cleanups.
37209 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37211         * class.c (mono_class_metadata_init): bug fix: compute the right size
37213 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37215         * icall.c: implemented some of the Reflection internalcalls.
37216         * image.c, image.h: start writing out the PE/COFF image.
37217         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37218         that does the reverse than decode_blob_size ().
37219         * object.c: use mono_metadata_encode_value (). Move here
37220         temporary implementation of mono_string_to_utf8 ().
37221         * rawbuffer.c: make malloc_map static.
37223 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37225         * metadata.c: fix type comparison for arrays.
37226         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37227         Added a couple of new classes to monodefaults.
37228         * icall.c: added a couple of Reflection-related internalcalls.
37229         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37230         Added a byval_arg MonoType to MonoClass.
37232 2001-09-28  Dick Porter  <dick@ximian.com>
37234         * icall.c:
37235         * threads-pthread.h: 
37236         * threads-pthread.c: Implemented internal calls for
37237         LocalDataStoreSlot operations.  Applied mutexes around all shared
37238         data.  Reworked the thread creation and Start() operations to
37239         avoid a race condition.
37240         
37241         * threads-dummy.h:
37242         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37244 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37246         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37248 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37250         * class.c, loader.c: warn and return NULL instead of erroring out.
37251         * icall.c: added System.AppDomain::getCurDomain().
37252         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37254 2001-09-25  Dick Porter  <dick@ximian.com>
37256         * threads-pthread.h:
37257         * threads-pthread.c: Implemented timed thread joining and added
37258         System.Threading.Thread::Join_internal internal call
37260         * icall.c: Added System.Threading.Thread::Join_internal internal call
37262         * threads-dummy.h:
37263         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37265 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37267         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37268         mono_string_intern () to implement the semantics of the ldstr opcode
37269         and the interning of System.Strings.
37270         * icall.c: provide hooks to make String::IsIntern and String::Intern
37271         internalcalls.
37273 2001-09-23  Dick Porter  <dick@ximian.com>
37275         * threads-dummy.c: 
37276         * threads-dummy.h: New files of dummy threading routines
37278         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37279         support code based on system specifics
37281         Rename PTHREAD_LIBS to THREAD_LIBS
37282         
37283 2001-09-23  Dick Porter  <dick@ximian.com>
37285         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37286         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37287         internal calls.
37288         (mono_thread_init): Set up a Thread object instance to return when
37289         the main thread calls Thread.CurrentThread
37290         (mono_thread_cleanup): Wait for all subthreads to exit
37292         * icall.c: New internal calls for System.Threading.Thread::Sleep
37293         (including Schedule) and CurrentThread
37295         * threads.h: New file, to insulate thread-specific stuff from the
37296         rest of the code
37298 2001-09-21  Dick Porter  <dick@ximian.com>
37300         * threads-pthread.h: 
37301         * threads-pthread.c: New file, for handling pthreads-style
37302         threading support.  Start() now starts a new thread and executes
37303         the ThreadStart delegate instance.
37305         * icall.c: Added the internalcall for
37306         System.Threading.Thread::Start_internal
37308         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37310 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37312         * loader.c: work around the different signatures for delegates
37313         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37315 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37317         * class.h, class.c: add mono_class_get_field_from_name ().
37318         * *: Fix C comments and other ANSI C issues.
37320 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37322         * endian.h, assembly.c: fix some endianness issues.
37324 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37326         * loader.h, load.c: add delegate_class to mono_defaults.
37327         Handle runtime provided methods in mono_get_method ().
37329 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37331         * loader.c (mono_get_method): use pinvoke for internal call
37333         * icall.c: use pinvoke for internal call
37335         * loader.c (method_from_memberref): set the method name
37337 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37339         * metadata.c: help the compiler generate better code for
37340         mono_class_from_mono_type ().
37342 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37344         * class.c (mono_class_metadata_init): delayed computing of the
37345         class size to mono_class_metadata_init ()
37347 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37349         * class.c, class.h: add an interfaces member to MonoClass.
37350         * image.c, image.h: add assembly_name field to MonoImage
37351         from the assembly table.
37352         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37354 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37356         * class.c: Handle Array in mono_class_from_mono_type ().
37357         * metadata.c, pedump.c: some endian fixes.
37359 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37361         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37362         * metadata.c: fix small problem introduced with the latest commit.
37364 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37366         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37367         We don't need a MonoMetadata pointer anymore to compare signatures in
37368         mono_metadata_signature_equal (), update callers.
37369         Reduced memory usage an number of allocations for MonoMethodHeader and
37370         MonoMethodSignature.
37372 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37374         * metadata.c: added compare for szarray.
37376 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37378         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37379         and add a couple more types to it and mono_defaults. Give an hint on
37380         classes that need implementing in our corlib and are referenced
37381         in mscorlib.
37383 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37385         * class.h, class.c: keep track if a class is also an Enum.
37386         * loader.c: Implement a couple more types for use in libffi
37387         marshalling. Gives better diagnostics when failing to dlopen
37388         a library. Set method->klass for P/Invoke methods, too.
37390 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37392         * class.c, class.h: add a MonoType this_arg to MonoClass that
37393         represents a pointer to an object of the class' type that
37394         can be used by the interpreter and later the type cache.
37395         Add best guess alignment info for valuetype objects.
37397 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37399         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37400         into MonoType: one less level of indirection and allocation and
37401         simplifies quite a bit of code. Added cache for MonoTypes that are
37402         used frequently, so that we don't need to allocate them all the time.
37404 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37406         * class.c (mono_class_create_from_typedef): System.Enum is also a
37407         value type, although it does not derive from System.ValueType
37408         (maybe a bug in the ms compiler?)
37410         * metadata.c (mono_type_size): return the right size for value types
37412         * loader.c (mono_get_method): only initialize method header if not abstract
37414         * class.c (mono_class_from_mono_type): use mono_default values. 
37416 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37418         * *: use MonoClass pointers instead of <type_tokens>
37419         
37420         * class.h: new flag: metadata_inited.
37422         * class.c (mono_class_metadata_init): impl.
37423         (mono_class_instance_size): impl.
37424         (mono_class_data_size): impl.
37426 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37428         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37429         MonoClass now has the name and name_space fields. 
37430         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37431         mono_get_method () takes and optional MonoClass as argument.
37432         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37433         instead that takes advantage of a map from class names to typedef
37434         tokens in MonoImage.
37436 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37438         * metadata.c: zero is not a valid alignment boundary.
37439         Merge MONO_TYPE_VOID in default decoding code.
37441 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37443         * image.h: merged MonoMetadata into MonoImage
37445         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37446         identify the type of elements.
37448 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37450         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37451         * cil-coff.h: split MonoMSDOSHeader and add size info.
37452         * image.c: add some consistency checks.
37453         * metadata.c: fix row size computation: one programmer
37454         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37455         add explanation for the locator routine.
37456         Fix decoding of size in method header.
37457         
37458 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37460         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37461         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37462         function from gnome-libs.  This uses the right path separator
37463         based on the OS, and also works around a bug in some systems where
37464         a double slash is not allowed. 
37465         (default_assembly_name_resolver): Use g_concat_dir_and_file
37466         (mono_assembly_open): ditto.
37468 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37470         * metadata.c (mono_metadata_signature_equal): impl.
37472         * *: void is now a realy MonoType (instead of using NULL)
37473         
37474         * metadata.c (do_mono_metadata_parse_type): use
37475         mono_metadata_parse_type to parse void value.
37477 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37479         * metadata.c, metadata.h: in the signature and method header store
37480         only the space required for holding the loca vars and incoming arguments.
37482 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37484         * metadata.c (do_mono_metadata_parse_type): treat void like any
37485         other type (instead of assigning NULL);
37487 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37489         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37491 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37493         * image.c (do_mono_image_open): added a cache for arrays.
37495 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37497         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37498         decode a single column from a row in a metadata table and changes
37499         to take advantage of it in the typedef locator (gives a nice speed up).
37500         Store offset info for function params.
37502 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37504         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37506 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37508         * assembly.c: how could mono_assembly_close () had ever worked?
37509         * metadata.c, metadata.h: provide offset info for local vars.
37510         Implement mono_type_size () to take care of alignment as well
37511         as size (it was mono_field_type_size in cli/class.c before).
37513 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37515         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37517         * assembly.h (CORLIB_NAME): set to corlib.dll
37519         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37521 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37523         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37524         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37525         tokentype.h: massive namespace cleanup.
37527 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37529         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37531 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37533         * metadata.c (mono_metadata_free_type): added check for type !=
37534         NULL (void) before calling mono_metadata_free_type()
37536 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37538         * metadata.h, row_indexes.h: added header with enumerations to use
37539         to index in the columns from tables in metadata and to decode coded
37540         tokens: we should start using this instead of embedding magic numbers
37541         all over the code.
37543 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37545         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37546         Move metadata_t info from cli_image_info_t to MonoImage, where
37547         it's easily accessible. Changed all the uses accordingly.
37548         Added the method and class caches to MonoImage.
37549         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37550         and mono_metadata_decode_value () signature to be more consistent
37551         with the other parse functions (and simplify code). Taken advantage
37552         of zero-length array allocation with GCC. Removed reduntant (and
37553         wrong) MonoFieldType struct and use MonoParam instead. Changed
37554         mono_metadata_parse_field_type () to use common code for parsing.
37555         Added mono_metadata_typedef_from_field () and
37556         mono_metadata_typedef_from_method () to lookup a typedef index from a
37557         field or method token.
37558         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37560 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37562         * metadata.c (mono_metadata_parse_field_type): Implement. 
37563         (do_mono_metadata_parse_type): Split engine from
37564         mono_metadata_parse_type, so that we can create smaller structures
37565         for things that just have one pointer to the MonoType (look at
37566         the MonoFieldType)
37568 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37570         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37571         as Jan Gray found out, it is incorrect. 
37573 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37575         * assembly.c: Implement asssembly loading.  This loads an image
37576         and loads all the referenced assemblies.  Come to think of it, we
37577         could always do lazy loading of the assemblies. 
37579         * image.c (mono_image_open): Keep loaded images in a hashtable.
37581         * image.h (MonoImage): Add reference count.
37583 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37585         * assembly.c (mono_assembly_open): Keep track of the file name in
37586         case the assembly has no ASSEMBLY table.
37588         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37589         from get.c here.
37591 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37593         * metadata.c, metadata.h: decode local vars in method header
37594         parse function. Change callers accordingly.
37596 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37598         * metadata.h, cil-coff.h: protect against multiple inclusion.
37599         Added some new structures to hold information decoded from metadata:
37600         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37601         and relevant decoding/free functions.
37602         * metadata.c: implement decoding functions. Add warning for out of bounds
37603         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37604         all the info about a method signature and invocation. Remove check on
37605         uninitialized local var in parse_mh() and fix memory leak.
37607 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37609         * metadata.h: More macros.
37611         * tokentype.h: New file.
37613 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37615         * assembly.c: added a consistency check and initialize
37616         some structures with g_new0().
37617         * metadata.c: fixed a couple more bugs in table size computation
37618         and add other checks for out-of bound access to metadata.
37620 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37622         * metatada.c: fix bugs computing table sizes. Spew a
37623         warning when index in string heap is out of bounds.
37625 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37627         * metadata.h: Add a couple of macros to manipulate tokens. 
37629 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37631         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37632         cli_section_tables).
37634 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37636         * metadata.c (mono_metadata_user_string): New function, provides
37637         access to the UserString heap. 
37639 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37641         * metadata.c: Add inline documentation.
37643 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37645         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37646         files. 
37648 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37650         * typeattr.h: New file, TypeAttribute flags. 
37652 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37654         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37655         mono_assembly_ensure_section): Section loading code.
37656         (load_section_tables): Load the sections.
37658         * mono/metadata/metadata.c (mono_metadata_locate_token,
37659         mono_metadata_locate): Functions to locate the information
37660         definition given a token or a table and an index.
37661         (mono_metadata_compute_table_bases): New.
37662         (compute_size): New function to compute the sizes of the various
37663         tables.
37665         * mono/metadata/metadata.h: Finish listing the different index
37666         types. 
37668         * mono/metadata/pedump.c: Improve to dump new information.
37670 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37672         * mono/metadata/metadata.c: Entered all the tables matching
37673         Beta2. 
37675         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2