2010-05-26 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blobd707f7b06669a797f1fe723fb3d41bd00debaeba
1 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
4         the current fragment when allocating a TLAB.
6         Reduces number of pystone 500k minor collections by 7%.
8 2010-05-25  Martin Baulig  <martin@ximian.com>
10         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
12         * debug-mono-symfile.c: Release memory from symfiles that were
13         loaded from memory.
15 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
17         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
18         during shutdown.
20 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
22         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
23         target class and remove some dead code.
25 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
27         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
28         the MonoTypes inside method headers can be freed when the header is freed.
30 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
32         * threadpool.c: Fix the DISABLE_SOCKETS build.
34 2010-05-19 Martin Baulig  <martin@novell.com>
36         Fix #604911.
38         * threads.c (wait_for_tids_or_state_change): Use an
39         alertable WaitForMultipleObjectsEx().
40         (wait_for_tids): Likewise.
42 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
44         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
45         icall.
47         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
48         gc tracked memory.
50         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
51         argument from a gchandle.
53         * marshal.c: Get rid of the delegate_target_locations hash table.
55         Fixes #605295.
57 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
59         * sgen-gc.c: Use _fast variants for string and array length.
61 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
63         * sgen-gc.c: Fix counters to be 64 bits.
65         * sgen-gc.c (dump_heap): Fix formating strings.
67 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
69         * sgen-gc.c (global_remset_location_was_not_added): New
70         function that implements a 2 element LRU cache for just
71         added remsets. It is used to avoid adding duplicate ones.
73         * sgen-gc.c (add_to_global_remset): Check cache before
74         adding new entry.
76         * sgen-gc.c (scan_from_remsets): Don't process global remsets
77         that fail the cache test.
79         * sgen-gc.c (scan_from_remsets): Simplify the global remset
80         loop removing one condtion that is not possible.
82         A 2 element LRU cache was chosen by profiling IronPython 2.6
83         pytones with 1M passes and corlib compilation.
85         For the ipy test duplication was originally 940.92, measured
86         by "Store remsets" divided by "Unique store remsets".
88         With a 2-element LRU, duplication went to 1.007. Without the
89         check in scan_from_remsets 1.438.
91         With a 16-elements LRU, duplication reduction was negligibe.
92         A single element cache was basically of no use.
94         With corlib compilation duplication went from  1.4 to 1.02.
96         Performance results is a 20% time decrease for ipy and 2%
97         with corlib.
98 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
100         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
102 2010-05-15  Geoff Norton  <gnorton@novell.com>
104         * mono-debug.c: Fix a leak of the global table on shutdown.
106 2010-05-15  Geoff Norton  <gnorton@novell.com>
108         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
109         to clean up MonoDebugSourceLocation's.
111 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
113         * class.c (mono_class_create_from_typedef): Fail a class
114         if there is a loop with its parent.
116         Fixes #598239.
118 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
120         * loader.c (mono_loader_set_error_type_load): Convert
121         a g_warninig to mono_trace_warning.
123 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
125         * class.c (mono_class_get_full): Release strings on failure
126         to avoid leaking them.
128 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
130         * class.c (mono_class_create_from_typedef): Only return
131         the class if no exceptions were detected.
133         * class.c (mono_class_create_from_typedef): Don't remove
134         broken classes from class_cache. Just set failure and
135         bail out.
137         This fixes a memory a memory leak where resolving the same
138         broken class multiple times resulted in a memory leak.
140         The right behavior would be to actually return the class
141         a let the caller figure it out.
143 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
145         * mono-ptr-array.h: Add mono_ptr_array_sort.
147         * reflection.c (mono_image_build_metadata): Replace that ugly
148         qsort call with mono_ptr_array_sort.
150 2010-05-13  Mark Probst  <mark.probst@gmail.com>
152         * sgen-gc.c: Switch to the copying major collector, because
153         Mark&Sweep is still buggy.
155 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
157         * reflection.c (mono_image_build_metadata): Don't put managed
158         references on non-tracked memory.
160 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
162         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
164 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
166         * icall.c: Switch to mono-ptr-array.h.
168 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
170         * Makefile.am: Add mono-ptr-array.h.
172         * mono-ptr-array.h: New header that implements
173         a GC tracked equivalent of g_ptr_array. 
175 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
177         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
178         method to avoid initializing the class.
180         Fixes #605115.
182 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
184         * icall.c (ves_icall_System_MonoType_getFullName): It
185         doesn't require to init the class.
187 2010-05-11  Miguel de Icaza  <miguel@novell.com>
189         * console-unix.c: Signal handlers now save and restore errno.   We
190         have never had a bug report about this, ioctl does change errno. 
192         Hide the unused method.   
194         Remove internal declarations from public headers.
196         Document what the signal handler is doing
198 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
200         * sgen-gc.c (clear_unreachable_ephemerons): Clear
201         unreachable keys with a tombstone.
203         * sgen-gc.c (mark_ephemerons_in_range): Ignore
204         tombstone keys.
206 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
208         * icall-def.h:
209         * gc-internals.h:
210         * gc.c: New GC:get_ephemeron_tombstone.
212 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
214         * appdomain.c (create_exceptions): Rename to
215         create_domain_objects. Create the ephemeron tombstone object.
217         * domains-internals.h (MonoDomain): Add new field for the
218         ephemeron tombstone.
220         * domain.c (mono_domain_free): Set ephemeron_tombstone to
221         NULL.
223 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
225         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
226         and dislinks must be processed before LOS since they
227         could end up with pointers to memory returned to the
228         OS.
230 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
232         * class.c (mono_class_alloc): New helper function to centralize memory allocation
233         for classes, allocates either from the image mempool or from the heap.
235         * class.c: Use mono_class_alloc to allocate memory owned by classes.
237         * metadata.c (free_generic_class_dependents): Free more items belonging to
238         generic classes.
240 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
242         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
243         as well. Fixes #604054.
245 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
247         * metadata-verify.c: MS doesn't mind duplicates in the
248         typeref table. Move it to full verification.
250         Fixes #600508.
252 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
254         * image.c (do_mono_image_load): Report verification
255         errors when loading an image fails.
257 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
259         * reflection.c (mono_type_get_object): Remove chunk of code
260         no longer in use.
262 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
264         * icall-def.h
265         * icall.c: Delete some unused icalls.
267 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
269         * appdomain.c (mono_domain_has_type_resolve): Check for
270         NULL domain objects to make pedump happy.
272         * object.c (mono_field_get_value): Assert on NULL object.
273         It's the caller resposibility to check for this.
275         * object.c (mono_field_get_value_object): Ditto.
277         Fixes #601384.
279 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
281         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
282         checks can avoid doing a mono_class_init.
284         * icall.c: Remove mono_class_init from a bunch of icalls that
285         don't need it.
287         Hopefully we're now lazy enough to fix most victims of #601431.
289 2010-05-07  Mark Probst  <mark.probst@gmail.com>
291         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
293 2010-05-07  Mark Probst  <mark.probst@gmail.com>
295         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
297 2010-05-07  Marek Habersack  <mhabersack@novell.com>
299         * culture-info-tables.h: updated to include en-TT culture. Fixes
300         bug #594035
302 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
304         Move mono_class_init from mono_type_get_object to icalls.
305         This causes massive memory savings for Assembly::GetTypes () and
306         make it fail a lot less due to missing dependencies.
308         This is a conservative, naive change as it doesn't remove some
309         mono_class_init from places that might not need them. Carefull
310         review of those should follow.
312         * reflection.c (mono_type_get_object): Don't mono_class_init the
313         returning type.
315         * reflection.c:
316         * cominterop.c:
317         * icall.c:
318         * marshal.c: Call mono_class_init in functions receiving a MonoType
319         object.
321         First step into fixing #601431.
323 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
325         * gc-internal.h: Add new functions required for ephemeron support.
327         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
329         * icall-def.h: Add GC::register_ephemeron_array.
331         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
332         under sgen. Its fields must not be marked.
334         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
336         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
337         handling finalizable objects. Clean dead ones after all finalizable
338         handling.
340         * sgen-gc.c (dump_heap): Add new kind of internal memory.
342         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
343         arrays from the dead domain.
345         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
347         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
348         whose keys are reachable.
350         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
351         list of live ephemeron arrays.
353 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
355         * class.c (mono_class_layout_fields): Don't perform alignment
356         if align is zero.
358         * class.c (mono_class_layout_fields): Init field related information
359         to sane defaults.
361 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
363         * verify.c (mono_verifier_verify_class): Verify the constraint
364         of generic type definitions.
366 2010-05-04  Mark Probst  <mark.probst@gmail.com>
368         * sgen-marksweep.c: Simplify free list maintenance in sweep.
370 2010-05-02  Mark Probst  <mark.probst@gmail.com>
372         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
373         major_do_collection() across the two major collectors.
375 2010-05-02  Mark Probst  <mark.probst@gmail.com>
377         * sgen-gc.c: Add heavy statistics counter for re-added global
378         remsets.
380 2010-05-02  Mark Probst  <mark.probst@gmail.com>
382         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
383         get rid of a division in critical code.
385 2010-04-29  Mark Probst  <mark.probst@gmail.com>
387         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
388         blocks for objects without references in mark&sweep, to improve
389         performance.
391 2010-04-28  Mark Probst  <mark.probst@gmail.com>
393         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
394         statistics up-to-date.
396 2010-04-27  Mark Probst  <mark.probst@gmail.com>
398         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
399         heap-dump for mark&sweep.
401 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
403         * loader.c (mono_method_get_header): Move the is_inflated case before the
404         wrapper case, as a method can be both.
406 2010-04-27  Mark Probst  <mark.probst@gmail.com>
408         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
409         separate pass to scan pinned and large object but use the gray
410         queue like for regular objects.
412 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
414         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
415         string.h for memmove.
417         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
418         ipaddress_to_struct_in6_addr() is only needed when
419         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
421 2010-04-25  Mark Probst  <mark.probst@gmail.com>
423         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
424         separate copy_object functions for major vs nursery.  Allows us to
425         get rid of a few checks and the start and end parameters for many
426         functions.
428 2010-04-25  Mark Probst  <mark.probst@gmail.com>
430         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
431         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
432         collector.
434 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
436         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
437         calling setup_mono_type () since the nested parent could recursively reference
438         the nested class using generic constraints. Fixes #599469.
440 2010-04-24  Mark Probst  <mark.probst@gmail.com>
442         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
443         abstraction.
445 2010-04-24  Mark Probst  <mark.probst@gmail.com>
447         * sgen-gc.c: Remove more unneeded code.
449 2010-04-24  Mark Probst  <mark.probst@gmail.com>
451         * sgen-gc.c: Disable managed allocator and wbarrier when the
452         binary protocol is enabled.
454 2010-04-24  Mark Probst  <mark.probst@gmail.com>
456         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
458 2010-04-24  Mark Probst  <mark.probst@gmail.com>
460         * sgen-gc.c: Remove a few commented out and unneeded bits.
462 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
464         * threadpool.c: patch from Robert Nagy that fixes a nullref and
465         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
467 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
469         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
470         types.
472         Fixes #331126
474 2010-04-21  Mark Probst  <mark.probst@gmail.com>
476         * sgen-gc.c: Turn off semi-precise stack mark.
478 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
480         * reflection.c (mono_custom_attrs_from_index): Use right function
481         to free 'list' (i.e. g_list_free) if the verifier fails.
483 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
485                 * verify.c: Handle the case where mono_type_get_underlying_type_any
486                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
487                 and MONO_TYPE_VALUETYPE in those case.
489                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
491                 Hopefully Fixes #564253.
493 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
495         * domain-internals.h: made threadpool_jobs volatile.
496         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
497         all local jobs.
498         * threadpool.c:
499                 -When two threads try to initialize the socket IO pool,
500                 the second one waits until the intialization is finished
501                 instead of continuing right away.
502                 -Add checks for domain unload: no items added in this case.
503                 -Only measure the time every 10 elements added to the queue.
504                 This is an experiment since linux x86 gettimeofday() sucks.
505                 -Create new thread if there are none waiting for work items.
506                 -There was a missing decrement of the busy threads.
507                 -Make sure the local queue is cleaned up before exiting the
508                 thread when the program ends.
510 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
512         * reflection.c (mono_type_get_object): Normalize generics types
513         as to how managed code expect them to be. A generic instance over
514         the GTD arguments must have the same mirror as the GTD itself.
516         Fixes #473289.
518 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
520         * locales.c: Implement support for DISABLE_NORMALIZATION.
522 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
524         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
525         since it is not a MonoMethod.
527 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
529         * icall-def.h: Add get_RequiresElevatedPermissions icall to
530         System.Security.SecurityManager - used only by Moonlight
531         * security-core-clr.c|h: Add Elevated Trust/Permission support
532         for CoreCLR / Moonlight
534 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
536         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
537         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
539 2010-04-16  Marek Habersack  <mhabersack@novell.com>
541         * mono-perfcounters.c: added code for the "Mono
542         Memory/Total Physical Memory" performance counter.
544         * mono-perfcounters-def.h: added definition of the "Mono
545         Memory/Total Physical Memory" performance counter.
547 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
549         * class.c (mono_class_get_method_by_index): Return NULL
550         on type load failures.
552 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
554         * class.c (mono_class_from_typeref): Check if the supplied
555         image has an assembly bound to it.
557         Fixes #567884.
559 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
561         * loader.c (mono_method_get_signature_full): Use new function
562         inflate_generic_signature_checked to check for errors.
564         Fixes #560839.
566 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
568         * loader.c (inflate_generic_signature): Add _checked variant
569         and move this function to use it.
571 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
573         * class.c (mono_class_setup_vtable_general): Use error checking
574         version of mono_class_inflate_generic_method_full.
576         Fixes #596975.
578 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
580         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
581         error handling passing MonoError around.
583         Fixes #560336.
585 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
587         * socket-io.c: make GetHostByName ("") work on windows.
588         Fixes bug #456723.
590 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
592         * object-internals.h:
593         * threads.c: use a spin lock when accesing the per-thread appdomain
594         list.
596 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
598         * threads.c: no need to take the threads lock in push/pop appdomain.
600 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
602         * reflection.c (_mono_reflection_parse_type): MS supports
603         non-assembly-qualified types in a generic type parameter list
604         when enclosed in '[]' (which signals that they should be a fqn).
606         This breaks ECMA specs for how type names are encoded in cattr
607         blobs but F# does it.
609         Fixes #576342.
611 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
613         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
614         for instance methods/ctors.
616         Fixes #422113.
618 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
620         * reflection.c: Use the new verifier support for checking
621         custom attributes.
623         Fixes #595306.
625 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
627         * metadata-verify.c: Implement structural verification
628         of custom attributes. This check requires access to the
629         loader since to resolve the size of an enum we have to
630         look it up.
631         We don't check if named argumenments are encoded in a
632         compatible fashion to their underlying field/prop.
633         Maybe we should?
635         * verify-internals.h: Add two new cattr verification API.
637 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
639         * metadata-verify.c (decode_signature_header): Fix signature.
641 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
643         * verify.c (mono_verifier_is_enabled_for_method): Handle
644         assembly less images.
646         * verify.c (mono_verifier_is_class_full_trust): Ditto.
648 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
650         * loader.c (mono_method_signature_checked): Properly
651         init MonoError.
653         * loader.c (mono_method_signature): It's the calee
654         resposibility to init the error object.
656 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
658         * metadata-verify.c (decode_signature_header): Do proper
659         overflow checking.
661 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
663         * reflection.c: maintain the invariants required by
664         mono_class_layout_fields() also in typebuilder_setup_fields ().
666 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
668         * security-core-clr.c: Call mono_class_setup_methods in 
669         get_default_ctor before checking klass->methods. Fix typo in
670         comment
672 2010-04-10  Jb Evain  <jbevain@novell.com>
674         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
675         add .net 4.0 RTM version.
677 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
679         * reflection.c (resolve_object): Properly inflate generic
680         methods when a context is supplied.
682         Fixes #591226.
684 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
686         * verify.c (mono_method_verify): A switch op don't empty
687         the stack for the next one. Fixes a bug when running fsi
688         under --verify-all.
690 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
692         * metadata-verify.c (is_valid_standalonesig_blob): Accept
693         fields as valid standalone sig too. F# does generate them.
695         * metadata-verify.c (verify_typedef_table_full): Ignore
696         what <module> extends.
698 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
700         * verify.c (do_invoke_method): It's ok to do use call with
701         virtual, non-final methods if their class is sealed.
703 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
705         * icall.c (ves_icall_MonoField_GetValueInternal): This function
706         is a near identical copy of mono_field_get_value_object. So simply
707         call it.
709         * object.c (mono_field_get_value_object): Handle literal fields
710         on open generic classes.
712         Fixes #594942.
714 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
716         * reflection.c (mono_reflection_create_runtime_class): Setup
717         parent/supertype information again since it can be changed
718         without notice.
720 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
722         * verify.c (verify_type_compatibility_full): Properly handle
723         stores between arrays of primitives.
725         Fixes the verifier side of #555950.
727 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
729         class.c (mono_bounded_array_class_get): Properly init
730         cast_class to take the fact that uint[] and int[] can be
731         casted between each other.
733         Fixes #555950.
735 2010-04-07  Geoff Norton  <gnorton@novell.com>
737         * domain.c: Avoid a deadlock on osx.  Fixes #565765
739 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
741         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
742         builders. Fixes #594464.
744 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
746         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
747         waiting for all threads to suspend, as those threads can't be suspended.
749 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
751         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
752         to avoid crashes on newly created threads.
754 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
756         * file-io.c: reset the MonoIOStat structure in case of error.
757         Fixes bug #582667.
759 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
761         * class.c (print_implemented_interfaces): Print proper type name.
763         * class.c (mono_class_setup_vtable): Don't try that hard to produce
764         the override map for generic instances since it later ignored.
766         * class.c (mono_class_implement_interface_slow): Don't break for
767         dynamic generic instances.
769         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
771         * reflection.c (mono_reflection_method_get_handle): New method that
772         resolves a method handle.
774         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
775         case when we override methods from a dynamic generic instance interface.
777         Fixes #575941.
779 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
781         * threadpool.c: don't attempt to close the pipe when it has not been
782         created.
784 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
786         * threadpool.c: if there are no waiting threads, try to start a new
787         one. This fixes the not-so-random hangs in System.ServiceModel tests.
788         No need to use InterlockedCompareExchange to read volatile variables.
790 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
792         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
793         and reference types that point to the same class.
795         Fixes #565598.
797 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
799         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
800         when verifying compatibility between a generic instance and a generic
801         parameter.
803         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
805         * verify.c (stack_slot_stack_type_full_name): Improve verification type
806         name.
808         Fixes #587849.
810 2010-04-04  Mark Probst  <mark.probst@gmail.com>
812         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
814 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
816         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
818 2010-04-03  Marek Habersack  <mhabersack@novell.com>
820         * process.c: when cross-compiling with MinGW, force GetProcessId
821         lookup using GetProcAddress.
823 2010-04-02  Mark Probst  <mark.probst@gmail.com>
825         * sgen-gc.c: parse_environment_string_extract_number() must be
826         static.
828 2010-04-02  Mark Probst  <mark.probst@gmail.com>
830         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
831         gray_object_dequeue(), to make sure they're inlined.
833 2010-04-02  Mark Probst  <mark.probst@gmail.com>
835         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
836         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
838 2010-04-02  Jb Evain  <jbevain@novell.com>
840         * exception.c: remove dead code.
842 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
844         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
845         with mono-gc.h.
847 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
849         * sgen-gc.c: Make the nursery size adjustable by the
850         MONO_GC_PARAMS environment variable.
852         Code is contributed under MIT/X11 license.
854 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
856         * threadpool.c: threadpool threads wait is alertable.
857         Fixes bug #592964.
858         Reduced the stack size of the *poll_wait thread.
860 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
862         * exception.c|metadata-internals.h: Add new mono_get_exception_
863         field_access_msg and mono_get_exception_method_access_msg 
864         functions that accept a const char* parameter to provide more 
865         details when the exception is thrown.
866         * security-core-clr.c|h: Rework code to allow logging exceptions
867         (export MONO_LOG_MASK="security") and to supply more details in
868         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
869         mono_security_core_clr_is_field_access_allowed and 
870         mono_security_core_clr_is_call_allowed to return an exception,
871         with messages and logging, that can be emitted by method-to-ir.c
873 2010-04-01  Mark Probst  <mark.probst@gmail.com>
875         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
876         pinned object.
878 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
880         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
881         the assembly name is not well formed utf8. Fixes #567882.
883 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
885         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
886         the generic parameters from the builder. Fixes #473298.
888 2010-03-31  Miguel de Icaza  <miguel@novell.com>
890         * object.c (mono_class_proxy_vtable): Eliminate warning. 
892         * marshal.c (emit_marshal_boolean): Eliminate possible
893         uninitialized local warning. 
895 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
897         * class.c (mono_class_init): Postpone coreclr inheritance check
898         until the end of the initialization (so we can check up the 
899         default ctor manually for the core-clr inheritance rules).
900         * security-core-clr.c: Add the missing (undocumented) checks on
901         default constructors when verifying inheritance rules.
903 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
905         * domain-internals.h (MonoJitExceptionInfo): Add new field
906         handler_end to the data union. To be used to point the end
907         of a finally block.
909 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
911         * reflection.c: Add support for new v4 type
912         System.Reflection.MonoModule that is the concrete version
913         of Module which is abstract unver v4.
915 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
917         * class.c (mono_class_init): Don't set class failure after
918         inited = 1 is set. It must be done before.
920 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
922         * mono-config.c: Add support for OS "haiku"
923         * ChangeLog: Fix UTF-8 encoding
925         Code is contributed under MIT/X11 license.
927 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
929         * console-unix.c: fixed include logic for sys/ioctl.h.
931 2010-03-30  Mark Probst  <mark.probst@gmail.com>
933         * threads.c: Fix bitmap generation for TLS marking on 64 bit
934         systems.
936 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
938         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
939         unfinished/broken typebuilders.
941 2010-03-29  Mark Probst  <mark.probst@gmail.com>
943         * sgen-gc.c: Use the same heuristic for the LOS target that we use
944         for the minor section allowance.
946 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
948         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
949         "NoOptimization".
951 2010-03-29  Mark Probst  <mark.probst@gmail.com>
953         * sgen-gc.c: Count bytes allocated with heavy statistics.
955 2010-03-29  Mark Probst  <mark.probst@gmail.com>
957         * sgen-gc.c: More detailed time statistics.
959 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
961         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
962         fix the user defined mark interface to pass a pointer
963         to the object location and not the object itself.
965 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
967         * reflection.c (mono_method_body_get_object): Release
968         the method header before the call to CACHE_OBJECT since
969         this is a macro that returns.
971 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
973         * class.c (inflate_generic_type): mono_metadata_type_dup
974         already dupes array information, the g_memdup was just
975         leaking memory.
977 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
979         * verify.c: Add stack_peek function. Fix CEE_DUP
980         to not read from invalid memory if push did expand
981         the stack.
983 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
985         * verify.c: Remove old table verification code that has
986         been superseeded by the new metadata verifier.
988         * verify.h: Remove mono_image_verify_tables from the public
989         API.
991         * pedump.c: Fix for removed bits.
993 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
995         * verify.c: Allocate stack slows lazily to reduce stack usage
996         in case of methods with huge stacks. Reduces memory consumption
997         for mcs yyparse from 459Mb to 1.8Mb.
999 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1001         * threadpool.c: don't try executing items from domains being
1002         unloaded. Fixes appdomain-async-invoke test.
1004 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1006         * threadpool.c: spin while the threadpool initializes.
1007         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1008         down, don't do anything.
1010 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1012         * threads.c (mono_thread_create_internal): Set the GC type of the
1013         threads_starting_up hash table.
1015 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1017         * threadpool.c: reset 'state' to avoid returning non-null when the
1018         event type is not found.
1020 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1022         * sgen-gc.c: make copy_object () take the address of the
1023         slot holding the reference. This allows saving memory stores
1024         when not needed and it allows keeping track of oldspace->nursery
1025         references for the card table code.
1027 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1029         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1031         Code is contributed under MIT/X11 license.
1033 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1035         * object.c, threads.c, threads-types.h, threads.h: make the
1036         managed thread local storage references precisely tracked.
1038 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1040         * threadpool.[ch]: reworked the threadpool:
1041                 -Threadpool threads use a work-stealing queue. Adding a work
1042                 item from a threadpool thread will queue it in the thread
1043                 local queue without locking (in most cases).
1044                 -epoll events are coalesced before being added to the IO
1045                 queue.
1046                 -Dynamically change the number of active threads
1047                 -Changed the global queue to be more GC friendly
1049         * class-internals.h: add 2 new performance counters for the number of
1050         threads in the threadpool and the IO threadpool.
1052         * object-internals.h: new field in MonoAsyncResult.
1053         * icall-def.h: new internal call for queueing work items.
1055         * Makefile.am: add 2 new files.
1057         * appdomain.c: bump up corlib version.
1059         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1061         * mono-perfcounters-def.h:
1062         * mono-perfcounters.c: added 2 new performance counters.
1064 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1066         * sgen-gc.c: More FIXME/TODO updates.
1068 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1070         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1071         function mono_gc_invoke_with_gc_lock() which invokes a function
1072         with the guarantee that no collection will occur during its execution.
1074 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1076         * sgen-gc.c: Update a few comments.
1078 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1080         * reflection.c: Add support for new v4 type
1081         System.Reflection.MonoAssembly that is the concrete version
1082         of Assembly which is abstract unver v4.
1084 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1086         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1087         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1089         Expose a few macros that are needed for SR but not SRE to the
1090         world (previous inside the SRE ifdef)
1092 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1094         * sgen-gc.c (gc_register_current_thread): We need
1095         stack_start_limit as well in the non-attribute pthread case.
1097 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1099         * threads.c: Fix windows build.
1101 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1103         * thread-types.h: Add mono_thread_resume_interruption.
1105         * threads.c: Add mono_thread_resume_interruption, this
1106         function should be called after the last protected handler
1107         found at interruption time has finished.
1109 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1111         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1112         Check MonoInternalThread's ::state instead of ::abort_exc
1113         since the later can be lazily created.
1115         This is specially problematic when running a finally block
1116         under AbortRequested state. ResetAbort must work, but the
1117         abort_exc object has not been created because interruption
1118         has not began.
1120 2010-03-22  Geoff Norton  <gnorton@novell.com>
1122         * locales.c: Its possible for CFStringGetCStringPtr
1123         to return null and not convert encodings.  Use
1124         CFStringGetCString instead.
1126 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1128         * class-internals.h, class.c, object.c: introduce compressed
1129         interface bitmaps (for now only under small config): this saves
1130         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1131         startups.
1133 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1135         * mono-debug.c: don't try to get the method header, it causes a
1136         deadlock and it is not used for anything anymore.
1138 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1140         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1141         broken by the last change.
1143 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1145         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1146         SOCK_RDM.
1147         
1148         Code is contributed under MIT/X11 license.
1150 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1152         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1153         nursery.
1155         Code is contributed under MIT/X11 license.
1157 2010-03-19  Martin Baulig  <martin@ximian.com>
1159         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1160         dummy field, containing an empty string.
1161         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1164 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1166         * class.c: setup_interface_offsets() refactor to not call
1167         mono_class_get_implemented_interfaces () more times than needed and
1168         to reduce the runtime memory requirements to be O(num_interfaces)
1169         instead of O(max_interface_id).
1171 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1173         * mono-mlist.[ch]: add mono_mlist_set_next ().
1175 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1177         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1178         associated changes to support holes in the protected range of a
1179         try block.
1181         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1182         retrieves the holes table from a given MonoJitInfo.
1184 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1186         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1187         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1188         hide the contents of the MonoString and MonoArray structs from the
1189         public API. Change the accessor macros to accessors functions where
1190         needed. Adjusted the array API to allow for pointer-sized lengths and
1191         starting positions, so 64 bit arrays can be optionally provided in an
1192         API compatible way if needed on 64 bit systems.
1194 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1196         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1197         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1199 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1201         * class-internals.h: remove the method header from MonoMethod since
1202         from now on it will be transient. We have a header pointer for method
1203         wrappers, since in that case we need to keep track of it. For this
1204         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1205         structs now. The same happens with MonoMethodInflated.
1206         * class.c: reset the sre_method flag for inflated method structures:
1207         this makes the code that cares look at the header in the MonoMethodInflated
1208         structure.
1209         * loader.c: lookup the method header in the appropriate field now that
1210         it is removed from MonoMethod.
1211         * metadata-internals.h: add a flag to the method header to know if it
1212         can be freed inside mono_metadata_free_mh ().
1213         * method-builder.c: updates after moving the header field from
1214         MonoMethod to MonoMethodWrapper.
1215         * reflection.c: MonoMethods generated from Reflection.Emit use
1216         MonoMethodWrapper structs if they need a method header now (later take
1217         advantage of this and remove all the current unsafe uses of method_aux_hash).
1218         * metadata.c: make method header parsing not leak when verification
1219         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1220         These changes save a few hundred KB of runtime memory in a mcs
1221         bootstrap or a monodevelop startup.
1223 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1225         * verify.c: Improve error message.
1227 2010-03-12  Jb Evain  <jbevain@novell.com>
1229         * reflection.c (add_exported_type): populate the exported
1230         table with the type's nested type.
1232 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1234         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1235         can't read parentheses.
1237 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1239         * threads.c (thread_cleanup): Add a guard to dereferencing
1240         "thread" to avoid an unlikely race condition.
1242 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1244         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1245         instead of an empty string.
1247 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1249         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1250         convert to a boolean, recent gcc versions compile this differently.
1252 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1254        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1255        inlined.
1257 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1259         * sgen-gc.c (STRING_SIZE): Off by one.
1261 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1263         * sgen-archdep.h: Fix the signal context register access for
1264         AMD64.
1266 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1268         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1270 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1272         * verify.c: Store the initial basic block returned by mono_basic_block_split
1273         so we can release the whole list and not just the first one.
1275 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1277         * verify.c, debug-helpers.c, profiler.c, loader.c,
1278         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1279         MonoMethodHeader a transient entity.
1281 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1283         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1284         uncontrolled growth of the gray stack.
1286         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1287         added items are removed first, improving cache locality. Avoid freeing queue
1288         segments in the fast path, use the list of segments as the free list, truncate
1289         it to its max size at the start of collection.
1291 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1293         * metadata-internals.h: more memory savings, both with small config and without.
1296 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1298         * appdomain.c, domain-internals.h, domain.c, object.c:
1299         make class_vtable_hash into an array to reduce memory usage.
1301 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1303         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1304         object-internals.h, object.c, reflection.c, threadpool.c:
1305         reduce resource usage when the small config is selected.
1306         In particular, up to 64K of methods/fields/properties/events
1307         are allowed and "other" methods in events are ignored.
1309 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1311         * threads.c: reduce resource usage when compiled for a small config.
1313 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1315         * sgen-gc.c: Also collect number of degraded-alloced objects with
1316         heavy statistics.
1318 2010-03-04  Geoff Norton  <gnorton@novell.com>
1320         * assembly.c: Only support OSX bundling if the bundle is 
1321         actually detectable.
1323 2010-03-04  Geoff Norton  <gnorton@novell.com>
1325         * loader.c: The marshal specs are freed at the end of the call
1326         but it explicitly frees the strings as well as the container,
1327         so we need to dup them too to avoid referencing free'd memory.
1329 2010-03-04  Geoff Norton  <gnorton@novell.com>
1331         * icall-def.h:
1332         * icall.c: Add a new private internal icall to construct
1333         an object from its type without running the ctor.
1335 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1337         * profiler.c: allow multiple profiler engines to be loaded
1338         at the same time.
1340 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1342         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1343         profiler event to track object moves.
1345 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1347         * object.c, profiler.c, profiler.h, string-icalls.c:
1348         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1350 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1352         * decimal.c (mono_double2decimal): Add support for reducing the
1353         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1354         expected.
1356 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1358         * icall-def.h:
1359         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1361 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1363         * mono-config.c (mono_config_parse_assembly_bindings): added -
1364         parses assembly binding redirections from appdomain's config
1365         file.
1367         * metadata-internals.h: added definition of a new function -
1368         mono_config_parse_assembly_bindings - to support parsing assembly
1369         binding redirections defined in appdomain's config file.
1371         * domain-internals.h: added two new fields to _MonoDomain - a list
1372         of assembly bindings and a flag to parse the config file only
1373         once.
1375         * assembly.c (assembly_binding_maps_name): empty culture name and
1376         NULL culture name are considered equal.
1377         (mono_assembly_apply_binding): added support for domain specific
1378         assembly binding redirections, read from the appdomain's
1379         configuration file. Fixes bug #580185
1381 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1383         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1384         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1385         support.
1387 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1389         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1390         from this function. The new function receive the parent token instead of a type.
1392         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1393         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1394         typebuilders. This make it possible to properly encode generic type builders since
1395         their unmanaged type don't have generics data while unfinished.
1397         Fixes #583655.
1399 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1401         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1402         writing binary log files (can be enabled by #define'ing
1403         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1404         bugs in longer running programs.
1406 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1408         * metadata.c: added some API documentation.
1410 2010-03-01  Robert Jordan  <robertj@gmx.net>
1412         * filewatcher.h: Include glib.h to fix the MSVC build.
1414 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1416         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1417         a GC handle instead. This is a bit slower to access, but avoids burdening the
1418         GC with 100s of individual roots.
1420         * reflection.c (mono_class_get_ref_info):
1421         (mono_class_set_ref_info):
1422         (mono_class_free_ref_info): New internal helper fuctions.
1424         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1425         of accessing klass->reflection_info directly.
1427         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1428         words.
1430         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1431         the previous array.
1433 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1435         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1436         needs an indirection.
1438 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1440         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1441         so all generic sharing code is in one place.
1443         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1444         we don't call setup_interface_offsets () for unfinished types.
1446 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1448         * class.c (mono_class_generic_sharing_enabled): Move this to
1449         generic-sharing.c.
1451         * image.c: Add an unload hook which is called before an image is unloaded.
1453         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1454         metadata.c having to depend on generic sharing.
1456 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1458         * class.c: reduce size of ridiculously large cache.
1460 2010-02-26  Martin Baulig  <martin@ximian.com>
1462         * mono-debug.h
1463         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1465         * threads.c (mono_thread_internal_reset_abort): New method; resets
1466         the abort, but doesn't throw any exception if no abort was requested.
1468 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1470         * class.c (get_implicit_generic_array_interfaces): Call
1471         mono_class_setup_interface_offsets () before accessing
1472         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1473         some reason.
1475 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1477         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1478         icall internal.
1480 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1482         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1483         direct access to the MonoType fields.
1485 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1487         * threads.h: Move some internal functions which were added to this header by
1488         mistake to threads-types.h.
1490         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1492 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1494         * class-internals.h, class.h, object.h: make MonoRemoteClass
1495         and mono_remote_class() internal.
1497 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1499         * metadata-internals.h, class-internals.h, metadata.h: make the
1500         MonoType guts internal as well.
1502 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1504         * reflection.h: the MonoTypeNameParse guts are internal now.
1505         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1506         are internal now, provide accessors as needed.
1507         * metadata.h, metadata-internals.h: the MonoMethodSignature
1508         guts are internal now.
1509         * Makefile.am: mempool.h is an internal header now.
1510         * *.h, *.c: remove glib.h usage from the public headers.
1512 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1514         * culture-info-table.h : regenerated.
1516 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1518         * metadata.c: Add mono_method_get_header_summary which returns minimal
1519         information about the header of a method. This is the information used
1520         by the inline oracle to reject methods.
1522         This method doesn't decode local variables and doesn't cache it's result,
1523         so it should cause a minimal reduction in memory usage.
1525         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1526         mono_method_get_header_summary.
1528 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1530         * threads.c (mono_thread_exit): Make sure that the main thread is
1531         non-null before dereferencing it.
1533 2010-02-21  Geoff Norton  <gnorton@novell.com>
1535         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1536         locale.
1537         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1538         before falling back to the posix lookup.
1540 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1542         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1543         the DONT_MANAGE flag set.
1545 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1547         * domain.c: Remove old v1 version strings. Let the runtime
1548         default to 2.0 instead of failing because it can't find a
1549         working 1.0 instalation.
1551 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1553         * domain.c: Add v4 RC version string.
1555 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1557         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1558         of overflow checking function.
1560 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1562         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1563         generic methods.
1565         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1566         cases for ParameterInfo.
1568         Fixes #579493.
1570 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1572         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1573         have has_cctor set. Fixes #575946.
1575 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1577         * appdomain.c: display a warning if the parsing the config file
1578         produces any error.
1579         Skip the BOM in UTF-8 files.
1580         Copy the AppDomainSetup before setting the privateBinPath so that the
1581         correct configuration file is read.
1583 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1585         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1586         vtable trampoline per vtable slot index. Not used yet.
1588 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1590         * icall-def.h:
1591         * icall.c: add internal call that returns the system page size.
1593 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1595         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1596         'int' for system classes.
1598 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1600         * icall.c, icall-def.h: new icall to check for sufficient
1601         stack space.
1603 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1605         * reflection.c (ensure_complete_type): Check that reflection_info
1606         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1608 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1610         * attrdefs.h:
1611         * tabledefs.h: Add NoOptimization flag.
1613 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1615         * sgen-gc.c: Don't consider it a missing remset if the target
1616         object is pinned - we might have done the store but not added the
1617         remset yet.
1619 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1621         * sgen-gc.c: When checking for missing remsets, don't assert on
1622         the first one, but print them all and then assert.
1624 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1626         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1628 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1630         * console-unix.c: On OSX Control-Y is assigned to
1631         VDSUSP (non-Posix), the
1632         suspend-program-next-time-it-tries-to-read-input command (this is
1633         different than C-z, which suspends immediately).
1635         Do the same thing that bash does and ignore this setting,
1636         making our repl/getline support pasting.
1638 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1640         * sgen-gc.c: Simple plausibility check for scan_starts.
1642 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1644         * sgen-gc.c: Round up when calculating the number of scan starts.
1646 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1648         * reflection.c: Export mono_get_object_from_blob.
1650         * object-internals.h: Ditto.
1652         * icall.c: New icall property_info_get_default_value to get the default
1653         value of a property. Since using this is not common, no caching is done.
1655         * icall-def.h: Add new icall.
1657 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1659         * class.c: Add mono_class_get_property_default_value.
1661         * class-internal.h: Export mono_class_get_property_default_value.
1663 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1665         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1667 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1669         * sgen-gc.c: introduced critical regions to allow some lockless
1670         operations and increase scalability.
1672 2010-02-10  Geoff Norton  <gnorton@novell.com>
1674         * reflection.c: Support building with DISABLE_REFLECTION
1676 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1678         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1679         Closes bug #566057.
1681         * exception.c: fix typo in comment.
1683 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1685         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1686         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1688         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1690         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1691         the internal API.
1693         Fixes #574434.
1695 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1697         * threads.c: Removed two assertions that were too strict.  Added a
1698         clarifying comment.  Fixes #577090.
1700 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1702         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1703         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1705         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1707         * verify.c (mono_type_get_stack_name): Fix a warning.
1709 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1711         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1712         mono_marshal_wrapper_info_from_wrapper.
1714         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1715         mono_marshal_method_set_wrapper_data, and export.
1717         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1718         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1719         by calling mono_marshal_get_wrapper_info ().
1721         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1722         small objects which does no size checks.
1724 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1726         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1728 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1730         * verify.c (mono_method_verify): Use the new basic block formation pass
1731         to avoid verifying dead basic blocks. This is the same behavior as the
1732         runtime MS verifier.
1734 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1736         * mono-basic-block.c:
1737         * mono-basic-block.h: New implementation of a basic block formation pass.
1738         The formation pass does static liveness analysis as well to detect dead
1739         basic blocks.
1741 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1743         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1744         'this' argument in icalls.
1746 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1748         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1750 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1752         * object.c, domain.c: When using SGen, we must register
1753         vtable->type as a root if it's not a MonoType, because then it
1754         wasn't pin-alloced.
1756 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1758         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1759         at the start of nursery collections, because we might have had
1760         degraded allocations which changed next_data.
1762 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1764         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1765         custom attr so this function works in cross-compiling mode.
1767 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1769         * class.c (make_generic_param_class): Initialize interface offsets since we
1770         set klass->inited. Fixes #574819.
1772 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1774         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1775         calling the JIT domain cleanup hook.
1777 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1779         * pedump.c (main): Properly set the verifier mode when running the metadata
1780         verifier.
1782 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1784         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1785         overlapping fields now that we're called before has_references is set.
1787         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1788         method. Otherwise all sort of weird stuff happens.
1790 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1792         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1793         Fixes #572874.
1795 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1797         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1798         Fixes #573322.
1800 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1802         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1803         pin_staging_area_index is greater than 0.
1805 2010-01-22 Miguel de Icaza (miguel@novell.com)
1807         * loader.c: Since we do nothing with the error returned, pass NULL
1808         to ignore the error.
1810 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1812         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1813         happened before starting to encode the actual fields. This avoid ciclic
1814         dependencies and eventual crashes.
1816         Fixes #572660.
1818 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1820         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1821         atomic and remove the half-constructed hack in SGen.
1823 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1825         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1826         has a recursive reference to itself.
1828         Fixes #571863.
1830 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1832         * loader.c (mono_method_signature): Fix error message.
1834 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1836         * sgen-gc.c: Reuse to-space sections between nursery collections.
1838 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1840         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1841         from the current assembly or mscorlib. Fixes bug #322957.
1843 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1845         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1846         get_wrapper_target_class.
1848 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1850         * sgen-gc.c: Fix warnings.
1852 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1854         * verify.c (store_local): Better error message.
1856 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1858         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1859         arguments.
1861 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1863         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1864         function is generics variance aware.
1866 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1868         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1869         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1871 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1873         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1874           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1876         Code is contributed under MIT/X11 license.
1878 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1880         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1881         on a GTD.
1883 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1885         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1886         return a point to a wrapper specific info structure describing the wrapper.
1887         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1889 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1891         * sgen-gc.c: Make minor collection section allowance adaptive,
1892         depending on the amount of memory reclaimed in the last major
1893         collection.  If more memory was reclaimed (i.e. more garbage
1894         produced), do the next collection earlier.
1896 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1898         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1899         to itself.
1901         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1902         the token as parameter.
1904         * verify-internals.h: Ditto.
1906         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1908         Fixes #571460.
1910 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1912         * sgen-gc.c: Make store_remset_buffer_index long.
1914 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1916         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1918         Fixes #569579.
1920 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1922         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1923         off precise marking if it is available.
1924         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1926 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1928         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1930         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1931         pinned objects.
1933         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1934         to the array allocator.
1936 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1938         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1939         result of mono_compile_method (), it already includes an ftnptr.
1941 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1943         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1945 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1947         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1948         hash value which doesn't depend on glib/eglib versions.
1949         (mono_metadata_type_hash): Use it.
1951         * object.c (mono_method_get_imt_slot): Ditto.
1953 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1955         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1956         independently of the GTD.
1958         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1960         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1961         to the upper limit since instance_size includes this amount.
1963         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1965         Fixes #569544.
1967 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1969         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1970         with static methods.
1972         * object.c (build_imt_slots): Avoid asserting when static methods are
1973         encountered in an interface.
1975 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1977         * sgen-gc.c (to_space_expand): Fix assertion.
1979 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1981         * string-icalls.c: missing declaration fixes.
1982         * sgen-gc.c: portability fixes.
1984 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1986         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1988         * class.c:
1989         * cominterop.c:
1990         * icall.c:
1991         * object.c: 
1992         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1994 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1996         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1997         it can fail loading the type.
1999         * class.c: Add mono_class_inflate_generic_class_checked.
2001         * class.c:
2002         * verify.c:
2003         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2005 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2007         * loader.c (mono_method_signature_checked): New internal function taking an
2008         MonoError argument.
2010         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2011         Fixes build on rh 7.3.
2013 2010-01-10  Aaron Bockover  <abockover@novell.com>
2015         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2016         at runtime in the same way as on Windows, which yields a relocatable
2017         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2018         of the running mono process.
2020         On TARGET_ARM, fallback () will always be executed.
2022 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2024         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2026 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2028         * class.c (mono_class_is_assignable_from_slow): Support variant
2029         generic delegates.
2031         * class.c (mono_class_implement_interface_slow): Support types with
2032         variant generic arguments.
2034 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2036         * verify.c: Remove some code duplication.
2038 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2040         * object.c: Update docs.
2042 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2044         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2046         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2047         fallback trampoline as well.
2049         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2050         out argument that is set to TRUE if the match was direct. 
2052         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2054         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2056 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2058         * class.c: Add mono_class_interface_offset_with_variance function that does same
2059         as mono_class_interface_offset but takes variance into account.
2061         * class-internal.h: Export mono_class_interface_offset_with_variance.
2063         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2065 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2067         * object.c:
2068         * icall.c:
2069         * class.c: Add some FIXME for due to variant generic arguments.
2071         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2072         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2073         the bitfield check fails.
2075 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2077         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2078         to be easier to read and fix bugs in the case a non generic type implements a variant
2079         interface.
2081         * class.c (mono_class_has_variant_generic_params): Make non static.
2083         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2084         the private API.
2086 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2088         * assembly.c: fix MONO_PATH debug output.
2090 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2092         * culture-info-table.h : regenerated.
2094 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2096         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2097         types that are meant to not have a parent.
2099 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2101         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2102         from the image mempool, so it is not leaked.
2104 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2106         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2108 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2110         * verify.c (verify_valuetype_layout_with_target): Fix case
2111         that can lead to infinite recursion. Fix bug #567861
2113 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2115         * pedump.c: Run code verifier even if image verification fails
2116         due to a failed type we. This allows more errors to be shown.
2118 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2120         * class.c (count_virtual_methods): Remove the assert and now
2121         fail properly.
2122         
2123         * class.c (setup_interface_offsets): This can fail now.
2125         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2126         errors. Check setup_interface_offsets errors.
2128         * class.c (setup_interface_offsets): Simplify the return error logic
2129         and remove class_init_ok.
2131         Fixes #560327.
2133 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2135         * class.c (mono_class_init): Do class verification at the beginning. Add
2136         some asserts to avoid tripping into invalid memory.
2138         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2139         g_error and a decent message.
2141         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2143         Fixes #567548.
2145 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2147         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2148         as inline functions instead of defining them in mempool.c.
2150         * metadata-internals.h (MonoImageSet): New structure representing a set of
2151         MonoImages, which own a collection of generic instances.
2153         * metadata.c: Get rid of the global generic caches, instead assign each generic
2154         instance to the image set which consists of all the images referenced by the
2155         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2156         the memory used by generic instances to be allocated from a per image-set mempool
2157         later.
2159 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2161         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2163 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2165         * appdomain.c (zero_static_data): Fix a warning.
2167         * locales.c (construct_culture_from_specific_name): Applied patch from
2168         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2169         not found. Fixes #567900.
2171 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2173         * loader.c (mono_method_get_signature_full): Remove two asserts.
2174         Return NULL instead so that the verifier can handle both cases 
2175         gracefully.
2177 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2179         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2180         so we can properly fail types instead of crashing.
2182         Fixes #567676.
2184 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2186         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2187         generic method.
2189 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2191         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2193 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2195         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2196         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2197         we can't remove it from it since we don't hold the lock.
2198         (mon_new): Free the orphaned events here when a mon structure is added to the
2199         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2200         this down.
2202 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2204         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2205         as max stack might be zero.
2207         Fixes #562320.
2209 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2211         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2213         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2214         instances if the GTD did.
2216         * class.c (mono_class_setup_properties): Ditto.
2218         * class.c (mono_class_setup_events): Ditto.
2220         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2222         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2223         error setting.
2225         * class.c (mono_class_init): Fail if GTD did.
2227         * cominterop.c:
2228         * generic-sharing.c:
2229         * icall.c:
2230         * loader.c:
2231         * object.c:
2232         * verify.c: Properly handle failure of mono_class_setup_methods.
2234 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2236         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2237         mono_class_inflate_generic_method_full internal.
2239         * class.c (inflate_generic_context): Now takes a MonoError argument.
2241         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2242         errors.
2244 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2246         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2247         they cannot be patched. Partly fixes #564408.
2249 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2251         * metadata-internals.h, reflection.c: Use the
2252         MonoDynamicImage.handleref hash table only with unmanaged keys,
2253         and add a managed hash table handleref_managed for managed keys.
2255 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2257         * sgen-gc.c: Unset to-space bumper between collections.  It might
2258         become invalid due to degraded allocations.
2260 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2262         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2263         with the one from the original method.
2265         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2266         compatibility.
2268         * verify-internals.h: Add new function to the internal API.
2270 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2272         * culture-info-tables.h: regenerated it to include the Georgian culture.
2274 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2276         * sgen-gc.c: Include mono/utils/memcheck.h.
2278         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2279         instead of the current domain, since the two might not match if this is called
2280         from the debugger.
2282         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2283         domain which created this assembly.
2285 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2287         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2289 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2291         * sgen-gc.c: Managed implementation of the specialized generic
2292         store write barrier.
2294 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2296         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2297         A private virtual newslot method is used to implement an interface method without exposing
2298         it to users. When querying for public instance methods, such method would hide a public one
2299         on a parent type.
2301         Fixes #564379.
2303 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2305         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2306         conventions.
2308 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2310         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2312 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2314         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2315         as they are no longer used.
2316         
2317          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2319         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2321 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2323         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2324         if the owner class has not been finished before returning reflection_info.      
2326         Fixes #565127.
2328 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2330         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2331         param doesn't have custom attributes. Fixes #565117.
2333         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2334         #565120.
2336 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2338         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2340 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2342         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2343         same amount done by a core-clr enabled runtime.
2345 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2347         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2348         the target files is reset to writable by owner and readable by
2349         everyone else to prevent problems when updating shadow copies of
2350         files whose source is read-only. Fixes bug #556884
2352 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2354         * class.c (mono_generic_class_get_class): Allocate the generic
2355         class via malloc again, so that it can be freed when any one of
2356         the images of its constituent types is closed.
2358         * metadata.c: When closing an image, don't free generic insts and
2359         generic classes right away, but put them into a list for later
2360         freeing.
2362         * image.c, metadata-internals.h: Store the free list and in the
2363         second pass of closing an image, free it.
2365 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2367         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2369         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2370         types in type_hash.
2372         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2374 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2376         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2377         user type.
2379         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2380         is used.
2382 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2384         * verify.c (mono_method_verify): The Unused opcodes produce an
2385         InvalidProgramException on .NET
2387 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2389         * loader.c (mono_method_get_header): Move assert after the verifier
2390         has been called on the method header.
2392 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2394         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2396         * appdomain.c: Bump corlib version.
2398 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2400         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2401         types as well since otherwise generic instances would not return UT as arguments but
2402         their undelying system type.
2404         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2405         to reflect the fact that they can have now multiple different types.
2407         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2409         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2411         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2413         * reflection.c (mono_reflection_register_with_runtime): Init super types
2414         if the image is not dynamic.
2416         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2417         check if the generic type definition is a TypeBuilder.
2419         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2420         doesn't belong to a dynamic image, skip initialization.
2422         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2423         base definition is not a dynamic type.
2425 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2427         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2428         mono_profiler_string_allocation
2430         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2431         if string profiling is enabled, call
2432         mono_profiler_string_allocation
2434         * profiler.h: added two MonoProfileFlags -
2435         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2436         installation functions for the hooks below.
2438         * profiler-private.h, profiler.c: added two hooks:
2439         mono_profiler_string_allocation called whenever a string is
2440         allocated by InternalAllocateStr and mono_profiler_iomap called
2441         whenever IOMAP code performs an adjustement on a file path.
2443 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2445         * boehm-gc.c: fixed race condition while getting the target of a
2446         disappearing link (bug #522233).
2448 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2450         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2451         the error.
2453 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2455         * reflection.c: Add mono_reflection_register_with_runtime icall to
2456         allow a MonoGenericClass to register itself as the managed mirror of
2457         a given generic instance.
2458         This is a temporary workaround until all MGC instantiation happens in
2459         managed code.
2461         * object-internals.h: Ditto.
2463         * icall-def.h: Ditto.
2465 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2467         * sgen-gc.c (find_in_remsets): Also search the generic store
2468         remsets.
2470 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2472         * sgen-gc.c: Don't access class names in debugging code when
2473         unloading a domain, because they might not be valid anymore.
2475 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2477         * domain.c, domain-internals.h: New function mono_domain_unset().
2479         * appdomain.c (unload_thread_main): Detach the thread again at the
2480         end.
2482         * threads.c: When a thread exists or is detached, unset its domain
2483         so that it's NULL when, for example, a pthread destructor runs.
2485         * sgen-gc.c: Assert that there is no domain set after a thread is
2486         done.
2488 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2490         * class.c (mono_generic_class_get_class),
2491         metadata.c (free_generic_class): Allocate generic MonoClass's from
2492         the image mempool, not via malloc.  The problem with malloc is
2493         that when unloading a domain those classes are freed before
2494         clearing the heap and SGen needs the classes.  Rewriting the
2495         unloading code to do the free later would be more work and there's
2496         no point in using malloc anyway.
2498 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2500         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2501         before returning.
2503 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2505         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2506         user string blobs.
2508         * verify-internals.h: Add new function to the internal API.
2510         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2511         check if it's a valid string.
2513         * object.c (mono_ldstr): Ditto.
2515         Fixes #561943.
2517 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2519         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2520         from a method before returning it. This is the expected behavior.
2522 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2524         * reflection.c (inflate_method): Handle the case of a regular system type.
2526 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2528         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2529         gathering code.
2531         * mempool.c, mempool-internals.h: New function
2532         mono_mempool_get_bytes_allocated().
2534         * Makefile.am: sgen-pinning-stats.c added.
2536 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2538         * sgen-gc.c (create_allocator): Only use the fast path if the
2539         object size is within the small object size limit.
2541 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2543         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2544         possibly adding padding to sizeof (GCMemSection).
2546 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2548         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2549         reference is not in the nursery.
2551 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2553         * class.c (mono_class_from_typeref): Bounds check idx against the 
2554         assemblyref table.
2556 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2558         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2559         through the potential roots, then sort the results and find the
2560         pinned objects from there.
2562         * Makefile.am: sgen-pinning.c added.
2564 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2566         * sgen-gc.c: Record generic stores in specialized remset buffers.
2568 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2570         * sgen-gc.c: Make pinned chunks the same size as major heap
2571         sections, and align them as well, so that we can check whether an
2572         object is in a pinned chunk or a major section in constant time.
2574 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2576         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2578 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2580         * sgen-gc.c: Make all major heap sections the same size (currently
2581         128k) and allocate them on aligned addresses.  Small heap sections
2582         give us better granularity with pinned objects - we can free up
2583         much more memory.
2585 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2587         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2588         output removed.
2590 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2592         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2594         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2595         names in addition to the runtime generated one.
2597         * mono/metadata/image.h: Add a function to take the real name of the assembly
2598         image.
2600         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2601         use it instead of the runtime generated one.
2603         Code is contributed under MIT/X11 license.
2605 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2607         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2608         before the other checks to prevent problems if the DateTime class is blittable.
2609         Hopefully fixes #559600.
2611 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2613         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2614         returns the largest string length that will not be put into the
2615         LOS.
2617         * sgen-gc.c, gc-internal.h: New function that returns the largest
2618         object size that will not be put into the LOS.
2620         * appdomain.c: Bump corlib version.
2622 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2624         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2626         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2628 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2630         * reflection.c (inflate_method): Fix signature.
2632         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2633         in managed code.
2635 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2637         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2639 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2641         * sgen-gc.c: Abstract to-space handling.
2643 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2645         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2647         Fixes #559906.
2649 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2651         * sgen-gc.c: Only add references from outside the nursery to
2652         within the nursery to the global remset list.
2654 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2656         * appdomain.c (create_exceptions): Set the domain temporarily if
2657         necessary to avoid cross-domain references.
2659 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2661         * verify.c (get_stack_type): Return that the type is invalid instead of
2662         asserting.
2664         * verify.c (mono_method_verify): Verify that all locals and arguments
2665         have valid stack types.
2667         Fixes #559913.
2669 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2671         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2672         bounds checking overflow aware.
2674         Fixes #559910.
2676 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2678         * verify.c (do_invoke_method): Check for invalid method signatures.
2680         Fixes #553450.
2682 2009-12-02  Jb Evain  <jbevain@novell.com>
2684         * appdomain.c (MONO_CORLIB_VERSION): bump.
2685         * icall-def.h (get_base_definition): renamed to get_base_method
2686         and add a boolean argument indicating we want the original
2687         method definition, or the immediate base method.
2688         * icall.c: apply the get_base_definition to get_base_method change.
2690 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2692         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2694         Fixes #558042.
2696 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2698         * class.c: remove asserts for invalid type token in
2699         mono_class_name_from_token(), mono_assembly_name_from_token() and
2700         mono_class_create_from_typedef () (fixes bug #553318).
2702 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2704         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2705         incorrect assemblies (bug #553322).
2707 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2709         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2711         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2713         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2715         * class.c (inflate_generic_context): Ditto.
2717         * loader.c (method_from_methodspec): Ditto.
2719         Fixes #558230.
2721 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2723         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2725         * class.c (mono_class_create_from_typespec): Ditto.
2727         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2729         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2731         Fixes #558184.
2733 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2735         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2737         * verify.c (verify_delegate_compatibility): Ditto.
2739         * verify.c (do_newobj): Ditto.
2741         Fixes #558046.
2743 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2745         * sgen-gc.c: Use a gray queue instead of requiring that gray
2746         objects are in a contiguous region.
2748         * sgen-gray.c: The gray queue implementation.
2750         * Makefile.am: sgen-gray.c added.
2752 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2754         * appdomain.c: When unloading a domain, zero its static data and
2755         perform a minor collection when using SGen.  That will get rid of
2756         all the remsets pointing into that domain's static data.
2758         * sgen-gc.c: Allow remsets into static data.  By doing this we
2759         need less checks so we're more efficient.
2761 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2763         * verify.c (mono_method_verify): Check for catch clauses with broken
2764         types.
2766         Fixes #558465.
2768 2009-12-01  Jb Evain  <jbevain@novell.com>
2770         * class.c (make_generic_param_class): set the namespace of
2771         the generic parameter class from its owner, if available.
2773 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2775         * verify.c (code_bounds_check): Do proper overflow checking.
2777         * verify.c (mono_method_verify): The number of switch entries is
2778         an unsigned int. Properly bounds check it.
2780         Fixes #558594.
2782 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2784         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2785         mono_metadata_method_has_param_attrs which only checks if a given param
2786         list has a non zero flags entry.
2788         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2789         to inform how many params should we expect to decode.
2791         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2792         as it's faster than mono_metadata_get_param_attrs.
2794         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2795         add mono_metadata_method_has_param_attrs.
2797 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2799         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2800         failures.
2802         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2803         is -1 but its class is broken.
2805         Fixes #558522.
2807 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2809         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2810         for parameter overflow.
2812         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2813         of mono_metadata_get_param_attrs.
2815         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2816         API.
2818         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2820 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2822         * class.c (mono_class_setup_fields): Check for fields with broken types.
2824         Fixes #558741.
2826 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2828         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2829         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2830         its TypeBuilder::CreateType ().
2832         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2833         if not needed.
2835         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2836         to make setup_interface_offsets happy.
2838         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2839         compilation now works.
2841 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2843         * appdomain.c (create_exceptions): New helper function extracted from
2844         mono_runtime_init () to precreate objects used during exception handling.
2845         (mono_runtime_init): Call it.
2846         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2848 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2850         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2851         compilation until the proper one is found.
2853 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2855         * class.c (mono_class_setup_vtable_general): Cache the result of
2856         get_virtual_methods () since it can be slow because of the metadata
2857         optimization.
2859         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2860         from a MonoValueHashTable for now, since the later is based on an earlier
2861         version of hpj's internal probing code and seems to have serious collision
2862         issues.
2864         * loader.c (mono_get_method_full): Update after the change above.
2866 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2868         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2870 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2872         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2873         the GTD instead of the DGC instead of crashing.
2875         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2876         required. Inflate fields if needed.
2878         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2879         finished. Renamed.
2881 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2883         * class.c (check_interface_method_override): Check for NULL signatures and fail
2884         the type.
2886         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2888         Fixes #553428.
2890 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2892         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2893         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2895 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2897         * loader.c (field_from_memberref): Resolve the class first then the field
2898         signature. Remove a lot of duplicated code and make sure we don't pass valid
2899         values to mono_loader_set_error_field_load.
2901         Fixes #553306.
2903 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2905         * class.c (inflate_generic_type): Change code to use new signature of
2906         mono_error_set_bad_image.
2908         Fixes #558124.
2910 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2912         * verify.c (mono_method_verify): Don't free ctx.params items if 
2913         we aborted while inflating the ctx.locals. Complete previous fix
2915 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2917         * verify.c (mono_method_verify): Use the uninflated type name, 
2918         when the inflated is null, to report errors. Also take care when
2919         freeing, not to free everything since, in case of an error, some
2920         stuff would be copies (i.e. not allocated by the function itself)
2921         Fix bug #558145
2923 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2925         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2926         or overflow. The caller must have done this check explicitly. This guard us
2927         from accessing invalid memory.
2929         * verify.c (do_push_static_field): Check for stack overflow.
2931         Fixes #553333.
2933 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2935         * loader.c (find_method_in_class): Don't crash if the signature cannot
2936         be resolved.
2938         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2939         of asserting for the case of invalid params.
2941         Fixes #553304.
2943 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2945         * image.c (mono_image_load_module): Fix crash when a bad assembly
2946         has no module at all (fix bug #553412) and also replace the 
2947         g_assert with a return NULL (documented return value for failure)
2949 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2951         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2953 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2955         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2956         file attribute to managed code and avoid doing the mask/attribute
2957         checks here. 
2959 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2961         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2962         the managed world.
2964         * icall-def.h: New entry points.
2965         
2966 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2968         * process.c: Don't put references to managed objects into a
2969         g_ptr_array.
2971 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2973         * class.c (can_access_internals): Allow CoreCLR to participate in
2974         allowing (or not) [InternalsVisibleTo] between assemblies.
2975         * security-core-clr.c|h: Make sure that only trusted code (a 
2976         superset of platform code) can access the internals of platform
2977         code.
2979 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2981         * reflection.c: use the correct base class to get the virtual method
2982         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2984 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2986         * security-core-clr.c (get_caller_no_reflection_related): 
2987         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2988         it's still reflection and must be filtered correctly.
2990 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2992         * object.c (compute_class_bitmap): Fix for large bitmaps.
2994 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2996         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2998         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2999         koush@koushikdutta.com). Disable GC_no_dls on android.
3001 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3003         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3004         tlab_next points outside the TLAB because the allocator was
3005         interrupted.
3007 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3009         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3011 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3013         * object-internals.h: Change signature for mono_string_to_utf8_image.
3015         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3016         argument.
3018         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3019         exceptions due to mono_string_to_utf8.
3021 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3023         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3025         * object.c (mono_remote_class): Make sure all resources are released before
3026         raising an exception.
3028         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3030 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3032         * mono-perfcounters.c (network_get_impl): Change variable initialization
3033         ordering to fix potential memory leak in case of exceptions.
3035         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3036         encoded strings.
3037         
3038 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3040         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3041         variable initialization ordering to fix potential memory leak in case
3042         of exceptions.
3044 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3046         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3047         needed.
3049 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3051         * appdomain.c: Fix shadow path code to better deal with exceptions.
3053 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3055         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3056         exception in the middle of the runtime code.
3058 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3060         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3061         leak memory with broken envvar value.
3063 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3065         * reflection.c (mono_reflection_setup_internal_class): Because
3066         nested classes are not added to the name cache, we must put them
3067         in the reflection_info_unregister_classes list.
3069 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3071         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3072         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3073         platform (trusted) code. Instead we return a TypeLoadException to
3074         be thrown later. This is the exception thrown by Silverlight 2 if
3075         a type, inside application (user) code is marked with [ComImport]
3077 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3079         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3080         mono_is_debugger_attached () too.
3082         * mono-debug.c (mono_is_debugger_attached): New helper function.
3083         (mono_set_is_debugger_attached): Ditto.
3085 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3087         * object-internals.h: Add mono_string_to_utf8_checked.
3089         * object.c: Implement mono_string_to_utf8_checked.
3091 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3093         * class.c: Add missing check for load errors after every
3094         call to mono_class_setup_fields
3096         Fixes #552282.
3098 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3100         metadata-verify.c (verify_tables_schema): Fix the error message.
3102 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3104         * metadata.c: Change event table schema to use TDOR for event type
3105         as this is what it's meant to be.
3107         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3108         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3109         entry.
3111         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3112         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3113         rows in MONO_TABLE_GENERICPARAM.
3115         Fixes #552289.
3117 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3119         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3120         insertion.
3122         * reflection.c (mono_reflection_setup_internal_class): Avoid
3123         registering a gc root the same MonoClass multiple times.
3124         Don't register nested types on the global scope as they should
3125         not be available there.
3127 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3129         * culture-info-tables.h: regenerated.
3131 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3133         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3135 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3137         * string-icalls.c|h: Remove string internal calls that are not 
3138         used anymore by the class libraries.
3139         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3140         which is not used in the class librairies.
3141         * icall-def.h: Update tables.
3143 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3145         * class.h: Move mono_class_inflate_generic_type_checked...
3147         * class-internals.h: to here and make it internal. We don't want to
3148         further expose MonoGenericContext. 
3150 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3152         * verify.c (mono_method_verify): Improve error message.
3154 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3156         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3157         the token is already properly encoded. Fixs 4.0 build.
3159 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3161         * locales.c (construct_number_format): Check if the number index is
3162         valid before trying to use it, if not, just return.
3163         
3164 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3166         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3167         since that loses the abort state. Fixes #539394.
3169 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3171         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3172         explicit this argument to the call signature.
3173         (mono_marshal_get_icall_wrapper): Ditto.
3175 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3177         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3178         to indicate which assembly to use when resolving a custom-mod.
3180         Fixes handling of volatile fields used across assemblies as reported in #551513.
3182 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3184         * loader.c: Improve error messages.
3186 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3188         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3189         of interfaces. Fixes IKVM.
3191         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3193 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3195         * verify.c (verifier_inflate_type): Return the inflated type on success.
3197 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3199         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3201         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3203         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3205         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3206         flag set.
3208         * profiler.c: Add new profiler callbacks for runtime invoke.
3210         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3212 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3214         * sgen-gc.c: Keep track of the reason for a major collection and
3215         write it to the heap-dump file.
3217 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3219         * threads.c: refactor the code that initializes the
3220         thread_start_args into a reusable function and use this in the two
3221         methods that start up threads.
3223 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3225         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3226         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3228 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3230         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3231         Until now, we only had the per-cpu(core) counters.
3233 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3235         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3236         mono_gc_get_suspend_signal(), which returns the suspend signal
3237         number used by the GC.
3239 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3241         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3243         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3244         signalling start_notify.
3246 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3248         * appdomain.c: do not test the st_mode field for shadow-copies.
3249         Fixes bug #545276.
3251 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3253         * threadpool.[ch]: added hooks for thread start/finish and item
3254         processing begin/end. For monotouch use only.
3256 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3258         * threads.c (mono_thread_get_name): New helper function.
3260         * reflection.c (resolve_object): Set handle_class for strings too.
3261         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3262         a cattr blob into a set of arrays and structures without creating the custom
3263         attributes themselves.
3264         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3266         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3268         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3269         function.
3271 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3273         * verify.c: Replace calls to mono_class_inflate_generic_type with
3274         mono_class_inflate_generic_type_checked. Fixes #480005.
3276 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3278         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3279         object since not all paths lead to callees initing it.
3281 2009-10-23  Alp Toker  <alp@nuanti.com>
3283         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3284         header and should not be shipped:
3286         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3287         which is specific to the mono build. Not going to work.
3289 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3291         * security-manager.c: Report if core-clr is active from
3292         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3293         to allow Moonlight BCL to behave appropriately (both in browser
3294         and outside, e.g. smcs)
3296 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3298         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3299         Fixes bug #549108.
3301 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3303         * class.c: fix typo.
3305 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3307         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3308         a MonoError parameter.
3310         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3311         version that can does proper error handling.
3313         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3315         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3317         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3319 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3321         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3322         NO_UNALIGNED_ACCESS is defined.
3324 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3326         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3327         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3328         Fixes #549173.
3330 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3332         * sgen-gc.c: Shorten sections whenever possible.
3334 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3336         * sgen-gc.c: Use our portable semaphore #defines.
3338 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3340         * sgen-gc.c: A debug option for dumping the heap layout to a file
3341         after each collection.
3343 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3345         * sgen-gc.c: Make managed write barriers atomic via
3346         thread-restarts.
3348 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3350         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3351         methods. Fixes #543021.
3353 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3355         * socket-io.[ch]: fix VS build.
3357 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3359         * icall-def.h:
3360         * socket-io.[ch]: implemented SendFile.
3362 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3364         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3365         before the interfaces to avoid crashes later if class initialization fails.
3366         Fixes #548417.
3368         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3369         Fixes #548276.
3371 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3373         * domain.c: Bump 4.0 version.
3375 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3377         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3378         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3379         check since 'pubkey' can't be NULL at this stage
3380         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3381         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3382         initialization of 'iter'
3384 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3386         * cominterop.c : Search the interface parts of vtable to find 
3387           method matches.  Fixes 547030.
3389         Code is contributed under MIT/X11 license.
3391 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3393         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3394         multiple targets. Fixes bug #574426.
3396 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3398         * profiler.h: Put here the definition of
3399         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3400         (and fix the build...).
3402 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3404         * profiler.c, profiler.h, profiler-private.h:
3405         Added support for different ways of getting call chains in stat mode.
3407 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3409         * object.c, object-internals.h: New function for computing the
3410         size of an array, factored out of mono_array_new_full().  Use
3411         SGen's functions for allocating arrays and vectors.
3413         * sgen-gc.c, gc-internal.h: Special functions for allocating
3414         arrays and vectors without race conditions.  A managed array
3415         allocator method.
3417         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3419 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3421         * object.c, object.h, icall.c: Write barriers do the copying now,
3422         as well, so no need for an additional memcpy.
3424         * sgen-gc.c: Lock when storing remsets.  Do the memory
3425         copying/moving in the write barriers.
3427         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3429         * reflection.c: Added an assert.
3431 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3433         * threads.c, process.c: A few missing write barriers.
3435 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3437         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3438         network performance counters for bytes sent per second, bytes
3439         received per second, and bytes total per second.
3441         Code is contributed under MIT/X11 license.
3443 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3445         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3446         Fix warning.
3448 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3450         * threads.c, object-internals.h, object.c: Move code for
3451         transferring an object to a different domain (via
3452         serialization/remoting) to object.c.
3454         * object.c (call_unhandled_exception_delegate): If the exception
3455         is in a different domain than the delegate, transfer the exception
3456         to that domain.
3458 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3460         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3461         Fixes #322934.
3463 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3465         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3467 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3469         * object.c (mono_method_return_message_restore): Handle the case
3470         where the argument is an instance of a generic type.  Fixes
3471         #544446.
3473 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3475         * object.c (set_value): Write barrier fix - we must pass the
3476         count, not the size.
3478 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3480         * domain.c (mono_init_internal): Print a useful error message when encountering
3481         an old mscorlib, instead of crashing. Fixes #544307.
3483 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3485         * appdomain.c (copy_app_domain_setup): Fix a warning.
3487         * debug-helpers.c (dis_one): Ditto.
3489 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3491         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3492         into the new domain, instead of referencing the original one.
3494         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3495         non-static.
3497         * appdomain.c: Corlib version bump.
3499 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3501         * threadpool.c: one more...
3503 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3505         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3506         threads to die because we're shutting down. delgate5.exe works again.
3508 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3510         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3511           ccw_interface_hash table when a ccw is finalized.
3513         Code is contributed under MIT/X11 license.
3515 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3517         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3518         domain and image unloading into two steps.  We must do this
3519         because clearing the domain in SGen requires the class metadata to
3520         be intact, but we need to free the mono_g_hash_tables in case a
3521         collection occurs during domain unloading and the roots would trip
3522         up the GC.
3524 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3526         * object-internals.h: Remove serialized culture fields from
3527         MonoInternalThread.
3529         * icall-def.h, thread-types.h, threads.c: Remove serialized
3530         culture icalls.
3532         * appdomain.c: Corlib version bump.
3534 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3536         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3537         Fixes #543133.
3539 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3541         * sgen-gc.c: Try to shorten the new section after a major
3542         allocation to avoid ever-growing sections.
3544 2009-10-13  Martin Baulig  <martin@ximian.com>
3546         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3547         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3548         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3549         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3551         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3553 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3555         * threadpool.c: fixed the order in which 'completed' and the wait
3556         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3557         No need to use the wait_handle field of ASyncCall. Make sure the
3558         threadpool is active when adding a job or queueing an idle thread.
3560 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3562         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3564         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3565         when using --compile-all.
3567 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3569         * metadata.c (free_generic_class): Unregister the field_objects
3570         roots if we're using SGen.
3572 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3574         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3575         for GenericParamTableEntry.gparam.
3577 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3579         * marshal.c: don't create the handle when calling. It is created later
3580         if needed.
3582 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3584         * sgen-gc.c: Warning fixes.
3586 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3588         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3589         whole heap for cross-domain references before each collection.
3591         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3592         object.
3594         * threadpool-internals.h, threadpool.c: New function
3595         mono_thread_pool_is_queue_array() for checking whether a given
3596         array is used as a (cross-domain) queue by the thread pool code.
3598 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3600         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3601         searches the whole heap for objects containing a specific
3602         reference.  Only for debugging.
3604 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3606         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3608         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3609         byte arrays between domains.
3611 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3613         * threadpool.c:
3614         * class-internals.h:
3615         * mono-perfcounters-def.h:
3616         * mono-perfcounters.c:
3617         -There is a list of idle threads
3618         -Each of those idle threads wait on their own WaitHandle instead
3619         of all of them using the same semaphore. When a new work item is
3620         added, the job is assigned directly to an idle thread or a newly
3621         created one if possible and then the handle for that thread is
3622         signaled. Compare that to the current approach where all the
3623         threads in the pool compete to dequeue a job from the same
3624         queue.
3625         -New struct ThreadPool that brings together the bunch of static
3626         variable for each threadpool (IO and regular).
3627         -New performance counters: # of items added and its rate per
3628         threadpool. The rate will be used later, perhaps together with
3629         other perf. counters, to decide when idle threads should exit.
3631 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3633         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3634         Fix typo on Windows build.      
3635         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3636         
3637         Code is contributed under MIT/X11 license.
3639 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3641         * object-internals.h: The Thread class is split up into Thread and
3642         InternalThread now.  We have exactly one InternalThread per
3643         thread, and at most one Thread per appdomain per thread.  Most
3644         data is stored in InternalThread.  All InternalThread objects live
3645         in the root domain.
3647         * class-internals.h: Add internal_thread_class to MonoDefaults.
3649         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3650         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3651         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3652         resulting from the split of the Thread class.
3654         * gc-internal.h: Prototype for new function for checking whether a
3655         thread is the finalizer thread.
3657         * appdomain.c: Corlib version bump.
3659 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3661         * appdomain.c|h: Add a mono_domain_try_unload method which is
3662         equivalent to mono_domain_unload, except that it returns an exception
3663         instead of throwing it. Make mono_domain_unload use the
3664         mono_domain_try_unload method to avoid code-duplication.
3666 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3668         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3669         a problem.
3671 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3673         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3674         aborting when a conversion is not implemented.
3676 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3678         * verify.c: when comparing culture strings, use g_ascii_strcmp
3680         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3681         when comparing public key tokens to use memcmp on 16 bytes.   I do
3682         not believe this ever worked as advertised in the past.
3684         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3685         which would have always failed earlier.
3687 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3689         * gc.c: Raise a NullArgumentException if the object passed is
3690         null.
3692 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3694         * image.c (mono_image_close): Atomically decrement the reference count and
3695         remove the image from the hash tables, to prevent another thread from seeing a
3696         dying MonoImage. Fixes #541194.
3698 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3700         * threadpool.c: actually use the minimum number of 'completion ports'
3701         (for us is just a potential worker thread).
3703 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3705         * threadpool.c: remove ares_htable. It does not make sense any more
3706         since the same objects are now stored in GC-tracked arrays while they are
3707         in the queue.
3709 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3711         * threadpool.c: increase the minimum length of the queues to 128.
3712         Remove warning.
3714 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3716         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3717         return the modified signature used by string ctors.
3719 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3721         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3722         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3723         method, to be used by full-aot.
3725 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3727         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3728         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3729         be known to be good.
3731         * class.c (mono_class_init): Fail array types if their element type fails initialization
3732         as well.
3734         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3735         initialization, additionally we request the element_type vtable to be initialized as well.
3737         This is fine and should not increase the working set in any meaningful way since it's reasonable
3738         to assume       that most code will create an array and eventually populate it, which will require the
3739         type's vtable to be initialized.
3741         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3743 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3745         * normalization-tables.h : regenerated.
3747 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3749         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3750         a leb128 encoding can take up to 5 bytes.
3752 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3754         * class.c (verify_class_overrides): Remove useless argument.
3756         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3757         before interface enumeration as this is no longer required.
3759 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3761         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3762         used under mono_class_init context. This functions avoid any code path that
3763         calls mono_class_init, which leads it to be slow as some things like the interface
3764         bitmap are not available.
3766         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3767         of it's own broken version. Fixes the verifier part of #538588.
3769         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3770         API.
3772 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3774         * class.c (mono_class_init): Always set an exception in a class if
3775         vtable setup fails.  Fixes #538577.
3777         * generic-sharing.c: Raise an exception if mono_class_vtable()
3778         returns NULL.
3780 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3782         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3783         methods of vtypes, as they could be incorrectly shared with static methods
3784         taking an IntPtr argument.
3786 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3788         * domain.c:
3789         * object.c:
3790         * class-internals.h: renamed waithandle_class to
3791         manualresetevent_class.
3792         * marshal.c: propagate the exception if a remoting BeginInvoke call
3793         fails.
3795 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3797         * object.c: Properly handle vtable failures.
3799 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3801         * socket-io.c: Assert on vtable failure.
3803         * mono-mlist.c: Assert on vtable failure.
3805 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3807         * marshal.c: Assert on vtable failure.
3809 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3811         * icall.c: Properly handle vtable failures.
3813 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3815         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3817 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3819         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3821         * console-unix.c (do_console_cancel_event): Same.
3823 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3825         * class-internals.h: Add mono_class_vtable_full function that allows control
3826         if an exception should be raised or not.
3828         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3829         to do what its documentation say, that is to return NULL and set exception_type on
3830         failure.
3832         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3833         and change the code to honor it.
3835 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3837         * verify.c: Fix typo in error message.
3839 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3841         * security-core-clr.c: Fix default_platform_check so it can run
3842         the runtime coreclr tests (without an infinite recursion when
3843         throwing an exception).
3845 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3847         object.c (mono_delegate_ctor_with_method): Guard against null method.
3849 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3851         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3852         that should be replaced with error handling later.
3854 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3856         * marshal.c (mono_delegate_end_invoke): Fix warning.
3858 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3860         * loader.c (mono_field_from_token): Properly handle invalid
3861         dynamic tokens.
3863 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3865         * pedump.c (verify_image_file): Skip types that can't be
3866         decoded.
3868 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3870         * verify.c: Look for recursive valuetypes only against the
3871         type been initialized as this is a lot simpler and works.
3873 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3875         * verify.c: Ensure that fields are properly loaded before
3876         checking them.
3878 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3880         * object.c (mono_object_get_virtual_method) : Call 
3881           mono_cominterop_get_invoke if the object is a COM object.
3883         Code is contributed under MIT/X11 license.
3885 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3887         * verify.c: Check for recursive valuetype definitions.
3889 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3891         Use inheritance-aware interface offsets. Inherited types use the same offsets
3892         of their parents. This reduce offset duplication in case more than one type in
3893         the inheritance tree explicitly implements the same interface.
3895         This also removes a source of vtable bubbles found in #532409. An abstract type
3896         isn't required to provide abstract methods to all interfaces it implements, which
3897         resulted in a bubble with the previous scheme as the child would get a non-full
3898         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3899         should be fixed.
3901         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3902         it's expected to not cause any significant increase beyond that.
3904         * class.c (setup_interface_offsets): Compute super class iface offsets
3905         first to force sharing.
3907         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3908         dumping only the relevant ones.
3910         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3911         methods a new slot regardless if they belong to an interface or not. This allows
3912         an inherited type to override the iface method separately from the class one.
3914 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3916         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3917         applications that take less than 2s to execute.
3918         Bug #524984 fixed.
3920 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3922         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3924         * object.c (mono_get_runtime_callbacks): New helper function to return
3925         the runtime callbacks.
3927         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3928         mono_get_runtime_build_info () as the display name.
3929         
3930 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3932         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3933         argument, since NEWARR expects a native int. Fixes #481559.
3935 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3937         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3938         against broken SRE methods.
3940 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3942         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3943         a NULL variable. Abort early on failure.
3945 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3947         * class.c (can_access_type): Fail visibility test for non nested
3948         types with nested visibility.
3950 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3952         * assembly.c (parse_public_key): Avoid allocating (and not 
3953         freeing) the public key array when it's not requested by the 
3954         caller.
3955         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3956         ves_icall_System_Threading_Thread_Thread_internal): Free 
3957         allocated memory on error.
3959 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3961         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3963 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3965         * class.c (mono_class_setup_fields): Remove duplicated local variable
3966         named gklass.
3967         Rename gklass to gtd to reflect the fact that it points to the generic
3968         type definition.
3969         Remove the duplicated call to mono_class_setup_fields on gtd and move
3970         the error check to the beginning.
3972 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3974         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3975         Remove cruft of the previous patch.
3977 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3979         * metadata-verify.c (verify_method_table): Check for abstract + final.
3980         Fixes #534175.
3982 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3984         * verify.c (verify_class_fields): Check for duplicate fields.
3986 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3988         * metadata-verify.c: Verify the typeref table for duplicates.
3990 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3992         This reverts r140936 and properly handles interfaces with static methods. The
3993         right fix is to ensure vtables without bubles which is an easier to verify
3994         constraint. We should avoid such special cases as of the reverted patch as those
3995         only make the runtime more brittle.
3997         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3998         static methods on interfaces.
4000         * class.c (setup_interface_offsets): Use the number of virtual methods when
4001         calculating interface offsets instead of the number of methods. This way we
4002         avoid bubles on the layout.
4004 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4006         * metadata-verify.c (verify_metadata_header): Some very smart
4007         obfuscators like to add extra stream headers. Ignore them.
4009 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4011         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4012         methods correctly.
4014 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4016         * metadata-verify.c: Verify for duplicated types.
4018 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4020         * metadata-verify.c (verify_typedef_table): Verify for nested types
4021         without an entry on the nested class table.
4023 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4025         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4026         <tom_hindle@sil.org>. Add locking around hash table accesses.
4028 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4030         * verify.c (mono_verifier_verify_class): Verify all interface if
4031         really are interfaces. Fixes #534184.
4033 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4035         * pedump.c: Initialize all types during metadata validation so we report
4036         errors only detected as part of class initialization.
4038 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4040         * metadata-verify.c (verify_method_table): PInvoke requires method to
4041         be static. Fixes #534189
4043 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4045         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4046         being NULL.
4048 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4050         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4051         for holes or bad methods. Fixes #525314.
4053 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4055         * class.c (setup_interface_offsets): Don't allocate slot
4056         for the same interface multiple times. This creates bubbles
4057         that waster space and make vtable verification harder.
4059         The same interface get a slot multiple times since we need
4060         to get the closure of all implemented interfaces, which means
4061         the same interface is reported multiple times.
4063 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4065         * verify.c (mono_verifier_verify_class): Don't check the fields
4066         of generic instances since the context on which they got expanded
4067         might lead to false positives.
4069         Such thing happens when a generic type is inflated in the context
4070         of a generic method and the inflated type of a field turns into a
4071         generic method argument, which causes the checking code to think
4072         it's an invalid class when it's not.
4074 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4076         * verify.c (mono_type_is_valid_in_context): Verify if type
4077         is NULL and remove duplicate test.
4079 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4081         * verify.c (mono_verifier_verify_class): Check fields for
4082         invalid generic arguments.
4084 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4086         * class.c (verify_class_overrides): Verify if for static
4087         and non virtual methods.
4089 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4091         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4092         Check for errors after retrieving the vtable.
4094 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4096         * class.c (mono_class_setup_vtable_general): Verify
4097         if method overrides are valid before processing them.
4099 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4101         * marshal.c (mono_array_to_lparray): Fix minimal build with
4102         cominterop disabled.
4104         * marshal.c (mono_free_lparray): Same.
4106 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4108         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4109         the hash function for the ares_htable.
4111 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4113         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4114         bit for assembly flags. MS is ok with it but there is no spec anywhere
4115         on its mean
4117 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4119         * class.c (mono_class_create_from_typedef): Emit profiler events
4120         in all cases.
4122 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4124         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4125         Release memory on failure.
4127 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4129         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4130         to the internal API.
4132         * metadata.c (get_constraints): Use a single-linked table as we don't
4133         traverse it backward. Fail and return FALSE if only of the contraint types
4134         is not found.
4136         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4137         to mono_metadata_load_generic_param_constraints except for having a return value.
4138         This has to be done since the later is part of the public API.
4140         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4141         and fail the type.
4143         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4144         and fail the method.
4146 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4148         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4149         with MS broken behavior of emmitting EH section sizes without the
4150         header size added.
4152 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4154         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4155         memory until we're sure that we'll need it. This avoids leaking for
4156         broken types or duplicated instantiation.
4158 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4160         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4161         mistake.
4163 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4165         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4166         and expected size calculation.
4168 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4170         * class.c (mono_class_get_field_idx): Add fixme for broken
4171         behavior for types with multiple fields with the same name.
4172         I would rather fix it, but have no idea on how to generate
4173         such artifact for testing.
4175 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4177         * verify.c (verifier_load_field): We should allow references to
4178         fields to be made using the generic type definition. It's up to
4179         the loader system to fail invalid ops.
4181         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4182         are invalid.
4184 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4186         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4188         * metadata-internals.h: Fix declaration of 
4189         mono_metadata_interfaces_from_typedef_full.
4191         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4192         heap_alloc_result parameter that controls if the result should be
4193         g_malloc'd.
4195         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4196         array be g_malloc'd and properly document this public API function.
4198 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4200         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4201         remove METHOD_HEADER_TINY_FORMAT1.
4203         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4205         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4207         Both spec and MS uses only 2 bits to enumerate the kind of header.
4208         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4209         is superfluous, only used for tiny headers with odd code lengths.
4211         This change also make sure that mono doesn't wronly interpret bit 2
4212         of fat header flags, which is currently reserved.
4214 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4216         * metadata.c (do_mono_metadata_parse_type): Do error
4217         checking for element types. Don't abort if presented
4218         with a broken type kind.
4220 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4222         * metadata.c (mono_metadata_parse_method_signature_full):
4223         Gracefully fail bad vararg signatures.
4225 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4227         * profiler.c:
4228         * class.c: Fix warnings for uninitialized variables.
4230 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4232         * icall.c: Fix _NSGetEnviron method declaration warning.
4234 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4236         * icall.c:
4237         * reflection.c: Make bitwise checks explicit.
4239 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4241         * debug-helpers.c:
4242         * marshal.c: Fix printf warnings.
4244 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4246         * reflection.c (encode_cattr_value): Fix a warning.
4248 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4250         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4251         of array bounds.
4253 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4255         * loader.c (mono_method_signature): Don't assert on broken
4256         signature. Print a more useful error message.
4258 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4260         * loader.c (mono_method_get_marshal_info): Assert if
4261         signature is invalid. Bounds check stores to the
4262         mspecs array;
4264 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4266         * loader.c (field_from_memberref): Fix warning.
4268 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4270         * loader.c (mono_method_get_param_names): Check if signature
4271         is null. Don't store beyond the size of the name array.
4273 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4275         * loader.c (mono_get_method_constrained): Check if signature
4276         is null.
4278 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4280         * loader.c (mono_loader_set_error_bad_image): Improve
4281         error messages.
4283 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4285         * loader.c (mono_get_method_full): Convert an assertion
4286         into a loader error.
4288 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4290         * class-internals.h, class.c: Better naming and documentation.
4292 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4294         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4295         obj is NULL.
4297 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4299         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4300         parsing fails.
4302 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4304         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4305         errors with no class set.
4307         * loader.c (field_from_memberref): If the field signature is of the wrong
4308         type fail with a MissingFieldException instead of a BadImageException as
4309         this is the behavior observed on MS. 
4311 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4313         * loader.c (field_from_memberref): Don't crash if either the field
4314         signature or the typespec class are invalid.
4316 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4318         * verify.c (verifier_load_field): Don't allow field related
4319         ops to reference fields on generic type definition.
4321 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4323         * metadata-verify.c: Add new warning level for errors specified
4324         by ECMA 335 but that MS ignores.
4326         * metadata-verify.c (verify_method_table): Make compiler controled
4327         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4328         this check is safe because the end result will only be some visibility
4329         exceptions been thrown.
4331 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4333         * verify.c (get_boxable_mono_type): Don't allow the
4334         use of the generic type definition on boxed type positions.
4336         Fixes #531237.
4338 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4340         * threadpool.c: Make sure no cross-domain references remain in
4341         ares_htable or the arrays that are thrown away when resizing.
4343 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4345         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4346         list of classes for which we have to unregister reflection_info
4347         with the GC and which are not in the namespace cache.
4349         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4350         the class to the list.
4352 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4354         * domain.c (mono_domain_free): Unregister the GC roots in
4355         MonoDomain.
4357 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4359         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4361 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4363         * class.c: Add mono_class_get_field_from_name_full which does
4364         the same as mono_class_get_field_from_name but does check field
4365         signature as well.
4367         * class-internals.h: Export mono_class_get_field_from_name_full as
4368         part of the internal API.
4370         * loader.c (field_from_memberref): Search fields by name and signature
4371         as it's valid to have two fields with same name but different types.
4373         Fixes #528055.
4375 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4377         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4379         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4381         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4382         System.Type.
4384 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4386         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4388         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4390 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4392         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4393         to sgen-scan-object.h, which can be included and parameterized via
4394         macros.
4396         * Makefile.am: sgen-scan-object.h added.
4398 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4400         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4402 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4404         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4405         before clearing a domain in the GC.
4407 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4409         * exception.c (mono_exception_from_name_domain): Actually create
4410         the exception in the specified domain.
4412         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4413         OutOfMemoryException a bit later so that the domain is inialized
4414         "enough" that it works.
4416 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4418         * threads.c (thread_cleanup): Clean up the cached_culture_info
4419         array to prevent cross-domain references.
4421 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4423         * metadata.c: more documentation for MonoType accessors.
4425 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4427         Fix incorrect size definitions where the tail array isn't a list
4428         of pointers
4429         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4430         define size.
4431         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4432         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4433         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4435 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4437         * reflection.h:
4438         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4440 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4442         * metadata.c:
4443         * loader.c:
4444         * metadata-internals.h:
4445         * method-builder.c:
4446         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4448 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4450         * cominterop.c:
4451         * metadata.c:
4452         * metadata.h:
4453         * loader.c:
4454         * marshal.c:
4455         * reflection.c: #define for sizeof in MonoType and
4456         MonoMethodSignature.
4458 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4460         * domain.c:
4461         * domain-internals.h: add and use #define's instead of sizeof()
4462         for MonoJitInfo and MonoJitInfoTable.
4464 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4466         * object.c:
4467         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4469 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4471         * metadata.c:
4472         * metadata.h:
4473         * object.c:
4474         * class-internals.h:
4475         * generic-sharing.c:
4476         * marshal.c: use a #define instead of sizeof() for a few
4477         structures that use a zero-length array.
4479 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4481         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4482         to handle inflated generic methods.
4484         * appdomain.c: Bump corlib version.
4486         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4487         instances.
4489         * reflection.c (fixup_method): Same
4491         * reflection.c (resolve_object): Same.
4493         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4494         g_error and a decent message.
4496 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4498         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4499         from the object because it could not yet be available globally
4500         (it happens if the profiler tries to create a gchandle on the
4501         MonoThread object of a thread that is still registering itself
4502         with the runtime).
4504 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4506         * reflection.c (mono_generic_class_get_object): Initialized the
4507         managed type arguments array.
4509         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4511         * appdomain.c: Bump corlib version.
4513 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4515         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4516         #527902.
4518 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4520         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4521         Avoid a crash if synch_cs is not set.
4522         
4523         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4524         Handle the case when the handle is 0.
4526         * appdomain.c: Bump corlib version.
4528 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4530         * reflection.c (mono_type_get_object): Fix a warning.
4532 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4534         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4535         descriptor here.  We assume it's already been computed.
4537         * generic-sharing.c (instantiate_other_info): Compute the GC
4538         descriptor for info type MONO_RGCTX_INFO_KLASS.
4540 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4542         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4543         type, so don't use MONO_OBJECT_SETREF to set a field.
4545 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4547         * gc.c: We were missing one case where invoking a finalizer would
4548         not reset the domain.  Also, in the finalizer thread loop, assert
4549         that we're in the root domain.
4551 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4553         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4554         if the type is not an array.
4556 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4558         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4559         method bound to the declaring type of the method. Raise an exception
4560         if the type is not a generic param.
4562 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4564         * class.c (print_unimplemented_interface_method_info): Print the
4565         full type name.
4567         * class.c (mono_class_setup_vtable_general): When dealing with a
4568         generic instance first check if the generic type definition is
4569         not broken.
4571 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4573         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4575         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4577         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4579         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4581         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4583         Code is contributed under MIT/X11 license
4585 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4587         * verify.c: Fix naming of stelem and ldelem.
4589 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4591         * generic-sharing.c: Replace the templates lock with the loader
4592         lock because of very hard to resolve deadlock issues.
4594 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4596         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4597         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4598         directly. Fixes #525338.
4600         * class.c (mono_class_get_vtable_size): New helper function.
4602         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4603         the field belongs to the type. Fixes #525733.
4605 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4607         * sgen-gc.c: When we stop a thread and its stack top is not within
4608         its allocated stack (because it's in an altstack signal handler),
4609         restart it and stop it again, until it is.
4611 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4613         * sgen-gc.c: Take a thread's stack top and registers from the
4614         sigcontext in the suspend signal handler.
4616         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4617         stuff to sgen-archdep.h.
4619         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4620         caller, because have code in sgen-archdep.h to acquire that data.
4622 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4624         * profiler.c, profiler.h, profiler-private.h:
4625         Added support for keeping track of code chunks and buffers.
4627 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4629         * metadata-verify.c: Fix endianness problems on decoding functions.
4630         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4632 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4634         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4635         schema for vectors and one dimension SZARRAY.
4637 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4639         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4640         schema for vectors and one dimension SZARRAY.
4642 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4644         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4645         Interlocked.(Compare)Exchange with object arguments, which invoke
4646         write barriers.
4648 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4650         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4651         passed invalid arguments.   Fixes another crasher in the
4652         Silverlight test suite.
4654         * class.c (mono_class_array_element_size): Return 0 for the size
4655         of the class;  This fixes the crasher exposed by :
4657         typeof (void).MakeArrayType ();
4659         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4660         if there is no method to dereference.    Put all the code that
4661         depends on this inside the if (method) block.
4663         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4664         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4666         With this change, we pass the test.
4667         
4668         * reflection.c (mono_reflection_sighelper_get_signature_local):
4669         Only dereference the assembly if it has been set.    Fixes a
4670         crasher exposed by #525328
4672 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4674         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4675         don't perform the store in mono_gc_wbarrier_generic_nostore().
4676         Remove the second argument (value), which is not needed.
4678 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4680         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4681         the build.
4683         * boehm-gc.c: Ditto.
4684         
4685 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4687         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4688         not perform the store itself.  Introduce
4689         mono_gc_wbarrier_generic_nostore(), which is the same as
4690         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4691         store.
4693 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4695         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4696         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4697         we still need the memcpy().
4699 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4701         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4702         so that big arrays are handled correctly.  Always use
4703         safe_object_get_size() to calculate array object sizes, which
4704         takes bounds into account.
4706 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4708         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4709         GC descriptor is computed before we use it.
4711 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4713         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4714         write barrier if necessary.
4716 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4718         * icall-def.h, icall.c, thread-types.h: New separate icall for
4719         VolatileWrite(object&,object) that uses a write barrier.
4721         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4722         barriers in icalls which write to "ref" or "out" arguments.
4724 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4726         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4727         handler in a separate icall, to reduce the size of the wrappers.
4729 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4731         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4733 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4735         * metadata-verify.c (parse_field): Allow byref field.
4737         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4739         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4741 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4743         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4744         Fixes #522784.
4746 2009-07-20  Robert Jordan  <robertj@gmx.net>
4748         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4749         Fix invalid IL in valuetype handling (STOBJ must push the
4750         corresponding class). Fixes bug #523149.
4752         Code is contributed under MIT/X11 license.
4754 2009-07-20  Geoff Norton  <gnorton@novell.com>
4756         * gc.c: Use proper semaphores where available on posix and darwin.
4758 2009-07-19  Geoff Norton  <gnorton@novell.com>
4760         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4762 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4764         * refletion.c (is_sre_usertype): Change name to is_usertype and
4765         invert it's result so it returns true if the type is an user type
4766         and not the opposite.
4768         * reflection.c (is_*_type): Change all of those to use new macro
4769         check_corlib_type_cached that cached the type lookup so we don't
4770         need to do string comparisons all the type. Changed the signature
4771         to take a MonoClass instead.
4773         * reflection.c: Change mono_image_create_token and resolve_object
4774         to use is_sre_* functions.
4776 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4778         * sgen-gc.c: Check for writes to the stack in the managed
4779         wbarrier as well.
4781 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4783         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4784         but put them on a list which is processed with the other thread's
4785         remsets.
4787 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4789         * sgen-gc.c: Fix and enable the internal allocator instead of
4790         using malloc/free (which causes deadlocks).
4792 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4794         * refletion.c: Fix builds with SRE disabled by adding a minimal
4795         implementation of mono_reflection_type_get_handle.
4797 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4799         * refletion.c: Make mono_reflection_type_get_handle non static.
4801         * object-internals.h: Export mono_reflection_type_get_handle.
4803         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4804         unmanaged handle using mono_reflection_type_get_handle.
4806 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4808         * refletion.c: Replace all reads of MonoReflectionType::type with
4809         calls to mono_reflection_type_get_handle. Only the functions that
4810         deal with constructing TypeBuilder::type have not been changed
4811         because they have to deal with NULL values.
4813         This is a first step into supporting reflection types that don't
4814         map directly into their unmanaged counterpart.
4816 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4818         * metadata-verify.c (parse_locals_signature): Don't complain
4819         on signature with zero locals since MS generates it and doesn't
4820         bother with.
4822 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4824         * reflection.c (mono_image_get_array_token): Resolve return
4825         type using mono_reflection_type_get_handle.
4827         * reflection.c (mono_image_get_array_token): Resolve array method
4828         parent type using mono_reflection_type_get_handle.
4830 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4832         * reflection.c (mono_image_basic_init): Applied patch from
4833         <Dax@daxxfiles.net>. Set the public key token from the assembly
4834         builder. Fixes #518909.
4836         * appdomain.c: Bump corlib version.
4838 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4840         * class.c (mono_class_needs_cctor_run): Make this return false if
4841         the class has no cctor.
4843 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4845         * sgen-gc.c: When the minor GC needs to allocate a new section,
4846         invoke the major GC afterwards.
4848 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4850         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4851           Applying the window_style field to the SHELLEXECUTEINFO struct.
4853         Code is contributed under MIT/X11 license.
4855 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4857         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4858         locking earlier.  Fix it in the managed allocator by making sure
4859         that no thread is stopped there before the GC runs.  If we do stop
4860         a thread there, we restart it and let it run a but, until it stops
4861         somewhere else.
4863         * gc-internal.h, gc.c: Function for getting the IP from a signal
4864         context via a function registered by mini.
4866 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4868         * object-internals.h (MonoIntPtr): New structure describing a boxed
4869         IntPtr.
4871         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4872         returns. Fixes #519953.
4874         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4876 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4878         * class-internals.h, generic-sharing.c: New RGCTX info type for
4879         getting a remoting invoke with check wrapper.
4881 2009-07-07  Geoff Norton  <gnorton@novell.com>
4883         * icall-def.h: Fix the enable-minimal build.
4885 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4887         * object-internals.h: Add MonoReflectionDerivedType.
4889         * reflection.c: Implement support for PointerType.
4890         Fixed tons of warnings.
4892 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4894         * object-internals.h: Add MonoReflectionByRefType.
4896         * reflection.c: Implement support for ByRefType.
4898 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4900         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4902         * object-internals.h: Add MonoReflectionArrayType and
4903         mono_reflection_create_unmanaged_type.
4905         * reflection.c: Implement support for ArrayType.
4907 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4909         * metadata-verify.c (is_valid_method_header): Parse EH block
4910         flags correctly.
4912 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4914         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4915         processing the disappearing links, and process disappearing links
4916         in a loop until no new objects are copied.
4918 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4920         * object.c (handle_enum): Invoke the write barrier when copying
4921         value type instances.
4923         * sgen-gc.c: Register remsets for unmanaged write barriers only
4924         when the address written to is actually on the heap.  This makes
4925         set_value() in object.c work without requiring that the result be
4926         on the heap.
4928 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4930         The runtime wrappers are all bound to a given type that must
4931         exist in the same image. For regular images we use the <Module>
4932         type, which is required to exist for all images.
4934         The <Module> type can't be used for dynamic images because it
4935         might not exist at the time the wrapper is required, so we create
4936         a synthetic type to use instead.
4938         The current code works because of the 2 stage setup of MonoClass,
4939         but once this is gone it will no longer work.
4941         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4943         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4945         * object-internals.h: Export mono_image_set_wrappers_type icall
4946         as part of the internal API.
4948         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4949         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4951         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4952         image wrappers_type to the provided value.
4954 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4956         * appdomain.c (deregister_reflection_info_roots): No need
4957         to use the image lock here.
4959 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4961         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4963 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4965         * threads.c: Store the thread start argument in a hash table instead of
4966         registering it as a root, as libgc doesn't support unregistering roots
4967         under windows, leading to 'too many root sets' errors when many threads
4968         are created.
4970         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4971         shutdown, they can still be referenced by the other dying objects.
4972         Fixes #514506.
4974 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4976         * socket-io.c: DontLinger does not allow LingerOptions.
4978 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4980         * metadata-verify.c: The spec doesn't mention that it's possible to add
4981         custom attribute to a generic parameter. Fixed.
4983 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4985         * class.c (inflate_generic_type): Don't crash while trying to output a message
4986         on why we're aborting.
4988 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4990         * socket-io.c: DontLinger can take an int or a boolean too.
4992 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4994         * gc.c: check for a null argument to SuppressFinalize () and
4995         ReRegisterForFinalize ().
4997 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4999         * loader.c (method_from_methodspec): Call into the verifier to check
5000         the signature.
5002         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5004         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5005         part of the internal API.
5007 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5009         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5010         the signature.
5012         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5014         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5015         part of the internal API.
5017 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5019         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5020         the signature.
5022         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5023         blob verification.
5025         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5026         part of the internal API.
5028 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5030         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5031         when doing basic verification. 
5033         This check must be done since the runtime peeks into signatures in much
5034         more places than it does decoding so it makes sense to ensure that all
5035         pointers to blob objects are well formed.
5037 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5039         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5040         Use proper overflow dectection. Fix usage of it.
5042 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5044         * loader.c (field_from_memberref): Call into the verifier to check
5045         the signature.
5047         * loader.c (mono_method_get_signature_full): Same.
5049         * loader.c (method_from_memberref): Same.
5051         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5053         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5054         part of the internal API.
5056 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5058         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5059         or unloaded, still return an AsyncResult, but don't add it to the
5060         threadpool.
5062 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5064         * threads.c: fix missing colon when DEBUG is defined.
5066 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5068         * threadpool.c: Don't add new calls to a threadpool if the domain
5069         of the call is unloading or unloaded.  When dequeuing a job, null
5070         the reference in the queue.
5072 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5074         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5075         generation if an object was moved.
5077 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5079         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5080           parameters of type SAFEARRAY[VARIANT].
5082         * reflection.c (encode_marshal_blob): Properly generate element type
5083           (SafeArraySubType marshal attribute option).
5085         Code is contributed under MIT/X11 license.
5087 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5089         * reflection.c: in mono_method_clear_object () really ensure all the
5090         objects are removed.
5092 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5094         * loader.c (mono_method_signature): Call into the verifier to check
5095         the method signature.
5097         * metadata-verify.c (verify_method_table): Move signature verification
5098         to verify_method_table_full.
5100         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5102         * verify-internals.h: Export mono_verifier_verify_method_signature as
5103         part of the internal API.
5105 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5107         * loader.c (mono_method_get_header): Call into the verifier to
5108         check the method header.
5110         * metadata-verify.c: Add mono_verifier_verify_method_header.
5112         * verify-internals.h: Export mono_verifier_verify_method_header as
5113         part of the internal API.
5115 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5117         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5118         check the field signature. Replace an assert with an explicit check.
5120         * class.c (mono_class_setup_fields): Call into the verifier to check
5121         the field signature.
5123         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5125         * verify-internals.h: Export mono_verifier_verify_field_signature as
5126         part of the internal API.
5128 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5130         * class.c (mono_class_find_enum_basetype): Simplify this function
5131         by moving code outside of the loop and not decoding static fields.
5133 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5135         * metadata-verify.c (verify_typedef_table): Check the extends
5136         token here. Move to here a flags check from verify_typedef_table_full.
5138 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5140         * metadata-verify.c (is_valid_method_header): Fix a warning.
5142         * metadata-internals.h (MonoImage): Remove the unused 
5143         static_rgctx_invoke_wrapper_cache.
5145         * image.c marshal.c: Ditto.
5147 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5149         * image.c (do_mono_image_load): Enable table data verification.
5151 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5153         * metadata-verify.c (is_valid_constant): Fix nullref check.
5155 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5157         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5159 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5161         * sgen-gc.c: Managed allocation with pthreads TLS.
5163         * threads.c, threads-types.h: Functions for the JIT to tell the
5164         runtime whether it supports the MONO_TLS opcode.
5166 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5168         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5169         without methods.
5171 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5173         * metadata-verify.c (is_valid_constant): Fix the string length check.
5174         Use safe overflow checking. Add decent error messages.
5176 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5178         * metadata-verify.c: Move remaininh blob checks to the offline
5179         verification path.
5181 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5183         * metadata-verify.c: Move more blob checks to the offline verification
5184         path.
5186 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5188         * object-internals.h : Adding interrupt_on_stop field.
5190         * threads.c (mono_thread_request_interruption) : On Windows exit the
5191           thread if interrupt_on_stop is set.
5193         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5194          Removing old interrupt logic and setting the interrupt_on_stop for the
5195          thread when calling accept.
5197         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5198          setting the interrupt_on_stop for the thread when calling accept.
5200         Contributed under MIT/X11 license.
5202 2009-06-20  Martin Baulig  <martin@ximian.com>
5204         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5206 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5208         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5209         running in no-exec mode.
5211 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5213         * metadata-verify.c (verify_method_table): Move header
5214         checking to verify_method_table_full.
5216         * metata-verify.c (mono_verifier_verify_full_table_data):
5217         Call verify_method_table_full.
5219 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5221         * metadata-verify.c (verify_field_table): Move signature
5222         checking to verify_field_table_full.
5224         * metata-verify.c (mono_verifier_verify_full_table_data):
5225         Call verify_field_table_full.
5227 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5229         * metadata-verify.c (verify_typedef_table): Move remaining
5230         stuff to verify_typedef_table_full.
5232 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5234         * metadata-verify.c: Kill is_corlib from VerifyContext.
5235         It is only used by the offline mode.
5236         So we better remove it from the runtime path.
5238 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5240         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5241         function that perform the offline metadata verification steps.
5243         * metadata-verify.c (verify_typedef_table): Move some checks to
5244         verify_typedef_table_full and make it been called by new function
5245         mono_verifier_verify_full_table_data.
5247         * pedump.c: Call mono_verifier_verify_full_table_data.
5249         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5250         part of the internal API.
5252 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5254         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5255         check.
5257         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5258         flags bits. SupportLastError was confused as bit 7 instead of 6.
5260         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5261         to check against the module ref table instead of module.
5263         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5265         * pedump.c: Call mono_image_load_names.
5267 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5269         * image.c: Extract mono_image_load_names from do_mono_image_load.
5271         * metadata-internals.h: Export mono_image_load_names as part of
5272         the internal API.
5273         
5274 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5276         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5277         first, as it could reference data in the other caches.
5279 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5281         * metadata-verify.c: Finished with method header verification.
5283 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5285         * metadata-verify.c: Added more header verification code.
5286         Now only EH clauses are missing.
5288 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5290         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5291         for return values.
5293 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5295         * metadata-verify.c: Initial method header verification.
5297 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5299         * metadata-verify.c (verify_import_table): The IAT contents
5300         might end been patched by the windows DL when running with
5301         coree enabled.
5303 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5305         * class.c (mono_class_from_typeref): If the enclosing type is not
5306         found return null instead of crashing. Fixes #508487.
5308 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5310         * normalization-tables.h : updated to the latest unicode charcter
5311           data.
5312         * appdomain.c : bump corlib version.
5314 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5316         * class.c (mono_class_from_name): Fix support for assembly references
5317         in the EXPORTEDTYPE table. Fixes #511704.
5319 2009-06-13  Geoff Norton  <gnorton@novell.com>
5321         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5322         assembly in the target domain.
5324 2009-06-12  Robert Jordan  <robertj@gmx.net>
5326         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5327         because "this" of the managed signature has become an
5328         ordinary parameter in the unmanaged signature.
5330 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5332         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5333         field for owner-less generic containers.
5335         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5336         image field of the owner-less generic containers created here.
5338         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5339         contain is ownerless until the caller sets its owner.
5341         * metadata.c (type_in_image): Handle owner-less generic containers
5342         correctly.
5343         
5344 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5346         * image.c (mono_image_close): Support debug_assembly_unload for
5347         dynamic images too.
5349 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5351         * class.c: Fix some typos in comments.
5353 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5355         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5357         * threads.c (mono_thread_execute_interruption): Avoid creating the
5358         abort exception object while holding the synch_cs lock.
5360 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5362         * metadata-verify.c: Verify basic cattr content.
5364 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5366         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5367         nested types.
5368         
5369         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5370         support for nested types. Fixes #511704.
5372 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5374         * metadata-verify.c: Verify methodspec signatures.
5376 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5378         * metadata-verify.c: Verify typespec signatures.
5380 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5382         * metadata.c (free_inflated_method): Call 
5383         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5385 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5387         * mono-config.c: Small change to report the PPC64/ILP32 model.
5389 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5391         * metadata-verify.c (parse_type): Check szarray.
5393 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5395         * metadata-verify.c (parse_type): Check fnptr.
5397 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5399         * metadata-verify.c (parse_type): Check generic instances.
5401 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5403         * metadata-verify.c (parse_type): Check array shape.
5405 2009-06-05  Robert Jordan  <robertj@gmx.net>
5407         * class.c (mono_class_create_from_typedef): Check only for
5408         mscorlib's System.Array.
5410 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5412         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5413         and generic params. 
5415         * metadata-verify.c (parse_field): Check the signature.
5417 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5419         * metadata-verify.c: Implement locals signature check.
5421 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5423         * domain.c: Add .NET 4.0 Beta 1 version.
5425 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5427         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5428           For QueryInterface on CCWs consider the base class
5429           interfaces as well.
5431         Code is contributed under MIT/X11 license.
5433 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5435         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5437         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5438         used.
5440         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5441         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5443         * generic-sharing.c (inflate_other_data): Ditto.
5444         
5445 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5447         * metadata-verify.c: Implement property signature check.
5449 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5451         * sgen-gc.h: Register saving support for PPC.
5453 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5455         * sgen-gc.c: Fixed a pthread TLS screwup.
5457 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5459         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5460         supported.
5462 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5464         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5465         keyword is not supported.
5467 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5469         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5470         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5471         the inflated method is freed. Fixes #508389.
5473         The code is contributed under the MIT/X11 license.
5474         
5475 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5477         * marshal.c (get_wrapper_target_class): New helper function.
5478         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5479         the <Module> class of the image. Fixes #509049.
5481 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5483         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5484         Check if the thread was interrupted and proccess it straight away.
5485         Makes abortion much more responsive.
5487 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5489         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5490         MonoThread::interruption_requested to match it's counterpart.
5492         Fixes a hang in abort-stress-1 on a 2 core x86.
5494         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5495         Fix warning.
5497 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5499         Change MonoImage::name_cache to be protected by the image lock
5500         instead of the loader lock.
5502         * appdomain.c (deregister_reflection_info_roots): Protect access
5503         to name_cache.
5505         * class.c (mono_image_init_name_cache): Change from the loader lock
5506         to the image lock. Check if the cache wasn't already created.
5508         * class.c: Change from the loader to the image lock.
5510         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5511         the code to hold the image lock while iterating over name_cache and
5512         not go into mono_array_new holding it.
5514         * metadata-internals.h: Add a comment about this change.
5516 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5518         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5519         Under the 2.0 profile raise the loader error.
5521         Fixes #508532.
5523 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5525         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5526         of ldind opcode for generic instances so we don't fail for direct wrappers.
5527         This only affect direct calls.
5529 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5531         * reflection.c (create_dynamic_mono_image): Fix warnings.
5533         * generic-sharing.c (other_info_equal): Ditto.
5534         
5535 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5537         * metadata-verify.c: Implement field signature check.
5539 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5541         * metadata-verify.c: Implement standalone signature check.
5543 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5545         * metadata-verify.c: Implement methodref signature check.
5547 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5549         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5550         callbacks supplied by the runtime.
5552         * object.c (mono_install_callbacks): New internal function to install
5553         the callbacks.
5555         * object.c (mono_create_ftnptr): Move the implementation of this to
5556         mini/.
5558         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5560 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5562         * metadata-verify.c (parse_return_type): Proper byref check.
5563         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5564         generic signatures and method params.
5566 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5568         * metadata-verify.c (decode_signature_header): Fix bounds check.
5570         * metadata-verify.c (parse_custom_mods): Check custom mods.
5572         * metadata-verify.c (parse_type): Do initial basic verification
5573         of valid values.
5574         
5575         * metadata-verify.c (is_valid_method_signature): Parse the generic
5576         param count.
5578 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5580         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5581         discarded based on their most specific definition so we set the method_slots
5582         array before checking if the method is acceptable or not.
5584         Fixes #506757.
5586 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5588         * icall.c: Free the old array when resizing a mono_ptr_array.
5590 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5592         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5593         for the hashes whose keys are managed objects.
5595 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5597         * object-internals.h, threads.c: Set the execution context on
5598         thread start here, not in corlib.
5600         * appdomain.c: Bump corlib version.
5602 2009-05-27  Martin Baulig  <martin@ximian.com>
5604         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5605         if `_mono_debug_using_mono_debugger' is set to make things work
5606         properly when embedding Mono.
5608 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5610         * class.c (mono_class_setup_fields): Don't mark simd types as having
5611         16 bytes alignment as the whole runtime doesn't support.
5613 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5615         * metadata-verify.c (safe_read): Use endian safe read macros.
5617 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5619         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5620         it is read-only when using full aot.
5622 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5624         * metadata-verify.c (is_valid_method_signature): Verify parts
5625         of the return type. Provide an error message in case of failure.
5627 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5629         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5631 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5633         * metadata-verify.c: Include the size prefix in the bounds check.
5635 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5637         * icall.c: Remove warnings.
5639         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5640         prevent auto-detection based on GCC defines.
5642         Add PS3
5644         * metadata-verify.c: Do not include signal.h
5646         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5647         messages.  Not sure why the g_assert_not_reached is not enough to
5648         quiet the compiler.
5649         
5651         * appdomain.c: Remove code that is not used when
5652         DISABLE_SHADOW_COPY is set.
5654         * image.c: use g_getenv
5656 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5658         * reflection.c: Remove code that it not used with
5659         DISABLE_REFLECTION_EMIT is defined.
5661 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5663         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5664         invoke wrappers.
5666 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5668         * socket-io.c
5669         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5670         the ifdef here and instead put that on io-layer
5672 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5674         * metadata-verify.c: Verify the generic param constraint table.
5676 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5678         * metadata-verify.c (verify_generic_param_table): Fix
5679         thinko on the valid flags bits for generic params.
5681 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5683         * metadata-verify.c: Verify the methodspec table.
5685 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5687         * metadata-verify.c: Verify the generic param table.
5689 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5691         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5693 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5695         * sgen-gc.c: Use generation enum more consistently and use the
5696         correct generation in mono_gc_register_for_finalization().
5698 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5700         * metadata-verify.c: Verify the nested class table.
5702 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5704         * metadata-verify.c: Verify the manifest resource table.
5706 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5708         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5710 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5712         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5713         wrappers, this is now done in the JIT.
5714         
5715         * class.c (mono_set_generic_sharing_supported): New internal function.
5716         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5718 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5720         * metadata-verify.c: Verify the exported type table.
5722 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5724         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5726 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5728         * metadata-verify.c: Verify the file table.
5730 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5732         * metadata-verify.c (verify_assembly_table): Fix an error message.
5734         * metadata-verify.c: Verify the assemblyref table.
5736 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5738         * metadata-verify.c (verify_assembly_table): Fix the valid
5739         bits mask for flags.
5741 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5743         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5744         generic methods as well.
5746 2009-05-15  Geoff Norton  <gnorton@novell.com>
5748         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5749         use-case and is significantly more performant than the wapi layer.
5751 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5753         * metadata-verify.c: Verify the assembly table.
5755 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5757         * metadata-verify.c: Fix rows limit check.
5759 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5761         * metadata-verify.c: Verify the fieldrva table.
5763 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5765         * sgen.c: Speed up weak links and finalizers by grouping them by
5766         generation.
5768 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5770         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5771         free the old GCHandle (only applies to SGen).
5773 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5775         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5776         mono_metadata_load_generic_params () for non-generic methods.
5778 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5780         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5781         New function for returning a monitor's weak link if it has one.
5783         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5784         one) when clearing a domain.  These can still be around because
5785         the object might not have been collected.
5787 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5789         * gc.c: Fix a warning.
5791 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5793         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5794         prevous wait that resulted in a deadlock on Windows when initializing
5795         the runtime form DllMain. Also results in improved startup time.
5796         (finalizer_thread): Get rid of thread_started_event.
5797         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5798         resulting MonoThread.
5800         Contributed under MIT/X11 license.
5802 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5804         * metadata-verify.c: Verify the implmap table.
5805         Don't require that #US and #Strings be present.
5807 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5809         * security-core-clr.c: Delegate checks are done at creation time,
5810         not a invocation time. Fix exception for Telerik Silverlight demo
5812 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5814         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5815         case for the Thread class.
5817         * threads.c: Do clean-up of abort exception/state in
5818         thread_cleanup() instead of Thread.free_internal().  Also clean up
5819         current_appcontext.  The reason we have to do that is because
5820         those references might point into another domain and if that
5821         domain is unloaded before the thread is finalized, they point to
5822         invalid data.
5824 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5826         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5827         stub signatures.
5828         
5829         Contributed unter MIT/X11 license.
5831 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5833         * verify.c, metadata-verifier.c: Add support for disabling the
5834         verifier in some builds.
5836         [ Sorry, my previous commit accidentally commited some work in
5837         progress ]
5839 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5841         * class.c (mono_class_setup_fields): Set class->field.first for
5842         generic instances.
5844 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5846         * metadata-verify.c: Verify the typespec table.
5848 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5850         * metadata-verify.c: Verify the module table.
5852 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5854         * metadata-verify.c: Verify the methodimpl table.
5856 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5858         * metadata-verify.c: Verify the property table.
5860 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5862         * debug-helpers.c (mono_method_desc_match): Add support for generic
5863         glob patterns.
5865 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5867         * metadata-verify.c: Verify the propertymap table.
5869 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5871         * metadata-verify.c: Verify the event table.
5873         * metadata-verify.c (search_sorted_table): Fix offset
5874         calculation.
5876 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5878         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5880 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5882         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5883         because mono_delegate_free_ftnptr() needs it.
5885 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5887         * metadata-verify.c: Verify the eventmap table.
5889 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5891         * metadata-verify.c: Verify the standalonesig table.
5893 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5895         * metadata-verify.c: Verify the field layout table.
5897 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5899         * class.c (mono_type_get_name_recurse): Don't crash
5900         for ownerless generic params.
5902         * debug-helpers.c (mono_type_get_desc): Correct the format
5903         for ownerless generic params.
5905 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5907         * metadata-verify.c: Verify the class layout table.
5909 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5911         * metadata-verify.c: Verify the decl security table.
5913 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5915         * domain.c (mono_domain_set_internal_with_options): Don't do
5916         anything if the old domain is the same as the old one.  Fixes
5917         #499326.
5919 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5921         * appdomain.c: Deregister the reflection_info roots when unloading
5922         a domain.
5924         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5925         memory allocated by a domain and frees its disappearing links.
5927         * boehm-gc.c, null-gc.c: Empty implementation of
5928         mono_gc_clear_domain().
5930 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5932         * appdomain.c (clear_cached_vtable): Free the static fields memory
5933         block.
5935 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5937         * gc.c: Set the correct domain when invoking finalizers.
5939         * appdomain.c: Set the correct domain when creating threads.
5941 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5943         * sgen-gc.c: Fix skip size for vectors.
5945 2009-05-03  Martin Baulig  <martin@ximian.com>
5947         * mono-debug-debugger.c
5948         (mono_debugger_check_breakpoints): Check class init handlers even
5949         if we don't have any method load handers.
5951 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5953         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5954         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5956 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5958         * metadata-verify.c: Verify the field marshal table.
5960 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5962         * metadata-verify.c: Verify the custom attribute table.
5964 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5966         * metadata-verify.c: Verify the constant table.
5968 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5970         * metadata-verify.c: Verify the memberef table.
5972 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5974         * metadata-verify.c (get_coded_index_token): Remove
5975         dead argument.
5977 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5979         * metadata-verify.c: Verify the interfaceimpl table.
5981 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5983         * verify.c: Improve error message.
5985         * debug-helpers.c (mono_type_get_desc): Harden the code that
5986         deals with VAR and MVAR.
5988 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5990         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5991         part of #498692.
5993 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5995         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5996         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5998 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6000         * security-core-clr.c: Avoid redundant checks for platform code, 
6001         e.g. check for method and for class (very common) and check
6002         for class and outer class (less common)...
6004 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6006         * reflection.c: Avoid returning random cattrs for synthetic methods.
6007         Fixes #498545.
6009 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6011         * assembly.c: assemblies in the GAC should never be shadow-copied.
6013 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6015         * domain.c, domain-internals.h: Disable
6016         track_resurrection_{objects,handles}_hash in MonoDomain if using
6017         SGen.
6019 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6021         * metadata-verify.c: Verify the param table.
6023 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6025         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6026         MethodList.
6028         * metadata-verify.c (verify_method_table): Proper check the ParamList
6029         field.
6031 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6033         * metadata-verify.c (verify_method_table): Check for runtime
6034         implemented functions such as delegate .ctors. Remove spurious
6035         printf.
6036         
6037 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6039         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6041 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6043         Don't allocate MonoGenericInfo for ownerless generic params.
6044         * class-internals.h (MonoGenericParam::info): Move field to ...
6045         (MonoGenericParamFull): ... this.  New struct.
6046         (MonoGenericContainer::type_params): Change type to
6047         MonoGenericParamFull.
6048         (MonoGenericParam, MonoGenericContainer): Update accessors.
6049         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6050         'info' field for ownerless generic param.
6051         (mono_metadata_load_generic_params): Update to changes.
6052         * reflection.c (mono_reflection_create_generic_class): Likewise.
6053         (reflection_methodbuilder_to_mono_method): Likewise.
6054         (mono_reflection_initialize_generic_parameter): Likewise.
6056 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6058         Don't use MonoGenericParamInfo for ownerless generic params.
6059         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6060         use ParamInfo class at all.
6061         (mono_class_from_generic_parameter): Use them.
6062         (make_generic_param_class): Fix a couple of instances where 'pinfo
6063         == NULL' wasn't handle.
6065 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6067         * class.c (make_generic_param_class): Carve out of ...
6068         (mono_class_from_generic_parameter): ... here.
6070 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6072         Simplify mono_class_from_generic_parameter
6073         * class-internals.h (MonoGenericParamInfo::token): New field.
6074         * metadata.c (mono_metadata_load_generic_params): Initialize it
6075         from metadata.
6076         * class.c (mono_class_from_generic_parameter): Use it instead of
6077         searching through metadata.
6079 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6081         * metadata-verify.c: Add verification of the method table.
6083 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6085         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6086         Delegate::Invoke optimization.
6088 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6090         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6091         string returned by get_shadow_assembly_location_base.
6093         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6094         about caller's ownership.
6096 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6098         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6099         reflection memory on domain unload.
6101         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6102         reflection cleanup code do it.
6104         * domain-internals.h: Add mono_reflection_cleanup_domain.
6106         This fixes a memory leak for managed mirrors of reflection objects
6107         on domain unload. 
6109 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6111         * metadata-verify.c: Implement more verification of the field table.
6113 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6115         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6116         doesn't try to parse the input assembly, which can be broken.
6118 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6120         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6121         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6122         by using the lowest bit in the link to store whether the link is
6123         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6125 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6127         * Makefile.am: Split the console support in platform specific code
6128         and put together a framework for making this easy in the future so
6129         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6131 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6133         * pedump.c: Fix a warning.
6135 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6137         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6138         mono_class_from_mono_type to avoid bad interactions with the dual representation
6139         of the generic type definition.
6141 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6143         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6144         get the MonoClass for the call context type as it might be a generic
6145         instance.
6147         Fixes #491483.
6149 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6151         * object-internals.h: The Thread object has no execution_context
6152         member anymore.
6154         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6155         the execution context.
6157         * appdomain.c: Bump corlib version.
6159 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6161         * verify.c (do_newobj): Improve error message.
6163 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6165         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6166         is nested in the filter block.
6168         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6169         block is not fully nested.
6171         Fixes #495656.
6173 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6175         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6176         not MonoType to check for equality of valuetypes as the generic type
6177         definition allows for two different encodings: the generic type definition
6178         class or a generic instance over the GTD arguments.
6180         Fixes #496175.
6182 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6184         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6186         * verify.c (do_initobj): Improve error message.
6188 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6190         * metadata-verify.c: Enable pe verification as the issue with #496453
6191         is that the authenticode data directory have a different unspecified
6192         format. Ignore it for now.
6194         * pedump.c: Run the metadata verifier together with the IL verifier.
6196         Fixes ##496453.
6198 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6200         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6202 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6204         * class.c (can_access_type): Check visibility against
6205         the element type for pointers and arrays.
6207         Fixes #496150.
6209 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6211         * metadata-verify.c: Fix cli and table verification to use information
6212         from the MonoImage. A lot of duplicated code got killed.
6214 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6217         This patch starts to integrate the metadata verifier with the runtime code.
6219         This patch causes major regression in functionality for the metadata verifier
6220         as cli and table verification are disabled since they require to be ported to
6221         use MonoImage information.
6223         * image.c (do_mono_image_load): Split the code in this function
6224         into mono_image_load_pe_data and mono_image_load_cli_data.
6225         Add     care_about_pecoff parameter to not load pecoff data.
6226         Call into the metadata verifier for pecoff and cli verification.
6228         * image.c (mono_image_open_raw): New function that doesn't perform
6229         any parsing of the image contents.
6230         
6231         The reason for the 3 new functions is to give pedump better control
6232         into the interaction with the verifier.
6234         * metadata-internals.h: Add new functions from image.c as part of the
6235         internal mono API.
6237         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6238         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6239         to make those functions work together with the runtime.
6241         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6242         true if the image needs to be verified.
6244         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6246         * pedump.c: Use new metadata verifier API.
6248 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6250         * object.c (mono_install_vtable_trampoline): Make this receive a
6251         trampoline creation function instead of trampoline, allowing the JIT
6252         to use a different trampoline for each vtable.
6254 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6256         * object.c (mono_raise_exception): Don't reset the thread abort
6257         exception state here.
6259 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6261         * icall-def.h: New icall for getting the thread abort exception
6262         state for a thread.
6264         * object.c, thread.c, object-internals.h: A thread's abort
6265         exception state is now a GC handle.  To get the object it stands
6266         for, we must move it into the current app domain, if it's
6267         different than the one where it originated from.
6269         * appdomain.c: Bump corlib version.
6271         * domain.c, domain-internals.h: New function for setting the
6272         domain and migrate the thread abort exception or not.
6274 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6276         * metadata-verify.c: Add initial verification of the
6277         field table.
6279 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6281         * metadata-verify.c: Add a macro to conditionally enable
6282         dumping of verification information. Add  make_coded_token
6283         and search_sorted_table to enable search sorted tables
6284         by a given coded token.
6286 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6288         * metadata-verify.c: Add array mapping from table index
6289         to description offset. Add get_col_offset and get_col_size
6290         functions.
6292 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6294         * metadata-verify.c: Add remaining table descriptions offsets.
6295         Add remaining coded index descriptions.
6297 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6299         * metadata-verify.c: Fixed constant table description.
6300         Fixed calculation of HasCustomAttribute coded index size.
6301         Fixed calculation of size for many table indexes. 
6303 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6305         * pedump.c (dump_metadata): Dump table offset instead
6306         of useless pointer in memory.
6308 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6310         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6312 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6314         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6315         a missing of for interface types.
6317 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6319         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6320         the code is commented.
6322         * metadata-verify.c (verify_resources_table): Remove spurious printf
6323         and don't fail if there are unmanaged resources. Gmcs generates a useless
6324         one     for all assemblies - I bet it's some MS compatibility junk.
6326 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6328         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6330         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6332         * verify-internals.h: Same.
6334         * pedump.c: Fix for mono_image_verify new signature.
6336 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6338         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6339         flags combinations.
6341 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6343         * metadata-verify.c (verify_module_table): Ignore the generation field.
6345 2009-04-15  Martin Baulig  <martin@ximian.com>
6347         * debug-mono-symfile.c
6348         (mono_debug_symfile_lookup_location): Don't print a warning for
6349         unknown extended opcodes if they're within 0x40 and 0x7f.
6351 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6353         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6354         invoke signatures returning an enum. Fixes #494847.
6356 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6358         * metadata-verify.c: Initial code to verify the typedef table.
6360 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6362         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6363         with non empty stack happens before the beginning of a try block.
6365         Fixes #494812.
6367 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6369         * metadata-verify.c: Verify typename and typenamespace fields of
6370         the typeref table.
6372 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6374         * metadata-verify.c: Initial code to verify the typeref table.
6376 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6378         * verify.c (verify_delegate_compatibility): Fix error message.
6380 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6382         * security-core-clr.c: Fix typo
6384 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6386         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6387         a MonoGHashTable to keep its values alive.
6388         (emit_marshal_boolean): Fix a warning.
6390 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6392         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6393         not have any interface configured for IPv4/IPv6.
6395 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6397         * assembly.c: fix typo in error message.
6399 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6401         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6402         allocating the location holding the this argument to prevent
6403         'too many root sets' errors.
6405         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6406         to mark fields as special static.
6407         (mono_field_static_get_value): Handle special static fields.
6408         (mono_field_static_set_value): Ditto.
6410         * class-internals.h (struct _MonoClassField): Document this.
6412 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6414         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6415           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6416           case.  This will handle when managed code returns null to native code.
6418         Code is contributed under MIT/X11 license.
6420 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6422         * object.c (build_imt_slots): Changing a free to a g_free to match
6423           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6425         Code is contributed under MIT/X11 license.
6427 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6429         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6430           the correct TRUE value is passed through the marshaling layer.
6432         Code is contributed under MIT/X11 license.
6434 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6436         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6437         correctly. Fixes #492330.
6438         
6439         * marshal.c: Fix the embedding of object pointers into JITted code in
6440         the native-to-managed wrappers by allocating some GC tracked memory, and
6441         embedding the address of that.
6443 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6445         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6446         pointers into the vtable.
6448 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6450         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6452         * verify.c (verify_ldftn_delegate): Improve error message.
6454 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6456         * reflection.c (my_mono_class_from_mono_type): Remove.
6458 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6460         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6461         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6462         and constraints fields into ...
6463         (MonoGenericParamInfo): ... this.
6464         (mono_generic_param_info, mono_generic_container_get_param_info):
6465         New accessors.
6466         * class.c, debug-helpers.c, icall.c: Update to changes.
6467         * metadata.c, reflection.c, verify.c: Likewise.
6469 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6471         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6473         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6474         
6475         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6476         booleans with sbytes.
6478 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6480         * class.c (can_access_instantiation): Verify accesibility of element types
6481         for arrays and pointers.
6483         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6485         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6487         Fixes #493068.
6489 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6491         * verify.c (do_invoke_method): Improve error messages.
6493 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6495         * verify.c:  Fixing the MSVC build.
6497         Code is contributed under MIT/X11 license.
6499 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6501         * security-core-clr.c: Simplify get_reflection_caller not to call
6502         mono_method_get_last_managed (another stack walk) and adjust the
6503         callers to handle a (should not happen) NULL return value.
6505 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6507         Add accessors to some MonoGenericParam fields
6508         * class-internals.h (mono_generic_param_owner): New accessor.
6509         (mono_generic_param_num): Likewise.
6510         (mono_type_get_generic_param_owner): New helper.
6511         (mono_type_get_generic_param_num): New helper.
6512         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6514 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6516         * class-internals.h (mono_generic_container_get_param): New wrapper.
6517         * class.c, icall.c, metadata.c, verify.c: Use it.
6519 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6521         Fix gtest-252.cs
6522         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6523         the standard case/loop.  In particular, don't complain about
6524         references to generic type definitions.
6526 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6528         * debug-helpers.c (dis_one): Decode string arguments.
6530 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6532         * pedump.c (dump_verify_info): Dump type name correctly.
6534 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6536         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6537         are larger than code size.
6539         This can happen in valid code if the try/catch block is not followed by any instruction
6540         and do a backward branch on the leave instruction.
6542         Fixes #492494.
6544 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6546         * security-core-clr.c: Fix typo while comparing second method names
6547         in can_avoid_corlib_reflection_delegate_optimization
6549 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6551         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6553         Fixes #487738.
6555 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6557         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6558         a MVAR using a class context.
6560         Fixes #490335.
6562 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6564         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6566         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6568         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6569         functions supplied by the JIT for the SGEN GC.
6571         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6572         
6573 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6575         monitor.c (mono_monitor_try_enter_internal):
6576         Added calls to profile monitor contentions.
6577         Also duplicated a small piece of code (the "get the monitor" logic)
6578         from the fast path to the slow path, and changed the relevant goto
6579         statements, so that monitor acquisition events can be emitted from the
6580         slow path (this is by Paolo Molaro).
6582 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6584         * profiler.c, profiler.h, profiler-private.h:
6585         Added support for profiling monitor contentions.
6587 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6589         * metadata-verify.c: Verify the modules table.
6591 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6593         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6594         using the context of the method been verifier and not of the method been called.
6596         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6597         safely inflate generic types. 
6599 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6601         * security-core-clr.c: Change the strategy for checking the 
6602         "reflection using delegates optimization" to avoid unneeded 
6603         attributes in multiple class libraries.
6605 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6607         * sgen-gc.c: Remove object element in the disappearing link struct
6608         by storing the object pointer in the link.
6610 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6612         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6614 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6616         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6618         * verify.c (mono_method_verify): Do proper bounds checking of exception
6619         clause ranges.
6621 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6623         * loader.c (mono_field_from_token): Don't crash if the field parent could
6624         not be decoded.
6626 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6628         * sgen-gc.c: Execute critical finalizers after ordinary
6629         finalizers.
6631         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6632         mono_defaults.
6634 2009-03-31 Jb Evain <jbevain@novell.com>
6636         * verify.c (do_ldstr): don't check if a string is in the user strings
6637         heap if the current image is dynamic.
6639 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6641         * sgen-gc.c: Wait until the last finalizer has executed when
6642         returning from WaitForPendingFinalizers.
6644 2009-03-31  Martin Baulig  <martin@ximian.com>
6646         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6647         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6648         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6649         (mono_debugger_event_create_appdomain): New function.
6650         (mono_debugger_event_unload_appdomain): New function.
6652         * appdomain.c (mono_domain_create_appdomain_internal): Call
6653         mono_debugger_event_create_appdomain().
6655 2009-03-31  Martin Baulig  <martin@ximian.com>
6657         * mono-debug-debugger.c
6658         (mono_debugger_register_class_init_callback): Also register the
6659         class init callback if the class is already initialized to make
6660         things work with shadow copied assemblies.
6662 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6664         * security-core-clr.c
6665         (mono_security_core_clr_ensure_reflection_access_field): Let 
6666         critical code access the field (just like we do for methods). Use
6667         check_field_access helper.
6668         (mono_security_core_clr_ensure_reflection_access_method): Use 
6669         check_field_access helper.
6671 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6673         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6674         call the run-finalize function directly.
6676         * gc.c, gc-internal.h: Make run_finalize() non-static.
6678 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6680         * sgen-gc.c: Use a separate struct for disappearing links.
6682 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6684         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6685         * MaxIOVectorLength enabled, just ignore them.
6686         Fixes bug #349688.
6688 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6690         * metadata-verify.c: Fix eglib build.
6692 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6694         * threads-types.h: Fix the win32 build.
6696 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6698         * class.c: move coreclr inheritance/override checks to 
6699         security-core.clr.c
6700         * security-core.clr.c|h: add code from class.c with additional
6701         documentation. Fix override check when the method is not critical.
6703 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6705         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6706         (match_class): Ditto.
6708 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6710         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6712         * metadata-verify.c: Implement table layout row size calculation. Verify
6713         the total size of the tables.
6715 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6717         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6719 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6721         * appdomain.c:
6722         * console-io.[ch]: added new mono_console_init() to make sure that
6723         file descriptors 0, 1 and 2 are opened.
6724         Bug #489019 fixed.
6726 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6728         * appdomain.h: Export a new callback type and a new function to
6729         set this callback. This allow a mono host to provide it's own
6730         definition for "platform code".
6731         * metadata-internals.h: Add a core_clr_platform_code flag on 
6732         _MonoImage to (cache and) know if it is representing platform 
6733         code.
6734         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6735         on platform code images.
6736         * security-core-clr.c|h 
6737         (mono_security_set_core_clr_platform_callback): Allow the host
6738         to provide it's own platform check definition.
6739         (mono_security_core_clr_determine_platform_image): Detect if an 
6740         image is platform code (using the specified callback).
6741         (mono_security_core_clr_is_platform_image): Return cached value 
6742         for platform code.
6744 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6746         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6747         which has different parameter types for the 'tid' argument in windows and
6748         the io-layer.
6750         * appdomain.c attach.c threads.c: Use the new helper.
6752 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6754         * metadata-verify.c: Verify valid table bits.
6756 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6758         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6760         * metadata-verify.c: Add initial table schema verification.
6762 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6764         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6765         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6766         #488383.
6768         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6770         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6772 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6774         * security-core-clr.c: Add/update documentation
6776 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6778         * marshal.c (emit_marshal_object): Generate code to throw an exception
6779         instead of throwing it. Fixes #488670.
6781 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6783         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6784         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6785         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6786         and add a call to mono_security_core_clr_ensure_delegate_creation
6787         to do the extra checks required by CoreCLR.
6788         * security-core-clr.c|h: Add function to check delegate creation,
6789         both in the binding and accessibility, under CoreCLR.
6791 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6793         * reflection.c (mono_reflection_create_dynamic_method): when 
6794         coreclr is enabled make sure that every resolved object are
6795         checked (e.g. field and method access).
6796         * security-core-clr.c|h: Add function to check objects resolved
6797         when a dynamic method is created.
6799 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6801         * metadata-verify.c: Cache directory rva translations.
6803         * metadata-verify.c: Add cli-header and streams verification.
6805 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6807         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6808         the wrong offset (8 instead of 6).
6810 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6812         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6813         methods, return the native function address itself. Fixes
6814         #487758.
6816 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6818         * console-io.c: some of the values for control characters might not be
6819         present.
6821 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6823         * exception.c|h: Add helpers to create [Field|Method]AccessException
6824         * icall.c: Add required coreclr check calls for field reflection.
6825         Move the existing (method) check logic into security-core-clr.c
6826         * security-core-clr.c: Add functions to check if the access of a
6827         field or method is allowed when reflecting under coreclr. This is
6828         mostly done using a stack walk to find the "real" caller: i.e. the
6829         code that is calling the reflection
6831 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6833         * gc-internal.h: Change location of gc_wrapper.h
6835 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6837         * class.c: Simplification to coreclr checks for overrides that
6838         makes it easier to set breakpoints.
6840 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6842         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6843         mono_security_core_clr_method_level): Avoid potential 
6844         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6845         user/application code) and make it easier to set breakpoints
6847 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6849         * metadata-verify.c: Reject cli header tables that mono don't handle.
6851 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6853         * pedump.c: Fix CLI header dumping.
6855 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6857         * metadata-verify.c: More CLI header verification.
6859 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6861         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6863 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6865         * metadata-verify.c: Initial verification of the CLI header.
6867 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6869         * metadata-verify.c (verify_resources_table): Fix verification of zero
6870         sized resource section and id entries count.
6872 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6874         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6876 2009-03-17  Jb Evain  <jbevain@novell.com>
6878         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6880 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6882         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6883         (mono_gc_make_descr_for_array): Ditto.
6885 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6887         * verify.c (mono_verifier_is_class_full_trust): Add support for
6888         CoreCLR security mode where trusted assemblies are defined as
6889         "platform code".
6891 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6893         * metadata-verify.c: Add minimal PECOFF resource verification.
6895 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6897         * metadata-verify.c: Be less restrictive with some coff fields.
6899 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6901         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6902         params as boxed values on stack. Fixes #485706.
6904 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6906         * console-io.c: the termios values may vary in different flavors of unix.
6908 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6910         * console-io.[ch]: return the entire set of control characters when
6911         initializing the terminal.
6912         * appdomain.c: bump corlib version.
6914 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6916         * mono-perfcounters.c: added support for in-process custom
6917         performance counters.
6919 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6921         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6923 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6925         * metadata-verify.c: Verify the data pointed by the import table. 
6927 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6929         * metadata-verify.c (load_data_directories): Store data
6930         directory contents.
6932         * metadata-verify.c: Verify the import table. 
6934 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6936         * metadata-verify.c: Verify data directories.
6938 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6940         * metadata-verify.c: Check section header flags.
6942 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6944         * appdomain.c: if the assembly name is a shadow-copied file, return
6945         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6946         in mono_make_shadow_copy.
6947         * icall.c: if the assembly name is a shadow-copied file, replace it
6948         with the original assembly path.
6950         Bug #484244 fixed. NUnit tests for corlib can be run without
6951         --noshadow now.
6953 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6955         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6956         entries when the table is reallocated.
6958         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6959         mono_gc_alloc_fixed () since it contains GC refs.
6961 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6963         * reflection.c (ensure_complete_type): New helper function to call
6964         type resolve handlers for unfinished dynamic types.
6965         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6967 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6969         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6970         #483247.
6972 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6974         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6976 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6978         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6979         between GCHandles of type WeakTrackResurrection and the objects they
6980         point to.
6982         * gc.c: Partly implement the sematics of GCHandles of type 
6983         WeakTrackResurrection: these handles should only be cleared after the
6984         finalizer of the object they are pointing to has ran.
6986 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6988         * icall.c: Partially revert r126631 because using the jump
6989         trampolines for generic shared methods makes it superfluous.
6991 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6993         * threads.c (handle_store): Create the 'threads' hash table with the proper
6994         MONO_HASH_VALUE_GC type.
6996 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6998         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6999         FIRST_GC_TRACKED.
7001         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7002         and LAST_GC_TRACKED as a GC root.
7004         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7006         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7007         the static data even if it consists of 1 reference.
7009         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7010         if there is a GC descriptor.
7012         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7013         instead of through the GC since they contain no object references.
7015 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7017         * generic-sharing.c (instantiate_other_info): Always return a jump
7018         trampoline for method code.
7020 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7022         * culture-info-tables.h: generated to include the en-tt culture.
7024 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7026         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7027         capture the thread context.
7029         * object.c (mono_async_result_new): Cache the invoke wrappers to
7030         ExecutionContext::Capture.
7032 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7034         * marshal.h: Add a prototype for what mono_compile_method returns
7035         for invoke wrappers.
7037         * gc.c: Use the new prototype declaration.
7039 2009-03-04  Geoff Norton  <gnorton@novell.com>
7041         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7042         * gc-internal.h:
7043         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7045 2009-03-04  Martin Baulig  <martin@ximian.com>
7047         * mono-debug.h
7048         (mono_debugger_runtime_invoke): Removed.
7050         * mono-debug-debugger.c
7051         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7053 2009-03-02  Martin Baulig  <martin@ximian.com>
7055         * mono-debug.h
7056         (mono_debugger_unhandled_exception): Removed.
7057         (mono_debugger_handle_exception): Removed.
7058         (mono_debugger_throw_exception): Removed.
7060         * mono-debug.c
7061         (mono_debug_debugger_version): Bump to 5.
7063         * mono-debug-debugger.c: Moved the exception handling code to
7064         ../mini/debug-mini.c
7066 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7068         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7069         finalize_objects_hash.
7071         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7072         
7073         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7074         field.
7076         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7077         cache.
7079         * image.c (mono_image_close): Free it.
7080         
7081         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7082         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7083         on the this argument.
7085         * gc.c (run_finalize): Optimize the calling of the finalizers.
7087 2009-03-03  Martin Baulig  <martin@ximian.com>
7089         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7090         of the `MonoGenericInst' changes.
7092 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7094         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7095         mono_array_class_get_cached to reduce locking contention. Extract
7096         a domain var.
7098         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7099         intermediary managed arrays. Use caching version of mono_array_new
7100         to allocate the result array.
7102         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7104         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7106         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7107         to reduce locking contention.
7109 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7110                 
7111         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7112         thunk builder code for the non-interface case.
7114 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7116         * object.c (get_generic_virtual_entries): New helper function to collect
7117         the virtual generic method instances which need to be added to an IMT
7118         thunk.
7119         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7120         Instead of creating a new IMT thunk, reset the vtable slot to the
7121         trampoline, the thunk will be created the next time the trampoline is called.
7122         (build_imt_slots): Add support for virtual generic methods in interfaces by
7123         adding to the IMT thunk all the methods registered using 
7124         mono_method_add_generic_virtual_invocation ().
7126         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7127         (struct _MonoIMTCheckItem): Ditto.
7129         * object.c (mono_method_add_generic_virtual_invocation): Take a
7130         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7131         the IMT thunk to include all items.
7132         
7133         * object.c (mono_class_create_runtime_vtable): Add a missing
7134         mono_loader_unlock ().
7136 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7138         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7140         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7142 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7144         * object-internals.h: Rename _MonoReflectionEvent to
7145         MonoReflectionMonoEvent so it reflects the right managed type.
7146         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7148         * icall.c:
7149         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7150         type.
7152 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7154         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7155         intermediary managed arrays. Use caching version of mono_array_new
7156         to allocate the result array.
7158 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7160         * reflection.c: Use cached version of mono_array_new alongside
7161         the mono_reflection_get_custom_attrs_by_type call path.
7163 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7165         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7166         intermediary managed arrays. Use caching version of mono_array_new
7167         to allocate the result array.
7169         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7171 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7173         * icall.c: Add small implementation of a growable stack bound array.
7175         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7177         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7178         intermediary managed arrays. Use caching version of mono_array_new
7179         to allocate the result array.
7181 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7183         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7184         helps Enum::CompareTo to be implemented without reboxing all enums
7185         to their underlying type.
7186 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7188         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7189         since it acquires a global lock leading to scalability problems.
7191         * profiler.c: Make the stat profiler work with multiple appdomains, this
7192         currently only works when no appdomains are unloaded.
7194 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7196         * appdomain.c: make the check to avoid copying when the assembly is
7197         already shadow copied actually work.
7199 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7201         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7203         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7204         changes to the managed side.
7206 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7208         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7209         classes + a separate lock for it, as it is used frequently at runtime, not
7210         just during metadata loading/JIT compilation.
7212         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7213         for szarrays.
7214         
7215         * object-internals.h (mono_class_from_name_cached): New macro to cache
7216         the results of the lookup locally without having to declare a static
7217         variable to hold it.
7218         (mono_class_get_field_from_name_cached): Ditto.
7219         (mono_array_class_get_cached): Ditto.
7221         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7222         the new macros.
7223         
7224         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7225         slower search in metadata.
7227         * pedump.c: Fix a warning.
7229 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7231         * reflection.c (encode_locals): Add checks for user types.
7232         (method_encode_clauses): Ditto.
7233         (method_encode_code): Ditto.
7234         (mono_image_create_token): Ditto.
7236         * object-internals.h: Change the type of more fields from MonoReflectionType*
7237         to MonoObject*.
7239 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7241         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7242         the a thread does not suspend within 100ms.
7244         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7245         in addition to StopRequested as well.
7247         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7249         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7250         search the method_hash before inserting a new entry, to avoid crashes when
7251         the same method is inserted multiple times, causing the old 
7252         MonoDebugMethodInfo structure to be freed by the value dtor function.
7254 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7256         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7257         SO_EXLUSIVEADDRUSE where available.
7259 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7261         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7262         runtime invoke wrappers, this time it is string ctor wrappers, which
7263         pass a dummy string as 'this' instead of their obj argument. Fixes
7264         #478473.
7266 2009-02-21  Jb Evain  <jbevain@novell.com>
7268         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7269         only get create_culture once.
7271 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7273         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7274         check before the locking.
7275         
7276         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7277         (mono_reflection_create_runtime_class): Ditto.
7278         (mono_reflection_sighelper_get_signature_local): Ditto.
7279         (mono_reflection_sighelper_get_signature_field): Ditto.
7281         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7282         is a System.MonoType object or similar.
7283         (monotype_cast): New helper function to cast a MonoObject to a 
7284         MonoReflectionType object.
7286         * object-internals.h: Change MonoReflectionType* members in structures to
7287         MonoObject* members to force the usage of the monotype_cast () function.
7289         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7290         structures/arrays. This causes us to assert instead of crashing when 
7291         instances of user defined subclasses of System.Type are encountered.
7293 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7295         * cil-coff.h:
7296         * icall-def.h:
7297         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7298         win32 resource loaded from a PE file.
7300         * image.c: fix mono_image_lookup_resource.
7302 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7304         * icall-def.h:
7305         * threads-types.h:
7306         * threads.c: added internal call for WaitHandle.SignalAndWait.
7308 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7310         * cominterop.c : Adding cominterop_type_from_handle and 
7311           registering it as an icall.  Replacing all references
7312           to type_from_handle.
7314         Code is contributed under MIT/X11 license.
7316 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7318         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7320         * appdomain.c: Call the tracer init function.
7322         * domain-internals.h: Enable the tracer for the domain locks.
7324         * image.c: Enable the tracer for image locks.
7326         * loader.c: Enable the trace for the loader lock.
7328         * lock-tracer.h:
7329         * lock-tracer.c: Initial implementation of the lock trace utility.
7330         The tracer requires a compile time define to be enabled and a env var
7331         to be enabled at runtime.
7333 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7335         * domain.c (mono_domain_code_foreach): Improve documentation.
7337 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7339         * appdomain.c:
7340         * generic-sharing.c:
7341         * object.c:
7342         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7343         comes first.
7345 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7347         * domain.c: Add mono_domain_code_* functions that perform locking
7348         around the domain codeman.
7350         * domain-internals.h: Export those functions.
7352         * object.c: Use new functions instead of acquiring the domain lock.
7354 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7356         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7357         delegate. Fixes #477396.
7359 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7361         * reflection.c (create_custom_attr): Get rid of alloca.
7363 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7365         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7366           Adding exception handling for all CCW calls.
7368         Code is contributed under MIT/X11 license.
7370 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7372         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7374         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7375         native->managed marshalling code. Fixes #476247.
7377 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7379         * class.c (mono_class_get_vtable_entry): Move the addition of
7380         static rgctx invoke wrappers for vtable methods here, this simplifies
7381         a lot of code and causes fewer rgctx wrappers to be created.
7383         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7384         name of the statistics to begin with an uppercase.
7386 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7388         * reflection.c: Revert previous change as it breaks the build.
7389         
7390 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7392         * verify.c: Properly handle SZARRAY element type.
7394         Fixes #474271.
7396 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7398         * reflection.c (mono_image_create_method_token): Correctly encode
7399         MethodDef MemberRefParent token.
7401         Fixes #472845.
7403 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7405         * image.c (mono_image_close): Delete the critical section before
7406         freeing the memory holding it.
7408 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7410         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7411         Fixes #476257.
7413 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7415         * pedump.c (main): Call mono_marshal_init so pedump
7416         doesn't crash.
7418 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7420         * loader.c (method_from_memberref): Properly fix #474271 and
7421         don't break the runtime bad.
7423 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7425         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7426         (mono_domain_alloc0): Ditto.
7428 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7430         * loader.c (method_from_memberref): Don't abort if the array
7431         method is not found. A regular loader failure is more informative
7432         and correct.
7434         Fixes #474271.
7436 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7438         *loader.c: Guard MonoImage::method_cache/methodref_cache
7439         using the image lock instead of the loader lock.
7441         * metadata.h: Add comments about which fields are protected by
7442         the image lock.
7444 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7446         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7448         * generic-sharing.c (mono_method_construct_object_context): Remove the
7449         wrapper_type == NONE assert, it is not needed.
7451 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7453         * reflection.c (clear_cached_object): New helper function.
7454         (mono_method_clear_object): New function to clear the cached reflection
7455         objects for a dynamic method.
7457         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7458         Partly fixes # 463323.
7459         
7460 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7462         * class.c:
7463         * loader.c:
7464         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7466 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7468         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7469         take the image lock instead of the loader lock.
7471         * metadata-internals.h: Export new functions.
7473 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7475         * domain.c (app_config_parse): Remove another use of stat that is
7476         not necessary as g_file_get_contents already does the presence
7477         check. 
7479 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7481         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7483         * marshal.c: Move the bstr handling code to cominterop.c.
7485         * marshal.c: Remove some COM interop code missed previously.
7487 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7489         More Paolo patches from the Wii port:
7490         
7491         * security.c: Remove ves_icall_System_Environment_get_UserName
7492         from here.
7494         * icall.c: And put ves_icall_System_Environment_get_UserName
7495         here. 
7497         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7498         redundant call to stat that was only used to test for the file
7499         existence.   Patch from Paolo.
7501         * gc.c (run_finalize): If COM is disabled, do not link in
7502         mono_marshal_free_ccw.
7504         * generic-sharing.c: Use alloca.h here as well.
7506 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7508         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7510 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7512         * cominterop.c cominterop.h: New files.
7514         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7515         function/typedefs which are needed by cominterop.c global.
7517 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7519         * generic-sharing.c: Don't take the loader lock to guard image
7520         mempool allocs.
7522 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7524         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7525         called without the loader lock which is required to guard MonoImage:tokens.
7527 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7529         * class.c:
7530         * metadata.c:
7531         * method-builder.c:
7532         * marshal.c:
7533         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7535 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7537         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7538         Rework the code to use regular mono_image_alloc/0.
7540         * loader.c: Rework the code to use regular mono_image_alloc/0.
7542         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7544 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7546         * object-internals.h : Fixing a typo in the 
7547           MonoReflectionComVisibleAttribute struct.
7549         * marshal.c (cominterop_com_visible): Check the implemented 
7550           interfaces for ComImport.
7552         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7553           assume that bools should be treated as VARIANTBOOLs.
7555         * marshal.c (emit_marshal_boolean): Adding cases for 
7556           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7558         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7559           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7561         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7562           should be treated as VARIANTBOOLs.    
7564         Code is contributed under MIT/X11 license.
7566 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7568         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7569         allocation with the image lock.
7571 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7573         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7574         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7576         * object.c: Add mono_string_to_utf8_image.
7578         * object-internals.h: Export mono_string_to_utf8_image.
7580         * reflection.c: Rework all explicit references to the the image mempool to go thought
7581         the mono_image_alloc set of functions.
7583 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7585         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7586         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7587         and generics-sharing.c.
7589         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7590         as first argument. Note that this function remains broken as it doesn't perform locking around the
7591         mempool allocation.
7593         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7595         * image.c: Add g_slist_append_image.
7597         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7598         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7600         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7601         Fix all related code to do the same.
7603         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7605         * metadata-internals.h: Fix the signatures.
7607 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7609         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7610         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7611         and similar to work using MonoImage.
7613         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7614         MonoMemPool.
7616         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7618         * class.c (mono_metadata_signature_deep_dup): Same.
7620         * class.c (inflate_generic_type): Same.
7622         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7624         * metadata.c (mono_metadata_signature_dup_full): Same.
7626         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7627         mono_metadata_signature_dup_full.
7629         * metadata.c (mono_metadata_type_dup): Same.
7631         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7633         * reflection.c: Same.
7635         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7637         * metadata-internals.h: Fix the signatures.
7639         * class-internals.h: Same.
7641 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7643         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7644         and use mono_image_alloc set of functions instead. 
7646         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7647         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7648         of a MonoMemPool.
7650         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7652         * class.c (g_list_prepend_mempool): Removed.
7654         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7656         * image.c: Add g_list_prepend_image.
7658         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7660         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7663 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7665         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7666         mono_image_unlock.
7668         * image.c (mono_image_init): Init the lock field.
7670         * image.c (mono_image_init): Cleanup the lock field.
7672         * image.c: Add mono_image_(un)lock functions.
7674 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7676         * class.c, class-internals.h: mono_method_get_context_general()
7677         combines the functionality of mono_method_get_context() and
7678         mini_method_get_context().
7680         * generic-sharing.c, domain-internals.h:
7681         mono_method_construct_object_context() and
7682         mono_domain_lookup_shared_generic() moved from mini.
7684         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7685         method doesn't have the correct instantiation because it's shared
7686         generic code.  Fixes #473999.
7688 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7690         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7692         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7693         
7694 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7696         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7698         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7700         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7701         and recheck the cache for dups after it.
7703         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7705         Fixes one of the deadlocks found in #473150.
7707 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7709         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7710           For Win32, add additional break conditions for accept.
7712         Code is contributed under MIT/X11 license.
7714 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7716         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7717         lazily initialize the native wrapper cache.
7718         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7719         cache, since they are different from the normal wrappers.
7721         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7723         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7724         AOT compiled native wrappers.
7726 2009-02-09  Geoff Norton  <gnorton@novell.com>
7728         * appdomain.h:
7729         * security-core-clr.c: Allow enabling core-clr from the embedding
7730         API.
7732 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7734         * socket-io.c: when requesting all the local ips, if there are no
7735         interfaces up and running, MS returns 127.0.0.1.
7737 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7739         * mono-perfcounters-def.h: processor time is an inverse time.
7740         Fixes bug #468625.
7742 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7744         * socket-io.c: an empty host name returns the list of local IPs.
7745         Fixes bug #386637 part 1/2.
7747 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7749         * verify.c (mono_class_interface_implements_interface): Call
7750         mono_class_setup_interfaces ().
7751         (merge_stacks): Ditto.
7753 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7755         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7756         klass->interfaces.
7757         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7758         (mono_generic_class_get_class): Ditto.
7760 2009-02-06  U-QUACK\miguel  <miguel@quack>
7762         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7763         they live in security.c
7765         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7766         another bit from Paolo's code.
7768 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7770         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7771         methods which will be discarded by add_imt_builder_entry ().
7773         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7774         need to be boxed.
7776         * loader.c: Add a statistics for the size of the memberref signature cache.
7777         
7778         * loader.c (find_cached_memberref_sig): New helper function.
7779         (cache_memberref_sig): Ditto.
7781         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7782         they will be parsed again for every generic instantiation, leading to unbounded
7783         memory growth.
7785 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7787         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7788         parameters of generic methods.
7790         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7791         after the original method is copied to the inflated method.
7792         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7794         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7795         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7797         * class.c metadata.c: Update after the changes above.
7799 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7801         * metadata-verify.c: Simplified error handling and added
7802         section table validation.
7804 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7806         * class-internals.h (MonoClassExt): New structure containing rarely used
7807         fields of MonoClass.
7808         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7809         through a new 'ext' field.
7811         * class.c (mono_class_alloc_ext): New helper function to allocate 
7812         class->ext.
7814         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7816 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7818         * object.c (mono_object_get_virtual_method): Properly inflate
7819         generic methods.  Fixes #472692.
7821 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7823         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7824         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7825         for the parent type, the created type must be ready to be used on a generic
7826         instantiation.
7827         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7828         we won't have duplicated entries in generic_inst_cache.
7830         Fixes #469553.
7832 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7834         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7835         replace with plain BSD per the comments on the bug MONO77637.
7837 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7839         * class.c (mono_class_get_generic_class): New accessor function.
7840         (mono_class_get_generic_container): Ditto.
7842         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7843         fields, similar to the ones in MonoMethod.
7845         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7846         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7848         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7849         
7850         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7851         the same information as element_class->byval_arg.
7853         * class.c reflection.c: Remove references to class->byval_arg.
7855         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7856         klass->enum_basetype directly.
7858         * verify.c metadata.c object.c icall.c reflection.c: Use 
7859         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7860         directly.
7862 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7864         * icall-def.h: Remove internal calls for sockets when
7865         DISABLE_SOCKET is defined, file system writing features when the
7866         OS only support reading and not writing data and Policy support if
7867         the Policy is disabled.
7868         
7869         * image.c (do_mono_image_open): Apply Paolo's patches for using
7870         mono_file_map_ APIs here.
7872         * assembly.c: Add support for platforms to avoid prefix
7873         auto-detection. 
7875 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7877         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7878         warning.
7880         * class.c (mono_class_inflate_generic_class): New helper function.
7882         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7883         statistics for inflated methods/classes.
7885         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7887         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7888         the call is made from Delegate.CreateDelegate () for the invoke method of
7889         a delegate.
7891         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7893         * metadata.c (mono_metadata_signature_size): New helper function.
7895         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7896         generic instances.
7898         * metadata.c (inflated_method_in_image): Avoid calling 
7899         mono_method_signature () if the method does not already have a signature.
7901 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7903         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7904         valuetype is compatible with target type, check by inheritance as a
7905         VT is not really compatible with System.ValueType, for example.
7907         * verify.c (do_invoke_method): Improve error message.
7909         * verify.c (do_box_value): If boxing a nullable, use the type argument
7910         on stack instead.
7912         * verify.c (do_newobj): Improve error message.  
7914         Fixes #469549.
7916 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7918         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7920 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7922         * generic-sharing.c: Don't hold domain lock when calling
7923         instantiate_other_info().  Fixes #471958.
7925         * domain-internals.h, loader.c: Describe locking policy of domain
7926         lock vs loader lock.
7928 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7930         * verify.c (mono_delegate_signature_equal): Make it possible to check
7931         first-arg-bound delegates to static method.
7933         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7934         static methods with the first arg bound.
7936         Fixes #469529.
7938 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7940         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7941         errors.
7943         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7944         under strict mode. Any type, when boxed can be seen as a reference type.
7946         Fixes #469528.
7948 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7950         * object.h: The lower bound of an array is a signed integer value.
7951         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7952         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7954         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7955         calculate the upper bound.
7956         
7957         Fixes #471252.
7959 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7961         From Paolo's work, refactored, cleared up:
7962         
7963         * threadpool.c, icall.c: ifdef code that requires a working socket
7964         stack.
7966         * metadata.c (mono_metadata_field_info): Do not attempt to return
7967         a value from a function declared as void.
7969         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7970         from the console stack.
7972         * assembly.c: use strrchr instead of rindex.
7974         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7975         alloca.h on systems that have it.
7977         * environment.c: Avoid code that uses stuff from
7978         HAVE_SYS_UTSNAME_H
7979         
7980         * appdomain.c: Include sys/time.h.
7982         * console-io.c: include sys/ioctl.h if it is available.
7984 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7986         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7988         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7989         the method builder.
7991         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7992         after it was created and cached, as the later is not thread safe.
7993         
7994 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7996         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7997         called while the debugging module is not initialized. Fixes #471669.
7999 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8001         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8003         Fixes #471255.
8005 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8007         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8008         loader lock is not taken while the templates lock is held.  Fixes
8009         #471089.
8011 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8013         * metadata.c (type_in_image): Added a check to fix a monodis
8014         crash.
8016 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8018         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8019         nullable arguments.
8021         * object.c (mono_runtime_invoke_array): Ditto.
8022         
8023         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8024         freeing wrappers of dynamic methods.
8026         * loader.c (mono_free_method): Call it. Fixes #463323.
8027         
8028         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8029         methods taking vtype/byref arguments, to fix yet another bug caused by
8030         the sharing of runtime invoke wrappers. Partly fixes #471259.
8032 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8034         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8035         <first file in file table>:1 when the IL offset does not have an associated
8036         line number.
8038 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8040         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8041         variable info for a method.
8043         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8044         
8045 2009-01-30  Jb Evain  <jbevain@novell.com>
8047         * pedump.c: reuse code from monodis to make sure pedump honors
8048         MONO_PATH, which is needed to verify net_2_1 assemblies.
8050 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8052         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8053         there is no line number info.
8055 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8057         Avoid some MonoType allocations
8058         * reflection.c (mono_reflection_initialize_generic_parameter):
8059         Reuse MonoType from param->pklass rather than allocating one.
8060         (mono_dynamic_image_free): Update to changes.
8062 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8064         Rearrange some code to improve consistency
8065         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8066         (mono_reflection_initialize_generic_parameter): ... here.
8068 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8070         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8071         with type constraints as an experiment.
8073         * boehm-gc.c (on_gc_notification): Update mono_stats.
8075 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8077         Avoid some allocations
8078         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8079         pointer to tail array to avoid extra allocation.
8080         * metadata.c (free_generic_inst): Update to changes.
8081         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8082         on-stack struct.
8084 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8086         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8087         return TRUE if the two type objects are the same.
8089 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8091         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8092         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8093         klass->min_align, since klass->min_align contains the managed alignment,
8094         while the native alignment can be different, like for longs on x86.
8095         Fixes #469135.
8097         * class-internals.h (MonoMarshalType): Add a min_align field.
8099 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8101         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8102         the 1.0 format.
8104 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8106         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8107         some comments about the usage of the used_regs field.
8109         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8110         Fixes #469217.
8112 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8114         * appdomain.c: return NULL instead of throwing FileNotFoundException
8115         when LoadAssembly() fails.
8117 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8119         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8120         image if the owner is NULL.  Fixes the AOT failures.
8122 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8124         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8125         MonoGenericParam structure using memset so the image field is initialized
8126         as well.
8128 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8130         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8131         a plain store.
8133 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8135         * class.c (mono_class_setup_vtable_general): In the generic instance
8136         optimization, set method->slot for abstract virtual methods. Fixes part of
8137         #467834.
8139 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8141         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8142         which signals that the unloading has started but all appdomain services must
8143         remain operational.
8145         * appdomain.c (mono_domain_unload): The initial state for unloading now
8146         is unloading_start and we switch to unloading after the managed call to
8147         AppDomain::DomainUnload has finished.
8149         The new unloading state has to be created because managed code in the
8150         DomainUnload event can depend on things like the threadpool still working.
8151         The domain must remain fully functional while the event executes.
8153         This shown as an issue due to Process::WaitForExit, which waits for
8154         async reads of stdout and stderr to complete. Since those are processed
8155         in the threadpool the code deadlocks because the DomainUnload callback 
8156         waits for the async read finished event, which should have been set by a
8157         threadpool job but has been discarded due to the domain been in unload
8158         state.
8160 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8162         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8163         image must match.
8165 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8167         * reflection.c (resolve_object): For fields, inflate the class and
8168         then get the field in the inflated class.
8170 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8172         * object-internals.h (struct _MonoException): Added a comment
8173         explaining the new use of trace_ips.
8175 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8177         * generic-sharing.c (inflate_other_data): Inflate array methods
8178         correctly.
8180         * loader.c, class-internals.h: Rename search_in_array_class() to
8181         mono_method_search_in_array_class() and make it non-static.
8183 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8185         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8186         Hopefully fixes #458168.
8188 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8190         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8191         as it is performed elsewhere.
8193         Code is contributed under MIT/X11 license
8195 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8197         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8198         requests queued.
8199         * object.c (mono_raise_exception): Increment the exceptions total
8200         counter when an exception is thrown.
8201         * class-internals.h: Add a location for storing the total number of
8202         asp.net requests served.
8203         * mono-perfcounters.c: Implement update support for asp.net counters
8204         from the class libraries. Implement read support for asp.net counters
8205         and exceptions total counter.
8207 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8209         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8210         accessing klass->methods. Fixes #467385.
8212 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8214         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8215         for byval arguments without an [Out] attribute. Fixes #467212.
8217         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8218         Fix compilation under android.
8219         
8220         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8221         processed, scan them directly after they are copied, to achieve better locality
8222         and cache usage.
8224         * socket-io.c: Applied patch from Koushik Dutta
8225         (koush@koushikdutta.com). Disable IPV6 when running under android.
8227 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8229         * icall.c (ves_icall_InternalExecute): Add write barriers.
8231         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8232         the GC code.
8234         * sgen-gc.c: Implement write barriers in IL code.
8236 2009-01-17  Geoff Norton  <gnorton@novell.com>
8238         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8240 2009-01-17  Geoff Norton  <gnorton@novell.com>
8242         * image.c: When unloading the image->references table, there can be gaps
8243         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8244         when unloading an appdomain.
8246 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8248         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8249         speed up ptr-in-nursery checks.
8251         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8252         threads_lock () to prevent deadlocks.
8254         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8255         does not need to be scanned during minor collections, since writes to it
8256         must use write barriers.
8258 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8260         * metadata-verify.c: Add pe nt header verification.
8261         
8262 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8264         * gc.c: Fix a few warnings when using SGEN.
8266 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8268         * metadata-verify.c: Add pe optional header verification.
8270 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8272         * sgen-gc.c: Add support for user defined marker functions, used by
8273         MonoGHashTable to avoid registering a GC root for every hash node.
8275 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8277         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8278         non-pinned roots into separate hashes to avoid having to traverse them
8279         in functions which are only interested in one kind.
8281 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8283         * metadata-verify.c: Add pe header machine field verification.
8284         
8285 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8287         * metadata-verify.c: Add pe header size verification.
8289 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8291         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8292         using the GC, they don't contain references.
8294         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8296 2009-01-13  Geoff Norton  <gnorton@novell.com>
8298         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8299         AppDomains created on the native side can be cleaned up on the native side.
8301 2009-01-13  Geoff Norton  <gnorton@novell.com>
8303         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8304         as well as the managed api.
8306 2009-01-13  Geoff Norton  <gnorton@novell.com>
8308         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8309         with a MonoAppDomain initialized against it.
8311 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8313         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8314         
8315         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8317         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8318         into the wrapper caches. Fixes #465700.
8320         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8321         method builder.
8322         (mono_mb_create_method): Set the clauses from the method builder.
8324 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8326         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8327         Patch from Makoto Kishimoto.
8329 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8331         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8332         encoding them as ROOT_DESC_COMPLEX.
8333         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8335 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8337         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8338         no longer point to the nursery.
8340         * sgen-gc.c: Add a few comments/FIXMEs.
8341         
8342         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8344         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8345         initialization of the various _method variables thread safe. Fixes
8346         #465377.
8348 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8350         * domain.c, domain-internals.h: Remove the shared_generics_hash
8351         and its lookup functions.
8353 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8355         * socket-io.c:  Fixing the MSVC build. 
8357         Code is contributed under MIT/X11 license.
8359 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8361         * metadata-verify.c: Add pe header watermark verification.
8363 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8365         * metadata-verify.c: Add lfanew verification.
8367 2009-01-12  Jb Evain  <jbevain@novell.com>
8369         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8370         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8372 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8374         * socket-io.c: Fix the build.
8376         * environment.c: Fix an #ifdef.
8378 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8380         * threadpool.c (async_invoke_thread): Handle the wait function returning
8381         WAIT_IO_COMPLETION as well.
8382         (async_invoke_io_thread): Ditto.
8384 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8386         * threads.c: Fixing the Windows build.
8388         Code is contributed under MIT/X11 license.
8390 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8392         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8393         interrupt a wait.
8394         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8395         the thread to wait again.
8397 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8399         * metadata-verify.c: Initial skeleton of the metadata verifier.
8401         * pedump.c: Add support for the metadata verifier.
8403         * verify-internal.h: Export the whole assembly metadata verifier function.
8405 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8407         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8409 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8411         * Makefile.am: Upgrade dtrace-prelink.sh location.
8413 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8415         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8416         well. Otherwise the shutdown deadlock that happens on unix will can happen
8417         as well.
8418         If the main thread code finishes too fast it's possible that the finalizer
8419         thread won't have executed yet, won't record itself as the finalizer thread
8420         and the shutdown sequence will wait on it forever.
8422 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8424         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8425         with MSVC.
8427 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8429         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8430         Robert Jordan for pointing this out.
8432 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8434         * icall.c
8435         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8436         ves_icall_System_IO_DriveInfo_GetDriveType.
8438 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8440         * icall.c: Wrap calls to mono_strtod in CriticalSection
8441         invocations when using eglib, to work around #464316.
8443 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8445         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8446         return value of GetCurrentDirectory to never access unitialized memory.
8448 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8450         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8451         return value of GetCurrentDirectory and expand the buffer if needed.
8453         Fixes #459094.
8455 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8457         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8458           Adding a call to mono_init_com_types.
8460         Code is contributed under MIT/X11 license.
8462 2009-01-07  Geoff Norton  <gnorton@novell.com>
8464         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8465         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8466         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8467         be the value of the ip buffer.
8469 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8471         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8472         interfaces_packed here.
8474         Fixes part of #463294.
8476 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8478         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8480         Fixes part of #463294.
8482 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8484         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8485         is a boxed complex as well.
8487         Fixes part of #463294.
8489 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8491         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8492         control if a methodspec should be created for the generic method definition from external assemblies.
8493         Caching of methodspec is done using the handleref hash table.
8495         Fixes #462592.
8497 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8499         * loader.c (find_method): When searching the interfaces of a class
8500         check the transitive closure of implemented interfaces.
8502         Fixes #463303.
8504 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8506         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8507         
8508 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8510         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8511         interfaces calculation to fill_valuetype_array_derived_types.
8513         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8514         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8515         for example.
8517         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8518         interfaces for valuetypes if needed.    
8520         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8521         for their basetype as well. Types are array expanded if rank is > 0.
8523         Fixes #400716.
8525 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8527         * socket-io.h : Changing the signature of
8528           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8529           the blocking state.
8531         * icall-def.h :  Changing the signature of
8532           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8534         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8535           For Windows only.  Avoid blocking when calling accept by
8536           querying for a connection via select.  The loop also queries
8537           the thread state every 1000 micro seconds for the thread
8538           stop state.  This will avoid the process hanging on shutdown
8539           when using a TcpChannel that is never connected to.
8541         Code is contributed under MIT/X11 license.
8543 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8545         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8547 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8549         * class.c (get_implicit_generic_array_interfaces): Extract common
8550         code to a helper function making it a lot easier on the eyes.
8552 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8554         * class.c (get_implicit_generic_array_interfaces): If the internal
8555         enumerator is an interface inflate System.Object instead of itself.
8557         Fixes #461261.
8559 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8561         * object.c (mono_runtime_invoke_array): Don't assert with
8562         byref nullable types.
8564         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8565         byref nullables we unbox the object and store it on the
8566         stack. 
8567         We can't use the boxed object since it is the T of Nullable<T>
8568         and the boxed representation of a nullable it's underlying type
8569         or null.
8570         We could cheat and create a boxed nullable and use the same
8571         machinery of other byref VTs but this feels like a hack and
8572         using the stack has the bonus of reducing heap pressure.
8574         Fixes #461941.
8576 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8578         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8579         return value.
8581         Fixes #461867.
8583 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8585         * icall-def.h : Adding an internal call definition for 
8586           System.Environment.internalBroadcastSettingChange.
8588         * icall.c : Adding a Windows only implementation to broadcast a 
8589           WM_SETTINGCHANGE when an environment variable has changed.
8591         Code is contributed under MIT/X11 license.
8593 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8595         * class.c, class-internals.h: Made
8596         mono_class_has_parent_and_ignore_generics() non-static.
8598 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8600         * image.c: deal with the mmap failing when loading an image.
8602 2008-12-17  Geoff Norton  <gnorton@novell.com>
8604         * threadpool.c: Ensure that the io_queue_lock is initialized
8605         in all circumstances, as we always attempt to cleanup against it.
8607 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8609         * icall.c (ves_icall_System_Environment_get_Platform): For
8610         compatibility reasons for existing client code we will keep
8611         returning 4 for a while.   
8613         For how long will depend on the documentation being updated, and
8614         for us to give client code a chance to be updated.
8616         This reverts the original decison on #433108 since we did not
8617         catch roughly 33 instances of the broken code in our own source
8618         code base, we did not catch failures on the buildbots, and QA did
8619         not bring this as a problem.
8621         Only today I found some customer's code breaking due to our own
8622         class libraries not being fully updated and tracked it down to
8623         this change.  I am reverting it because if we could not even get
8624         our story straight in our own code base, how can we hope that our
8625         end user code be fixed?
8627         As of this morning, our Wiki page that documents how to detect
8628         Unix had not been fixed.    
8630 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8632         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8634         * class.c (mono_class_get_fields): Handle loading errors.
8636 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8638         * 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.
8639         
8640 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8642         * mono-perfcounters.c: avoid warning.
8644 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8646         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8647         make sure all interfaces have MonoClass::interface_id set.
8649         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8650         method table is property set.
8652 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8654         * class.c: New function mono_class_setup_interface_id that setup
8655         MonoClass::interface_id if needed.
8657         * class-internals.h: Export new function.
8659 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8661         * class.c: Add code to sanity check the vtable after setup_vtable_general
8662         has done it's work.
8664 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8666         * icall.c: make Assembly.GetExecutingAssembly work properly when
8667         reflection is used to invoke the method.
8668         Bug #321781 fixed.
8670 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8672         * metadata/generic-sharing.c: Look for constraints in all type
8673         arguments, not just the first one.
8675 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8677         * appdomain.c: return the correct CodeBase for an Assembly instance
8678         that was loaded from the shadow-copy directories.
8679         Bug #458190 fixed.
8681 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8683         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8685         * sgen-gc.c (check_object): New debugging helper function.
8687         * object.c: Fix calls to mono_value_copy_array ().
8689 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8691         * class.c (mono_class_setup_fields): If working on an inflated class
8692         first check if the generic definition did init with success.
8694         Fixes #445361.
8696 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8698         pedump.c (main): Fix a warning.
8700 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8702         * object-internals.h : Adding a definition for 
8703           MonoReflectionComVisibleAttribute.
8705         * marshal.c (cominterop_com_visible) :  Method added to check the 
8706           ComVisible attribute of a class.
8708         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8709           cominterop_raise_hr_exception added to consolidate common code 
8710           to raise hr exceptions.
8712         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8713           if a managed class should support IDispatch.
8715         * marshal.c 
8716           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8717           Added additional checks for managed object when getting 
8718           an IDispatch interface.
8720         Code is contributed under MIT/X11 license.
8722 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8724         pedump.c (main): Handle mono_get_method () returning NULL. 
8726 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8728         * marshal.h: Fix a warning.
8730 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8732         * marshal.c : Adding cominterop_release_all_rcws to release all
8733           runtime callable wrappers held by the runtime.
8735         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8736           
8737         Code is contributed under MIT/X11 license.
8739 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8741         * metadata.c (mono_image_alloc_lock): New helper function.
8742         (mono_image_alloc0_lock): Ditto.
8744         * metadata.c: Use the alloc_lock () helper functions for allocating
8745         memory from the image mempool.
8747 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8749         * class.c (mono_class_from_generic_parameter): Document it's
8750         locking behavior. Fix double checked locking here, we stored in
8751         param->pklass a partially initialized MonoClass and no membar was used.
8753 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8755         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8756         (3) functions are present in the C library use them to do the
8757         job. If they are absent, make sure that the sum of int_part and
8758         dec_part is rounded before returning. This is necessary due to the
8759         division of dec_part by the power of 10 before the final addition
8760         is performed - if the result is not rounded in some cases it will
8761         yield invalid results.
8763 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8765         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8766         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8767         instruction instead of a pointer constant.
8769 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8771         * loader.c (mono_method_get_header): Do most of the work outside the
8772         loader lock, to avoid assembly load hook deadlocks.
8774         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8775         (mono_metadata_parse_type_full): Ditto.
8777 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8779         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8780         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8781         funtions. Finally, use a lock to produce well ordered output.
8783         The lock looks silly, as all calls to the corlib mempool should be guarded
8784         with the loader lock, but for some reason this fact doesn't help. 
8786         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8788 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8790         * socket-io.c: 64 bit big-endian fixes.
8792 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8794         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8795         targets that require strict compatibility between the types.
8797         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8798         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8799         Kill the strict argument and create a new one valuetype_must_be_boxed.
8801         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8802         state that all valuetypes must be boxed.
8804         Fixes #448560.
8806 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8808         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8809         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8811         Contributed under MIT/X11 license.
8813 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8815         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8816         the inflate_generic_type machinery should handle it.
8818         This avoids a crash when the field's flags is zero and it's type is
8819         a primitive.
8820         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8821         is zero and will return one of the cached built-in primitive types. Since
8822         those types live in read-only memory, the code that copies it crashes.  
8824 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8826         * object.c: Don't put function descriptors into generalized IMT
8827         thunks.
8829 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8831         * class.c: Enable generic code sharing on PPC64.
8833 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8835         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8836         from mini/mini.c.
8838         * generic-sharing.c: Allocate the method template slists from the
8839         image mempool so it doesn't leak.
8841 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8843         * class.c (generic_array_methods): Release the linked list.
8845 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8847         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8848         invocation to g_utf16_to_utf8().
8850 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8852         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8853         arguments on big endian archs.
8855 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8857         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8858         the type name (test added in corlib).
8860 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8862         * pedump.c: initialize perf. counters. Fixes a segv.
8864 2008-11-25  Martin Baulig  <martin@ximian.com>
8866         * mono-debug-debugger.c
8867         (mono_debugger_runtime_invoke): Return the exception object if an
8868         exception was thrown.  Visual Studio displays the exception object
8869         in the locals window.
8871 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8873         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8874         ftnptr.
8876 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8878         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8879         MONO_TYPE_U are sizeof (gpointer), too.
8881 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8883         * marshal.c (mono_type_native_stack_size): Fixed size and
8884         alignment for reference types.
8886 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8888         * class.c (mono_class_generic_sharing_enabled): Disable generic
8889         code sharing for PPC64.
8891 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8893         * icall.c (mono_method_get_equivalent_method): Make sure
8894         method->klass->methods is inited before looping over it.
8896 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8898         * object.c: when calling ExecuteAssembly in a newly created domain,
8899         the configuration file and application base are already set up.
8900         Bug #446353 take 2 fixed.
8902 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8904         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8905         Fixes #444715. Fix a warning.
8907 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8909         * appdomain.c: write the full path of the assembly to the .ini file
8910         created when "shadow-copying"
8911         Bug #446353 fixed.
8913 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8915         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8916         if signature==FALSE.
8918 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8920         * marshal.h : Fix the cygwin build.
8921            marshal.c:12442: undefined reference to `_IID_IMarshal'
8922           
8923         Code is contributed under MIT/X11 license.
8925 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8927         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8928           free threaded marshaler when QueryInterface is called on a COM callable
8929           wrapper requesting the IMarshal interface.
8930           
8931         Code is contributed under MIT/X11 license.
8933 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8935         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8937         * reflection.c (mono_type_get_object): Special case the very common
8938         void type.
8940         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8941         hold typeof(void).
8943 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8945         * process.h : Adding method declaration for
8946           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8947           
8948         * process.c : Adding implementation for
8949           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8950           
8951         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8952           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8954         Code is contributed under MIT/X11 license.
8956 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8958         * appdomain.c (unload_thread_main): Clean up threadpool by
8959         calling mono_thread_pool_remove_domain_jobs.
8961         * domain-internals.h (struct _MonoDomain): Add new fields to
8962         help coordinate the cleanup of the threadpool.
8964         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8965         that cleans up the threadpool of all jobs associated with an appdomain.
8966         It does that by cleaning up the queues and making sure all active
8967         threads are accounted.
8969         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8970         unloaded or in the process of. Take this is such way that there is
8971         no race condition between another thread starting the unload and the
8972         current thread acknowledging it.
8974         * threadpool.c (async_invoke_thread): Same.
8976         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8977         firing the new thread.
8979         * threadpool.c (start_tpthread): Same.
8981         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8983         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8985 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8987         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8988         Add support for DuplicateHandle.
8989         
8990         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8991         Add support for DuplicateHandle.
8992         
8993         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8994         Add support for DuplicateHandle.
8996         Code is contributed under MIT/X11 license.
8998 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9000         * class-internals.h: Make min_align into a whole byte.
9002         * class.c: Set min_align for SIMD types to 16.
9004 2008-11-05  Geoff Norton  <gnorton@novell.com>
9006         * attach.c: Default the attacher to enabled for all cases including
9007         embedded.
9009 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9011         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9012         change r117650.
9014 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9016         * monitor.c, monitor.h: New function for querying offsets of
9017         members of MonoThreadsSync.
9019 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9021         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9022         to speed up this function and to avoid the boundless memory growth caused by
9023         the signature_dup () calls.
9025 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9027         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9028         wrapper.
9030         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9031         by 1 bit.
9033         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9035 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9037         * appdomain.c:
9038         * domain-internals.h: made mono_set_private_bin_path_from_config()
9039         "internal".
9040         * object.c: call the above function after setting the configuration
9041         file path for the root domain.
9042         Fixes bug #314478.
9044 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9046         * assembly.c: when the assembly is loaded from an absolute path, end
9047         basedir with a directory separator.
9048         Bug #440781 fixed.
9050 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9052         * monitor.c (mono_monitor_get_fast_enter_method): If
9053         CompareExchange is not available, don't create the fastpath
9054         instead of asserting.  (The method is missing in the 1.1 profile.)
9056 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9058         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9060         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9061         Monitor.Exit IL fastpaths.
9063 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9065         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9067 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9069         * class.c (mono_class_create_from_typedef): Added Vector2l.
9071 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9073         * class.c (mono_class_create_from_typedef): Added Vector2d.
9075 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9077         * appdomain.c: translate \ into / for cache_path.
9078         * domain-internals.h: new mono_is_shadow_copy_enabled().
9079         * icall.c: (fill_reflection_assembly_name) do the same path
9080         manipulations that get_code_base does.
9081         (get_code_base) use mono_is_shadow_copy_enabled.
9083 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9085         * appdomain.c: shadow-copied assemblies go to CachePath +
9086         ApplicationName when both are set. DynamicBase has nothing to do with
9087         shadow copies.
9088         Bug #406877 fixed.
9090 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9092         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9093         STANDALONESIG table.
9095         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9096         standalone signatures.
9098         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9099         comparison code: instead of comparing the signatures using a custom
9100         equals function, transform them to a common signature and compare that. This
9101         works better with AOT.
9103 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9105         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9107         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9108         call for generic instances.
9109         (mono_class_setup_properties): Call setup_properties () before accessing
9110         gklass->properties.
9112         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9113         over the virtual methods of a class using metadata if possible, avoiding the
9114         creation of MonoMethod's for non-virtual methods.
9115         
9116         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9117         get_virtual_methods () to iterate over the virtual methods of classes.
9119 2008-10-25  Martin Baulig  <martin@ximian.com>
9121         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9123 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9125         * class.c (mono_class_create_from_typedef): Added Vector4i.
9127 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9129         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9130         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9131         special-casing applies to eliminate the call completely.
9133 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9135         * class.c (mono_class_create_from_typedef): Added Vector8s.
9137 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9139         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9141 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9143         * icall.c: get rid of annoying warning.
9145 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9147         * threadpool.c: in 1.x, if you change the background status of the
9148         threadpool thread, it's not reset.
9149         Remove unnecessary calls to SetState.
9151 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9153         * threadpool.c: asynchronously create a set of idle threads upon first
9154         use of the threadpool. SetMinThreads will now start the appropriate
9155         number of idle threads if they are not already running. The default is
9156         1 threadpool thread per CPU. Increased the maximum number of threads
9157         per CPU to 10.
9159 2008-10-22  Martin Baulig  <martin@ximian.com>
9161         Revert r116521 from Zoltan, it breaks the debugger:
9163         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9164         over the virtual methods of a class using metadata if possible, avoiding the
9165         creation of MonoMethod's for non-virtual methods.
9166         
9167         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9168         get_virtual_methods () to iterate over the virtual methods of classes.
9170 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9172         * threads.c: when creating a threadpool thread, set its state to
9173         'background'.
9174         * threadpool.c: reset the background state of a threadpool thread
9175         after finishing each work item
9176         Bug #437888 fixed.
9178 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9180         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9181         
9182         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9183         generic instances which works by inflating the methods in the container
9184         class's vtable.
9186         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9187         variant which doesn't make a copy if no inflation was done.
9188         (mono_class_setup_fields): Use it.
9190         * metadata.c (mono_metadata_get_shared_type): New helper function to
9191         return a shared instance of a given MonoType.
9193         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9194         a copy of most non-generic types.
9196 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9198         * threadpool.c: remove one more GetSystemInfo () call.
9200 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9202         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9203         use the code in mono-proclib.h to get processor information.
9205 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9207         * appdomain.c: fixed the logic that determines whether assemblies in a
9208         directory are "shadow-copied" or not. Bug #433483 fixed.
9210 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9212         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9213         warning.
9215 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9217         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9218         returning a vtype.
9220         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9221         reflection.c: Use mono_field_get_name () for accessing a field's name.
9223         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9224         class.c
9226         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9227         field.
9229         * loader.c (find_method_in_class): Reenable the metadata optimization by
9230         not using it for generic instances.
9232         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9233         data/def_type fields from MonoClassField into a separate structure.
9234         (struct MonoClassField): Remove data/def_type fields.
9235         (struct _MonoClass): Add a 'field_def_values' array to store the default
9236         values/RVA for fields.
9238         * class.c reflection.c: Update after the changes.
9239         
9240         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9241         for accessing field->data.
9243         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9245         * loader.c (find_method_in_class): Revert the last change for now as
9246         it breaks Mono.C5 unit tests.
9248         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9249         'field_generic_types' and 'field_objects' which contain the information
9250         previously stored in MonoInflatedField.
9251         (MonoInflatedField): Delete.
9252         (struct _MonoClassField): Delete 'generic_info' field.
9254         * reflection.c: Store the information which was previously in 
9255         field->generic_info in MonoDynamicGenericClass instead.
9257         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9258         MonoClassField changes.
9260 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9262         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9263         store the value inside the data array of the MonoMethodWrapper.
9264         This saves memory, is faster and fixes the lifetime issues (methods
9265         were never removed from the hash previously). May also fix bug#436996.
9267 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9269         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9270         generic instances, compute the type from the generic definition instead of
9271         looking in field->generic_info.
9273         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9274         for inflated fields, the only user was get_fieldref_token () which no
9275         longer needs it.
9277         * class.c (mono_class_init): Revert the last change as it seems to cause
9278         crashes.
9280         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9281         bytes on 64 bit platforms.
9283         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9284         
9285         * object.c (mono_class_create_runtime_vtable): Don't initalize
9286         field->data/field->def_type here, it is done lazily by 
9287         mono_class_get_field_default_value ().
9289         * icall.c (ves_icall_get_enum_info): Call 
9290         mono_class_get_field_default_value () instead of directly accessing
9291         field->data and field->def_type.
9293         * object.c (get_default_field_value): Ditto.
9295         * class.c (mono_field_get_data): Ditto.
9296         
9297         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9298         call for generic instances.
9300         * loader.c (find_method_in_class): If klass != from_class, then inflate
9301         the method with the context of from_class, since the caller assumes this.
9303 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9305         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9306         for accessing method->slot.
9308 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9310         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9312 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9314         * class.c (mono_method_get_vtable_index): Use
9315         mono_method_get_vtable_slot () for accessing method->slot.
9317         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9318         accessing klass->methods.
9320         * class.c (mono_method_get_vtable_slot): New helper function.
9321         (mono_class_get_vtable_entry): Ditto.
9322         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9323         accessing method->slot.
9325         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9326         method to get_inflated_method ().
9328         * class.c (mono_class_get_inflated_method): New helper method to obtain
9329         a method of an inflated class without calling setup_methods ().
9330         (mono_class_get_cctor): Use get_inflated_method.
9332         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9333         
9334         * marshal.c image.c: Lazily create all the marshal caches.
9336         * image.c (mono_image_init): Move initialization of runtime_invoke
9337         caches to marshal.c.
9339         * marshal.c (get_cache): New helper function to lazily initialize a 
9340         wrapper cache.
9341         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9343         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9345 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9347         * loader.c: fixed check for interface type.
9349 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9351         * appdomain.c: check for NULL setup before it's referenced.
9354 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9356         * class.c: remove the unused old vtable setup code.
9358 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9360         * class.c: don't depend on interface order in
9361         setup_interface_offsets (bug #435777).
9362         * reflection.c: sort the InterfaceImpl table (patch from
9363         Jb Evain  <jbevain@novell.com>).
9365 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9367         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9368         the low level assemblies lock.
9370 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9372         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9373         object.c, reflection.c, socket-io.c, threads.c: introduced
9374         mono_framework_version () to return the major framewrok version,
9375         changed the code that was using more complex patterns to use it.
9376         Return the correct value for PlatformID for OSX.
9378 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9380         * icall-def.h, process.h, process.c: added an icall to get info about
9381         processes using mono-proclib.
9383 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9385         * mono-perfcounters.c: use the mono-proclib functions to
9386         access process information.
9388 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9390         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9391         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9392         reflection.c: remove rawbuffer usage: mmap support is more sanely
9393         provided by utils/mono-mmap.
9395 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9397         * gc.c: use posix semaphores when possible so that
9398         mono_gc_finalize_notify() is signal safe.
9400 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9402         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9403         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9404         be #ifdef-ed out, the linker will remove the rest.
9406         * marshal.c: Implement DISABLE_COM.
9408         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9410 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9412         * locales.c (string_invariant_compare_char): Optimization: do not
9413         call g_unichar_type unless we actually need the information.
9415 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9417         * object.c, class-internals.h: Also create remoting trampolines
9418         for generic methods.  Pass the domain to the remoting trampoline
9419         creation function, too.
9421 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9423         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9425 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9427         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9428         Vector4ui.
9430 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9432         * assembly.c:
9433         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9435 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9437         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9438         for the least possible amount of time (extending the fix in r113458).
9440 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9442         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9444 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9446         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9447         as possible simd intrinsic types.
9448         Optimized the test to check for the common prefix first.
9450 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9452         * class.c: back out part of a broken optimization committed on
9453         May 23th (bug #433908).
9455 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9457         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9458         Win32.  Should fix #432388 for most cases until we have the new
9459         profiler on Win32.
9461 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9463         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9464         instead of using inst->id so the hash is stable for AOT.
9466 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9468         * appdomain.c:
9469         * icall.c: create a .ini file for shadow-copied assemblies that
9470         contains the location of the original assembly. Use this to return the
9471         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9472         Also fix the number of '/' for windows when returning the CodeBase.
9473         Fixes bug #430920.
9475 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9477         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9479         Code is contributed under MIT/X11 license.
9481 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9483         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9484           if if the class vtable needs initialized.
9486         Code is contributed under MIT/X11 license.
9488 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9490         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9491           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9492           STRING->BSTR, and CLASS->INTERFACE.
9494         Code is contributed under MIT/X11 license.
9496 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9498         * sysmath.h: changed the declaration of the
9499         ves_icall_System_Math_Round2 icall by adding an extra
9500         away_from_zero parameter.
9502         * sysmath.c (ves_icall_System_Math_Round2): added support for
9503         away from zero rounding. The icall now takes an extra boolean
9504         parameter to signal that away from zero operation is requested.
9506 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9508         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9509         the delegate klass so it can work with full-aot.
9510         (mono_marshal_get_delegate_end_invoke): Ditto.
9511         (mono_marshal_get_delegate_invoke): Ditto.
9513 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9515         * gc.c, attach.h, attach.c: remove a bad pattern:
9516         add_finalizer_callback () is not implemented correctly, it can't
9517         without adding more overhead to the finalizer loop and it's not
9518         even needed, since we know exactly what we need to call, so there is
9519         no need to do so through an expensive function pointer.
9521 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9523         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9524         for the no-gc case.
9525         * attach.c (mono_attach_init): Remove the #ifdef.
9527 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9529         * attach.c (mono_attach_init): Don't use
9530         mono_gc_add_finalizer_thread_callback when compiling without GC.
9531         Fixes #432306.
9532         
9533         Code is contributed under MIT/X11 license.
9535 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9537         * class.c (mono_class_create_from_typedef): Remove the 
9538         #ifndef DISABLE_SIMD stuff.
9540 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9542         * class-internals.h (MonoClass): Added simd_type bit field.
9544         * class.c (mono_class_create_from_typedef): Check if type is a simd
9545         intrinsic.
9547 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9549         * object.c (mono_method_add_generic_virtual_invocation): Only add
9550         instantiations to the thunk whose count is at least as large as
9551         the threshold.
9553 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9555         * icall.c: changed the Type of the exception thrown when trying to
9556         invoke a constructor on an abstract class. Part of the fix for bug
9557         #324185.
9559 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9561         * class.c, class-internals.h (mono_method_get_vtable_index): New
9562         function which returns the index into the vtable and properly
9563         handles inflated virtual generic methods.
9565 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9567         * object.c, domain.c, object-internals.h, domain-internals.h:
9568         Generalize IMT thunk machinery to also handle thunks for virtual
9569         generic method invokes.  When a virtual generic method is invoked
9570         more than a number of times we insert it into the thunk so that it
9571         can be called without lookup in unmanaged code.
9573         * generic-sharing.c, class-internals.h: Fetching a
9574         MonoGenericInst* for a method from an (M)RGCTX.
9576 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9578         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9579         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9580         marshalling. Fixes #431304.
9582 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9584         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9585           handle when ref is specified without In or Out.
9587         Code is contributed under MIT/X11 license.
9589 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9591         * loader.c (mono_get_method_constrained): Don't expand method with
9592         the class's context, because it's already a method of that class.
9594 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9596         * attach.c : should be correct build fix.
9598 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9600         * attach.c: Fix the previous change.
9602 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9604         * attach.c : quick w32 build fix.
9606 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9608         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9609         crashes MonoDevelop: #430455.
9611 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9613         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9614         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9616         * domain.c: Remove initialization/cleanup of the removed fields.
9618 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9620         * class.c (mono_class_generic_sharing_enabled): Enable generic
9621         code sharing for PPC.
9623 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9625         * attach.c : Fixing the Windows builds.
9627         Code is contributed under MIT/X11 license.
9629 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9631         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9632         the default generic sharing mode to 'all'.
9634 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9636         * generic-sharing.c, class-internals.h: New function for checking
9637         whether a method needs a static RGCTX invoke wrapper.  A few
9638         funtions moved from mini/generic-sharing.c.
9640         * icall.c: New function used.
9642 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9644         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9645         Static RGCTX invoke wrapping applies to value type methods, too.
9647         * class.c (mono_class_setup_vtable_general): In generic-shared
9648         value types, wrap methods with a static RGCTX invoke wrapper.
9650 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9652         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9653         osx build.
9655 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9657         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9658         register a callback which is called when the finalizer thread is woken
9659         up.
9660         (finalizer_thread): Call the callback if it exists.
9662         * attach.h attach.c: New files, implementing the attach mechanism.
9664         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9665         
9666         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9667         by the previous change.
9669 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9671         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9672         loader.c, marshal.c, metadata-internals.h, metadata.c,
9673         method-builder.c, object.c, reflection.c: introduced specific functions
9674         to allocate from the domain and image mempools and cleaned up most of
9675         the code to use them (still missing a few in reflection.c).
9676         Keep the loader bytes counter updated.
9678 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9680         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9681         loader-related counters.
9683 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9685         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9686         added more MS-compatible counters.
9688 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9690         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9691         class->blittable. Fixes #428217.
9693 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9695         * reflection.c (mono_image_get_field_on_inst_token): Call 
9696         field_encode_signature () since that handles custom modifiers too.
9697         Fixes #424663.
9699 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9701         * reflection.c (add_custom_modifiers): New helper function to merge custom
9702         modifiers stored in objects to a MonoType.
9703         (fieldref_encode_signature): Encode custom modifiers.
9704         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9705         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9707 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9709         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9710         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9711         64-bit IL only images because imports are not resolved for IL only images.
9712         Special thanks to Bill Holmes for finding this bug and testing the patch.
9713         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9715         Contributed under MIT/X11 license.
9717 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9719         * mono-config.c (dllmap_start): Add support for the bits keyword
9720         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9722 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9724         * reflection.c (inflate_mono_method): When the class the method is
9725         to be inflated for is itself not inflated, just return the method.
9727 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9729         * mono-perfcounters.c: use more user friendly process instance names.
9731 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9733         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9734           handle "[in] ref" and "[in][out] ref" cases.
9736         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9737           to mono_mb_create_method.  This was causing problems calling native to
9738           managed passing Variants by value.
9740         Code is contributed under MIT/X11 license.
9742 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9744         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9745         before accessing the friend_assembly_names field.
9747         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9748         times.
9749         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9750         called lazily when it is needed.
9752         * metadata-internals.h (struct _MonoAssembly): Add 
9753         'friend_assembly_names_inited' flag.
9755 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9757         * mono-perfcounters-def.h: fix the types of a few counters.
9758         * mono-perfcounters.c: implemented the instance names getter
9759         and a few bugfixes.
9761 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9763         * culture-info-table.h : regenerated.
9765 2008-09-17  Robert Jordan  <robertj@gmx.net>
9767         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9768         context bound objects. Fixes #415577.
9770         Code is contributed under MIT/X11 license.
9772 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9774         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9775         implementation (bug #423582).
9777 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9779         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9780         is not set. Fixes #426309.
9782 2008-09-16  Jb Evain  <jbevain@novell.com>
9784         * class.c (mono_class_from_name): fix the exported type look up
9785         when the type is defined in a referenced assembly.
9787 2008-09-16  Jb Evain  <jbevain@novell.com>
9789         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9790         increment the next index counter on each iteration to make that work
9791         for more than one type forwarder. Unmanaged part to fix #422929.
9793 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9795         * object-internals.h: enum ComInterfaceType in
9796         MonoInterfaceTypeAttribute is guint32, not guint16.
9798 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9800         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9801         writing code.
9803 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9805         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9806         not gboolean.
9808 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9810         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9811         Endianness fixes for MonoSymbolFileOffsetTable.
9813 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9815         * process.c (complete_path) : Removing quotes from the 
9816           input path.  The glib file routines do not handle file paths
9817           that have quotes around them.
9819         Code is contributed under MIT/X11 license.
9821 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9823         * socket-io.h : Adding a comment to provide locations where 
9824           changes to MonoSocketAsyncResult need to be synced.
9826         Code is contributed under MIT/X11 license.
9828 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9830         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9831         parameters as well. Fixes #425001.
9833 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9835         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9836         windows build.
9838 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9840         * console-io.c: Add support for tracking the window size if it
9841         changes.
9843         The setup is very simple: the TtySetup function will now return a
9844         pointer to a location in memory that tracks the current console
9845         size.  The managed code checks its current value every time its
9846         queried against the last value set, and updates accordingly.
9848         With this setup we can work with multiple consoles, and we do not
9849         require to poke into managed code from a signal handler.
9851         Additionally, the environment for COLUMNS and LINES is now handled
9852         in unmanaged code.
9854         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9856 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9858         * marshal.c (mono_type_native_stack_size): Treat
9859         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9861 2008-09-04  Jb Evain  <jbevain@novell.com>
9863         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9864         to nullables.
9866 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9868         * verify.c (verify_type_compatibility_full): Revert change
9869         to allow converting a native int to unmanaged pointer be verifiable
9870         under non-strict mode.
9871         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9873         * verify.c: Added some TODOs.
9875 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9877         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9878           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9879           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9881         Code is contributed under MIT/X11 license.
9883 2008-09-02  Jb Evain  <jbevain@novell.com>
9885         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9887 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9889         reflection.c (typebuilder_setup_fields): Handle classes with
9890         explicit size.
9892 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9894         class.c (mono_class_setup_events): Add memory barrier due to
9895         double checked locking.
9896         
9897         class.c (mono_class_setup_properties): Same.
9899 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9901         * class.c (mono_class_is_assignable_from): Fix the build.
9902         
9903         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9904         before accessing klass->interface_bitmap. Fixes #421744.
9906 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9908         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9909         the runtime into no-exec mode, useful when running the AOT compiler.
9911         * appdomain.c gc.c object.c: Avoid executing managed code when running
9912         in no-exec mode.
9913         
9914         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9916         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9917         special case when the mono_assembly_loaded () returns NULL because the 
9918         search hook is not installed.
9920 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9922         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9923         crashes in bstr marshalling on linux.
9925 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9927         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9928         with more than one parameter.
9930 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9932         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9933         start/stop flow control as well when turning off ICANON (allows
9934         C-s and C-q to be read by Console.ReadKey).
9936 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9938         * class.c (mono_class_init): Move the initialization of nested classes
9939         into mono_class_get_nested_types (). Fixes #418433.
9941         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9942         flag.
9944         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9945         iterating tough the nested classes of a class.
9947 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9949         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9950         on arm.
9952 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9954         * console-io.c (sigcont_handler): Support signal chaining for
9955         SIGCONT.
9957         (console_set_signal_handlers): Use best practices with sigaction,
9958         clear the structure before using it. 
9960 2008-08-22  Robert Jordan  <robertj@gmx.net>
9962         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9963         Fix the Windows build.
9965 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9967         * class.c (mono_class_generic_sharing_enabled): Make the default
9968         sharing mode 'corlib'.
9970 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9972         * console-io.c (console_set_signal_handlers): Fix a warning.
9974         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9975         method normally, the JIT will take care of avoiding recursion.
9977 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9979         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9981         Code is contributed under MIT/X11 license.
9983 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9985         * console-io.c (sigcont_handler): We need to restore the entire
9986         termios state, not only the original settings, as things like echo
9987         can be controlled after this (Booish exposes this issue with its
9988         own ReadLine implementation).
9990         Additionally, we need to set the terminal back into keypad_xmit
9991         mode.
9992         
9993         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9994         string as a paramter as well.   Otherwise we get different
9995         keyboard sequences.
9997 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9999         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10000         delegates with byref out parameter passing. Fixes #351520.
10002         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10003         a generic context.
10004         (mono_type_get_desc): Add the type arguments for GENERICINST.
10005         (mono_method_full_name): Stringify the class name using mono_type_full_name
10006         so it picks up generic arguments.
10008 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10010         * console-io.c: Removed debug output.
10012 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10014         reflection.c (mono_reflection_create_runtime_class): Alloc
10015         the nested classes linked list using the dynamic image mempool.
10016         Fixes leak in corlib compilation.
10018 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10020         * console-io.c: Fix incredibly annoying behavior on the console
10021         after resuming execution after control-z.   This affected every
10022         console application.
10024 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10026         * mempool-internals.h: Header for mono private mempool functions. The first
10027         two function are for allocating glib linked lists using pools.
10029         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10031         * Makefile.am: Added mempool-internals.h.
10033 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10035         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10036         (mono_domain_free): Ditto.
10038         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10039         be used by the JIT to store its domain-specific information, instead of putting
10040         it directly into MonoDomain.
10042         * domain.c (mono_install_create_domain_hook): New helper function to install
10043         a hook which initializes domain->runtime_info.
10045         * domain.c (mono_install_free_domain_hook): Ditto.
10046         
10047 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10049         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10050         asserting if the ares parameter is null.
10052         * mono-perfcounters.c: Fix warnings.
10054         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10055         is not needed, don't check for interruptions either.
10056         (mono_marshal_get_delegate_end_invoke): Ditto.
10058 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10060         * mono-perfcounters.c (predef_readonly_counter): added support for
10061         reading the ASP.NET Requests Queued counter from another process.
10063 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10065         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10066         MonoImage to simplify the AOT code.
10068 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10070         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10071         marshalling. Fixes #416078.
10073 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10074         
10075         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10076         it is set, looking up the icall address is deferred to the JIT, since 
10077         in embedded scenarios, the icall might not be registered in the runtime
10078         doing the AOT compilation. Backported from the 2.0 branch.
10080 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10082         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10083         Fixes #415621.
10085 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10087         * Makefile.am: added support for cross-compilation.
10089 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10091         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10093 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10095         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10097 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10099         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10100         mono-perfcounters.c: performance counters implementation.
10102 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10104         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10105         to gpointer, letting the AOT code decide what to store in it.
10107 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10109         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10110           mono_class_setup_methods if the methods are not initialized.
10112         Code is contributed under MIT/X11 license.
10114 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10116         * verify.c: Remove some debug code I commited by accident.
10118         * verify.c (mono_method_is_valid_in_context): Change the return value
10119         to make possible to distinguish between invalid and unverifiable.
10121         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10122         methods.
10124 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10126         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10127         constraints. Fixes regression in gtest-253.
10129 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10131         * verify.c (mono_verifier_verify_class): Don't allow generic types
10132         with explicit layout.
10134         * verify.c (mono_method_verify): Check locals and argument types.
10136 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10138         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10139         wait if the thread is in StopRequested state.
10141         * class.c (mono_class_from_name): Refactor the module searching code into
10142         a separate function so it can be reused in the AOT case too.
10144 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10146         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10147         Check both the type and it's generic type definition for loader errors.
10148         
10149         * verify.c (mono_method_is_valid_in_context): Don't generate another
10150         error when a type errors occur, this leads to the wrong exception been
10151         thrown.
10153 2008-07-28  Dick Porter  <dick@ximian.com>
10155         * icall-def.h
10156         * process.c
10157         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10158         New internal calls to duplicate and close a process handle.
10160 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10162         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10164 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10166         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10168 2008-07-27  Robert Jordan  <robertj@gmx.net>
10170         * class.c (mono_class_init): Don't compute class.has_finalize for
10171         valuetypes. Fixes #412477.
10173 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10175         * verify.c: Implement constraint equivalence checking.
10176         This is required when a generic parameter is used as
10177         argument to a constrained one.
10179         Fixes #410637.
10181 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10183         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10185         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10187         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10188         synch with managed object layout.
10190 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10192         * verify.c (do_branch_op): Handle valuetypes and generic
10193         arguments properly.
10195         * verify.c (do_cmp_op): Same.
10197         Fixes #410383.
10199 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10201         * generic-sharing.c: Fix memory leaks.
10203         * class.c, class-internals.h: Make
10204         mono_class_inflate_generic_type_with_mempool() non-static.
10206 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10208         * pedump.c (dump_verify_info): Dump full class name.
10210 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10212         * generic-sharing.c: Removed some old code that didn't do anything.
10214 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10215         * profiler.c: Added runtime_initialized_event,
10216         mono_profiler_install_runtime_initialized and
10217         mono_profiler_runtime_initialized. This new hook tells the profiler
10218         when the runtime is sufficiently initialized to be able to call
10219         mono_thread_attach on the root appdomain.
10220         * profiler.h, profiler-private.h: Likewise.
10222 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10224         * verify.c (do_cast): Do boxing for generic arguments as well.
10226         * class.c (is_nesting_type): Drop generic instantiations before
10227         checking for nesting.
10229         * class.c (can_access_instantiation): Allow access to generic
10230         arguments.
10232 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10234         * verify.c (verify_class_for_overlapping_reference_fields):
10235         On some cases, the field size might be zero, guard against that.
10236         Fix the explicit layout check to work as expected.
10238 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10240         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10241         mono_thread_resume () during shutdown, since the thread we want to abort
10242         might be suspended.
10244 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10246         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10247         warning.
10249         * debug-mono-symfile.c: Fix a warning.
10251         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10253         * object.c (mono_class_vtable): Check if exception_type is set, and return
10254         NULL as defined by the function comments.
10256 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10258         * mempool.c: Use malloc for every single mempool allocation if the
10259         configure option is set.  This makes it easier to track mempool
10260         allocations with tools like Valgrind.
10262 2008-07-22  Jb Evain  <jbevain@novell.com>
10264         * reflection.c (create_dynamic_mono_image): emit the same
10265         metadata version that SL2 does when creating a SL2 image.
10267 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10269         * icall-def.h:
10270         * icall.c: New icall System.Enum:get_hashcode. This function
10271         avoids the overhead of boxing the enum to the underlying type.
10273 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10275         * reflection.c (mono_method_get_object): Don't let static RGCTX
10276         invoke wrappers get into MonoReflectionMethods.
10278 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10280         * object-internals.h:
10281         * object.c: New mono_runtime_class_init_full function
10282         that makes throwing the exception optinal.
10284         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10285         for the case where the exception object is supplied.
10287 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10289         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10290         old ld versions.
10292         Contributed under MIT/X11 license.
10294 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10296         * string-icalls.c (ves_icall_System_String_InternalSplit):
10297         Optimize array allocation by caching the MonoClass of the
10298         array type.
10300         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10302         * reflection.c (mono_param_get_objects): Same.
10304 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10306         * icall-def.h:
10307         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10308         It inflates the given type using the class context.
10310 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10312         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10313         the vtable if it already exists.
10315         * object-internals.h: Add mono_class_try_get_vtable as part of the
10316         internal API.
10318         * reflection.c (mono_type_get_object): Use the MonoObject from the
10319         vtable when possible. Reduces locking contention on reflection heavy
10320         code.
10322 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10324         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10325         g_bit_nth_msf () since that macro is not implemented in eglib.
10327 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10329         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10330         on platforms which do not support it.
10332 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10334         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10336 2008-07-11  Martin Baulig  <martin@ximian.com>
10338         * mono-debug-debugger.h
10339         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10341         * mono-debug-debugger.c
10342         (_mono_debugger_interruption_request): New global volatile variable.
10343         (mono_debugger_check_interruption): New public function.
10345         * threads.c
10346         (mono_thread_current_check_pending_interrupt): Call
10347         mono_debugger_check_interruption().
10348         (mono_thread_interruption_checkpoint_request): Likewise.
10350 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10352         * verify.c: Add more type checks for loaded types. Verify the result
10353         handle from ldtoken.
10355 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10357         * loader.c (field_from_memberref): Don't crash if the field
10358         wasn't found.
10360 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10362         * verify.c: Verify if type and method instantiations
10363         don't have invalid VAR or MVAR arguments.
10365 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10367         * verify.c: Fix double free of function pointer list.
10369 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10371         * object.c (mono_string_to_utf8): Comment the new code as it
10372         breaks under eglib.
10374 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10376         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10378 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10380         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10381           is not throw too many times.
10383         Code is contributed under MIT/X11 license.
10385 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10387         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10388         debugging is turned off.
10390 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10392         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10394 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10396         * class-internals.h, class.c: Added new generic sharing option:
10397         Share only stuff in System.Collections.Generic, which is now the
10398         default.
10400 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10402         * generic-sharing.c, class-internals.h: New function for getting a
10403         generic method in a generic class given the corresponding method
10404         for a different instantiation of the class.  Partly refactored
10405         from mini-trampolines.c.
10407         * class.c: Make sure generic methods have a class_inst if they are
10408         part of a generic class.
10410         * metadata.c (mono_type_stack_size_internal): Handle type
10411         variables.
10413 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10415         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10416         Signifies whether information on the this/vtable/mrgctx variable
10417         is available.
10419 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10421         * object.c, object-internals.h, icall.c: New function
10422         mono_delegate_ctor_with_method(), which does the same as
10423         mono_delegate_ctor(), but takes an explicit method argument
10424         instead of taking the method from the jit info.
10426         * marshal.c: When creating a delegate with an inflated method take
10427         the "this" argument as the target class for the castclass.
10429 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10431         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10432         mono_jit_info_table_find() to perform very badly in some cases.
10434 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10436         * icall.c (type_from_typename): Handle 'string'.
10438         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10439         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10441 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10443         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10445         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10446         number of available managed allocator types.
10448         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10449         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10451 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10453         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10454         which is a low level lock protecting just the 'jit_code_hash' hash table.
10456         * domain.c: Initialize+cleanup jit_code_hash_lock.
10457         
10458 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10460         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10461         after initialization.
10463         * coree.h: Make MonoFixupExe internal.
10465         Contributed under MIT/X11 license.
10467 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10469         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10470         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10471         as well.
10472         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10473         image being loaded is a CLI image and _CorValidateImage gets called.
10475         * coree.h: Add MonoLoadImage.
10477         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10478         instead of LoadLibrary.
10480         Contributed under MIT/X11 license.
10482 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10484         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10485         for any primitive type.
10487 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10489         * object.c (mono_array_new_specific): Optimize this and the other allocation
10490         functions a bit.
10491         
10492         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10493         domains too if mono_dont_free_domains is set.
10495         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10496         whenever to free appdomain data after it has been unloaded.
10498         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10499         
10500 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10502         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10503         (mono_method_get_equivalent_method): Fix a warning.
10505         * object.c (mono_message_init): Avoid looking up array types for each call.
10507 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10509         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10510         call.
10512         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10513         even more.
10515         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10516         each iteration.
10518         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10519         fields of an enum.
10521 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10523         * object.c (mono_value_box): Fix boxing of nullables.
10525 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10527         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10528         mono_module_handle that is defined by the linker; no initialization required.
10529         * coree.h: Remove mono_module_handle, add __ImageBase, update
10530         mono_image_open_from_module_handle.
10531         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10532         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10533         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10534         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10535         to 4 GB away from image base address. IA64 version is not tested but was very
10536         easy to implement and should work if we ever need it.
10537         * domain.c (mono_init_internal): Avoid system error message boxes.
10538         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10539         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10540         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10541         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10542         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10544         Contributed under MIT/X11 license.
10546 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10548         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10549         as part of the private mono API.
10550         
10551         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10552         Do proper argument checking for methods that belong to generic classes.
10553         Do proper type resolution for GMFH/2.
10554         Fixes #377324.
10555         
10556 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10558         * verify.c (do_switch): Fix a memory corruption bug with
10559         the jump index is out of bound.
10561 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10563         * verify.c: Disable debug code.
10565 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10567         * reflection.c (mono_image_get_methodbuilder_token): Use
10568         mono_image_get_methodspec_token_for_generic_method_definition
10569         instead of mono_image_get_memberref_token. We cache more memberef
10570         entries now.
10572 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10574         * verify.c: Inflate exception clause types.
10575         Fixes #402606.
10576         
10577 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10579         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10580         name.
10582         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10584         * reflection.c (mono_image_create_method_token): Same.
10586 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10588         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10589         It does the same as mono_image_get_methodref_token but works on
10590         MethodBuilder.
10592         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10593         and always generate a methodspec. This follows the old behavior and fixes
10594         the regressions in System.Core. 
10596 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10598         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10599         don't event mono_class_get () succeeds. Fixes #402182.
10601 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10603         * metadata-internals.h: Added MonoDynamicImage::methodspec
10604         hashtable to store methodspec tokens created for MethodBuilders.
10606         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10607         MethodBuilders as open instantiations if a methodspec was requested.
10609         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10611         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10613         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10615         Fixes bug #349190.
10617 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10619         * loader.c (method_from_methodspec): Avoid crashing if the
10620         method lookup fails.
10622 2008-06-20  Dick Porter  <dick@ximian.com>
10624         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10625         classes being in a different assembly.  Fixes bug 399184.
10627 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10629         * loader.c (mono_loader_init): Make this callable multiple times.
10630         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10631         the runtime is initialized. Fixes #401755.
10633 2008-06-19  Dick Porter  <dick@ximian.com>
10635         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10636         Fixes bug 349688.
10638 2008-06-19  Dick Porter  <dick@ximian.com>
10640         * socket-io.c:
10641         * icall-def.h: Implement Socket generic Send() and Receive()
10642         methods.  Fixes bug 395168.
10644 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10646         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10648         Contributed under MIT/X11 license.
10650 2008-06-18  Martin Baulig  <martin@ximian.com>
10652         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10653         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10654         set to 80.0.  The debugger <-> runtime interface is now frozen as
10655         well.   
10657         * mono-debug.c
10658         (mono_debug_debugger_version): Bump to 4.
10660 2008-06-18  Martin Baulig  <martin@ximian.com>
10662         * debug-mono-symfile.c
10663         (load_symfile): Don't check the minor version.
10665         * debug-mono-symfile.h: Bump the version number to 50.0.
10667 2008-06-18  Martin Baulig  <martin@ximian.com>
10669         * debug-mono-symfile.c
10670         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10671         minimum required version.
10673 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10675         * reflection.c (mono_custom_attrs_from_property): Fix support for
10676         retriveving cattrs of dynamic inflated generic types.
10678         * reflection.c (mono_custom_attrs_from_event): Same.
10680         * reflection.c (mono_custom_attrs_from_field): Same;
10682         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10684         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10685         Moved to metadata.c.
10687         * metadata.c: New functions to retrive the equivalent field, event
10688         of property from the generic type definition.
10690         * metadata-internals.h: Added new functions from metadata.c.
10692 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10694         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10695         to cached in a mempool is used.
10697         * metadata.c (free_generic_class): In some situations field generic_info type
10698         is not properly dup'ed and leads to double free'ing.
10700         Fixes #400643.
10702 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10704         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10705         this arguments (will be needed later for generic methods).
10706         Collect stats.
10708 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10710         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10711         Create a static RGCTX invoke wrapper for methods which require it.
10713 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10715         * object.c, class-internals.h: New function for checking whether
10716         an individual field is special static.
10718 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10720         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10721         linear search since the table is sorted.
10723         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10724         Fixes #324180.
10726 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10728         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10729         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10731         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10733         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10734         
10735         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10736         InterlockedCompareExchange to query and modify 
10737         thread->interruption_requested.
10739         * object-internals.h (struct _MonoThread): Change interruption_requested
10740         to a gint32 so it can be modified by atomic operations. Add 
10741         'critical_region_level' from the managed side, change small_id to a guint32,
10742         add new set of 'unused' fields.
10744         * appdomain.c: Bump corlib version.
10746 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10748         * class.c (mono_class_from_name): Search modules as well. Fixes
10749         #322332.
10751 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10753         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10754         templates.  Templates are generalized with an additional type_argc
10755         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10756         have type_argc>0.
10758         * domain-internals.h, domain.c: New hash table for looking up
10759         MRGCTXs.
10761         * metadata.c, metadata-internals.h: Rename hash and equal
10762         functions for MonoGenericInst's and make them public.
10764         * class-internals.h: New data structures for the MRGCTX.  Macros
10765         for distinguishing slots in the RGCTX and the MRGCTX.
10767 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10769         * object.c (mono_method_get_imt_slot): Put the same methods of
10770         different instantiations of the same generic interface in the same
10771         IMT slots, to make generic sharing simpler.
10773 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10775         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10777         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10778         This function works just like mono_metadata_field_info, but
10779         accept a mempool as argument to be used allocating memory.
10781         * marshal.c (mono_marshal_load_type_info): Use new function
10782         to load marshal data into image mempool.
10784 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10786         * class.c (mono_class_inflate_generic_type_with_mempool):
10787         This function allows to inflate a generic type using
10788         a mempool.
10790         * class.c (inflate_generic_type): Take a mempool as argument
10791         and use it to do type dup'ing.
10793         * class.c (mono_class_setup_fields): Field type for generic
10794         generic classes are allocated from the image mempool.
10796         * metadata.c (free_generic_class): Inflated field type is
10797         now allocated in the image mempool.
10799 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10801         * threads.c (thread_cleanup): Free MonoThread::name.
10803 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10805         * appdomain.c (ensure_directory_exists): avoid unnecessary
10806         mkdir(2) calls when the shadow directory already exists.
10807         (mono_make_shadow_copy): copy also satellite assemblies from the
10808         private bin directories.
10810 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10812         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10813         
10814         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10815         a page boundary. Fixes #396219.
10817 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10819         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10820         due to double-checked locking.
10822 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10824         * assembly.c (build_assembly_name): Release memory on failure.
10826         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10828 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10830         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10831         memory on failure.
10833 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10835         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10836         memory on failure.
10838 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10840         * loader.c (field_from_memberref): Check if field signature type is equal
10841         to the non-inflated type of the field. Fixes #398980.
10843 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10845         * assembly.c (mono_assembly_load_from_full): Call 
10846         mono_assembly_load_friends () outside the assemblies lock, since it can
10847         acquire the loader lock. Fixes #323696.
10849         * reflection.c (resolve_object): Inflate the inst with the context for
10850         FieldOnTypeBuilderInst. Fixes #399010.
10852 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10854         * reflection.c (mono_image_get_field_on_inst_token): Don't
10855         inflate the field to encode it's signature. If it's a
10856         VAR or MVAR it should stay that way in the signature.
10857         Fixes #399047.
10859 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10861         * reflection.c (resolve_object): Release memory of inflated types.
10863 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10865         * loader.c (mono_method_get_signature_full): Remove assert about
10866         loading a methodspec to a generic method. We have such methods, such as
10867         System.Threading.Interlocked::CompareExchange<T>.
10868         This assert was removed since it crashes the verifier when it checks
10869         methods calling CompareExchange<T>.
10871 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10873         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10874         of Type array and not MonoType.
10876 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10878         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10879         <lupus@ximian.com>
10881 2008-06-10  Martin Baulig  <martin@ximian.com>
10883         * debug-mono-symfile.h
10884         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10885         changes to the file format, but we were generating incorrect
10886         source file indices in the line number table due to a bug, which
10887         made backtraces report an incorrect source file.
10889 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10891         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10892         mini/debug-mini.c to here.
10894         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10896         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10897         use it to release structs returned by mono_debug_find_method.
10899 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10901         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10902         since it needs to set method->slot for all interface methods.
10904 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10906         * class-internals.h: Forgot to add.
10908 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10910         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10912         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10913         Lookup the custom attributes from property_hash.
10915         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10916         in property_hash. Allocate all data using the image mempool.
10918         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10919         for dynamic_custom_attrs to checks if the image is dynamic.
10921 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10923         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10924         assemblies array.
10925         
10926         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10927         runtime functions while holding the domain assemblies lock.
10929 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10931         * verify.c: Reapplied the last bit of the reverted changes.
10933 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10935         * verify.c: Reapplied more of the reverted changes.
10937 2008-06-09  Martin Baulig  <martin@ximian.com>
10939         * debug-mono-symfile.c (load_symfile): Check the major version
10940         first; if it's wrong, don't print the minor version in the error message.
10942 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10944         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10945         lock instead of the domain lock to avoid deadlocks, since the thread might
10946         already hold the loader lock.
10948         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10949         (mono_thread_attach): Ditto.
10951         * monitor.c: Use a TLS variable for holding the current thread id instead
10952         of calling pthread_self ().
10953         (mono_monitor_init_tls): New internal function to initialize the TLS
10954         variable.
10955         (mono_monitor_try_enter_internal): Put the owner == id check after the
10956         owner == 0 check.
10958         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10959         missed optimizations when using gcc-4.3.
10961 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10963         * reflection.c (mono_dynamic_image_free): Free the memory
10964         used by MonoGenericParam in MonoDynamicImage::gen_param.
10966         * reflection.c (mono_reflection_setup_generic_class): Allocate
10967         container from mempool.
10969         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10970         container from mempool.
10972 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10974         * threads.c (mono_set_pending_exception): New internal function to set the
10975         pending exception of the current thread.
10976         (mono_thread_get_and_clear_pending_exception): Check for 
10977         thread->pending_exception as well.
10979         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10981         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10982         it can trigger a collection.
10984 2008-06-06  Martin Baulig  <martin@ximian.com>
10986         Merged the `debugger-kahalo' branch.
10988         * mono-debug.h
10989         (MONO_DEBUGGER_VERSION): Bumped to 72.
10991         * debug-mono-symfile.h
10992         (MonoSymbolFileMethodIndexEntry): Removed.
10993         (MonoSymbolFileMethodEntry): New public typedef.
10994         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10995         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10996         `data_offset'.
10997         (MonoSymbolFileMethodEntry): Removed.
10998         (MonoSymbolFileLexicalBlockEntry): Removed.
10999         (MonoSymbolFileLineNumberEntry): Removed.
11000         (MonoDebugLexicalBlockEntry): Removed.
11001         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11002         removed `num_il_offsets' and `il_offsets'.
11003         (MonoSymbolFile): Replace `version' with `major_version' and
11004         `minor_version'.
11005         (MONO_SYMBOL_FILE_VERSION): Replace with
11006         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11007         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11009         * debug-mono-symfile.c
11010         (mono_debug_symfile_lookup_location): Add support for the new line
11011         number table format.
11013 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11015         * metadata.c (free_generic_class): Release the inflated
11016         MonoClass of dynamic generic classes if it's not a generic
11017         type definition.
11019 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11021         * verify.c: Reapplied more of the reverted changes.
11023 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11025         * reflection.c (lookup_custom_attr): Clean the cached flag or
11026         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11027         for SRE types.
11029 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11031         * verify.c: Reapplied a small part of the reverted changes.
11033 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11035         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11037         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11038         previously in managed code.
11039         (mono_monitor_exit): Ditto.
11040         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11042         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11043         the managed definition.
11045 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11047         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11049 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11051         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11052         
11053         * monitor.c: Add some micro optimizations.
11055         * icall.c (type_from_typename): Handle 'bool'.
11057 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11059         * verify.c: Implement constructor verification per P III 1.8.1.4.
11060         Fixes #396716.
11062 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11064         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11065         holding the assemblies lock here too.
11067 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11069         * verify.c: Kill stack_top function.
11071 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11073         * verify.c: Kill stack_get function.
11075 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11077         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11079 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11081         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11082         more reliable.
11084         * verify.c (mono_method_verify): Inflate params and locals to avoid
11085         mismatch when checking for compatibility.
11087 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11089         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11090         Length prefix should be size in bytes. Fix bug #339530.
11091         
11092         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11093         Length prefix should be size in bytes. Fix bug #339530.
11095         Code is contributed under MIT/X11 license.
11097 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11099         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11101         Contributed under MIT/X11 license.
11103 2008-06-05  Martin Baulig  <martin@ximian.com>
11105         * mono-debug-debugger.c
11106         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11108 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11110         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11111         while holding the assemblies lock to prevent deadlocks. Handle the case
11112         where the search hook returns NULL but the assembly was still loaded.
11113         Fixes #323696.
11115         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11116         modify domain state.
11118 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11120         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11121         * Makefile.am (pedump_LDADD): Post-process object files and
11122         add dtrace-generated object file, if necessary.
11124         Code is contributed under MIT/X11 license.
11126 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11128         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11130 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11132         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11134 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11136         * threads.c: Try to free everything from the delayed free table
11137         when shutting down threads, and set the variable to NULL after the
11138         table is freed so that calling
11139         mono_thread_hazardous_try_free_all() when shutting down the root
11140         domain doesn't crash.
11142 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11144         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11145         the caller if resulting type was inflated.
11147         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11148         was inflated.
11150         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11153 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11155         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11156         class library tests.
11158         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11159         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11160         #396989.
11162 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11164         * domain.c, domain-internals.h: The JIT infos are now freed by the
11165         JIT info table code.  They are freed immediately if there only a
11166         single JIT info table in circulation.  If there is more, the free
11167         is delayed via a queue.
11169         * threads.c, threads-types.h: New hazard pointer function for
11170         freeing all freeable delayed items in one sitting.
11172 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11174         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11176         * reflection.c (typebuilder_setup_properties): Same.
11178         * reflection.c (typebuilder_setup_events): Same.
11180 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11182         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11183         and use it for allocating memory.
11185         * reflection.c (mono_marshal_spec_from_builder): Same.
11187         * reflection.c: Change code to use new signatures.
11189         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11191 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11193         * decimal.c (rescale128): Put back one line which was accidently commented
11194         out.
11195         
11196         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11197         to cause crashes.
11199 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11201         * reflection.c (mono_reflection_generic_class_initialize): Name must
11202         be always malloc'ed so we can free it later on. Do this for field, property
11203         and event.
11205         * metadata.c (free_generic_class): Free field, property and event names.
11207 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11209         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11210         instead of g_memdup.
11212         * reflection.c (typebuilder_setup_fields): Same.
11214 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11216         * decimal.c (rescale128): Optimize this function a bit more.
11218 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11220         * metadata.c (free_generic_class): Release some memory from
11221         SRE generic classes.
11223 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11225         * reflection.c (mono_image_get_generic_field_token): No reference
11226         to name is kept, free it.
11228         * reflection.c (mono_reflection_generic_class_initialize): Free
11229         more memory of the inflated field.
11231 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11233         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11234         code.
11236 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11238         * reflection.c (mono_dynamic_image_free): Release memory used by
11239         MonoDynamicImage::array_methods elements.
11241         * reflection.c (assembly_add_win32_resources): Release memory after
11242         encoding.
11244 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11246         * decimal.c (log2_32): Use an optimized version for this function too.
11247         
11248         * decimal.c (log2_64): Fix this on 32 bit machines.
11250 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11252         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11254         * class.c (mono_metadata_signature_deep_dup): Same.
11256         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11257         a mempool.
11259         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11261         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11263         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11265         * class-internals.h: Update signatures to take a MonoMemPool.
11267 2008-06-02  Dick Porter  <dick@ximian.com>
11269         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11270         * icall-def.h: Add
11271         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11272         FormatMessage API to get the error text.  Fixes bug 321827.
11274 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11276         * decimal.c: Add some micro optimizations to make decimal operations faster.
11278 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11280         * reflection.c (method_encode_clauses): Take a mempool
11281         as parameter and use it to allocate the clause array.
11283         * reflection.c (mono_image_get_field_on_inst_token): Free
11284         the inflated type after encoding it.
11286         * reflection.c (mono_dynamic_image_free): Free each element
11287         of MonoDynamicImage::gen_params.
11289         * reflection.c (reflection_methodbuilder_to_mono_method):
11290         Allocate the generic param array from the mempool.
11291         Allocate signature params from the mempool.
11293         * reflection.c (mono_reflection_generic_class_initialize):
11294         Free inflated fields after been used.
11296 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11298         * icall.c: Reapply the memory leak fixes as they no
11299         longer make mono crash.
11301 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11303         * reflection.c (mono_type_get_object): Don't store the suplied
11304         MonoType with type_hash. A caller which pass a type that
11305         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11306         might end with a pointer to freed memory.
11307         The solution is to use byval_arg or this_arg from the associated
11308         MonoClass of the supplied type.
11310 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11312         * icall.c: Revert the rest of the last change as it breaks the build too.
11314 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11316         * icall.c: Revert a leak fix as it's breaking the build.
11318 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11320         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11322 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11324         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11326 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11328         * icall.c: Fix some memory leaks.
11330 2008-05-29  Dick Porter  <dick@ximian.com>
11332         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11333         async socket operations from the pending list when a socket
11334         closes.  Leaving it until the threadpool services the event
11335         exposes a race condition when a socket descriptor is reused.
11336         Fixes bug 377589.
11338 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11340         * object.c: Fix negative index check for array alocation.
11342 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11344         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11345         This check is performed by the verifier for IL created delegates
11346         and by Delegate::CreateDelegate for programatically created ones.
11347         Fixes #372406.
11349 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11351         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11352         Fix code to use mono_array_size_t instead of int.
11354         Based on patch by Luis F. Ortiz.
11355         Contributed under X11 license.
11356         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11358 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11360         * icall.c: Added ves_icall_System_Array_GetLongLength and
11361         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11362         arrays.
11364         * icall.h: Export both new functions.
11366         Based on patch by Luis F. Ortiz.
11367         Contributed under X11 license.
11368         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11370 2008-05-28  Martin Baulig  <martin@ximian.com>
11372         The debugger now requires exactly r103463.
11374         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11375         This version is not supported by the debugger, wait for 72.
11377 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11379         * object.h: Changed array related functions to use
11380         mono_array_size_t instead of guint32. Forgot to commit this file.
11382         Patch by Luis F. Ortiz.
11383         Contributed under X11 license.
11384         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11387 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11389         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11390         don't define it. Use the number literal instead.
11392 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11394         * icall.c: Changed array related functions to use
11395         mono_array_size_t instead of guint32.
11397         * icall.c (ves_icall_System_Array_GetLength): Check for length
11398         overflow under MONO_BIG_ARRAYS.
11400         Based on patch by Luis F. Ortiz.
11401         Contributed under X11 license.
11402         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11404 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11406         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11408         Based on patch by Luis F. Ortiz.
11409         Contributed under X11 license.
11410         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11412 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11414         * object.c, object.h: Changed array related functions to use
11415         mono_array_size_t instead of guint32.
11417         Patch by Luis F. Ortiz.
11418         Contributed under X11 license.
11419         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11421 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11423         * object.h: Introduced mono_array_size_t typedef. This must be used
11424         in all places an array length is expected. This is 64bits wide if
11425         MONO_BIG_ARRAYS is enabled.
11427         Patch by Luis F. Ortiz.
11428         Contributed under X11 license.
11429         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11431 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11433         * security-manager.c class.c: Set the class exception info by calling
11434         mono_class_set_failure ().
11436         * class.c (mono_class_get_exception_data): New accessor function.
11437         (mono_class_set_failure): Store exception_data in the property hash.
11439         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11440         the struct as a property.
11442         * loader.c (mono_get_method_full): Store the lookup result for method
11443         tokens in method_cache, the others in methodref_cache to decrease the memory
11444         usage of hash tables.
11446         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11447         (mono_image_init): method_cache is lazy inited now.
11449         * metadata-internals.h (struct _MonoImage): Change method_cache to
11450         a MonoValueHashTable, add a separate methodref_cache.
11452 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11454         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11455           Double.ToString as exposed by Bug #383531.
11457 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11459         * number-formatter.h: Make some tables static.
11461         * class.c (mono_method_set_generic_container): New accessor function.
11462         (mono_method_get_generic_container): Ditto.
11464         * class-internals.h (struct _MonoMethod): Remove rarely used 
11465         'generic_container' field, store it in the property hash instead. Add 
11466         'is_generic' boolean field instead.
11468         * image.c (mono_image_init): Initialize property_hash.
11469         (mono_image_close): Destroy property_hash.
11471         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11472         hold rarely used fields of runtime structures belonging to this image.
11474         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11475         to get/set method->generic_container.
11477         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11478         generic methods.
11480 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11482         * class.c (mono_class_inflate_generic_method_full): Don't increase
11483         mono_stats.inflated_method_count for methods found in the cache.
11485         * threads.c (mono_thread_request_interruption): Add a comment about 
11486         QueueUserAPC ().
11488 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11490         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11491         interface_offsets_packed table.
11492         
11493         * class.c (mono_class_init): Remove some dead code.
11495         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11496         mono_class_setup_vtable () when CAS is active to detect security problems.
11498 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11500         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11502         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11503         parameters as it's irrelevant for delegate checking.
11505 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11507         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11509         * class.c (mono_class_init): Control the creation of a generic vtable using
11510         a global which is true by default, but set to false by the runtime startup code.
11511         
11512         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11513         Disabled for now since it breaks the embedding API.
11514         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11515         (mono_class_setup_methods): Add a memory barrier.
11517         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11518         when mono_class_init () doesn't compute the generic vtable.
11519         
11520 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11521         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11522         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11523         to support call chains (backtrace) in the stat profiler.
11524         * profiler.c, profiler-private.h: Likewise.
11526 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11528         * generic-sharing.c: Init generic class when a method of it is
11529         requested via a runtime generic context.
11531 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11533         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11535         * reflection.c (mono_type_get_object): Add a FIXME.
11537         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11539         * class.c (mono_class_get_method_by_index): New helper function, returning an
11540         entry in the class->methods array.
11542 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11544         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11545         Avoid creating a generic vtable for generic instances as well.
11546         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11547         generic instances.
11549 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11551         * loader.c (mono_get_method_constrained): Inflate the signature
11552         with class context. Fix #325283.
11554 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11556         * object.c (mono_class_create_runtime_vtable): Add a comment.
11558         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11559         where needed.
11560         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11561         (mono_class_setup_vtable_general): Add an assert.
11562         (mono_class_init): Avoid creating a generic vtable for arrays.
11564         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11565         here, let mono_class_init () do that.
11567         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11568         interfaces in mscorlib.
11570         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11571         interfaces. Add some comments.
11572         (mono_class_init): Call mono_class_setup_methods () here since it is no
11573         longer called by mono_class_setup_vtable ().
11575         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11576         not set in class->vtable.
11577         (mono_class_create_runtime_vtable): Reenable the disabled code.
11579         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11580         now as it causes some test failures.
11582         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11583         if using the vtable trampoline. Also remove some strange code which put the
11584         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11585         stuff as it is no longer needed.
11587 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11589         * pedump.c: Give make --verify all option check code as well.
11590         Using --verify code won't check for metadata now.
11592 2008-05-19  Martin Baulig  <martin@ximian.com>
11594         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11596         * mono-debug.c
11597         (_mono_debug_using_mono_debugger): New global variable; it's set
11598         directly by the debugger, so mono_debug_using_mono_debugger() also
11599         works after attaching.
11601 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11603         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11604         as we do double checked locking on MonoClass::runtime_info and
11605         MonoClassRuntimeInfo::domain_vtables.
11607 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11609         * debug-helpers.c (print_field_value): Fix a warning.
11611 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11613         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11614         set in the AOT case.
11616 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11618         * class.c (mono_class_setup_vtable_general): Use memory barriers
11619         as we do double checked locking on MonoClass::vtable.
11621 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11623         * reflection.c (resolve_object): Inflate only if the generic context
11624         is not null. Fixes #389886.
11626 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11628         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11629         instead of g_free.
11631         Code is contributed under MIT/X11 license.
11633 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11635         * class.c: Revert unrelated change.
11637 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11639         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11640         a generic instantiation, use mono_class_from_mono_type instead of playing
11641         with MonoType directly.
11643 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11645         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11646         checks must ignore generic instantiations, so mono_class_has_parent is not
11647         suitable. Fixes #390128.
11649 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11651         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11652         it to avoid registering tokens during metadata generation. Fixes #390023.
11654 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11656         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11657         consistent.
11659         Contributed under MIT/X11 license.
11661 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11663         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11664         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11665         to fixup the EXE image.
11666         (mono_cleanup): Use mono_close_exe_image.
11667         (mono_close_exe_image): New function.
11668         * image.c: Include "marshal.h".
11669         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11670         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11671         counting when the image is loaded outside of mono_image_open_full. Set status
11672         based on GetLastError.
11673         * coree.c: Include required headers. Add init_from_coree.
11674         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11675         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11676         (_CorExeMain): Set init_from_coree.
11677         (CorExitProcess): Only call ExitProcess for now.
11678         (CorBindToRuntimeEx): New stub implementation.
11679         (CorBindToRuntime): New function.
11680         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11681         (MonoFixupExe): ILONLY executables require no fixups.
11682         (mono_set_act_ctx): New function to set activation context.
11683         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11684         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11685         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11686         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11687         as MONO_INTERNAL.
11688         * domain-internals.h: Add mono_close_exe_image.
11690         Contributed under MIT/X11 license.
11692 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11694         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11695         size for generic param and event tables. Fixes #388977.
11697 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11699         * loader.c (mono_method_signature): Use memory barriers because of the double
11700         checked locking pattern.
11702         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11703         aborting or aborted as well. Fixes #376391.
11704         
11705         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11706         existing runtime state in the Suspend handler during shutdown.
11708 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11710         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11712         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11713         which are starting up or shutting down.
11715         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11716         this function never returns if the runtime is already shutting down.
11718         * icall.c (ves_icall_System_Environment_Exit): Update after 
11719         mono_threads_set_shutting_down () signature change.
11720         
11721 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11723         * class.c: Added can_access_instantiation to verify if the instantiation
11724         is visible. Fix access check for nested types as they returned TRUE
11725         before doing type and generic instantiation visibility checks.
11727 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11729         * reflection.c (mono_reflection_create_generic_class): The created type
11730         must have a different container from its TypeBuilder. Otherwise they
11731         will end sharing generic arguments, which is wrong.
11733         Due to the sharing, making a generic instance of the created type using
11734         the TypeBuider generic arguments resulted in the generic type definition
11735         been returned, which is wrong as well.
11737         As a bonus the code was leaking the type_params array. This memory should
11738         be allocated from the image mempool.
11740         This fixes bug #354047.
11742 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11744         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11745         to here         as they are now used in assembly.c new code.
11746         Added a skipverification flag to MonoAssembly.
11747         New internal function mono_assembly_has_skip_verification.
11749         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11750         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11751         part of #387274.
11753 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11755         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11756         needed. Fixes #387034.
11758         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11760 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11762         * assembly.c (mono_assembly_load_reference): Prevent crash while
11763         disassembling Silverlight 2.0 executables while we still do not
11764         have GACed libraries.
11766 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11768         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11770 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11772         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11773         of the dynamic case. Fixes #387404.
11775 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11777         *verify.c (mono_verifier_is_class_full_trust): If under
11778         verify_all and the verifier mode was not set, only
11779         gac and corlib types are fulltrust. This makes --verify-all
11780         usable to detect unverifiable code, which is the expected
11781         use case.
11783 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11785         * verify.h: Ops, commited the header with debug
11786         enabled.
11788 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11790         * verify.c (merge_stack): Use the new value on unverifiable
11791         stack merges.
11793         * verify.c (verify_type_compatibility_full): Comparison
11794         of nullable types can't use mono_class_is_assignable_from.
11796         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11797         that makes all verification errors be reported.
11799         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11800         mono_method_verify.
11802 2008-05-05  Robert Jordan  <robertj@gmx.net>
11804         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11805         support for value types. See #386415.
11807         * object.c: comments.
11809         Code is contributed under MIT/X11 license.
11811 2008-05-05  Martin Baulig  <martin@ximian.com>
11813         * debug-mono-symfile.h
11814         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11815         for old pre-terrania symbol files.
11817 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11819         * mono-config.c: Add ppc64 architecture.
11821         Code is contributed under MIT/X11 license.
11823 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11825         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11826           PPC64 uses function descriptors as well.
11828         Code is contributed under MIT/X11 license.
11830 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11832         * object.c (compute_class_bitmap): Ignore literal static fields.
11834         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11835         var has an invalid format.
11836         (describe_ptr): Add some sanity checks for the vtable.
11837         (add_nursery_frag): Clear unused nursery fragments.
11838         (major_collection): Clear all remaining nursery fragments.
11840 2008-05-03  Robert Jordan  <robertj@gmx.net>
11842         * image.c, metadata-internals.h: add thunk_invoke_cache.
11844         * marshal.c, marshal.h: implement
11845         mono_marshal_get_thunk_invoke_wrapper ().
11847         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11849         Code is contributed under MIT/X11 license.
11851 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11853         * verify.c (do_leave): Empty the stack.
11855 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11857         * class.c (mono_class_is_assignable_from): Variance
11858         doesn't work between reference and value types. For example,
11859         given type C<T+>, C<int32> is not assignable to C<object>.
11860         Break the argument checking loop on first error. 
11862 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11864         * icall.c : base64_to_byte_array() needs some more strict
11865           check for sequence of '=' characters. Patch by Santa
11866           Marta (http://deee.g.hatena.ne.jp/santamarta).
11868           Contributed under MIT/X11 license.
11869           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11871 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11873         * domain.c: Disable LoadLibrary support to fix Win32 build.
11875         Code is contributed under MIT/X11 license.
11877 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11879         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11880         to help with cache behaviour.
11882 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11884         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11885         method. 
11887 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11889         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11891 2008-05-01  Dick Porter  <dick@ximian.com>
11893         * process.c (process_get_fileversion): Only pass 16 bits of
11894         language ID to VerLanguageName.  Fixes bug 381204.
11896 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11898         * verify.c (mono_method_verify): Fix the comparison
11899         operator for code bounds check.
11901 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11903         * verify.c (mono_method_verify): Check the bounds of
11904         all access of the code array.
11906 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11908         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11910 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11912         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11913         not valid.
11915 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11917         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11918         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11919         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11920         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11921         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11922         mono_runtime_load.
11923         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11924         runtime initialization from metadata.
11925         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11926         (mono_set_rootdir): Use mono_get_module_file_name.
11927         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11928         handles.
11929         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11930         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11931         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11932         MonoCLIImageInfo. Add support for module handles.
11933         (load_cli_header): Update mono_cli_rva_image_map signature.
11934         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11935         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11936         (mono_image_rva_map): Add support for module handles.
11937         (mono_image_ensure_section_idx): Add support for module handles.
11938         (mono_image_close): Add support for module handles.
11939         (do_load_header): Add support for module handles.
11940         (mono_image_open_from_module_handle): New function for internal use.
11941         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11942         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11943         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11944         handles.
11945         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11946         * image.h: Add mono_image_fixup_vtable.
11947         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11948         support.
11949         * coree.h: New file.
11950         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11951         unsupported native code.
11952         (mono_marshal_set_callconv_from_modopt): New function splitted from
11953         mono_marshal_get_managed_wrapper.
11954         (mono_marshal_get_managed_wrapper): Use
11955         mono_marshal_set_callconv_from_modopt.
11956         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11957         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11958         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11959         that results in a deadlock when the runtime is loaded in _CorDllMain.
11960         * Makefile.am: Add coree.c and coree.h.
11962         Contributed under MIT/X11 license.
11964 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11966         * generic-sharing.c: Search for type arguments in array element
11967         types as well.
11969 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11971         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11973         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11975         * object.c: Don't setup the RGCTX when the vtable is created,
11976         because we're setting it up lazily now.
11978 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11980         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11981         64 bit support.
11983 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11985         * verify.c (verify_class_for_overlapping_reference_fields): 
11986         If class is under fulltrust allow reference types to overllap
11987         if they have the same RVA.
11989 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11991         * pedump.c: Added new flag valid-only, that makes the verifier
11992         behaves just like --security=validil. It won't fail type load
11993         due to unverifiable restrictions.
11995 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11997         * class-internals.h (struct MonoMethod): Added a verification_success
11998         field to cache verifier executions. Reduced MonoMethod:slot size by
11999         one bit.
12001 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12003         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12004         instead of a 'vt' argument to save an indirection and to allow these to be used
12005         for valuetypes.
12006         (scan_vtype): New helper function to scan an area using a gc descriptor.
12007         (mono_gc_wbarrier_value_copy): Implement this.
12008         (handle_remset): Add support for REMSET_VTYPE.
12009         (find_in_remset_loc): Ditto.
12010         (mono_gc_base_init): Allow some debugging options to be controlled through the
12011         use of the MONO_GC_DEBUG env variable.
12012         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12013         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12015 2008-04-23  Martin Baulig  <martin@ximian.com>
12017         * domain.c (mono_domain_create): Move the call to
12018         mono_debug_domain_create() down, after allocating the domain id.
12020 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12022         verify.c (verify_class_for_overlapping_reference_fields): Skip
12023         static fields while verifying for overlapping fields as they
12024         don't matter at all.
12026 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12028         * domain-internals.h: added a declaration of
12029         mono_make_shadow_copy.
12031         * assembly.c (mono_assembly_open_full): shadow copying of
12032         assemblies moved to here, so that all the assemblies within the
12033         application domain's private binary directories can be
12034         processed. Fixes bug #380546
12036         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12037         mono_make_shadow_copy and made non-static. The decision whether
12038         to shadow-copy an assembly is made based on its location - it's
12039         copied if it's in one of the private application domain binary
12040         directories and its different to the target file in the shadow
12041         directory. Fixes bug #380546
12043 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12045         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12047         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12048         types.
12050         * reflection.c (mono_image_create_token): Handle 
12051         Method/ConstructorOnTypeBuilderInst.
12052         (resolve_object): Ditto.
12053         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12054         so it can be called from resolve_object. Also handle the case when the inflated
12055         class already has its methods setup.
12057 2008-04-21  Martin Baulig  <martin@ximian.com>
12059         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12061 2008-04-20  Geoff Norton  <gnorton@novell.com>
12063         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12064         pointer dereference.
12066 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12068         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12069         portability API to look up the assembly file. Fixes behavior in
12070         situations when the application has a bin/ directory, but the
12071         assembly search patch refers to Bin/ (and thus the requested file
12072         name is Bin/SomeLibrary.dll). Fixes bug #379888
12074 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12076         verify.c (mono_type_is_generic_argument): Extracted this check
12077         from a dozen places to here.
12079         verify.c: Fixed all issues related to boxing generic arguments
12080         and their constraints.
12082 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12084         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12086 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12088         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12089         isn't finished yet. Fixes #363447.
12091 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12093         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12094         Fixes #346419.
12096 2008-04-13  Jb Evain  <jbevain@novell.com>
12098         * domain.c: update the 2.1 profile versions.
12099         Merged from the Moonlight 2 branch.
12101 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12103         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12104         mscorlibs for the non-refonly case as well.
12106         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12107         in mono_assembly_load_from_full (). Fixes #378924.
12109 2008-04-11  Geoff Norton  <gnorton@novell.com>
12111         * icall.c: The global extern environ doesn't exist on Mac.  We
12112         need to call NSGetEnviron instead.
12114 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12116         verify.c: Add generic method constraint verification.
12118 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12120         class.c (mono_class_inflate_generic_method_full): Add a long
12121         explanation to the is_mb_open hack. Remove the FIXME.
12123 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12125         * verify.c (mono_method_verify): Mark all unknown opcodes
12126         as invalid. Mark jmp as unverifiable.
12128 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12130         * verify.c: Add code to do type constraint verification on class instances.
12132         * verify.c (mono_verifier_verify_class): Use the type constraint 
12133         verification code.
12135 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12137         * class.c (mono_class_get_field_default_value): Don't pass cindex
12138         as hint to mono_metadata_get_constant_index. The local is not initialized
12139         and should contain garbage most of the time. This could only work
12140         with a lot of luck.
12142 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12144         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12146 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12148         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12150         * class.c (mono_class_from_generic_parameter): Save the token of the
12151         generic param in MonoClass::sizes.generic_param_token.
12153         * reflection.c (mono_custom_attrs_from_class): If the class type is
12154         VAR or MVAR retrieve the attributes of the generic param.
12156 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12158         * class.c (mono_class_init): Do class verification if the verifier
12159         is enabled.
12161 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12163         * verify-internal.h: Added mono_verifier_verify_class.
12165         * verify.c: Added mono_verifier_verify_class. It checks for
12166         classes with explicit layout that have overlapping reference fields.
12168         * pedump.c: Init the verifier state prior to verification. Fixed
12169         command line arguments.
12171 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12173         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12175 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12177         * verify-internals.h: Fix a warning.
12179 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12181         * verify-internals.h: New header with the verifier configuration
12182         extracted from mini.c.
12184         * verify.c: Implemented the new functions exported by verify-internals.h.
12186 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12188         * verify.c: Add proper verification of ckfinite.
12190 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12192         * verify.c (do_conversion): Improved error message to something
12193         more meanfull.
12195         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12196         with primitive types.
12198 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12200         * verify.c: Added tail prefix checking. Marked icall
12201         as unverifible.
12203 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12205         * verify.c: Fix the detection of branches to the middle
12206         of an instruction.
12208 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12210         * verify.c: Implemented verification of volatile. and
12211         unaligned. prefix. Check if a type is valid after retrieving it.
12213 2008-04-01  Dick Porter  <dick@ximian.com>
12215         * process.c (process_get_fileversion): If there's no string block,
12216         set the file language to en_US.  Fixes the other new part of bug
12217         374600.
12219 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12221         * class.c: New functions mono_method_can_access_field_full and
12222         mono_method_can_access_method_full. They perform type visibility
12223         and type site check.
12225         * class-internal.h: Added exported functions.
12227         * verify.c: Use new functions to implement proper visibility checks.
12229 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12231         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12233 2008-03-28  Dick Porter  <dick@ximian.com>
12235         * process.c (process_get_fileversion): Use the first language ID
12236         we see, rather than insisting on an invariant language.  Fixes bug
12237         374600.
12239 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12241         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12242         the streams to fix reading of invalid memory later.
12244         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12245         to ease debugging.
12247 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12249         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12250         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12252 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12253         * threads.h: Added MonoThreadManageCallback type and
12254         mono_thread_set_manage_callback prototype
12255         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12256         (used to store the mono_thread_manage callback).
12257         * threads.c: Added mono_thread_set_manage_callback, and handle
12258         "MonoThread->manage_callback" in build_wait_tids.
12260 2008-03-26  Dick Porter  <dick@ximian.com>
12262         * process.c (process_get_fileversion): Set FileVersionInfo strings
12263         to Empty when the resource doesn't have the particular info.
12264         Fixes bug 355717.
12266 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12268         * verify.c (mono_method_verify): Proper prefix validation.
12270 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12272         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12273         itself in a separate argument instead of throwing them. Fixes #373448.
12275         * appdomain.c: Bump corlib version.
12277 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12279         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12281 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12283         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12284         version macros.
12286 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12288         * generic-sharing.c, class-internals.h: Code for putting
12289         reflection types into the runtime generic context.
12291 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12293         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12294         Fixes #340662. 
12297 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12299         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12301         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12303         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12305         * verify.c (do_cast): Let the result value keep the boxed status.
12307         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12309 2008-03-17  Jb Evain  <jbevain@novell.com>
12311         * reflection.c: when running on a 2.0 runtime, emit
12312         unconditionally the #~ header version as 2.0, and the
12313         CLI header version as 2.5, for symmetry's sake with csc.
12315 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12317         * class.c: Remove the unused cache_interface_offsets stuff.
12319         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12320         profiler.c: Fix warnings.
12322 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12324         * generic-sharing.c, class-internals.h: Support for putting
12325         methods into the runtime generic context.
12327 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12329         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12330         classes which are generic instances of not-yet finished typebuilders. Fixes
12331         #351172.
12333         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12335 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12337         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12339         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12340         field, replace it with a hash table in MonoDynamicImage.
12342         * reflection.c (inflate_mono_method): Access the generic definition object from
12343         image->generic_def_objects instead of imethod->reflection_info.
12345         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12347         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12348         
12349         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12350         function in reflection.c so it is easier to keep in sync with the dynamic image
12351         creation code.
12353         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12354         mono_image_close ().
12356 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12358         * class.c (mono_class_generic_sharing_enabled): Disable generic
12359         sharing for all architectures except AMD64 and x86 to fix build.
12361 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12363         * verify.c: Use the generic definition MonoGenericContext when available.
12364         Remove code for checking generics instance compatibility in favor of
12365         mono_class_is_assignable_from.
12367 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12369         * marshal.c, marshal.h, metadata-internals.h, image.c,
12370         wrapper-types.h: New wrapper for invoking a shared static method
12371         without having to pass the runtime generic context argument.
12373 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12375         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12377 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12379         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12380         
12381         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12382         create a token from a FieldOnTypeBuilderInst.
12383         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12384         (resolve_object): Ditto.
12386         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12387         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12389 2008-03-14  Martin Baulig  <martin@ximian.com>
12391         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12393         * debug-mono-symfile.h
12394         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12395         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12397 2008-03-10  Martin Baulig  <martin@ximian.com>
12399         * debug-mono-symfile.h
12400         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12401         `lexical_block_table_offset'.
12402         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12403         `lexical_blocks'.
12404         (MonoSymbolFile): Added `version'.
12406         * mono-debug.h
12407         (MonoDebugLexicalBlockEntry): Removed.
12408         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12409         `lexical_blocks'.
12411         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12412         blocks here; the debugger now does this internally.
12414 2008-02-27  Martin Baulig  <martin@ximian.com>
12416         * object.c (mono_runtime_exec_main): Call
12417         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12418         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12420 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12422         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12423         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12425 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12427         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12428         ldftn with a virtual method.
12430 2008-03-13  Geoff Norton  <gnorton@novell.com>
12432         * decimal.c:  Only include memory.h if the platform has it.
12434 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12436         * assembly.c, class.c, metadata-internals.h: make sure public key
12437         tokesns are compared in a case-insensitive way. Also, all
12438         the lookups in the GAC use a lowercase public key token
12439         (gaacutil already does the lowercasing on install). Fixes
12440         bug #369541.
12442 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12444         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12445         and return value.
12447 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12449         * image.c: when someone loads a mscorlib from a file, return the
12450         currently loaded mscorlib (fixes bug #369253).
12452 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12454         * class.c: handle types with no parents by forcing them to have
12455         System.Object as a parent and marking them as broken (this currently
12456         allows the first part of bug #369173 to work as well, likely because
12457         we don't check for typeload exceptions everywhere yet).
12459 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12461         * class.c: more complete check that types belong to corlib
12462         (fixes second part of bug #369173).
12464 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12466         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12467           "inline" to "__inline" before including mono-membar.h.
12468           
12469         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12470           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12471           MSVC builds.
12473         Contributed under MIT/X11 license.
12475 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12477         * verify.c (do_invoke_method): Remove return type validation.
12479         * verify.c (do_ret): Do return type validation at return site instead of
12480         call site.
12482 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12484         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12486         * verify.c: Some todos cleaned and improved a few error messages.
12488 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12490         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12492 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12494         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12495         system types correctly.
12497         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12498         function.
12500 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12502         * assembly.c (build_assembly_name): Fix a warning.
12504 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12506         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12507         the called function takes an object type argument. Fixes storing or
12508         valuetypes across remoting as well as reducing memory usage.
12509         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12510         stfld_remote wrapper caches.
12512 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12514         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12515         is not found.
12517         * reflection.c (mono_image_register_token): New helper function to save
12518         a token->object mapping.        
12520         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12521         managed code.
12523         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12524         one dimension arrays. Fixes #367670.
12525         (mono_reflection_get_type_internal): Ditto.
12527 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12529         * marshal.c: mono_load_remote_field_new() always returns object.
12530         so use the proper signature (fixes bug #366445).
12532 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12533         
12534         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12535         add an 'inline_failure' flag instead.
12537 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12539         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12540         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12541         contains the location of "this", used for exception handling.
12543 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12545         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12546         their size on all platforms for perf reasons.
12548 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12550         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12551         object-internal.h
12553         * object-internal.h: Same.
12555 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12557         * reflection.h: Fix the build I just broke.
12559 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12561         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12562         Test if a token is valid, this remove explicit usage of 
12563         MonoDynamicImage::tokens from the verifier code.
12565         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12567         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12568         instead of direct access to MonoDynamicImage::tokens.
12570 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12572         * verify.c (token_bounds_check): Fix the build I just broke.
12574 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12576         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12578         * verify.c (verifier_load_method): Fixed the errors message.
12580         * verify.c (mono_method_verify): Fixed a debug message.
12582 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12584         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12585         mono-perfcounters.h, class-internals.h: support for predefined
12586         writable counters, query of categories and counters, bugfixes.
12588 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12590         * verify.c (do_refanytype): Verify the refanytype opcode.
12592         * verify.c (mono_method_verify): Use do_refanytype.
12594 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12596         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12598         * verify.c (mono_method_verify): Use do_mkrefany.
12600 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12602         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12603         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12604         implementation.
12606 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12608         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12609         the type load exception.
12611 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12613         * verify.c: Added a few FIXME for method signatures
12615         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12616         of mono_method_get_signature and get vararg call working. Removed unused
12617         checks for return value.
12619         * verify.c (do_refanyval): Verify the refanyval opcode.
12621         * verify.c (mono_method_verify): Implemented verification of arglist and
12622         use do_refanyval.
12624 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12626         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12627         vtypes to marshal.c.
12629         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12630         it works for AOT as well.
12632 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12634         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12635         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12636         the system time is adjusted.
12638 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12640         * icall.c, icall-def.h: use the new time functions (fixes the
12641         non-monotonic behaviour of TickCount).
12643 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12645         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12646         it breaks the build.
12647         
12648         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12649         cattr is not finished yet.
12651 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12653         * verify.c: Proper token validation for field, method and type.
12655 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12657         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12659         * loader.c (method_from_memberref): Generate type load error instead of method missing
12660         if the type is not found.
12662 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12664         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12665         some of the conversions caused the generation of a marshal directive exception.
12667 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12669         verify.c: Report which exception should be thrown by the JIT.
12670         Added a lot of FIXME notes.
12672 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12674         * generic-sharing.c: Runtime generic context slots are not
12675         instantiated on init anymore.  Instead, provide function to do the
12676         instantiating on demand.
12678         * class-internals.h: Added vtable to runtime generic context.
12679         Macros for encoding direct and indirect slot offsets in one
12680         guint32.
12682 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12684         * object.c, generic-sharing.c: Moved some generic sharing code
12685         from object.c to generic-sharing.c.
12687         * generic-sharing.c: Added support for extensible runtime generic
12688         context.
12690         * metadata-internals.h: Two new hash tables in MonoImage for
12691         extensible runtime generic context support.
12693         * domain.c: Unregister generic vtables upon domain unloading.
12695         * image.c: Destroy new hash tables upon image unloading.
12697         * metadata.c: Unregister generic subclasses upon image unloading.
12699         * class-internals.h: New data structure for runtime generic
12700         context template.  New fields in the runtime generic context for
12701         extensible part.
12703         * Makefile.am: Added generic-sharing.c.
12705 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12707         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12708         there is a pending loader exception, raise it.
12710         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12711         same.
12713         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12714         same.
12716         Fixes #363450.
12718 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12720         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12722         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12723         
12724         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12725         ref-only requests for compatibility with MS.
12727 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12729         * reflection.c (mono_custom_attrs_from_method): Don't silently
12730         return an empty list for generic method instances.
12731         (mono_custom_attrs_from_param): Likewise.
12733 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12734             Raja R Harinath  <harinath@hurrynot.org>
12736         Fix #354757
12737         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12738         * class.c (mono_class_inflate_generic_method_full): Initialize it
12739         when a fully-open method is instantiated.
12740         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12741         to new field.
12742         * reflection.c (inflate_mono_method): Don't create a temporary context.
12744 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12746         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12747         Compute correct value, to prepare for imethod->reflection_info going away.
12749 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12751         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12753 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12755         * verify.c: Implement skip visibility flag.
12757 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12759         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12760         which contains an extra field to tell the kind of exception that should be thrown.
12762         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12764 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12766         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12767         'method' is updated.
12769 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12771         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12772         explicit layout as well. Fixes #360375.
12774 2008-02-11  Geoff Norton  <gnorton@novell.com>
12776         * loader.c: Guard and dereference against inflated generic methods
12778 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12780         * class.c: Include Retargetable spec in assembly name.
12781         * assembly.c: Always include PublicKeyToken spec in assembly name
12782         (with value "null" if assembly is not signed), and include
12783         Retargetable spec.
12784         * icall-def.h: Added icall for Assembly.get_fullname.
12785         * icall.c: Added icall returning the fullname of an assembly.
12787 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12789         * class.c (mono_class_setup_vtable_general): Add a missing call to
12790         mono_class_setup_methods () which is needed in the AOT case.
12792 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12794         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12795         stack type of the given MonoType.
12797         * verify.c (verify_type_compatibility_full): Handle the void type.
12799         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12800         way stack merging works.
12802         * verify.c (store_local): Improved verification message.
12804         * verify.c (do_branch_op): If the merging is invalid, the method
12805         is unverifiable and not invalid. Improved error message.
12807         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12808         a reference type diferent than System.Object. Improved error
12809         message.
12811 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12813         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12815         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12816         type of an enum even if the argument is byref.
12818         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12819         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12821         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12823         *verify.c (verify_type_compatibility_full): Make enum types
12824         compatible with their base types.
12826         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12827         types are compatible for the special case of a boxed valuetype and
12828         System.Object.
12830         * verify.c (verify_stack_type_compatibility): The function
12831         is_compatible_boxed_valuetype was extracted from here.
12833         * verify.c (push_arg): Only set ctx->has_this_store if the method
12834         is not static.
12836         * verify.c (do_ldelem): Fixed a typo in an error message and added
12837         strict check for mixing int32 and native int as the array type
12838         and ldelem type.
12840         * verify.c (merge_stacks): Consider boxed valuetypes in the
12841         compatibility checks.
12843 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12844         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12846 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12847         *class.c: use_new_interface_vtable_code: renamed the env var to have
12848         a "MONO_" prefix, and fix the logic to enable it by default.
12850 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12851         *class.c:
12852         mono_class_setup_vtable_general: rewrote the way in which interface
12853         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12854         makes the code more maintainable.
12855         For now the old code is still there, and can be activated setting
12856         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12858 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12860         * verify.c: guarded some debug functions around and #ifdef.
12862         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12864 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12866         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12867         changes for now since they seem to break too many things.
12869 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12871         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12872         mono_marshal_find_nonzero_bit_offset): Added macro and function
12873         for finding the byte- and bit-offset of a bitfield within a
12874         struct.
12876 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12878         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12879         (mono_marshal_get_struct_to_ptr): Ditto.
12881         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12882         cctor_signature.
12884 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12886         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12887         between methods for non-corlib types.
12889 2008-02-02  Geoff Norton  <gnorton@novell.com>
12891         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12892         generic parameters as well. (Fixes #342536)
12894 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12896         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12898         * verify.c (do_invoke_method): Fix for calling with byref structs.
12900         * verify.c (do_cast): push a boxed value type based on the type token and not
12901         the type of stack.
12903 2008-01-31  William Holmes  <billholmes54@gmail.com>
12905         * process.c (process_module_string_read): Check the size returned form 
12906           VerQueryValue to avoid out of memory exception. 
12908 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12910         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12911         Handle properly modules which are not in the moduleref table. Fixes
12912         #356938.
12914 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12916         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12917         the dynamic case which is now in managed code.
12918         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12920         * marshal.c (mono_string_to_bstr): Fix a warning.
12921         (init_com_provider_ms): Ditto.
12923         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12925         * exception.c (mono_get_exception_out_of_memory): New helper function.
12927 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12929         * marshal.c: Add support for BSTR marshalling
12930         using other COM systems.
12932         Code is contributed under MIT/X11 license.
12934 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12936         * object.c (mono_runtime_invoke_array): reverted previous
12937         commit as it breaks the build.
12939 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12941         * object.c (mono_runtime_invoke_array): Verify arguments for
12942         invalid types. Fixes #348522.
12944 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12946         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12947         non-final virtual calls using call. 
12949         * verify.c (do_invoke): fixed some TODOs.
12951         * verify.c (push_arg): set has_this_store for "ldarga 0".
12953 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12955         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12956         which belong to an inflated class. Fixes #356531.
12958 2008-01-26  Robert Jordan  <robertj@gmx.net>
12960         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12961         which resort to FindFirstFile when a certain error condition
12962         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12963         Code is contributed under MIT/X11 license.
12965 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12967         * marshal.c (emit_marshal_string): Fix out string marshalling
12968         to use specified encoding. Fixes #323900.
12970         Code is contributed under MIT/X11 license.
12972 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12974         * class.c (mono_class_inflate_generic_method_full): Don't modify
12975         iresult->context after cache check.
12977 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12979         * class.c (mono_class_inflate_generic_method_full): Change the
12980         struct assignments to memcpy for better visibility and add some comments.
12982 2008-01-23  Dick Porter  <dick@ximian.com>
12984         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12985         procedure, and make it work on windows.
12987 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12989         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12990         a MonoReflectionTypeBuilder since it is always of that type.
12992         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12994         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12996         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12997         
12998         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13000         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13002         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13003         instantiations from the type cache.
13005 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13007         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13009         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13011 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13013         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13015         * verify.c (mono_method_verify): removed old TODO
13017 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13019         * verify.c (do_newobj): add visibility check.
13021 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13023         * verify.c (do_load_function_ptr): add visibility check.
13025 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13026         *class.c:
13027         mono_generic_class_get_class: hook profiler events.
13028         mono_field_get_offset: added to support heap-shot in the new profiler.
13029         *class.h: exported mono_field_get_offset.
13030         * reflection.c:
13031         mono_reflection_setup_internal_class: hook profiler events.
13033 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13035         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13036         argument here too and use it to avoid checking for pending exceptions if 
13037         possible.
13039 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13041         * assembly.c (build_assembly_name): add arg for passing the assembly
13042         flags. Do not consider a PublicKey with value "null" valid.
13043         (mono_assembly_name_parse_full): added boolean argument that will be
13044         set if the assembly name contains a PublicKeyToken spec. Added support
13045         for the Retargetable spec for which only Yes or No are allowed as valid
13046         value. Consider assembly name invalid if Retargetable spec is set, but
13047         either version, culture or public key (token) are not specified.
13048         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13049         with implementation in assembly.c.
13050         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13051         from MonoAssemblyName.
13052         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13053         introduced argument for mono_assembly_name_parse_full to know if the
13054         assembly name has a PublicKeyToken spec, and if it has instruct
13055         fill_reflection_assembly_name to use default value for keyToken (if
13056         PublicKeyToken is null).
13058 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13060         * verify.c (mono_method_verify): fixed ovf ops with
13061         float values. They are unverifiable now.
13063 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13065         * class.c (set_failure_from_loader_error): add BadImageException to the
13066         list of exceptions that can cause a type to fail to load.
13068         * class.c (mono_class_get_exception_for_failure): same.
13070 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13072         * verify.c (in_any_exception_block): added, check if offset
13073         is part of any exception handling clause.
13075         * verify.c (get_stack_type): added VAR and MVAR types.
13077         * verify.c (do_stobj): better error messages.
13079         * verify.c (do_cpobj): added, check cpobj.
13081         * verify.c (do_initobj): added, check initobj.
13083         * verify.c (do_sizeof): added, check sizeof.
13085         * verify.c (do_localloc): added, check localloc.
13087         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13089 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13091         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13092         save_lmf/restore_lmf opcodes.
13094         * threads.c (mono_threads_install_notify_pending_exc): New function to
13095         install a callback notifying the JIT there is a pending exception on a thread.
13096         (mono_thread_request_interruption): Call the new callback.
13097         (mono_thread_get_and_clear_pending_exception): New function to return the
13098         exception pending on a thread.
13100         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13101         to turn off checking for pending exceptions.
13102         (mono_marshal_get_native_wrapper): Ditto.
13104 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13106         * threads-types.h: Get rid of the unnecessary extern declarations.
13108 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13110         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13111         return field from parent class if not private.
13112         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13113         returns fields from parent class if they are not private.
13114         (method_nonpublic): added function to determine if a given method
13115         should be considered non-public. Returns false for private methods
13116         on parent class, and internal methods from parent on the 1.0 profile.
13117         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13118         use method_nonpublic function to determine whether method should be
13119         returned.
13120         (property_accessor_public): use newly introduced method_nonpublic
13121         function to determine whether accessor is non-public. 
13122         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13123         event from parent class if not private. Only return static event if
13124         Static flag is set, and only return static event from parent class if
13125         FlattenHierarchy flag is set.
13126         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13127         include non-private events from parent class.
13129 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13131         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13132         warning.
13134 2008-01-16  Wade Berrier <wberrier@novell.com>
13136         * security.c: Add assembly.h header to appease some warnings
13138 2008-01-16  Dick Porter  <dick@ximian.com>
13140         * process.c (process_module_string_read): Remove trailing null
13141         when saving string.
13143 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13145         * class-internals.h: A new data structure describing the layout of
13146         a runtime generic context (MonoRuntimeGenericContextTemplate).
13148         * metadata-internals.h: Added a hash table to MonoDomain that maps
13149         from open generic classes to their runtime generic context
13150         templates.
13152         * object.c: Building of the runtime generic context, including
13153         proper handling of generic type arguments of superclasses.
13154         Building of the runtime generic context according to the template.
13156 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13158         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13159         Fixes #350856.
13161         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13162         mono_portability_find_file (). Fixes #325466.
13163         (mono_image_get_public_key): Fix a warning.
13165 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13167         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13168         Fixes #353550.
13169         (mono_class_from_name_case): Ditto.
13171 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13173         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13174           common storage for the tables used in the System/NumberFormatter class.
13176 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13178         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13180 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13182         * verify.c (get_boxable_mono_type): check if the token is valid.
13184         * verify.c (set_stack_value): changed to add an error if an
13185         invalid type is set on stack. Changed all callers due to signature change.
13187         * verify.c (do_stobj): implement stobj validation.
13189 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13191         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13192         set container->is_method, it was set earlier.
13194         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13195         generic methods.
13197         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13198         is_method of the generic container to TRUE for methods.
13200 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13202         * metadata.c (type_in_image): Handle type parameters properly.
13204         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13205         memory ownership of this structure.
13207 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13209         * verify.c (get_boxable_mono_type): make typedref types been just
13210         unverifiable. check for void type.
13212         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13214         * verify.c (do_load_function_ptr): accept method spec tokens.
13216 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13218         * marshal.c (mono_class_native_size): Always set *align even if this is called
13219         recursively.
13221 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13223         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13224         out-of-date.
13226 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13228         * verify.c: removed some old unused tables. A huge bunch of small fixes
13229         to things found while testing the verifier with mono basic.
13231         * verify.c (dump_stack_value): dump null literal flag to.
13233         * verify.c (verify_type_compatibility_full): fix comparison
13234         for types that have a generic super type.
13236         * verify.c (verify_stack_type_compatibility): fix compatibility
13237         between null literals and reference types. fix compatibility between
13238         boxed valuetypes and object. fix corner case test for enums.
13240         * verify.c (do_cmp_op): proper verification of cgt.un in case
13241         of reference types.
13243         * verify.c (do_invoke_method): fix error message.
13245         * verify.c (do_store_indirect
13247         * verify.c (check_is_valid_type_for_field_ops): proper verification
13248         of managed pointers to valuetypes and boxed valuetypes. proper verification
13249         of null literals.
13251         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13252         allow token to be a reference type.
13254         * verify.c (do_cast): proper handling of boxes valuetypes.
13256         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13257         in object[].
13259         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13260         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13261         fixed the decoding of unbox_any
13263 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13265         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13267 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13269         * verify.c (do_newobj): do delegate verification.
13271         * verify.c (verify_delegate_compatibility): perform delegate
13272         verification.
13274         * verify.c (verify_ldftn_delegate): perform tests related to
13275         ldftn delegates.
13277         * verify.c (mono_delegate_signature_equal): perform the
13278         slightly diferent signature comparison required by delegates.
13280         * metadata.c (mono_metadata_type_equal_full): added and exported
13281         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13282         allows signature only comparison.
13284         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13285         as MONO_INTERNAL.
13287 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13289         * verify.c: added a bunch of stack_slot_* functions to
13290         make access to stack slot type easier. This is required to
13291         allow optional flags, like null literal, boxed value and
13292         this pointer.
13293         All access paths to IlStackDesc::stype have been changed 
13294         to use these new funcions.
13295         Removed a bunch of unused functions and cleared all warnings.
13296         This patch introduces the usage of the this pointer and 
13297         boxed value flags.
13299 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13301         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13303 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13305         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13306         match managed version.
13308         * appdomain.c: Bump corlib version.
13309         
13310         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13311         argument.
13313 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13315         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13316         Set public key token to zero-length byte array if assembly is not
13317         strongnamed.
13319 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13321         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13322         writing a vtype array elem.
13324 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13326         * assembly.c (build_assembly_name): return FALSE if length of token is
13327         not 16 (if not "null").
13328         (mono_assembly_name_parse_full): return FALSE if value of version,
13329         culture, token or key is 0.
13330         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13331         specify whether public key and public key token must be set to default
13332         value (zero-length byte array) if not available. Set versioncompat to
13333         SameMachine. If public key is available or the default is set, then
13334         set PublicKey flag.
13335         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13336         is available, use empty byte array as default value. On the 2.0
13337         profile, use default value for public key token if not set.
13338         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13339         profile, use default value for public key if not set. On the 2.0
13340         profile, use default value for public key token if not set.
13341         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13342         default values for public key and public key token.
13344 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13346         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13347         field to keep it in synch with the managed object.
13349         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13350         delegates. Fixes #351520.
13352         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13353         contains defined memory.
13354         
13355         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13357         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13358         
13359         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13360         of the GC data structures.
13362         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13364         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13365         
13366         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13367         barrier.
13368         (mono_array_clone_in_domain): Ditto.
13369         (mono_array_clone_in_domain): Ditto.
13371         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13372         (cache_culture): Use a write barrier.
13374         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13375         (ves_icall_get_property_info): Ditto.
13377         * object.h (MONO_STRUCT_SETREF): New macro.
13379         * class-internals.h (MonoStats): Add some GC statistics.
13381         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13383 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13385         * exception.c (mono_exception_from_name_two_strings):
13386         Break from loop after method is found.
13388 2008-01-04  Dick Porter  <dick@ximian.com>
13390         * process.c (process_module_string_read): Rename variable to
13391         reflect correct usage, after fixing bug 345972.
13393 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13395         * verify.c (mono_type_create_fnptr_from_mono_method): 
13396         created a MonoType function pointer instance to be used during
13397         verification. The verifier releases this memory at end.
13399         * verify.c (mono_method_is_constructor): extracted repeated
13400         checks for constructor into a single class.
13402         * verify.c (do_push_field): use new extracted method
13403         for constructor check.
13405         * verify.c (do_newobj): same.
13407         * verify.c (do_ldftn): renamed to do_load_function_ptr
13408         and make it verify ldvirtftn too.
13410         * verify.c (mono_method_verify: proper verification
13411         of ldvirtftn. release created MonoMethod instances.
13413 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13415         * verify.c (token_bounds_check): added.
13417         * verify.c (do_ldftn): added.
13419         * verify.c (mono_method_verify): proper verificartion of ldftn.
13421 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13423         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13424         than the table row count. It's the resposibility of the caller to
13425         make the bounds check and raise the correct error.
13427         * metadata.c (mono_metadata_decode_row_col): Same.
13429         * loader.c (mono_get_method_from_token): perform bounds check
13430         on token for methoddef table.
13432 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13434         * icall.c
13435         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13436         assert into a negative result, the managed code already coped with
13437         that.
13439         Some folks on Windows reported this error. 
13441 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13443         * appdomain.c: Bump corlib version.
13444         * icall.c:
13445         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13446         CultureInfo.CreateCulture to create CultureInfo for name.
13447         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13448         create CultureInfo for name. Fixes bug #347174.
13450 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13452         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13453         flags.
13455         * verify.c (is_valid_branch_instruction): allow branching to the
13456         first instruction of the protected block.
13458         * verify.c (is_valid_cmp_branch_instruction): same.
13460         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13461         avoid double initialization.
13463         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13464         detect which cases the eval stack should just be copied.
13466         * verify.c (mono_method_verify): check if the eval stack
13467         is empty when entering a protected block.
13469 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13471         * verify.c: added is_clause_in_range, is_clause_inside_range,
13472         is_clause_nested and verify_clause_relationship. They perform
13473         the verifications stated in P1 12.4.2.7.
13475         * verify.c (mono_method_verify): remove some unused variables,
13476         add the new exception clause checks, add instruction border
13477         checks for protected block start/end, improved some error 
13478         messages and fixed a bug in the way invalid instruction access
13479         is detected.
13481 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13483         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13484         from GC 7.0 if available.
13486         * object.c: Remove an unused define.
13487         
13488         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13490         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13492         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13494         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13496         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13497         to take the same arguments as the other make_descr functions.
13499         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13501         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13502         directly.
13504         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13505         mini.c.
13507         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13508         call to boehm-gc.c.
13510         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13512         * null-gc.c (mono_gc_register_root): Fix a warning.
13514         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13516         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13517         (mono_gc_base_init): Call GC_init ().
13519         * null-gc.c: Define mono_gc_register_root () as a no-op.
13521         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13523 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13525         * verify.c: add prototype for merge_stacks at top
13527         * verify.c (do_switch): added.
13529         * verify.c (merge_stacks): on some cases the stack merging
13530         was not happening properly. Unequal stack sizes at merge
13531         points should be invalid.
13533         * verify.c (mono_method_verify): added more debug info on stack state.
13534         verify switch properly.
13536 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13538         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13539         marshal.h.
13541         * boehm-gc.c marshal.c: Include method-builder.h.
13543         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13545         * marshal.c: Remove some code which is now in method-builder.c.
13547 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13549         * method-builder.c: New file, extraction of the method builder functionality 
13550         from marshal.c.
13552         * marshal.c: Move the mb functions into method-builder.c.
13554         * marshal.h marshal.c: Export some mono_mb_... functions.
13556         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13558         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13559         the caller.
13561         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13563         * loader.c (mono_field_from_token): Ditto.      
13565         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13566         type as well.
13567         
13568         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13569         Fixes #342565.
13571         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13572         a helper function for setting it.
13574         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13576         
13577         * assembly.c: Significally simplify code now that referenced assemblies are 
13578         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13580         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13581         #349952.
13583 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13585         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13586         instructions that were target of branches or are at protected block boundaries.
13588         * verify.c (in_same_block): handle filter clauses.
13590         * verify.c (is_valid_branch_instruction): added. checks the target of
13591         instructions br or brtrue/false.
13593         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13594         binary branch instructions such as beq and bge.
13596         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13597         and made it pin the instruction as been part of the exception block.
13599         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13600         of in_same_block.
13602         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13603         of in_same_block.
13605         * verify.c (do_ret): ret from a protected block is unverifiable and
13606         not invalid.
13608         * verify.c (do_static_branch): verify br and br.s instructions.
13610         * verify.c (merge_stacks): add extra param to support detection
13611         of branches in the middle of instructions.
13612         
13613         * verify.c (mono_method_verify): verify branches and exception blocks
13614         that target the middle of instructions. Proper verification of br and br.s.
13616 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13618         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13619         skip_visibility field.
13620         (reflection_methodbuilder_from_dynamic_method): Ditto.
13622         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13623         registrations. Fixes #348193.
13625         * threads.h: Move the internal mono_thread_get_pending_exception () to
13626         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13628 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13630         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13631         icall registration. Fixes #348193.
13633         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13634         for corlib classes into object. Fixes #349621.
13636 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13638         * icall.c (property_accessor_nonpublic): new function to determine
13639         whether an accessor allows a property to be considered non-public.
13640         Returns false for private accessor(s) from parent class, and internal
13641         accessor(s) from parent on 2.0 profile (and higher).
13642         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13643         to determine whether property should be included if NonPublic flag
13644         is set. Fixes bug #349078.
13646 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13648         * verify.c (init_stack_with_value): added.
13650         * verify.c (mono_method_verify): extracted common
13651         code for exception initialization into init_stack_with_value.
13653         * verify.c (mono_method_verify): initialize the exception
13654         for handler clauses as well.
13656         * verify.c (mono_method_verify): fix the exception clause
13657         ordering rules, it should use handler end offset and not
13658         start offset.
13660 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13662         * rawbuffer.c: remove useless warning.
13664 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13666         * threads.h, threads-types.h: move functions to the correct header
13667         (fixes bug#349952).
13669 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13671         * verify.c (mono_method_verify): proper verification
13672         of exception handling clauses ranges and fallthru in
13673         and out of protected blocks.
13675 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13677         * verify.c (mono_method_verify): fixed compilation issue.
13679 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13681         * verify.c (mono_method_verify): a printf slipped in, changed
13682         to use verifier debug macro.
13684 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13686         * verify.c (is_correct_leave): check for filter clauses.
13688         * verify.c (do_filter): added.
13690         * verify.c (mono_method_verify): property verification of leave.
13693 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13695         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13696         Win32 build, until we figure out how to do the proper thing on
13697         Win32.
13699 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13701         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13702         by the previous patch.
13703         
13704         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13705         the assembly resolve handler for refonly assemblies.
13707 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13709         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13710         Make sure only one thread is allowed to commence shutdown, and
13711         don't allow new threads to be started once shutdown is in
13712         progress.
13714 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13716         * verify.c (is_correct_endfilter): added.
13718         * verify.c (is_unverifiable_endfilter): added.
13720         * verify.c (do_endfilter): added.
13722         * verify.c (mono_method_verify): property verification of endfilter
13723         and fixed a corner case or endfinally.
13725 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13727         * verify.h: new flags to support fail fast of unverifiable code and
13728         do non-strict verification. Non-strict verification is required to
13729         have MS runtime compatibility. There are a huge amount of unverifiable
13730         code that it accepts as verifiable. The strict mode verifies the code
13731         as the specs says.
13732         Non-strict mode will be required in cases where code needs to be
13733         accepted as verifiable but fails under strict mode.
13735         * pedump.c: added support to fail fast and non-strict verification.
13737         * verify.c: added support for both fail fast and non-strict verification.
13739 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13741         * verify.c (is_correct_endfinally): added.
13743         * verify.c (mono_method_verify): property verification of endfinally.
13745 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13747         * verify.c (in_any_block): check for filter clauses.
13749         * verify.c (is_correct_rethrow): added.
13751         * verify.c (mono_method_verify): property verification of rethrow.
13753         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13755 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13757         * verify.c (do_throw): added.
13759         * verify.c (mono_method_verify): property verification of throw
13761 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13763         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13764         assemblies. Fixes #346425.
13766 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13768         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13769         FieldBuilders.
13771         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13773         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13774         prevent asserts when this is called with a token which might not be valid.
13776         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13777         lookup_dynamic_token_class with valid_token == FALSE.
13779         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13781         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13783         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13784         
13785 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13787         * gc.c: Don't delay threadpool thread finalization unless Mono is
13788         shutting down.
13790 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13792         * threads.c: turn an assert into a non-fatal warning.
13794 2007-12-09  Robert Jordan  <robertj@gmx.net>
13796         * icall.c (GetVirtualMethod): Add missing argument validation.
13798 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13800         * verify.c (do_cast): added.
13802         * verify.c (mono_method_verify): property verification of castclass and isinst.
13805 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13807         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13809         * verify.c (do_stelem): added.
13811         * verify.c (mono_method_verify): property verification of stelem.X.
13813 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13815         * class.c, class-internals.h: Introduce an environment variable
13816         (MONO_GENERIC_SHARING) through which the extent of generic code
13817         sharing can be controlled (share all classes, share only corlib
13818         classes, or share nothing).
13820         * object.c: Only create runtime generic context for classes for
13821         which sharing is enabled.
13823 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13825         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13827         * verify.c (mono_method_verify): property verification of ldelem.any.
13829 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13831         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13832         added ldelem.X opcodes.
13834         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13836         * verify.c: proper verification of ldelem.X 
13838 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13840         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13842 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13844         * verify.c (mono_method_verify): null literal requires special handling,
13845         the value pushed on stack need to be flagged as so.
13847         * verify.c (do_ldelema): Verify ldelema properly.
13849 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13851         * verify.c: Verify ldlen properly.
13853 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13855         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13856         to the target object's type. Fixes #346160.
13858 2007-12-05  Dick Porter  <dick@ximian.com>
13860         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13861         Solaris needs the same workaround as BSD-derived systems.  Fixes
13862         bug 323524, patch by Burkhard Linke
13863         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13865 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13867         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13868         handle to use when error dialog is shown; otherwise, update mask
13869         to show no error dialog when an error occurs.
13871 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13873         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13875         * class.c (mono_class_get_field_default_value): New helper function to initialize
13876         field->def_type and field->data.
13878 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13880         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13881         the general one.
13883         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13885         * marshal.c: Avoid depending on delegate->method_info being set.
13887         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13888         
13889         * object.c (mono_delegate_ctor): Set delegate->method.
13891         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13893         * appdomain.c: Bump corlib version.
13895 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13897         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13898         equality check if we're comparing canonicalized MonoGenericInsts.
13900 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13902         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13903         accessing class->methods.
13905 2007-11-22  Dick Porter  <dick@ximian.com>
13907         * threads.c: Ensure that the synch_cs is set before trying to use
13908         it.
13910 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13912         * profiler.c: r89126 broke the statistial profiler, unbreak.
13914 2007-11-22  Martin Baulig  <martin@ximian.com>
13916         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13918         * mono-debug.c
13919         (mono_debug_debugger_version): Bump to 3.
13920         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13921         -> mono_debugger_class_initialized().
13923         * mono-debug-debugger.c
13924         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13926         * class.c
13927         (mono_debugger_start_class_init_func): Removed.
13928         (mono_debugger_class_loaded_methods_func): Added.
13929         (mono_class_setup_methods): Call it here.
13931 2007-11-22  Martin Baulig  <martin@ximian.com>
13933         * mono-debug.c
13934         (mono_debug_add_delegate_trampoline): New public method.
13935         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13937         * mono-debug.h
13938         (MonoSymbolTable): Added `global_data_table'.
13939         (MonoDebuggerTypeKind): Removed.
13941 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13943         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13944         these methods.
13946         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13947         
13948 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13950         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13952 2007-11-20  Martin Baulig  <martin@ximian.com>
13954         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13956         * mono-debug-debugger.c
13957         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13958         (mono_debugger_remove_breakpoint): Likewise.
13959         (mono_debugger_check_breakpoints): Likewise.
13960         (mono_debugger_register_class_init_callback): New public method.
13961         (mono_debugger_remove_class_init_callback): Likewise.
13962         (mono_debugger_add_type): Likewise.
13964         * mono-debug-debugger.h
13965         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13967 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13969         * class.c: more interface implementations needed for the
13970         array enumerator (fixes bug #341112).
13972 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13974         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13975         fix ParamName of ArgumentNullExceptions.
13977 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13979         * reflection.c (mono_reflection_encode_sighelper): Generate the
13980         modopts and modreqs.   I have a useless test that crashes monodis,
13981         but that shows the code working.
13983 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13985         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13986         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13988 2007-11-15  Dick Porter  <dick@ximian.com>
13990         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13991         When joining a thread, it's the thread that's calling Join that
13992         gets WaitSleepJoin state not the target.  Fixes the standalone
13993         test case in bug 334740, and hopefully the whole bug too.
13995 2007-11-15  Dick Porter  <dick@ximian.com>
13997         * process.c: Read file version info from the files pointed at by
13998         process modules, not the current process.  Fixes bug 315969.
14000         Use windows typedef names in some places to fix warnings on the
14001         windows build.
14003 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14005         * image.c, metadata-internals.h: Added a generic_class_cache hash
14006         to MonoImage for looking up generic classes when sharing generics.
14008 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14010         * sgen-gc.c: warning cleanups.
14012 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14014         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14015         inherited properties.
14017 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14019         * object.c, class-internals.h: Added more information to the
14020         runtime generic context.
14022 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14024         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14025         instead of just the target method. Generalize the abstract method handling to
14026         handle any non-static method.
14028         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14029         mono_marshal_get_delegate_invoke () signature change.
14031 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14033         * class.c, class-internals.h: Made
14034         mono_type_get_basic_type_from_generic () public.  Fixed member
14035         access check for shared generics.
14037         * loader.c: Don't insert field into field cache if it's part of a
14038         non-inflated generic class.
14040         * domain.c, domain-internals.h: The generic sharing context is now
14041         part of the jit info data structure.  Added two accessor
14042         functions.
14044 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14046         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14047         the array Get/Set/Address methods, since the JIT inlines them.
14049         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14051         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14052         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14054         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14055         mono_marshal_get_delegate_invoke signature change.
14057         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14058         an additional argument. Add support for invoking abstract methods.
14060         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14062         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14064 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14066         * class.c: Do field layout for open generic classes as well.
14068 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14070         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14071         other objects, because the threadpool is still around.  Put them
14072         in a list instead and after finalizing all other objects in the
14073         root domain shut down the thread pool and then finalize the
14074         threads.  Fixes bug #337383.
14076         * threads.c, thread-types.h: New mono_thread_create_internal()
14077         function for marking a thread with the threadpool flag before it
14078         started.  Set synch_cs to NULL after freeing it.
14080         * threadpool.c: Mark threadpool threads before they start.
14082 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14084         * reflection.h, reflection.c: don't export random functions
14085         and lazy load dbnull and missing objects.
14087 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14089         * class.c: Initialize COM types if COM interfaces
14090         are present (not just COM classes).
14091         
14092         Code is contributed under MIT/X11 license.
14094 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14095         * reflection.c:
14096         create_dynamic_mono_image: hook module profiler events (dynamic case).
14097         mono_image_basic_init: hook assembly profiler events (dynamic case).
14099 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14100         * profiler.c:
14101         simple_appdomain_unload: completely terminate the profiler
14102         instead of only processing the statistical samples.
14103         simple_shutdown: make sure this is really called exactly once,
14104         even in multithreaded applications, and always listen to
14105         appdomain events.
14106         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14107         here, the "[un]load" functions will do it.
14108         Fixes bugs #333791 and #325261.
14110 2007-11-07  Geoff Norton  <gnorton@novell.com>
14112         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14113         rather than depend on __APPLE__.
14115 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14117         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14119 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14121         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14122         UTF16 MonoString. Fix the crash from bug #335488
14124 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14126         * marshal.c: Correct (for non-Win32 OS) length != size in 
14127         mono_string_from_bstr. Fix #339530.
14129 2007-11-06  Geoff Norton  <gnorton@novell.com>
14131         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14132         to succeed
14134 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14136         * process.c: Added run-time GetProcessId API detection for Windows.
14138 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14140         * reflection.c  (mono_param_get_objects): If a parameter has the
14141         attribute [System.Runtime.InteropServices.Optional] we should
14142         set the DefaultValue of the ParameterInfo to be
14143         System.Reflection.Missing instead of DBNull.
14145         See bug #339013.
14147         (mono_get_reflection_missing_object): New method,
14148         returns the System.Reflection.Missing.Value singleton instance.
14150 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14152         * culture-info-table.h : regenerated.
14154 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14156         * icall.c: Use GetEnvironmentStrings on windows
14157         so we are using the same environment block as 
14158         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14159         #333740.
14160         
14161         Code is contributed under MIT/X11 license.
14163 2007-10-31  Martin Baulig  <martin@ximian.com>
14165         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14167         * mono-debug-debugger.h
14168         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14170 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14172         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14173         classes.
14175 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14177         * culture-info-table.h : regenerated.
14179 2007-10-30  Robert Jordan  <robertj@gmx.net>
14181         * icall-def.h, icall.c:
14182         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14184         Code is contributed under MIT/X11 license.
14186 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14188         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14189         inflated class instead of inflating them again.
14190         
14191         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14192         dynamic case.
14194         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14195         Call setup_supertypes () after klass->parent is set.
14196         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14198         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14199         for inflated instances of not yet created dynamic generic classes.
14200         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14201         times from inflated_method.
14202         (methodbuilder_to_mono_method): Ditto.
14204 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14206         * gc.c: code cleanup and removed old untested option of not creating the
14207         finalizer thread.
14209 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14211         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14212         creating a jump trampoline for dynamic methods.
14214 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14216         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14217         generic TypeBuilders when called from another method of the same type (bug #335131).
14220 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14222         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14223         doesn't seem to work perfectly.
14224         
14225         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14226         called multiple times.
14227         (methodbuilder_to_mono_method): Ditto.
14228         (resolve_object): Inflate FieldBuilder's.
14230 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14232         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14233         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14234         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14236 2007-10-26  Dick Porter  <dick@ximian.com>
14238         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14239         Thread initialisation changes
14241 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14243         * verify.c: fix compatibility check between arrays and System.Array
14245 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14247         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14248         too. Fixes #336999.
14250 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14252         * object.c (mono_value_box): Use typed allocation here.
14254 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14256         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14257         trampoline instead of compiling the method right away.
14259         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14261 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14263         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14264         related fields for dynamic classes. Fixes #334493.
14266 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14268         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14269         
14270         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14272         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14273         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14275         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14277         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14278         if needed.
14279         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14281 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14283         * marshal.c: Use correct key when removing item
14284         from ccw_hash.
14285         
14286         Code is contributed under MIT/X11 license.
14288 2007-10-17  William Holmes  <billholmes54@gmail.com>
14290         *marshal.c: Adding a case to marshal booleans to U1
14292         Code is contributed under MIT/X11 license.
14294 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14296         * class.c (mono_class_from_name): Search the modules compromising dynamic
14297         assemblies. Fixes #331601.
14299 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14301         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14302         exception if the type name contains an assembly component. Fixes #334203.
14304         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14305         modules inside dynamic assemblies. Fixes #334200.
14306         
14307         * reflection.c: Set image->public_key and image->public_key_length;
14309         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14310         fields.
14312         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14313         
14314 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14316         * metadata.c: Implemented correct comparing of generic classes.
14317         An inflated generic class can be equal to a non-inflated one if it
14318         is inflated with generic type variables as type arguments.  Fixes
14319         bug #333798.
14321 2007-10-15  Dick Porter  <dick@ximian.com>
14323         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14324         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14325         81646.
14327         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14328         instead of a monitor lock.  This means that monitor_try_enter and
14329         co can set the thread state safely.
14330         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14331         thread_interrupt_requested, so interrupt actually works.
14333         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14334         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14335         state accessor function
14337 2007-10-15  Martin Baulig  <martin@ximian.com>
14339         * mono-debug.h
14340         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14341         the debugger with the current runtime.
14343 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14345         * object.c, object-internals.h: added the ability to set a single
14346         trampoline for all the slots in a vtable.
14348 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14350         * marshal.c: deal with a possible race condition during multicast
14351         delegate invocation.
14353 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14355         * class.c: ensure value type methods don't have the synchronized
14356         flag set.
14358 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14360         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14361         breaks the build.
14363 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14365         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14366         to take an options parameter so that empty entries can be removed during
14367         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14369 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14371         * marshal.c: make sure we don't store the signature from a dynamic
14372         method into the runtime invoke cache (bug #327189).
14374 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14376         * marshal.c: make sure the wrapper methods are properly initialized.
14378 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14380         * metadata.c, metadata-internals.h: Generalized
14381         mono_type_stack_size() to mono_type_stack_size_internal() which
14382         takes an additional argument specifying whether it allows open
14383         types.
14385 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14387         * verify.c (do_invoke_method): handle typedbyref params
14388         correctly and check for unverifiable return values.
14390         * verify.c (do_newobj): fix a warning.
14392 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14394         * verify.c: don't tread typedbyref as allways unverifable,
14395         so uses, like (ld/st)loc.0 are valid. verify for the cases
14396         that it matters, like boxing related operations.
14398 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14400         * verify.c: add verification of the newobj opcode. verification
14401         of delegate instantation still missing due ldftn and virldftn not
14402         pushing the function type on stack
14404 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14406         * class-internals.h: Runtime generic context data structure
14407         definition.
14409         * object.c: Initialization of runtime generic context at runtime
14410         vtable creation time.
14412 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14413         * class.c (mono_class_create_from_typedef,
14414         mono_class_from_generic_parameter, mono_ptr_class_get,
14415         mono_fnptr_class_get, mono_bounded_array_class_get)
14416         * domain.c (mono_domain_create, mono_domain_free)
14417         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14418         * image.c (do_mono_image_load, mono_image_close):
14419         Hooked up load-unload profiler events.
14421 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14423         * domain.c: track statistics about the actual amount of native code
14424         allocated.
14426 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14428         * class.c: the valuetype enumerators don't have the additional
14429         supertypes interfaces.
14431 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14433         * class.c: need more interfaces setup for the IEnumerator<T>
14434         object created for arrays (tests/ienumerator-interfaces.2.cs).
14436 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14438         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14440 2007-10-05  Alp Toker  <alp@atoker.com>
14442         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14443         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14444         #315863.
14446 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14448         * verify.c (verify_type_compatibility_full): verification of
14449         compatibility improved, validates correctly non-strict checks between
14450         native int and I4 types different than (unsigned)int32.
14452         * verify.c (do_store_indirect): added, do all verification of
14453         ldind.X opcodes. 
14455         * verify.c (get_load_indirect_mono_type): renamed to
14456         get_indirect_op_mono_type, as it now returns the MonoType for 
14457         ldind.X and stind.X opcodes.
14459 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14461         * reflection.c: Fix the encoding of generic type definition for
14462         TypeBuilders.
14464         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14465         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14466         be made. Typespec check is done prior to typeref cache lookup.
14468         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14469         mono_image_typedef_or_ref_full.
14471         * reflection.c (encode_generic_class): encode the generic class
14472         directly instead of calling encode_type.
14474         * reflection.c (encode_type): encode the generic type definition
14475         MonoClass as a generic instantiation.
14477         * reflection.c (create_typespec): cache typespec tokens in
14478         the assembly->typespec cache. Don't create typespec for a generic
14479         instance MonoClass. Create typespec for the generic type defintion.
14481         * reflection.c (create_generic_typespec): encode the generic
14482         class directly instead of calling encode_type.
14484         * reflection.c (mono_image_create_token): encode the generic
14485         type definition not using a typespec for MonoType instances.
14488 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14490         Fix #328812
14491         * class.c (mono_image_init_name_cache): Don't return nested
14492         'protected internal' classes.
14493         (mono_class_from_name_case): Likewise.
14495 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14497         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14498           common function used by both DefaultConfig in System.dll and
14499           InternalConfigurationHost in System.Configuration.dll.
14501 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14503         * class.c: automatically add to vectors only a few essential explicit
14504         generic interfaces. The rest of the interfaces that arrays should
14505         provide are currently implicitly added (but still not lazily, see the
14506         design in the discussion of bug#325495 for the details of what is
14507         needed for that). Additionally, implicit interfaces are assigned the
14508         same vtable slot as the explicit interfaces (as they are compatible):
14509         this enables huge memory savings since we don't need to instantiate
14510         as many memthods and as large vtables anymore. Also, Since
14511         GetEnumerator<T> returns an instance of a type that is required to
14512         support a similarly large set of interfaces as arrays, we add
14513         implicit interfaces and interface offset sharing support to those
14514         types, too. This change adds all the required interfaces so that
14515         the anonarray.cs test case in the bug report works (we don't add
14516         all the interfaces to arrays of arrays 3-level deep and more because
14517         of the memory requirements explained in the bug and since they are much
14518         less common: the lazy-loading support will enabled them to work, too).
14520 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14522         * verify.c (merge_stacks): major clean up, all type compatibility
14523         checks are done by verify_type_compatibility. This fix my earlier lack
14524         of understanding of the CLR type system and merge_stacks no longer looks
14525         scary.
14527         * verify.c: fixed some bad spelling.
14529 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14531         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14532         a given stack slock.
14533         
14534         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14535         verify_type_compatibility_full. This removed a near indentical function and fixed
14536         handling of Int32 and IntPtr across all opcodes.
14538 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14540         * class.c: only vectors have the additional generic interfaces.
14542 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14544         * mono-config.c: Use g_strcasecmp instead of
14545         strcasecmp like everywhere else to fix
14546         compilation with MSVC.
14547         
14548         Code is contributed under MIT/X11 license.
14550 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14552         * object.c, object-internals.h: refactored the IMT code to enable
14553         building a single slot at a time and lazily creating the IMT trampolines
14554         and thunks.
14556 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14558         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14560         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14561         Fixes #328501.
14562         
14563 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14565         * loader.c (method_from_methodspec): Rearrange to avoid
14566         un-necessary exposition.  Don't assert out if the method's
14567         declaring type is a generic type definition.
14569 2007-09-28  Martin Baulig  <martin@ximian.com>
14571         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14573 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14575         * class-internals.h: optimize field layout of MonoClass to
14576         requires less cachelines at runtime and save a few bytes on 64 bit
14577         systems.
14579 2007-09-28  Jb Evain  <jbevain@novell.com>
14581         * reflection.c: when encoding type names in custom attributes,
14582         if the type is a closed generic type, its generic arguments
14583         have to be serialized as AssemblyQualifiedName, so that when
14584         they are deserialized, it's possible to re-create them properly.
14585         Fixes #329450.
14588 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14590         * object.c, class-internals.h: added delegate-creation counter.
14592 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14594         * class.c: cleanup of the code that synthetizes interfaces for
14595         arrays in 2.0: saves quit a bit of corlib mempool memory.
14596         Code to fix bug #325495 ifdeffed out for now until the issues
14597         with memory usage and O(n^2) behaviour are fixed.
14599 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14601         * marshal.c: when possible, do not duplicate the name of the methods
14602         in the method builder and in the generated MonoMethod.
14604 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14605         * verify.c: added support for type checking ldind_* opcodes.
14607 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14609         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14610         which is used to distinguish the fully open instantiation of a TypeBuilder
14611         with the rest. This temporary hack is required to restore the property that
14612         the fully open instantiation is the same type of the generic type definition.
14614         * class-internals.h (mono_generic_class_is_generic_type_definition):
14615         new function as part of the internal API.
14617         * class.c (inflate_generic_type): return NULL when the generic inst is
14618         fully open. The fully open generic type is now the same as the generic type
14619         definition for non TypeBuilder types.
14621         * class.c (mono_generic_class_get_class): removed assert since it is
14622         no longer valid, gklass->cached_class can point to the generic type definition.
14624         * class.c (mono_generic_class_is_generic_type_definition): new.
14626         * metadata.c (mono_generic_class_hash): added is_tb_open field
14627         to the hash calculation.
14629         * metadata.c (free_generic_class): if the generic class is associated
14630         with the generic type definition, its field will come from the mempool and
14631         must not be freed.
14633         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14634         new, this function identifies the corner case of a TypeBuilder fully open
14635         instantiation.
14637         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14638         for lookup. Set gclass->cached_class to be the container class in case of
14639         the fully open instantiation of non TypeBuilder types.
14641         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14642         to compare generic classes.
14644         * reflection.c (method_encode_methodspec): remove assert that
14645         no longer is valid.
14647         * reflection.c (mono_reflection_generic_class_initialize): add
14648         an aditional assert to ensure the proper type is used.
14650 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14652         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14653         to enjoy it.
14655 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14657         * verify.c (push_arg): Fixed support for ldarga
14658         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14659         MonoType used as first arg in case of instance calls.
14661 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14663         * verify.c: Support for verifying VAR and MVAR types, 
14665 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14667         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14668         accessors correctly.
14670 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14672         * threads.c: support OSX and other systems in
14673         mono_thread_get_stack_bounds (bug #328026).
14675 2007-09-25  Martin Baulig  <martin@ximian.com>
14677         * mono-debug.h
14678         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14680 2007-09-24  Martin Baulig  <martin@ximian.com>
14682         * mono-debug.h
14683         (MonoDebugClassEntry): Moved the definition of this struct into
14684         mono-debug.c to make it private.
14686         * mono-debug.c
14687         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14688         type table per symbol file, we don't need to store the symfile id
14689         any longer.
14691 2007-09-24  Martin Baulig  <martin@ximian.com>
14693         Create one type table per symbol file, since a `MonoClass *' gets
14694         invalid when its image is unloaded.
14696         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14697         (MonoDebugHandle): Added `type_table'.
14699 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14701         * mempool.c, mempool.h: added mono_mempool_new_size () API
14702         to be able to specify a smaller initial size for the pool.
14703         Adjusted the code to slowly increase pool size before using
14704         the previous default size.
14705         * image.c: use a small initial size for image mempools.
14707 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14709         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14710         Fixes ##320990.
14712         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14713         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14715 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14717         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14718         free. Fixes #327438.
14720 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14722         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14723         generic instantiations, etc.
14724         <MONO_TYPE_ARRAY>: Likewise.
14726 2007-09-21  Martin Baulig  <martin@ximian.com>
14728         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14729         these structs were never defined.
14730         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14732 2007-09-21  Martin Baulig  <martin@ximian.com>
14734         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14736 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14738         * image.c: removed the guid hash tables: we can get the same info
14739         without the additional memory usage hit (partially fixes also bug #327052).
14741 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14743         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14744         event to handle unloading methods. After the event is called, the
14745         corresponding MonoMethod* must be considered invalid.
14746         * loader.c (mono_free_method): call the new mono_profiler_method_free
14747         event.
14749 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14751         * domain-internals.h: New flag in MonoJitInfo which marks shared
14752         generic methods.  New hash table (shared_generics_hash) in
14753         MonoDomain to keep track of shared generic methods.  Prototypes
14754         for functions to register and lookup shared generic methods.
14756         * domain.c: Support for registering and looking up shared generic
14757         methods via a hash table (shared_generics_hash) in MonoDomain.
14759         * class-internals.h: New exception to signal failure of shared
14760         compilation of a generic method.  New counters for generics
14761         sharing in MonoStats.
14763 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14765         * image.c, metadata-internals.h: don't keep a file descriptor open
14766         for loaded assemblies (bug#325988).
14768 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14770         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14771         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14772         use the corresponding datatypes.
14773         (type_in_image): Update to changes.
14774         (CleanForImageUserData): Simplify.
14775         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14776         Avoid quadratic behaviour in handling the "stolen" list by
14777         separating the filter predicate out, and by prepending the stolen
14778         items rather than appending them.
14779         (steal_ginst_in_image): Likewise.
14780         (mono_metadata_clean_for_image): Update to changes.
14782 2007-09-19  Martin Baulig  <martin@ximian.com>
14784         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14786 2007-09-19  Martin Baulig  <martin@ximian.com>
14788         * mono-debug.c (mono_debug_cleanup): Don't call
14789         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14791 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14793         Fix crash on 'make run-test' in mcs/errors
14794         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14795         Avoid more potential allocations in mono_class_from_mono_type.
14796         (ginst_in_image): Update to changes.
14797         (gclass_in_image): Rearrange slightly.
14799 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14801         * class.c (mono_class_init): Move the code that sets up class->methods to 
14802         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14804         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14805         canonical instance of an inflated generic signature.
14806         (mono_type_create_from_typespec): Remove an invalid free.
14808         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14810 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14812         * domain-internals.h: added a declaration of the
14813         mono_assembly_load_full_nosearch internal function.
14815         * assembly.c (mono_assembly_load_with_partial_name): use
14816         mono_try_assembly_resolve return value properly.
14817         (mono_assembly_load_full_nosearch): copied the function body from
14818         mono_assembly_load_full, without the code to invoke assembly
14819         search hooks.
14820         (mono_assembly_load_full): calls the above new function and if the
14821         assembly is not resolved, invokes the search hooks.
14823         * appdomain.c (mono_runtime_init): restore the global postload
14824         assembly search handlers.
14826 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14828         * class.c (mono_class_init): Make sure class->methods and class->properties
14829         are never NULL in the generics case.
14831         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14833 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14835         * metadata.c (free_generic_class): Disable some code to fix the build.
14837         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14839         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14840         from the image mempool.
14842         * metadata.c (free_generic_class): Free more data from the inflated class.
14844         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14846         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14847         mempool.
14848         (mono_type_create_from_typespec): Ditto.
14850         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14851         MonoImage to the caller.
14852         (mono_init_internal): Save the opened image in a global variable.
14853         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14855         * reflection.c (resolve_object): Fix a leak.
14857         * metadata.c: Fix the freeing of data in the generics caches.
14858         
14859         * metadata.c (free_generic_inst): Comment this out to fix the build.
14860         (free_generic_class): Ditto.
14862         * metadata.c: Free cached generic methods, instantinations and classes when
14863         they are removed from the caches.
14864         (mono_metadata_free_type): Free the type itself.
14866         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14867         places.
14869 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14871         * boehm-gc.c: restrict managed allocs to __thread supporting
14872         architectures.
14874 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14876         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14877         (mono_generic_class_get_class): Fix a leak.
14879         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14880         mono_metadata_free_type ().
14881         (mono_metadata_inflate_generic_inst): Fix a leak.
14883 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14885         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14887         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14888         mempool.
14890         * mono-debug.c (mono_debug_close_image): Fix call to 
14891         g_hash_table_remove ().
14893 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14895         * icall-def.h: redirect all the string ctor to the managed
14896         CreateString () methods.
14897         * string-icalls.c, string-icalls.h: removed dead code for string
14898         ctors and icalls.
14900 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14902         * mono-debug.c: Fix memory leaks.
14904 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14906         * threads-types.h: Implement mono_hazard_pointer_set and 
14907         mono_hazard_pointer_clear macros using do/while(0) to fix
14908         compilation with MSVC.
14909         
14910         Code is contributed under MIT/X11 license.
14912 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14914         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14915         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14917 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14919         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14920         icalls.
14922 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14924         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14925         managed-code allocated as well.
14927 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14929         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14931 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14933         * boehm-gc.c: fixed the build after the AOT changes.
14935 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14937         * wrapper-types.h: Add an ALLOC wrapper type.
14939         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14940         reference managed allocator methods.
14942 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14944         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14945         of Type array and not MonoType, a fix suggested by Hari.
14946         
14947 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14949         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14950         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14951         
14952         Code is contributed under MIT/X11 license.
14954 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14956         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14958 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14960         * image.c (do_mono_image_open): if assembly file fails to open and
14961         MONO_IOMAP is in effect, try to find the path in a
14962         case-insensitive way.
14964         * appdomain.c (mono_runtime_init): do not install postload hooks -
14965         tests show that MS.NET doesn't use anything of that sort to
14966         trigger the AppDomain.AssemblyResolve event.
14967         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14968         made non-static.
14969         (mono_runtime_init): init portability helpers here.
14971         * assembly.c (mono_assembly_load_with_partial_name): if other   
14972         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14973         to resolve the assembly.
14975         * domain-internals.h: added mono_try_assembly_resolve and marked
14976         it as internal.
14978 2007-09-11  Jb Evain  <jbevain@novell.com>
14980         * object-internals.h (MonoReflectionDynamicMethod): add
14981         a `MonoReflectionType *owner` field. The owner is used
14982         * reflection.c:
14983         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14984         method as the class declaring the dynamic method.
14985         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14986         dynamic method to the declaring type of the methodbuilder.
14988 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14990         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14991         rules for calling methods via reflection.
14993 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14995         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14996         Inflate MonoType's.
14998 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15000         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15001         provide a managed method that does fast allocations without needing
15002         a managed->unmanaged transition. Boehm GC implementation currently
15003         enabled for ptrfree objects on sane architectures.
15005 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15007         * marshal.c, marshal.h: exported a couple of useful functions and
15008         added mono_mb_get_label () to easily handle backward branches.
15010 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15012         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15014 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15016         * loader.c (find_method): Fixed the regression introduced while
15017         fixing bug #81466.
15019 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15021         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15022         well.
15023         
15024         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15025         icall.c reflection.c: Pass a MonoGenericContext argument to 
15026         mono_lookup_dynamic_token ().
15028         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15029         #82744.
15030         
15031 2007-09-09  Robert Jordan  <robertj@gmx.net>
15033         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15034         for generic methods.
15036         * object.c (mono_object_get_virtual_method): Handle generic methods.
15037         Fixes bug #78882.
15039         Code is contributed under MIT/X11 license.
15041 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15043         * image.c: fix locking in mono_image_load_file_for_image ().
15045 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15047         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15048         used only as a cache: added an icall to fill it.
15050 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15052         * reflection.h: exposed mono_reflection_free_type_info
15053         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15054         since mono_reflection_bind_generic_parameters makes a copy of it.
15055         * reflection.c (free_type_info): subinfos should be freed.
15056         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15057         made non static.
15058         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15059         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15060         this fixes #82695 and #81726.
15061    
15063 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15065         * process.h, process.c:  added support for user profile/info in
15066           ProcessStartInfo. For now only Windows works.
15068 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15070         * metadata.c: consider the generic arguments when comparing
15071         signatures (bug #82614).
15073 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15075         * cil-coff.h, image.c: updated assembly loader to cope with the
15076         PE32+ 64 bit file format.
15078 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15080         * assembly.c, class.c, domain.c, loader.c: remove useless
15081         inclusion of cil-coff.h.
15083 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15085         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15086         if interface is marked with CoClassAttribute. 
15087    
15088         Code is contributed under MIT/X11 license.
15090 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15092         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15093         if it's seen twice in major collections.
15095 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15097         * sgen-gc.c: big objects are not copied to the gray area, but they
15098         need to be considered for scanning, too, if they are brought alive
15099         by an object ready for finalizations or a survived one.
15101 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15103         * sgen-gc.c: properly account the number of disappearing links when
15104         they are nullified.
15106 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15108         * sgen-gc.c: share the code to scan the registered roots between the
15109         different types of collections.
15111 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15113         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15115 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15117         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15118         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15120 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15122         * security-manager.c (mono_security_manager_get_methods):
15123         LinkDemandSecurityException now has 2 arguments instead of 3.
15125 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15127         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15128         platforms which need it.
15130 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15132         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15133         dtor.
15135 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15137         * threads.c: free the thread static data on thread exit.
15139 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15141         * class.c: walk the hierarchy to find the generic definition for
15142         a class (fixes runtime part of bug #82498).
15144 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15146         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15147         ...
15149         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15151 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15153         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15155 2007-08-24  Robert Jordan  <robertj@gmx.net>
15157         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15159 2007-08-24  Jb Evain  <jbevain@novell.com>
15161         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15162         for byref types.
15164 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15166         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15167         #82286.
15169 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15171         * assembly.c: Fix a warning.
15172         
15173 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15175         * appdomain.c: parse the <runtime> section looking for the probing
15176         element with the 'privatePath' attribute, which sets additional
15177         directories in which the runtime should look for assemblies.
15179 2007-08-23  Robert Jordan  <robertj@gmx.net>
15181         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15182         Fixes #82499.
15184 2007-08-23  Martin Baulig  <martin@ximian.com>
15186         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15187         _mono_debug_init_corlib() and remove it from the header file.
15189 2007-08-23  Martin Baulig  <martin@ximian.com>
15191         * mono-debug-debugger.c
15192         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15193         don't notify the debugger about it.
15195         * mono-debug-debugger.h
15196         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15198 2007-08-23  Robert Jordan  <robertj@gmx.net>
15200         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15201         Code is contributed under MIT/X11 license.
15203 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15205         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15207 2007-08-22  Martin Baulig  <martin@ximian.com>
15209         * mono-debug.c: Store debugging info on a per-domain basis and
15210         free it on domain unload.  Add support for unloading symbol files.
15212         * mono-debug.h
15213         (MonoDebugList): New typedef.
15214         (MonoSymbolTable):
15215         - add `data_tables and `type_table'.
15216         - replace 'symbol_files' and `num_symbol_files' with a
15217           `MonoDebugList *'.
15218         (mono_debug_data_table): Removed.
15219         (mono_debug_list_add): New public function.
15220         (mono_debug_list_remove): New public function.
15221         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15222         (mono_debug_init_2_memory): Renamed into
15223         mono_debug_open_image_from_memory().
15224         (mono_debug_close_image): New public function.
15225         (mono_debug_domain_create): Likewise.
15226         (mono_debug_domain_unload): Likewise.
15227         (MONO_DEBUGGER_VERSION): Bump to 60.
15229         * mono-debug-debugger.h
15230         (MonoDebuggerEvent):
15231         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15232         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15233         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15234         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15235           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15236         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15237           meaning.
15238         (mono_debugger_add_symbol_file): Removed.
15239         (mono_debugger_add_type): Removed.
15240         (mono_debugger_lookup_type): Removed.
15241         (mono_debugger_lookup_assembly): Removed.
15243         * domain.c
15244         (mono_domain_create): Call mono_debug_domain_create().
15245         (mono_init_internal): Call mono_debug_init_corlib().
15247         * assembly.c
15248         (mono_assembly_close): Call mono_debug_close_image().
15250 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15252         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15253         mmap call.
15255 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15257         * sgen-gc.c: ensure section->pin_queue_end is initialized
15258         correctly when non pinning objects in the section have been found.
15260 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15262         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15263         containing a list of directories separated by ':'. MSDN docs say
15264         the directories should be separated with ';'. Part of a bugfix for
15265         bug #81446
15267 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15269         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15270         it should MonoType and not MonoClass.
15272 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15274         * culture-info-table.h : regenerated.
15276 2007-08-20  William Holmes  <billholmes54@gmail.com>
15278         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15279          to call ReplaceFile Kernel32 on windows or in io-layer.
15280         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15281         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15282          as an internal call.
15284         Code is contributed under MIT/X11 license.
15286 2007-08-20  Jb Evain  <jbevain@novell.com>
15288         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15289         and MONO_EXCEPTION_FIELD_ACCESS.
15291         * debug-helpers.[c|h]: new mono_field_full_name function.
15293 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15295         * class.c: Removed class_security_level() and moved it to
15296         security-core-clr.c.
15298         * security-core-clr.c, security-core-clr.h: class_security_level()
15299         is now public and renamed to mono_security_core_clr_class_level().
15300         It also looks for security attributes in the classes a class is
15301         nested in.
15303 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15305         * security-core-clr.c, security-core-clr.h: CoreCLR security
15306         utility functions.
15308         * Makefile.am: Added security-core-clr.[ch].
15310         * security-manager.c, security-manager.h: Functions and enum for
15311         setting and getting the security mode.
15313         * class.c: CoreCLR security checks.
15315 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15317         * icall-def.h, process.c, process.h: implemented icall to get
15318         user/system processor times.
15320 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15322         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15323         reader-lock-free jit_info_table.
15325 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15327         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15329         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15331         * object-internals.h (MonoException): Add missing _data member.
15333 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15335         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15336         checking that only methods with matching qname or fqname are picked
15337         from implemented interfaces.
15339 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15341         * verify.c (do_newarr):added, do type verification of
15342         newarr ops, push the right value on the eval stack.
15343         * verify.c (mono_method_verify): use do_newarr
15346 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15348         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15349         factored the common code into get_boxable_mono_type, which
15350         is now using mono_type_get_full, this fixed byref related tests.
15352 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15354         * class.c: added mono_type_get_full, this function has the same
15355         behavior of mono_class_get_full but the returned MonoType has
15356         all metadata of the associated token in case of a typespec token.
15357         * class.c: added mono_type_retrieve_from_typespec, used by 
15358         mono_type_get_full to retrieve the token type.
15359         * class.c (mono_class_create_from_typespec): changed to use
15360         mono_type_retrieve_from_typespec.
15361         * class.c (mono_ldtoken): changed to use mono_type_get_full
15362         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15363         * class-internals.h: exported mono_type_get_full for internal use.
15365 2007-08-16  Jb Evain  <jbevain@novell.com>
15367         * domain.c (supported_runtimes): add entry for
15368         the 'moonlight' runtime version.
15370 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15372         * verify.c (mono_method_verify): small typo sliped in.  
15374 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15376         * verify.c (do_unbox_value): added, do type verification of
15377         unboxing ops
15378         * verify.c (mono_method_verify): use do_unbox_value
15381 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15383         * verify.c (dump_stack_value): fixed typo, was printing string
15384         instead of object on stack.
15385         * verify.c (do_box_value): moved the byref check up as it leads
15386         to invalid code and should be done earlier.
15387         * verify.c: improved error messages for and ldobj
15389 2007-08-15  William Holmes  <billholmes54@gmail.com>
15391         * marshal.c (emit_marshal_custom): Omit the call to 
15392           marshal_native_to_managed when calling native to managed 
15393           and the argument is specified as an out argument.
15395         Code is contributed under MIT/X11 license.
15397 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15399         * verify.c: fixed the type checks for generics, function pointers and vectors.
15400         Added type verification for ldobj and ldtoken. The verifier
15401         would segfault if header or signature of a method contained references
15402         to non-existant types.
15404 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15406         * marshal.c (cominterop_get_ccw): Patch from
15407         Bill Holmes to no walk up interface hierarchy. 
15408         All parent methods should be present in the interface for COM.
15409    
15410         Code is contributed under MIT/X11 license.
15412 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15414         * marshal.c (emit_marshal_com_interface): Patch from
15415         Bill Holmes to handle COM Interfaces as return values
15416         for native->managed calls.
15417    
15418         Code is contributed under MIT/X11 license.
15420 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15422         * marshal.c (cominterop_get_idispatch_for_object): Implement
15423         for runtime callable wrappers.
15424    
15425         Code is contributed under MIT/X11 license.
15427 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15429         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15430         so 2.0 types are accessible
15433 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15435         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15436         once we load mscorlib.   Due to the order in which we initialize,
15437         the mono_assembly_load_full routine that loads mscorlib did not
15438         load friends.   We now load it once we load the
15439         mono_defaults.internals_visible_class class. 
15441         * assembly.c: Expose the mono_load_friend_assemblies method.
15443 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15445         * verify.c: improved the handling of boxing, better
15446         type checking for unary ops and conversion. Fix bug
15447         regarding managed pointer compatibility checking
15449 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15451         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15453         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15455 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15457         * reflection.c (dup_type): Remove.
15458         * class.c (dup_type): Remove.
15459         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15460         instead of the dodgy 'dup_type'.
15461         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15462         handle the case where 'dup_type' needed the second argument.
15464 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15466         * domain.c: Fix a warning.
15468 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15470         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15471         checking that methods with the same fqname are not overridden
15472         with a method from an ancestor.
15474 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15476         * threads.c (free_thread_static_data_helper): Avoid a crash if
15477         thread->static_data is not yet set.
15479 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15481         * marshal.c: Use correct image when emitting
15482         native wrapper for COM calls.
15483    
15484         Code is contributed under MIT/X11 license.
15486 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15488         * icall-def.h, security.c, security.h :
15489           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15491 2007-08-07  Martin Baulig  <martin@ximian.com>
15493         * mono-debug-debugger.h
15494         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15496         * domain.c (mono_domain_free): Call
15497         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15499 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15501         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15502         * verify.c (in_same_block): code should test if either offset is inside the clauses
15503         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15504         and filter blocks
15506 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15508         * image.c (mono_image_close): Fix a leak.
15510         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15512         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15514 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15516         * domain.c, threads.c, threads-types.h: fix memory retention issue
15517         with thread static variables not being cleared on domain unload.
15518         Reuse thread static slots after domain unload.
15520 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15522         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15523         nullable type.
15525         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15526         now done in mono_runtime_invoke_array.
15528         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15529         receiver is a nullable type.
15531         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15532         generic parameter.
15534 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15536         * marshal.c: Implement COM Objects as return type for 
15537         managed->unmanaged calls. Added Release calls for COM Object
15538         out/return values in managed->unmanaged calls.
15540         Code is contributed under MIT/X11 license.
15542 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15544         * threads.h, threads-type.h: move the hazard pointer declarations
15545         to the private header.
15547 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15549         * file-io.c, appdomain.c: memory leak fixes.
15551 2007-08-02  Dick Porter  <dick@ximian.com>
15553         * socket-io.c
15554         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15555         SO_REUSEADDR setting into io-layer/sockets.c.
15557 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15559         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15560         from Object when called on a generic parameter. Fixes #82211.
15562 2007-08-01  Dick Porter  <dick@ximian.com>
15564         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15565         Fixes bug 79250 yet again.
15567 2007-07-30  Martin Baulig  <martin@ximian.com>
15569         Merged the `debugger-dublin' branch.
15571         * mono-debug.h
15572         (MonoDebugDataTable): New typedef.
15573         (MonoDebugMethodAddressList): New typedef.
15574         (MonoDebugWrapperData): Removed.
15575         (MonoDebugSymbolTable): Removed `current_data_table',
15576         `current_data_table_size', `current_data_table_offset'.
15577         (MonoDebugDataItemType): Moved into mono-debug.c.
15578         (MonoDebugMethodJitInfo): Remove `address'.
15579         (mono_debug_data_table): New global variable.
15580         (mono_debug_lookup_method_addresses): New public function.
15581         (mono_debug_find_method): Take a `MonoMethod *', not a
15582         `MonoDebugMethodInfo *'.
15584         * mono-debug.c: Drop support for the old symbol tables.
15586 2007-06-28  Martin Baulig  <martin@ximian.com>
15588         * mono-debug.c (mono_debug_debugger_version): New public variable.
15590 2007-07-31  William Holmes  <billholmes54@gmail.com>
15592         * metadata.c Changed mono_type_create_from_typespec to not insert
15593           the type into the hash map until after
15594           do_mono_metadata_parse_type has completed.
15595         Fixes Bug #82194
15596         Code is contributed under MIT/X11 license.
15598 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15600         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15601         generic parameter. Fixes #82211.
15603 2007-07-27  Jb Evain  <jbevain@novell.com>
15605         * pedump.c (dump_metadata, dump_metadata_header): dump
15606         versions contained in the metadata header.
15608 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15610         * threads.c: register small_id_table with the GC.
15612 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15614         * threads.c, threads.h, class-internals.h, object-internals.h:
15615         Hazard pointers, to be used by lock-free parallel algorithms.
15617 2007-07-26  Dick Porter  <dick@ximian.com>
15619         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15620         routine on non-windows platforms, as I've not managed to think of
15621         a non-kludgy way of doing this.  Finishes off bug 78739.
15623 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15625         * object.c: properly setup interface_bitmap in proxy vtables.
15627 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15629         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15630         to create unique shadow copy target directories, use the domain's
15631         serial number instead. Each domain gets a unique target directory
15632         that way.
15634         * domain.c (mono_domain_create): added code to increment domain
15635         shadow copy serial number and cache the value in the current
15636         domain structure.
15638         * domain-internals.h (struct _MonoDomain): added a new field -
15639         shadow_serial to hold the serial number used in generation of
15640         shadow-copy directories. This is to make sure that the directory
15641         name is unique for each and every domain created. We avoid a race
15642         condition with overriding assemblies already in use by other app
15643         domains.
15645 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15647         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15648         binding generic parameters.
15650 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15652         * metadata.c (do_mono_metadata_parse_generic_class): Use
15653         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15654         error.
15656 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15658         * loader.c, class-internals.h, reflection.c: removed the per-method
15659         generics hashtable: we use the global one through the call of
15660         mono_class_inflate_generic_method ().
15662 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15664         * class.c, metadata.c, class-internals.h: introduce yet another
15665         generics global cache for inflated methods (fixes 98% of the perf
15666         issue in bug #81806).
15668 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15670         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15671         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15672         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15673         return a MonoGenericInst containing (a copy) of those types.
15674         (mono_metadata_inflate_generic_inst): Update to changes.
15675         (mono_metadata_parse_generic_inst): Likewise.
15676         (mono_get_shared_generic_inst): Likewise.
15677         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15678         (mono_reflection_bind_generic_method_parameters): Likewise.
15679         * metadata-internals.h: Likewise.
15680         * icall.c (free_generic_context): Kill.
15681         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15683         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15684         mono_metadata_type_dup.
15685         * marshal.c (mono_mb_create_method): Likewise.
15687         * metadata.c (mono_metadata_type_dup): Rename from
15688         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15689         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15690         * marshal.c, metadata-internals.h: Update to changes.
15692 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15694         * class.c: fixed a small leak for array classes and removed warning.
15696 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15698         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15699         Return 0x8000000 for return parameters. Fixes #82161.
15701 2007-07-21  Marek Habersack  <grendello@gmail.com>
15703         * appdomain.c (get_shadow_assembly_location): append the current
15704         ticks value to the path. Avoids overwriting the same assemblies by
15705         several threads at the same time.
15707 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15708         and Raja R Harinath  <rharinath@novell.com>
15710         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15711         Simplify slightly.
15712         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15713         property for testing if a method is a generic method definition.
15715 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15717         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15719 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15721         * verify.c: used function from private branch, reverted to the one in class.h 
15723 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15725         * verify.c: a typo slipped in and the code wont compile
15727 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15729         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15730         disabled box instruction as it is doing the wrong thing
15731         improved stack dump messages, now it is easier to debug type related issues
15734 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15736         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15738 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15740         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15741         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15742         grouped with class and valuetype. This change will simply 
15743         the code as it should be handled just like unmanaged pointers.
15745 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15747         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15749 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15751         * verify.c: several stack merge issues fixed, reference comparisons now
15752         check the type size. strict type check now works correctly.
15753         added more uses of IS_MANAGED_POINTER macro.
15754         fixed issues pointed by running the test suite against .net.
15755         
15757 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15759         * class.c, loader.c, class-internals.h: Removed the
15760         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15761         defines.
15763         * icall.c: Better error checking in some internal reflection
15764         methods.
15766 2007-07-18  William Holmes  <billholmes54@gmail.com>
15768         * filewatcher.c : removed unused variable 'filename' in 
15769           ves_icall_System_IO_FSW_SupportsFSW
15771 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15773         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15774         obsolete, removed.
15776 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15778         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15779         
15780         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15782 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15784         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15785         Implement generics support.
15786         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15788         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15789         type_args and method_args arguments.
15790         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15791         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15792         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15794 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15796         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15797           It adds a rootimage parameter to mono_reflection_get_type_internal,
15798           adds new function mono_reflection_get_type_with_rootimage and use
15799           the rootimage to resolve the types instead of the current image
15801 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15803         * culture-info-table.h: Forgot to update after r78304.
15805 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15807         * class.c (mono_class_is_open_constructed_type)
15808         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15810 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15812         * class.c (mono_bounded_array_class_get):  method fails if used with
15813         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15814         avoiding calculating the size for such array as it cannot be instantiated.
15815         Fix bug #82015
15817 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15819         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15820         field.
15821         * metadata.c, reflection.c: Update to changes.
15823 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15825         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15826         mono_class_is_valid_enum, they are used to valide a enum when loading.
15827         * reflection.c: used new functions to throw TypeLoadException when and
15828         invalid enum is build with TypeBuilder. Fixes #82018
15829   
15830 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15832         * object.c: forgot commit of mono_class_setup_methods () to access
15833         iface->methods.
15834         * object-internals.h: added a few more handy fields to
15835         MonoIMTCheckItem.
15837 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15839         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15840         iface->methods.
15842 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15844         * class-internals.h, object-internals.h, object.c: IMT-based
15845         interface invocation core from Massimiliano Mantione
15846         (massi@ximian.com) with a reworked arch-specific interface,
15847         bsearch implementation and a few bugfixes and memory savings by me.
15849 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15851         * class.c (mono_class_create_from_typedef): mono would segfault if 
15852         an enum did not have a __value field. It now throws a TypeLoadException
15853         for such cases. Fix bug #82022
15855 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15857         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15859 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15861         * class.c (mono_class_init): If a class is already inited but has
15862         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15864 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15866         * class.c: Properly handle the case of an unimplemented interface
15867         method.  Fixes: 81673.
15869 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15871         * class-internals.h, object.c: cleanup patch from massi: use
15872         MonoVTable->interface_bitmap since the vtable interfaces offset array
15873         is going away.
15875 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15877         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15878         GetMDStreamVersion icall instead.
15880 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15882         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15883         not use mono_dl_build_path() with a full library name: makes
15884         fallbacks to libgaim and libfam work.
15886 2007-07-06  William Holmes  <billholmes54@gmail.com>
15888         * assembly.c: Added a continue statement in probe_for_partial_name when
15889          parse_assembly_directory_name fails.  Fixes : 82002
15891 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15893         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15894         and added a verification  for TYPEDBYREF.
15895         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15896         make native int interchangeable with int32 and some small cleanup and formating.
15897         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15898         handle byref of byref.
15899         * verify.c (push_local): handle byref of byref.
15900         * verify.c (do_binop): invalid mix of values is unverifiable
15901         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15902         added visibility checks
15903         * verify.c (field related method): added visibility checks
15904         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15906 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15908         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15909         string.
15911 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15913         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15915         * marshal.c (emit_marshal_string): When returning a string from managed code,
15916         allways make a copy even for unicode strings. Fixes #81990.
15918 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15920         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15921         of byref generic inst types (bug #81997).
15923 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15925         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15926         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15928 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15930         * marshal.c (emit_marshal_string): Add support for unicode strings in
15931         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15933 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15935         * verify.c: field load/store are now verified, missing only access checks now
15937 2007-06-28  Martin Baulig  <martin@ximian.com>
15939         * mono-debug.c (mono_debug_debugger_version): New public variable.
15941 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15943         * locales.c: When constructing DateTimeFormat or NumberFormat for
15944         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15945         MonoCultureInfo contructed from the current locale is always
15946         read-only and has UseUserOverride set to true. All MonoCultureInfo
15947         instances returned for GetCultures have both IsReadOnly and
15948         UseUserOverride set to true. Fixes part of bug #81930.
15950 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15952        * icall-def.h: Update System.__ComObject icalls
15953        * marshal.c: Avoid managed transition (and object creation)
15954        when looking up COM interface in RCW.
15955        * marshal.h: Ditto.
15956        
15957        Code is contributed under MIT/X11 license.
15959 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15961         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15962         to avoid crashes during assembly unloading.
15964 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15966         Fix MethodInfo.IsGenericMethodDefinition
15967         * reflection.c (mono_reflection_bind_generic_method_parameters):
15968         Rearrange code to ensure we always uses a generic method definition.
15969         * class.c (mono_class_inflate_generic_method_full): Set
15970         'generic_container' field only for generic method definitions.
15971         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15972         Use presense of 'generic_container' field as indication of being a
15973         generic method definition.
15975 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15977         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15979         * object-internals.h: Reflect changes in the layout of the managed Delegate
15980         class.
15981         
15982         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15983         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15984         runtime memory used by the dynamic method. Fixes #77146.
15986 2007-06-21  Dick Porter  <dick@ximian.com>
15988         * file-io.h: 
15989         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15990         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15991         81767.
15993 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15995         * reflection.c (method_encode_methodspec): Add a tripwire.
15996         * class.c (inflate_generic_type): The fully open generic type is
15997         not the same as the generic type definition.
15999 2007-06-21  Martin Baulig  <martin@ximian.com>
16001         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16003         * mono-debug-debugger.h
16004         (MonoDebuggerBreakpointInfo): Removed.
16005         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16006         (mono_debugger_remove_breakpoint): Likewise.
16007         (mono_debugger_breakpoint_callback): Likewise.
16008         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16010 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16012         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16013         generic type is not the same as the generic type definition.
16014         * class.c (mono_generic_class_get_class): Likewise.
16016 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16018         * icall.c: The second argument to 
16019         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16020         is a MonoType not a MonoClass.
16022 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16024         * verify.c: support for function pointers in the verifier
16026 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16028         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16030 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16032         * assembly.c: removed Mono.Data.SqliteClient from the list of
16033         forward-compatible assemblies as it breaks the ABI (bug #81899).
16035 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16037         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16038         lookup/update with the loader lock.
16039         * reflection.c (mono_class_bind_generic_parameters): No need to
16040         protect mono_metadata_lookup_* with the loader lock.
16041         * class.c (inflate_generic_type): Likewise.
16042         
16043         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16044         on a generic instantiated type.
16046 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16048         *verify.c: produce meanfull error messages on verification error
16049         *verify.c: fixed some cases of verification errors reported as validation errors
16050         *pedump.c: fixed the error name array, now it shows validation errors properly
16051         *verify.h: fixed the contant that should be used for verification errors
16053 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16055         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16056         for bug #77596, 81858 and 80743 (generics data structures on domain
16057         unload).
16059 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16061         Avoid allocating 'MonoGenericContext' on the heap.
16062         * class-internals (_MonoMethodInflated::context): Make field
16063         inline, not a pointer.
16064         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16065         stack.  Use the context embedded within the inflated method as the
16066         hash key, rather than 'new_context'.
16067         * class.c (inflate_generic_context): Simplify.  Return a struct
16068         rather than allocating on the heap.
16069         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16070         doesn't salt away a copy of the context -- simplifying the
16071         lifetime rules of a 'MonoGenericContext *'.
16072         (mono_method_get_context): Return pointer to embedded context.
16073         (setup_generic_array_ifaces): Allocate temporary context on stack.
16074         * reflection.c (inflate_mono_method): Likewise.
16075         (mono_reflection_bind_generic_method_parameters): Likewise.
16076         Use the context embedded within the inflated method as the hash key.
16078         Avoid a source of allocation of 'MonoGenericContext'.
16079         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16080         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16081         * class.c: Update to changes.
16082         (mono_generic_class_get_context): Simplify drastically.  Now just
16083         returns a pointer to the field.
16084         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16085         argument as a const pointer.
16086         (mono_metadata_generic_context_equal): Likewise.
16087         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16088         Update to changes.
16090 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16092         * verify.c improved the handling of brtrue/brfalse, factored out common code
16094 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16096         Kill MonoGenericMethod.
16097         * class-internals.h (MonoGenericContext::method_inst): Rename from
16098         'gmethod' and convert to a MonoGenericInst.
16099         (MonoGenericMethod): Remove.
16100         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16101         * loader.c (method_from_methodspec): Update to changes.  Use a
16102         MonoGenericContext as the key to the hashtable.
16103         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16104         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16105         (mono_metadata_generic_context_hash): Likewise from
16106         'mono_metadata_generic_method_hash'.  Change hash function.
16107         (mono_metadata_load_generic_params): Update to changes.
16108         (mono_get_shared_generic_method): Remove.
16109         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16110         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16111         (inflate_generic_context): Likewise.
16112         (mono_class_inflate_generic_method_full): Likewise.
16113         (setup_generic_array_ifaces): Likewise.
16114         (mono_class_create_from_typespec): Likewise.
16115         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16116         (method_encode_methodspec): Update callsite.
16117         (reflection_methodbuilder_to_mono_method): Update to changes.
16118         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16119         MonoGenericContext as the key to the hashtable.
16120         (inflate_mono_method): Update to changes.
16122         * class-internals.h (MonoGenericMethod::container): Remove.
16123         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16125 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16127         * profiler-private.h, profiler.c, profiler.h: added API to profile
16128         exception events.
16130 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16132         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16134 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16136         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16137         Fixed overflow and underflow not aborting the verification process.
16139 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16141         * class-internals.h (MonoStats): Added stats entries for dynamic
16142         code allocations.
16144 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16146         * loader.c (mono_free_method): Free header->locals and header->clauses.
16148         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16149         dynamic case.
16151         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16153         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16155 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16157         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16158         the tables.
16160 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16162         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16164 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16166         MonoGenericMethod on a diet
16167         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16168         here ...
16169         (_MonoGenericMethod::reflection_info): ... from here.
16170         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16171         Update to changes.
16172         * reflection.c (inflate_mono_method): Likewise.
16173         (mono_reflection_bind_generic_method_parameters): Likewise.
16175 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16177         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16178         *verify.c: factored long ldarg forms to share code with short forms
16180 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16182         *verify.c: fixed code formating factored some duplicate code
16183         into a new function
16185         *verify.h: fixed binary incompatibility introduced earlier
16187         *pedump.c: fixed formating
16189 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16191         Fix assertion when disassembling Mono.C5.dll
16192         * loader.c (method_from_methodspec): Avoid inflating a method
16193         twice with the same context.  If the methodref is inflated, use
16194         the declaring method instead.
16196         * class.c (mono_class_from_generic_parameter): Fix case similar to
16197         bug #81830 handled below, but for method containers.
16199 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16201         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16202         get_shared_generic_class.  Directly inflate the instance.
16203         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16204         (inflate_generic_class): Delete.
16205         (get_shared_generic_class): Delete.  Move setting of
16206         'cached_class' and 'cached_context' ...
16207         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16209         * metadata.c (mono_metadata_lookup_generic_class): Change
16210         signature to take the components of a MonoGenericClass rather than
16211         an allocated MonoGenericClass.  Change semantics to be intern-like.
16212         * reflection.c (mono_class_bind_generic_parameters): Update to
16213         changes.  Make locking region tighter.
16214         * class.c (inflate_generic_class): Update to changes.
16215         (get_shared_generic_class): Likewise.
16216         * metadata-internals.h: Likewise.
16218         * reflection.c (mono_class_bind_generic_parameters): Take and
16219         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16220         (mono_reflection_bind_generic_parameters): Use
16221         'mono_class_bind_generic_parameters' rather than duplicate the code.
16222         * class.c (mono_bounded_array_class_get): Update to changes.
16223         * object-internals.h: Likewise.
16225         * reflection.c (mono_class_bind_generic_parameters): Only support
16226         parameterizing generic type definitions.  Remove support for other
16227         open types.
16229 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16231         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16233         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16234         in the dynamic case.
16236 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16238         * threads.c: When cleaning up thread, reset the Background bit.
16239         Fixes bug #81720.
16241 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16243        * metadata.c: Move variable declarations to top of scope.
16244        * verify.c: Move variable declarations to top of scope.
16246        Code is contributed under MIT/X11 license.
16248 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16250         * reflection.c (mono_class_bind_generic_parameters): Replace
16251         open-coded loop with mono_metadata_inflate_generic_inst.
16253         * class.c (get_shared_generic_class): Don't call
16254         mono_get_shared_generic_inst.  Use the container's own
16255         'class_inst'.
16257         * metadata.c (mono_metadata_load_generic_params): Move
16258         initialization of 'context' field here from ...
16259         * class.c (mono_class_create_from_typedef): ... here, and ...
16260         * loader.c (mono_get_method_from_token): ... here.
16262         * class.c (get_shared_generic_class): Rename from
16263         mono_get_shared_generic_class and make static.
16264         (mono_get_shared_generic_inst): Move to metadata.c.
16265         * loader.c (mono_get_shared_generic_method): Likewise.
16266         * class-internals.h, metadata-internals.h: Update to changes.
16268         Fix #81830
16269         * class.c (mono_class_from_generic_parameter): Don't assume a
16270         generic container owner exists.  Generic containers from monodis
16271         don't have any.
16273 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16275         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16276         * verify.h: new typedefs to returns the non-verifiable status
16277         * verify.c: initial implementation of generics, stack merging and object compatibility check
16279 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16281         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16282         a MonoInternalHashTable again (fixed bug in internal hash table
16283         code).
16285 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16287         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16288         MonoInternalHashTable again (fixed bug in internal hash table
16289         code).
16291 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16293         * class.c, image.c, class-internals.h, domain.c,
16294         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16295         changes.  Have to figure out what makes them break the SWF
16296         regression.
16298 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16300         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16301         a MonoInternalHashTable now.
16303 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16305         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16306         MonoInternalHashTable now.
16308 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16310         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16311         invoke_impl code.
16313         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16315         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16316         dependent trampoline.
16318         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16320         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16322 2007-05-29  Robert Jordan  <robertj@gmx.net>
16324         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16326 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16328         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16330 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16332        * marshal.c: Fix interface lookup loops for
16333        cominterop_get_com_slot_for_method and 
16334        cominterop_get_method_interface. Only need to lookup
16335        if type is a class, else use interface type method is on.
16337        Code is contributed under MIT/X11 license.
16339 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16341         * reflection.c: HasSecurity can be present even if no specially 
16342         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16343         SecurityAttribute). Fix CAS regression tests on buildbot.
16345 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16347        * appdomain.c: Add configure checks for header files.
16348        * image.c: Add configure checks for header files.
16349        * file-io.c: Add configure checks for header files.
16350        * debug-mono-symfile.c: Add configure checks for header files.
16351        * threadpool.c: Add configure checks for header files.
16352        * console-io.c: Add configure checks for header files.
16353        * profiler.c: Add configure checks for header files.
16354        * rawbuffer.c: Add configure checks for header files.
16355        * icall.c: Add configure checks for header files.
16356        * rand.c: Add configure checks for header files.
16357        * socket-io.c: Add configure checks for header files.
16359        Code is contributed under MIT/X11 license.
16361 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16363         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16364         assertion as it breaks the build.
16365         
16366         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16368         * reflection.c (lookup_custom_attr): Make a copy here too.
16370         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16371         dynamic images.
16373         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16374         images.
16376         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16377         info.
16379 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16381         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16382         (load_cattr_value): Ditto.
16384 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16386         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16388 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16390         * threads.c: In "start_wrapper", set apartment_state to MTA if
16391         apartment_state is Unknown and we're running on 2.0 profile or
16392         higher.
16393         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16394         to main method, then set apartment_state to Unknown on 1.0 profile,
16395         and MTA on 2.0 profile.
16397 2007-05-16  Jb Evain  <jb@nurv.fr>
16399         * class-internals.h (MonoDefaults): Add an attribute_class and
16400           customattribute_data_class.
16401         * domain.c (mono_init_internal): Populate them.
16402         * reflection.c: Use them to remove duplicates. Make a vew
16403         MonoClass variables `static'.
16405 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16407         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16408         step in implementing IMT, so that all isinst checks now can go
16409         through the bitmap.
16410         This was needed because vtables for TransparentProxy need to look
16411         like the vtable of the "target" class, so they need to point to
16412         its interface bitmap directly.
16414         * object.c: inside "mono_class_create_runtime_vtable" and
16415         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16417 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16419         * object-internals.h
16420           culture-info.h : added territory field in MonoCulture and
16421           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16422         * locales.c : fill territory field above too.
16423         * culture-info-table.h : regenerated.
16425 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16427         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16428         Fixes #81599.
16430 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16432         * object.c: Always initialize apartment, even if 
16433         there is no custom attributes on entry point.
16434         
16435         Code is contributed under MIT/X11 license.
16437 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16439         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16440         * metadata.c: If no encoding is set, check for unicode
16441         on class.
16442         
16443         Code is contributed under MIT/X11 license.
16445 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16447         * threads.c: Handle if mono_thread_current returns NULL 
16448         
16449         Code is contributed under MIT/X11 license.
16451 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16453         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16454         in start_wrapper. Added mono_thread_init_apartment_state and
16455         mono_thread_cleanup_apartment_state.
16456         * object.c: Initialize thread apartment state on main thread
16457         by checking for STAThreadAttribute on entry point.
16458         * object-internals.h: Add apartment_state field to MonoThread.
16459         * threads-types.h: Add unmanaged definition of 
16460         System.Threading.ApartmentState, MonoThreadApartmentState.
16461         
16462         Code is contributed under MIT/X11 license.
16463         
16464 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16466         * class.c: Fix windows build.
16467         * class-internals.h: Fix windows build.
16468         
16469         Code is contributed under MIT/X11 license.
16471 2007-05-08  Robert Jordan  <robertj@gmx.net>
16473         * process.c (CreateProcess_internal):
16474         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16475         .CreateNoWindow was specified. Fixes #81496.
16477 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16479         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16480         step in implementing IMT, replaced it with two compact arrays
16481         (interfaces_packed and interface_offsets_packed) and a bitmap that
16482         is used for isinst checks (interface_bitmap).
16484         * class.c: (compare_interface_ids): compare function to pass to
16485         bsearch when looking for an interface with a given id.
16486         (mono_class_interface_offset): reimplemented using bsearch on
16487         interfaces_packed, getting the offset from interface_offsets_packed.
16488         (print_implemented_interfaces): utility debugging function.
16489         (setup_interface_offsets): reworked to initialize interfaces_packed,
16490         interface_offsets_packed and interface_bitmap.
16492         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16493         with uses of interfaces_packed and interface_offsets_packed.
16495 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16497         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16498         mono_class_interface_offset prototype to wrap all accesses to
16499         "MonoClass.interface_offsets".
16501         * class.c: Implemented mono_class_interface_offset, and wrapped all
16502         accesses to "MonoClass.interface_offsets".
16504         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16505         "MonoClass.interface_offsets".
16507 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16509         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16510         GetMethodFromHandle overloads (bug #78637).
16512 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16514         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16515         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16517 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16519         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16520         #81498.
16522         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16523         gracefully.
16524         (mono_custom_attrs_from_index): Ditto.
16526         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16527         Fixes #81501.
16529 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16531         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16532         is now allocated from a mempool.
16534 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16536         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16537         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16539 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16541         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16542         mono_loader_clear_error () too late. Fixes #81463.
16544 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16546         * culture-info-table.h : regenerated.
16548 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16550         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16551         is missing.
16553 2007-04-25  Dick Porter  <dick@ximian.com>
16555         * Makefile.am: Put the mingw enforced-optimisation back into the
16556         PLATFORM_WIN32 section.
16558 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16560         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16561         patch.
16563         * image.c (mono_image_load_module): New API function to load a module reference.
16565         * image.c (load_modules): Load modules lazily. Fixes #80812.
16567         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16568         
16569         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16571         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16572         to mono_image_load_module_dynamic.
16574 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16576         * marshal.c: Fix calling convention for CCW on non-windows
16577         platforms. STDCALL on windows, CDECL everywhere else to work 
16578         with XPCOM and MainWin COM.
16579         
16580         Code is contributed under MIT/X11 license.
16582 2007-04-23  Martin Baulig  <martin@ximian.com>
16584         Fix #80969.
16586         * loader.c
16587         (method_from_memberref): Added `gboolean *used_context' argument.
16588         (mono_get_method_from_token): Likewise.
16589         (mono_get_method_full): Don't insert the method in the cache when
16590         `used_context' is true.
16592 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16594         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16596         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16597         create new MonoTypes for returned types.
16598         * class.c (mono_generic_class_get_class): Export mono-internal.
16599         * class-internals.h: Update to changes.
16601 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16603         * threadpool.c, threadpool.h, icall-def.h: patch from
16604         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16606 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16608         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16609         
16610         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16612         * threads.c (mono_thread_get_stack_bounds): New helper function.
16614         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16615         Correctly compute stack bounds when attaching. Fixes #81394.
16617 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16619         * reflection.c: fix handling of doubles in custom attributes
16620         for the arm-fpa format (bug #81368).
16622 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16624         * reflection.c (assembly_add_win32_resources): Mildly relax an
16625         bounds check to let the end pointer point just past the end of the
16626         allocated buffer.  (may fix #81384)
16628 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16630         * culture-info-table.h : regenerated.
16632 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16634         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16635         the thread is aborted early.
16637 2007-04-05  Dick Porter  <dick@ximian.com>
16639         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16640         FindFirstFile()/FindNextFile() to find entries.  This lets the
16641         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16642         81038.
16644         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16645         the parameters of
16646         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16648 2007-04-04  Martin Baulig  <martin@ximian.com>
16650         * debug-helpers.c
16651         (mono_method_desc_full_match): Add support for nested classes.
16653 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16655         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16657 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16659         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16660         waiting for too many threads.
16662 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16664         * environment.c: Fix return value check on uname so we can get the 
16665         executing version on Solaris operating systems.
16667 2007-03-28  Jb Evain  <jbevain@gmail.com>
16669         * class.c (mono_type_get_name_recurse): Complete the
16670         fix for the creation of assembly qualified names for
16671         pointer types. Fixes #81208.
16673 2007-03-27  Dick Porter  <dick@ximian.com>
16675         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16676         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16677         changed.
16679         * threads.c
16680         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16681         the value of ReleaseMutex().
16683 2007-03-27  Dick Porter  <dick@ximian.com>
16685         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16686         in little-endian order, not network endian, so must be converted
16687         to host endian here.  Fixes bug 80593.
16689 2007-03-22  Jb Evain  <jbevain@gmail.com>
16691         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16692         qualified names for pointer types. Fixes #81208.
16694 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16696         * marshal.c: Add support for PreserveSigAttribute. 
16697         
16698         Code is contributed under MIT/X11 license.
16700 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16702         * process.c: Fix endianness issues. Fixes #81126.
16704         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16705         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16707         * image.c (mono_image_lookup_resource): Make this work on big-endian
16708         machines.Change API contract so the caller needs to free the return value.
16709         
16710         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16711         API change.
16712         
16713 2007-03-14  Martin Baulig  <martin@ximian.com>
16715         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16716         mono_type_get_desc() as well.
16718 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16720         * icall.c:  Fix environ access in VS.  
16721         
16722 2007-03-13  Alp Toker  <alp@atoker.com>
16724         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16725         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16726         #63841.
16728 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16730         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16731         circular references among dynamic methods. Fixes #81091.
16733         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16735 2007-03-09  Martin Baulig  <martin@ximian.com>
16737         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16739 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16741         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16742         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16743         
16744         Code is contributed under MIT/X11 license.
16745         
16746 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16748         * loader.c: Reapply patch for bug #79424.
16750 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16752         * metadata.c (mono_type_to_unmanaged): Only convert object to
16753         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16755 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16757         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16758         (and incorrectly set) is_reference field from MonoGenericInst.
16760 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16762         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16763         a little earlier.
16765         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16767         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16769 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16771         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16772         FileOptions.1 value to mean "temporary", map that to
16773         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16775         Fixes 80688
16777 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16779         * appdomain.c: implement MS .Net style shadow copying. Copies of
16780         the assemblies are made in a subdirectory of the dynamic base
16781         directory, the assembly names are preserved.
16782         Copy .mdb and .config files along with the assemblies being shadowed.
16784 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16786         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16787         (emit_marshal_handleref): Ditto.
16789         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16790         on Visual C++. Fixes #80671.
16792 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16794         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16795         for clone operations.
16797 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16799         * marshal.c: Fix warnings.
16801 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16803         * loader.c: allow case-insensitive matching of the dll name
16804         in dllmap handling when prefixed with "i:".
16806 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16808         * threads.c: Fix #ifdef for dummy_apc function for VS.
16810 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16812         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16814 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16815         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16816         giving precedence to the methods with a fully qualified name
16817         (InterfaceName.MethodName) when building the interface sections
16818         of the vtable.
16820 2007-02-16  Dick Porter  <dick@ximian.com>
16822         * threadpool.c (append_job): Fix fast-path array handling, so it's
16823         less likely the array will grow exponentially when the load is
16824         heavy.
16826 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16828         * metadata-internals.h, loader.c: fix dllmap lookup order
16829         for non-function maps, too, and prepare for fallback code.
16831 2007-02-12  Robert Jordan  <robertj@gmx.net>
16833         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16834         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16835         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16836         GlobalFree. Fixes a part of bug #77075.
16838 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16840         * loader.c: implemented typedef parent in field memberref.
16842 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16844         * marshal.c: Fix warnings and remember to call Release on
16845         IUnknown of RCW.
16846         
16847         Code is contributed under MIT/X11 license.
16849 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16851         * class-internals.h: Add MonoHandleRef definition, and
16852         handleref_class to mono_defaults. 
16854         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16855         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16857         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16858         (do nothing on this stage)
16859         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16860         (emit_marshal_handleref): New method, used for argument handling
16861         of HandleRefs. 
16863 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16865         * class.c (mono_class_setup_parent): Lazily init com types.
16866         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16867         init com types.
16868         * object.c (mono_remote_class_vtable): Lazily init com types.
16869         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16870         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16871         * domain-internals.h: Expose mono_init_com_types.
16872         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16873         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16874         Add support for COM Callable Wrapper marshalling.
16875         * marshal.h: Add icall definitions.
16876         * gc.c: Handle freeing of CCWs in finalizer code.
16877         
16878         Code is contributed under MIT/X11 license.
16880 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16882         * reflection.c: changed all the signature encoding code to use
16883         a variable-sized buffer.
16885 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16887         * marshal.c: locking fixes: never take the loader lock
16888         or other runtime locks when holding the marshal lock
16889         (fixes bug#80664).
16891 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16893         * marshal.c: make the delegate function pointer mapping
16894         work for the moving GC.
16896 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16898         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16899         for bug #80618.
16901 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16903         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16904         gmodule.
16906 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16908         * threadpool.c: made the code moving-GC safe.
16910 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16912         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16913         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16914         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16915         warning cleanup.
16916         * reflection.c: warning cleanup, some threading and moving GC fixes.
16918 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16920         * class.c, loader.c: create the needed Set/Get/Address array methods
16921         as well as the .ctors in mono_class_init (), fixes bug #80567.
16923 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16925         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16926         we doesn't decrease its alignment. Should fix the sparc build.
16928 2007-01-24  Dick Porter  <dick@ximian.com>
16930         * socket-io.c
16931         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16932         Create the returned object if we need to ignore an unsupported
16933         socket option.  Fixes a segfault reported by Atsushi.
16935 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16937         * class.c, object.c: restrict GC-tracked fields to
16938         UIntPtr fields used inside corlib, so we provide better
16939         type info to the GC and also allow broken packing as in
16940         bug #80580.
16942 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16944         * sgen-gc.c: removed duplicated function.
16946 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16948         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16949         value that means that the value is not supported, but that we
16950         should not return a failure, but instead report this as a
16951         successful operation.
16953 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16955         Fix tests/bug79956.2.il
16956         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16957         (mono_generic_class_get_class): If the generic definition in an
16958         enum, copy over other fields related to it.
16960 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16962         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16963         genericinst enums (bug #79215).
16965 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16966         * class.c: Fix bug 80307.
16968 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16970         * image.c: if the file table is not present, try to load
16971         all the modules, since we don't have info about them
16972         having or not metadata (bug #80517).
16973         * assembly.c: allow mono_assembly_load_references () to
16974         work for netmodules.
16976 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16978         * image.c, metadata-internals.h, object.c: execute module
16979         cctors when running on the 2 runtime if present (bug #80487).
16981 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16983         * icall.c: optimized InitializeArray() on bigendian.
16985 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16987         * icall.c: fix for the broken ARM FPA double format.
16989 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16991         * icall.c: handle endian issues for r4 and r8 types, too, in
16992         the InitializeArray() icall.
16994 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16996         * loader.c (mono_loader_error_prepare_exception): Clear the error
16997         once we have extracted the information from it, do this before we
16998         call into the JIT's class loading mechanisms.
17000         * object.c (mono_class_create_runtime_vtable): Do not clear the
17001         loader error before calling mono_class_get_exception_for_failure
17002         as the loader error is needed inside
17003         mono_class_get_exception_for_failure to throw the error (thinko).
17005         Fixes #80521
17006         
17007 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17009         * reflection.c: align fields rva data so it's faster to load at
17010         runtime.
17012 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17014         Prepare to simplify GenericMethod handling.
17015         * class-internals.h (mono_method_get_context): New accessor function.
17016         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17017         rather than directly accessing '->context' field.
17019         * class-internals.h (_MonoGenericParam.method): Move ...
17020         (_MonoGenericContainer): ... here.  Add into union with klass field.
17021         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17022         Update to changes.
17024 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17026         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17027         the wrapper type enum and reduce relocations.
17029 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17031         * reflection.c (inflate_mono_method): Reuse method instantiation
17032         from the generic method, if available.
17034 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17036         * marshal.c (emit_marshal_variant): Fix conv_arg
17037         type in last commit, based on whether parameter is byref.
17038         
17039 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17041         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17042         marshalling.
17043         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17044         MONO_TYPE_OBJECT back for VARIANT support.
17046 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17048         * marshal.c, marshal.h, icall-def.h: Implement 
17049         Marshal.ReAllocCoTaskMem.
17051 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17053         * marshal.c: memory retention fixes: use the proper
17054         image cache for runtime_invoke method lookups.
17056 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17058         * mempool.c: added code to help debug mempool allocations.
17060 2007-01-11  Dick Porter  <dick@ximian.com>
17062         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17063         support (experimenting with faking it with IP_MTU_DISCOVER for
17064         systems that don't have IP_DONTFRAGMENT.)
17065         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17066         icall.
17068         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17070         * socket-io.h: Add new fields to MonoSocketAsyncResult
17071         corresponding to the new ones in Socket.cs.
17073 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17075         Fix IronPython regression mentioned in #80249
17076         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17077         'cached_context' field, since it may have been initialized as a
17078         side-effect of metadata parsing.
17080         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17081         (_MonoGenericClass.cached_class): Move here and rename from lone
17082         remaining field of ...
17083         (_MonoInflatedGenericClass): ... this.  Remove.
17084         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17085         to changes.
17087         Fix mcs/tests/test-128.cs regression.
17088         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17089         2007-01-10 change below.
17090         [MONO_TYPE_OBJECT]: Recurse into array case.
17092 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17094         * class-internals.h (mono_get_inflated_generic_class): Remove.
17095         * class.c (mono_get_inflated_generic_class): Remove.
17096         (mono_generic_class_get_class): Rename from
17097         mono_class_create_generic.
17098         (mono_class_from_mono_type) [GENERICINST]: Use it.
17099         * reflection.c, metadata.c: Update to changes.  Use
17100         'mono_class_from_mono_type'.
17102 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17104         * reflection.c: use passed type when encoding an array element
17105         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17107 2007-01-09  Robert Jordan  <robertj@gmx.net>
17109         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17110         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17111         Fixes bug #80392.
17113 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17115         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17117         * object.c (set_value): Avoid aliasing between type->data.klass
17118         and type->data.generic_class.
17120         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17122 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17124         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17125         between type->data.klass and type->data.generic_class.
17127 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17129         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17130         value in out parameters.
17132 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17134         Simplify invariant for MonoGenericClass::klass field.
17135         * class.c (mono_class_create_generic): Verify 'klass' is null.
17136         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17137         initialize 'klass' field.
17139 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17141         Ongoing work to avoid redundant data and simplify invariants.
17142         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17143         'generic_class', and change type to a GenericInst.
17144         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17145         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17147 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17149         * class.c : skip io-layer under PLATFORM_WIN32.
17151 2007-01-03  Tor Lillqvist  <tml@novell.com>
17153         Fix #80305: In a bundled executable, look in the bundled exe
17154         assembly to determine the runtime version. Add the possibility to
17155         bundle also the machine.config file.
17156         
17157         * assembly.c (mono_assembly_open_from_bundle): Make
17158         non-static. Allow being called even if we have no bundled
17159         assemblies, and return NULL right away in that case.
17161         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17162         here.
17164         * domain.c (app_config_parse): Take an assembly exe file name as
17165         parameter instead of a config file name. Check for a bundled
17166         config file for that assembly by calling
17167         mono_config_string_for_assembly_file() (see below) before looking
17168         for one in the file system.
17169         (get_runtimes_from_exe): Corrsponding change to call of
17170         app_config_parse().
17171         (get_runtimes_from_exe): Check for bundled assembly exe file first
17172         by calling mono_assembly_open_from_bundle(). If no bundled
17173         assembly exe file is found, call mono_image_open() as before to
17174         look it up in the file system.
17176         * mono-config.c: Add variable bundled_machinec_onfig.
17177         (mono_config_string_for_assembly_file): New function.
17178         (mono_config_for_assembly): Move code snippet that looks for a
17179         bundled assembly .config file into the above new function. Call
17180         it.
17181         (mono_register_machine_config, mono_get_machine_config): New
17182         functions to set and retrieve
17184         * assembly.h: Declare mono_register_machine_config().
17186         * mono-config.h: Declare mono_get_machine_config() and
17187         mono_config_string_for_assembly_file().
17189         * icall.c: No declaration of environ necessary on Win32. It is
17190         declared (as a macro expanding to a function call) in stdlib.h.
17191         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17192         New internal mono function. Returns the value of
17193         mono_get_machine_config() as a Mono string.
17195         * icall-def.h: Add get_bundled_machine_config().
17197 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17199         Remove redundant field
17200         * class-internals.h (_MonoGenericContext.container): Remove field.
17201         * loader.c (mono_method_get_signature_full): Don't parse a
17202         "container" for a signature parse when the signature is inflated
17203         immediately.
17204         (method_from_methodspec): Likewise, for a generic_inst.
17205         * class.c, metadata.c, reflection.c: Update to changes.
17207 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17209         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17210         'cached_context', and change semantics -- it starts off NULL, and
17211         is initialized on demand.
17212         * class.c (mono_generic_class_get_context): New accessor to
17213         replace 'context' field accesses.
17214         (mono_class_get_context): New helper.
17215         (*): Update to changes.
17216         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17218 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17220         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17221         before the memcpy.   Fixes Marshal2 regression.
17223 2007-01-02  Jb Evain  <jbevain@gmail.com>
17225         * blob.h: add a MONO_TYPE_ENUM definition
17226         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17227         fix the encoding of arrays of enums in custom attributes.
17229         Fixes #79666.
17231 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17233         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17234         string is null terminated, but only cut the string short if it
17235         overflows the buffer.   
17236         
17237         (mono_string_to_byvalstr): Also fix this routine.   The code here
17238         was not properly terminating a string (it was only terminated
17239         because of the previous catch-all memset). 
17241         I left the memset, because I do not know if applications expect
17242         the runtime to clear this region. 
17244         Fixes #79944.
17246         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17247         Clear the error before returning to unmanaged code to prevent the
17248         runtime from being confused later on (fixes  80420).
17249         (ves_icall_type_from_name): Always call mono_loader_clear_error
17250         after parsing a type that could have failed.
17251         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17253         * loader.c (mono_loader_clear_error): Fix indentation.
17255 2006-12-28  Martin Baulig  <martin@ximian.com>
17257         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17259 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17261         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17262         getting a token for an EnumBuilder.
17264 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17266         * reflection.c: be more careful in case resource generation
17267         fails to create the data array.
17269 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17271         * sgen-gc.c: write barrier for clone and fix unregister handles.
17273 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17275         * reflection.c: some fixes needed in the generics code for the moving GC.
17277 2006-12-22  Robert Jordan  <robertj@gmx.net>
17279         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17280         account. Fixes bug #80299.
17282 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17284         Fix WaitHandle usage in delegates.
17285         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17286         * object.c (mono_wait_handle_new): Use the property set method to
17287         initialize the handle.
17288         (mono_wait_handle_get_handle): New.
17289         * threadpool.c (mono_async_invoke): Use it.
17290         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17291         Likewise.
17292         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17294 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17296         * marshal.c (emit_marshal): Call emit_marshal_variant and
17297         emit_marshal_com_interface when applicable.
17298         (emit_marshal_variant, emit_marshal_com_interface): Add
17299         methods for this case and remove if's from emit_marshal_object.
17300         
17301 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17303         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17305 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17307         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17308         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17309         and GlobalFree on Windows. Remove FIXME.
17311 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17313         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17314         implementation for managed objects.
17316 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17318         * object.c: implemented code to be used for checking
17319         that no reference field overlaps with non-references.
17321 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17323         * threadpool.c: fix queue code to be compatible with the
17324         moving GC.
17326 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17328         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17329         in structures by throwing ArgumentNullException.
17331         (emit_marshal_safehandle): Also when they are null parameters.
17333         (emit_marshal_safehandle): Add support for ref
17334         SafeHandles parameters
17336 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17338         * profiler.c: updated to use the mono-dl API instead of
17339         gmodule.
17341 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17343         * profiler.c: updated to use the mono-dl dynamic loading
17344         API instead of gmodule.
17346 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17348         * profiler.c: use readlink, older versions of glib don't have
17349         g_file_read_link ().
17351 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17353         * profiler.c: try to detect the path to mono if libc fails to provide
17354         a useful name (bug #80286).
17356 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17358         Fix #80242
17359         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17360         instance, use the generic type definition instead.
17361         (ves_icall_Type_GetNestedTypes): Likewise.
17362         * class.c (mono_class_create_generic): Always set the
17363         nested_classes of a generic instance to NULL, even if the generic
17364         type definition has nested types.
17366 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17368         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17369         and fix on Linux.
17370         
17371 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17373         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17374         my arguments were in the wrong order.   I also fixed the Windows
17375         version which seems to have had the same issue.
17377         (mono_free_bstr): On Unix, this is g_free.
17378         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17379         conversions (for the tests in corlib to pass).
17381 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17383         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17384         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17385         exception if a ref SafeHandle in a struct has changed).
17386         
17387         (emit_struct_conv): Do not perform layout checks for classes
17388         derived from SafeHandle, as those are specially handled. 
17390         (emit_object_to_ptr_conv): Add support for
17391         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17393         (emit_marshal_safehandle): Implement conversion of return values
17394         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17395         
17396         * threads.c: WaitHandle now is compiled with two different handles
17397         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17398         for 2.0.
17399         
17400         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17401         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17402         these routines to cope with both kinds of fields.
17404 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17406         * metadata.c (mono_type_to_unmanaged): Handle the case where
17407         type->data.klass is a SafeHandle, and in that case, return the
17408         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17409         MONO_MARSHAL_CONV_SAFEHANDLE. 
17411 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17413         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17414         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17415         calling emit_marshal_object.
17417         (emit_marshal_safehandle): Implement marshalling of
17418         SafeHandle parameters (no ref support yet).
17420         (MarshalAction): Document the defines as I implement
17421         them for SafeHandle.
17423         (emit_marshal_object): indentation police.
17425         * class-internals.h: Define MonoSafeHandle.
17426         Add safehandle_class to MonoDefaults type.
17428         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17429         list of classes to check for fields. 
17431         * domain.c (mono_init_internal): Add SafeHandle to the list of
17432         mono_defaults loaded.
17434 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17436         Fix #80253
17437         * reflection.c (mono_reflection_bind_generic_parameters): If the
17438         generic type definition is a type builder, ensure that it is fully
17439         initialized before instantiating it.  Kill some dead code.
17441 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17443         * object.c: clear the loader_error () before loading
17444         more metadata stuff (bug #80258).
17446 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17448         * icall.c, icall-defs.h: type modifiers icalls for
17449         parameters and properties.
17451 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17453         * object.c, icall.c: fixed warnings.
17455 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17457         * marshal.c: fixed a couple of leaks and coding style in a few places.
17459 2006-12-08  Dick Porter  <dick@ximian.com>
17461         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17462         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17463         80173.
17465 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17467         * process.c: ProcessStartInfo may have only filename set and
17468         arguments can be NULL.
17470 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17472         * icall.c: fix leak found by Robert Jordan.
17474 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17476         * marshal.c, marshal.h: generate managed method to access an element
17477         of a multi-dimensional array.
17479 2006-11-30  Paolo Molaro (lupus@ximian.com)
17481         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17483 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17485         * icall.c: back out GetFields () fix until the serialization code is
17486         fixed to not depend on the incorrect behaviour.
17488 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17490         * profiler.c: provide defaults if none are set.
17492 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17494         * Makefile.am, attrdefs.h: new public header file with
17495         constants for attributes for use by embedders.
17497 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17499         * icall.c: GetFields () fix for bug #80064.
17501 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17503         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17504         removed long unused icalls.
17506 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17507   
17508         * marshal.c: 
17509                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17510                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17511                 can be generated without a delegate class.
17512                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17513         
17514         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17516 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17518         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17519         #80069.
17521 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17523         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17524         icall-def.h: added icalls needed by System.GC.
17526 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17528         * loader.c: ensure the class in catch clauses is handled
17529         correctly for generics methods (fixes bug#79980).
17531 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17533         * monitor.h, monitor.c: added mono_locks_dump () function
17534         to help debug deadlocks involving managed locks.
17536 2006-11-13  Dick Porter  <dick@ximian.com>
17538         * file-io.c (get_file_attributes): If the file is a symlink try
17539         and get the stat data for the target, but also add the
17540         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17541         the specs for the windows symlink support, but will probably have
17542         to be reworked when I have test data from a vista machine.  Fixes
17543         bug 79887.
17545 2006-11-13  Dick Porter  <dick@ximian.com>
17547         * gc.c (mono_domain_finalize): 
17548         * marshal.c (mono_delegate_begin_invoke): 
17549         * threadpool.c (socket_io_init, mono_thread_pool_init)
17550         (mono_thread_pool_finish): 
17551         * monitor.c (mono_monitor_try_enter_internal): 
17552         * threads.c (mono_thread_resume, mono_thread_init)
17553         (mono_thread_suspend_all_other_threads)
17554         (mono_thread_execute_interruption): 
17555         * appdomain.c (mono_domain_unload): Check for NULL error returns
17556         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17557         75733.
17559 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17561         * process.c
17562         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17563         Only close the handle if the value of the handle is not
17564         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17565         robust.
17567         Improvement for #75733, so that we do not run into this problem. 
17569         
17570         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17571         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17572         internal variables.  Fixes #79462 
17573         
17575 2006-11-09  Dick Porter  <dick@ximian.com>
17577         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17578         Use poll() not select().  Fixes bug 79397.
17580 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17582         Fix #79872
17583         * assembly.c (mono_assembly_load_from_full): Check that the given
17584         image has an assembly manifest.
17586 2006-11-09  Ankit Jain  <jankit@novell.com>
17588         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17589         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17590         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17592 2006-11-07  Dick Porter  <dick@ximian.com>
17594         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17595         Put the old resolver behaviour back for pre-2.0 profiles.
17597 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17599         * threadpool.c: precise GC and locking fixes.
17601 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17603         * class.c: don't load types that have an explicit unaligned
17604         managed reference. Provide better info in the TypeLoad exception.
17605         Part of the fix for bug #79744.
17606         * object.c: use the correct check for class type load issues.
17608 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17610         * class.c: enforce alignment of fields with managed references
17611         even when Pack=1 is forced by the user (bug #77788).
17613 2006-11-03  Dick Porter  <dick@ximian.com>
17615         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17616         If the address reverse lookup fails, return it as the hostname
17617         anyway.  Fixes bug 79721.
17619 2006-11-03  Dick Porter  <dick@ximian.com>
17621         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17622         Fix build on Windows.
17624 2006-11-02  Dick Porter  <dick@ximian.com>
17626         * icall-def.h: 
17627         * object-internals.h: 
17628         * exception.c (mono_get_exception_thread_interrupted): 
17629         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17630         Fixes bug 74525.
17632         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17633         Check for pending Thread.Interrupt.
17635 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17636         * loader.c: Fixed bug 79684.
17638 2006-10-27  Dick Porter  <dick@ximian.com>
17640         * file-io.c (get_file_attributes): Force symlinks to directories
17641         to be returned as a regular file.  Fixes bug 79733.
17642 2006-10-26  Dick Porter  <dick@ximian.com>
17644         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17645         CreateFile to open a directory then we need to set the
17646         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17648 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17650         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17651         friends.
17653 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17655         * sgengc.c: small cleanup of timer code.
17657 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17659         * sgen-gc.c: fix some warnings and start adding support for
17660         complete object removal on domain unload.
17662 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17664         * assembly.c: build_assembly_name should not consider a version
17665         number without build or revision number invalid. Fixes bug #79715.
17667 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17669         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17670         call kernel32 function OutputDebugString directly.
17671         
17672         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17673         
17674 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17676         * reflection.c: small cleanup, using a function to insert a MonoString
17677         in the string heap.
17679 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17681         * reflection.c: moving GC fixes.
17683 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17685         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17686         all the objects with finalizers belonging to an unloading appdomain.
17688 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17690         * sgen-gc.c: added ability to allocate even when the nursery is fully
17691         pinned and fixed a couple of bugs.
17693 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17695         * threads.h: Revert the last change for now.
17697         * threads.h (mono_thread_get_pending_exception): Rename this to
17698         mono_thread_get_undeniable_exception ().
17700 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17702         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17703         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17704         when fname does not refer to valid assembly. This result in a more
17705         meaningful error message.
17706         * exception.c: added mono_get_exception_bad_image_format2 which 
17707         constructs a BadImageFormatException using the ctor taking a custom
17708         message and the file name. Passing in a NULL msg results in a default
17709         message.
17710         * exception.h: define mono_get_exception_bad_image_format2 function.
17711         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17712         when file name pointed to an invalid IL image. Use 
17713         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17714         as this results in a more meaningful error message.
17716 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17718         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17719         #79465.
17721 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17723         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17724         consistency with the other _size functions.
17725         (mono_type_stack_size): Ditto.
17727         * class.c object.c icall.c: Fix warnings caused by the above change.
17729         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17731         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17733         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17735 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17737         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17738         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17739         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17740         threadpool.h, threads-types.h: mark more internal functions.
17742 2006-10-11  Dick Porter  <dick@ximian.com>
17744         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17745         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17746         reproduce the bug even before applying the fix.)
17748 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17750         * reflection.c: allow retrieving attributes for arguments in generic
17751         methods (bug #79241).
17753 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17755         * debug-mono-symfile.c: properly check fopen () result (found by
17756         coverity).
17758 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17760         * reflection.c: make error message clearer and fixed two
17761         issuelets found by Coverity.
17763 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17765         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17767 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17769         * object-internals.h, gc-internal.h, profiler-private.h:
17770         mark internal functions.
17772 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17774         * reflection.c: put data in the text section.
17775         * icall.c: recognize more types in type_from_typename ().
17776         * process.c, marshal.c: added some GC FIXMEs.
17778 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17780         * loader.c: check for NULL before initializing.
17782 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17784         * gc.c (finalizer_thread): Use a non-alertable wait here.
17786         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17787         until the correct solution is found.
17789 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17791         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17792         modules with no metadata. Fixes #79596.
17794         * image.c (load_metadata_ptrs): Put back the error message when
17795         the #- heap is encountered since the support is not complete yet.
17797 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17799         * gc.c: do not allow the user to SuppressFinalize () a
17800         delegate because it would leak the trampoline if present.
17802 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17804         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17805         PropertyPtr table.
17807 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17809         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17811         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17813         * row-indexes.h: Add definitions for *Ptr tables.
17815         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17817         * metadata.c (mono_metadata_translate_token_index): New helper function to
17818         translate table indexes used in uncompressed metadata.
17819         (mono_metadata_decode_table_row): Ditto.
17820         (mono_metadata_decode_table_row_col): Ditto.
17822         * metadata.c: Add table schema for *Ptr tables.
17824         * class.c loader.c: Use the new helper function to access the affected metadata
17825         tables.
17826         
17827         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17828         #38532.
17829         
17830 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17832         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17833         sequences which can be unbounded in size. Fixes #79583.
17835 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17837         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17838         static initialization.
17840         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17842         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17844         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17846         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17847         ctor fails, i.e. throw the same exception on subsequent accesses.
17848         
17849 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17851         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17852         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17853         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17854         Handle marshalling of interfaces and VARIANTs contained in structs.
17855         
17856         Code is contributed under MIT/X11 license.
17857         
17858 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17860         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17861         
17862         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17863         mempool.
17865 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17867         * console-io.c: ignore previous SIGINT handler.
17869 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17871         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17872         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17873         #79460, #79461, #79485.
17875         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17877         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17878         #79217.
17880 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17882         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17883         could be generated from it.
17885 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17887         * rand.c: fix read loop to correctly handle EINTR.
17889 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17891         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17892         internal calls are defined to keep methods closer to the declaring
17893         type and allow a significant reduction in runtime relocations and
17894         memory usage.
17896 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17898         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17899         exception message to have FileNotFoundException use the default
17900         assembly load error message. Fixes bug #79426.
17901         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17903 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17905         * threadpool.c: (start_thread_or_queue) use the root domain when
17906         creating the thread instead of the async object one.
17908 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17910         * class.c, object.c, class-internals.h, reflection.c:
17911         for arrays, store element_size inside MonoClass (speedup
17912         for array object creation).
17914 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17916         * icall.c: fixed CodeBase to use the file name and not the module
17917         name (bug #79365).
17919 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17921         * mono-debug.c, mono-debug.h: export find_method as
17922         mono_debug_find_method ().
17924 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17926         * debug-helpers.c, class-internals.h: added a few functions useful
17927         when debugging under gdb.
17929 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17931         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17932         characters that need special handling.
17934 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17936         * mono-config.c: make the os/cpu specification more flexible,
17937         allowing lists and negation.
17939 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17941         * marshal.c: COM Interop fixes. Handle case where method->klass.
17942         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17943         calling convention on non-windows platforms. This is for
17944         compatibility with XPCOM and MainWin COM.
17945         
17946         Code is contributed under MIT/X11 license.
17947         
17949 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17951         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17952         correctly. Fixes #79217.
17954         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17956 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17958         * mono-config.c: allow both an os and cpu attribute for dllmap
17959         and dllentry elemnets to enable a single config file to be used
17960         for multiple architectures.
17962 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17964         * loader.c: MonoLoaderError was cleared too soon on load failure.
17965         Fixes bug #79424.
17967 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17969         * icall.c: use the defining class vtable when accessing a
17970         static field, not a pobblibly derived class.
17972 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17974         * icall.c string-icalls.c: Remove references to unicode.h.
17976         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17978         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17980         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17981         indicating the image where custom marshaller types should be looked up.
17982         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17983         custom marshallers, instead of corlib. Fixes #79425.
17985 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17987         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17989 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17991         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17992         Implement Environment.ProcessorCount.
17993         
17994         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17995         Implement Environment.ProcessorCount.
17996         
17997         * icall.c: 
17998         Add Environment.ProcessorCount icall.
17999         
18000         Patch by Jason McFall.
18002 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18004         * assembly.c: don't append .exe/.dll when the filename already contains
18005         one of those extensions.
18007 2006-09-12  Martin Baulig  <martin@ximian.com>
18009         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18010         to array interfaces.
18012 2006-09-11  Martin Baulig  <martin@ximian.com>
18014         * reflection.c (mono_image_build_metadata): Create the
18015         MethodImpl's after emitting all types and methods, so we don't
18016         need another fixup pass for them.
18018 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18020         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18021         change.
18023 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18025         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18026         unload.
18028 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18030         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18031         args is not set. Fixes #78926.
18033 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18035         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18037         * image.c (load_class_names): Move this to class.c, and rename it to 
18038         'mono_image_init_name_cache'.
18039         (load_modules): Fix a warning.
18041         * class.c icall.c image.c: Initialize image->name_cache lazily.
18043         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18044         on its name using information in the AOT file.
18046         * class.c (mono_class_from_name): Use the new hook function.
18048 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18050         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18051         correctly.
18053         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18054         Fixes #79289.
18055         
18056 2006-09-06  Martin Baulig  <martin@ximian.com>
18058         * icall.c (mono_lookup_internal_call): Small fix.
18060 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18062         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18063         double g_free.
18065 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18067         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18068         when --debug is specified.
18070 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18072         * class.c (setup_generic_array_ifaces): Fix a warning.
18074 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18076         * Temporarily remove the patch to assemly.c that checks the
18077         assembly versions as it breaks our gacutil.
18079 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18081         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18083         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18084         a net 1.0 runtime.
18086         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18087         created using the default ctor. Fixes #79152.
18088         (mono_string_builder_to_utf16): Ditto.
18090 2006-09-01  Martin Baulig  <martin@ximian.com>
18092         Fix handling of the generic array interfaces.
18094         * class-internals.h
18095         (MonoDefaults): Removed `generic_array_class' and added
18096         `generic_ilist' class.
18098         * class.c
18099         (mono_bounded_array_class_get): Add the new generic array interfaces.
18100         (setup_generic_array_ifaces): New static method; create vtable
18101         entries for each method in the generic array interfaces.
18103         * metadata.c
18104         (select_container): Allow "parent-less" generic methods.
18106         * marshal.c
18107         (mono_marshal_get_generic_array_helper): New public method.
18109         * icall.c
18110         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18111         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18112         moved the interncall into System.Array.
18114 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18116         A few more cases of avoiding work on types with ->byref set.
18117         Has the real fix for #79238
18118         * icall.c (is_generic_parameter): New helper.
18119         (ves_icall_Type_GetGenericParameterPosition): Use it.
18120         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18121         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18122         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18123         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18124         reference types.
18125         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18126         reference types.
18127         (ves_icall_Type_get_IsGenericInstance): Likewise.
18128         (ves_icall_Type_get_IsGenericType): Likewise.
18130 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18132         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18133         class if possible.
18135         * mempool.h (mono_mempool_get_allocated): New helper function.
18137         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18138         change.
18140         * mempool.c: Fix warnings and the calculation of stats.
18142         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18144         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18146         * loader.c (mono_get_method_from_token): Update method_count stat.
18148         * class-internals.h (MonoStats): Add some stats.
18150 2006-08-31 Robert Jordan  <robertj@gmx.net>
18152         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18153         with managed variants.
18154         All code is contributed under the MIT/X11 license.
18155         
18156 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18158         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18159         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18161         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18163         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18164         with cycles in classes.
18166         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18168         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18169         missing a [MarshalAs] directive. Fixes #79203.
18171         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18172         klass->marshal_info. Fixes #79217.
18174 2006-08-30  Martin Baulig  <martin@ximian.com>
18176         Committing a patch from Joachim Ante <joe@otee.dk>:
18177         Add support for binary data symbol stores.
18179         * debug-mono-symfile.c
18180         (mono_debug_open_mono_symbol_file): Renamed into
18181         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18182         arguments.
18184         * mono-debug.c
18185         (mono_debug_open_image): Added `raw_contents' and `size' args.
18186         (mono_debug_init_2_memory): New public function.
18188 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18190         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18192 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18194         * appdomain.c: implement support for ShadowCopyFiles.
18196 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18198         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18199         when value is NULL (and should remove CID #51).
18201 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18203         * image.c: moved 2 functions to ../utils.
18205 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18207         * gc.c: cope with the target object of a GC handle being NULL
18208         (bug #78877).
18210 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18212         * class.c: recursively check parent's explicit implementations
18213         of interface methods (fixes bug #79125).
18215 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18217         * filewatcher.c: Avoid warnings when building, do not redefine
18218         constants that are defined.
18220         Remove warnings.
18222 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18224         * image.c: don't fail when the link points to an absolute path.
18226 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18228         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18229         Fix CID #3.
18231 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18233         * image.c (full_path): A new method used to obtain the actual path
18234         of an assembly even in the presence of symbolic links.  
18236         This is necessary for the case where we are running a binary that
18237         has been GACed, but we are using the "published" path name
18238         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18239         file in the GAC.
18241         This was the source of the failure for the `xsp' command with the
18242         recent AppDomain changes, as far as the runtime was concerned,
18243         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18244         $prefix/mono/gac/blah/version/blah.exe.
18246         (do_mono_image_open): use full path
18248 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18250         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18252 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18254         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18255         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18257 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18259         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18260         small structures. Fixes #78990.
18262 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18264         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18266         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18268 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18270         * appdomain.c:
18271         * marshal.c: don't load all the assemblies from a domain into newly
18272         created ones. The new domains might have different rules and load
18273         assemblies from different locations. Fixes bug #76757.
18275         Patch by Lluis. Conflicts resolved by Brian Crowell.
18277 2006-08-16  Alp Toker  <alp@atoker.com>
18279         * socket-io.c: First half of the fix for #79084.
18280         Set sa_size to the length of the content, not that of the struct.
18281         Don't add NULL suffix to the content, this should be done in
18282         managed code if needed.
18284 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18286         Fix part of #79012
18287         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18288         mono_metadata_parse_type returns NULL.
18290 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18292         * normalization-tables.h : new file for string normalization data.
18293         * locales.c, locales.h, icall.c :
18294           added load_normalization_resource() for string normalization,
18295           and icall as well.
18296         * Makefile.am : added normalization-tables.h to the sources.
18298 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18300         * marshal.c: Add more helper functions to reduce code duplication and use them
18301         everywhere.
18303 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18305         * marshal.c: Fix non-x86 stdcall warnings.
18306         
18307         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18308         them everywhere.
18310 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18312         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18313         type check on multi-dimensional arrays. Fixes #79000.
18315 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18317         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18318         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18319         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18320         * class-internals.h: add is_com_object to class structure.
18321         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18322         null checks to COM object marshalling. Fix .ctor call on RCW.
18323         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18324         
18325         All code is contributed under the MIT/X11 license.
18327 2006-08-09  Dick Porter  <dick@ximian.com>
18329         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18330         racing mono_monitor_allocator_lock() somewhere, so don't delete
18331         the critical section for now.  Found by running and exiting
18332         monodevelop.
18334 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18336         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18337         (ves_icall_System_ComObject_FindInterface): Ditto.
18338         (ves_icall_System_ComObject_CacheInterface): Ditto.
18340         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18341         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18343 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18345         * threadpool.c: treat pipes from process asynchronous reads as sockets
18346         when reading from them, so we get select/poll or epoll to wait for
18347         data.
18349 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18351         * loader.c: Fix a typo (CID #233) in the null check.
18353 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18355         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18356         Hopefully fixes #78949.
18357         
18358         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18359         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18360         bytes. Fixes #78972.
18362 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18364         * filewatcher.c: we need to set errno here.
18366 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18368         * filewatcher.c: let Win32Exception get the error value.
18370 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18372         * filewatcher.c: translate errno into win32 errors for Win32Exception
18373         to know what happened.
18375 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18377         * threadpool.c: Fix more warnings.
18379         * assembly.c (search_loaded): Fix warnings.
18381         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18382         (mono_async_invoke): Ditto.
18384 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18386         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18387         entries for __ComObject type in addition to ComImport types.
18388         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18389         about hash table.
18390         
18391         All code is contributed under the MIT/X11 license.
18393 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18395         * image.c: avoid tentative loading of modulerefs that contain
18396         no metadata (P/Invoke library names).
18398 2006-07-28  Dick Porter  <dick@ximian.com>
18400         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18401         mono_loader_lock() somewhere, so don't delete the critical section
18402         for now.  Found by running and exiting monodevelop.
18404 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18406         * filewatcher.c: define the inotify syscalls when we're building on
18407         linux and have sys/syscall.h. The build system might not have support
18408         for inotify but the target system might have it.
18410 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18412         * domain.c: Documentation updates.
18414         * loader.c (mono_free_method): Do not release the method
18415         information if we are being profiled, as profilers will use this
18416         information at shut down to present some data to the user.
18418         This is needed so that the profiler does not crash, as the
18419         profiler tends to keep MonoMethods around, and they might become
18420         invalid if we free these.
18422         (mono_get_method_constrained): Return the original CIL stream
18423         method as well, so verification can be performed against it.
18425 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18427         * filewatcher.[ch]: support for inotify file system watcher.
18428         * icall.c: add new internal calls for the inotify file system watcher.
18430 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18432         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18433         #78888.
18435 2006-07-20  Dick Porter  <dick@ximian.com>
18437         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18438         warning.
18440 2006-07-20  Dick Porter  <dick@ximian.com>
18442         * threads.c (start_wrapper): Do the thread cleanup while we still
18443         hold a reference to its object.  Fixes bug 78123.
18445 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18447         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18448         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18449           "managed-to-managed".
18450         * icall.c: Redirect string constructors that take sbyte* to
18451           ves_icall_System_String_ctor_RedirectToCreateString.
18452         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18453           to CreateString () methods with matching signature.
18454         * reflection.c: Use original security informations for
18455           MONO_WRAPPER_MANAGED_TO_MANAGED.
18456         * security-manager.c: Use original security informations for
18457           MONO_WRAPPER_MANAGED_TO_MANAGED.
18458         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18459           that is a placeholder and only its address should be used.
18460         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18461           that is a placeholder and only its address should be used.
18463 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18465         Begin implementing COM Interop.
18466         * appdomain.c: Increment corlib version.
18467         * class.c: Set ComImport classes' parent to __ComObject.
18468         * loader.c: Mark cominterop methods as such.
18469         * domain.c: Add __ComObject class to MonoDefaults structure.
18470         * image.c: Add 2 hashtables to the image for COM Interop related methods
18471         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18472         using the mempool allocator
18473         
18474         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18475         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18476         declaration for mono_metadata_type_dup_mp.
18477         
18478         * debug-helpers.c: Added strings for two additional wrapper types
18479         * object.c: Create proxy objects for ComImport classes
18480         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18481         and added __ComObject class to MonoDefaults structure.
18482         
18483         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18484         MonoComInteropProxy and MonoComObject.
18485         
18486         * marshal.c: Added support for COM Interop
18487         (signature_cominterop): Converts managed signature to corresponding
18488         unmanaged COM signature.
18489         (cominterop_get_function_pointer): gets unmanaged function pointer via
18490         COM object vtable
18491         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18492         (cominterop_get_method_interface): returns interface type that method is defined on
18493         (mono_mb_emit_cominterop_call): emits native call to function pointer
18494         gotten from vtable
18495         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18496         that matches signature of unmanaged function.
18497         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18498         (cominterop_get_invoke): forwards call from proxy to __ComObject
18499         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18500         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18501         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18502         
18503         * marshal.h: Added Marshal icall declarations.
18504         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18505         so we can access them in finalizer
18506         
18507 2006-07-14  Dick Porter  <dick@ximian.com>
18509         * object.c (mono_type_initialization_cleanup): Fix a race
18510         condition by temporarily commenting out the critical section
18511         deletion.
18513 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18515         * reflection.c (create_custom_attr): Fix some warnings.
18516         (create_custom_attr_data): Ditto.
18517         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18518         types. Fixes #78855.
18520 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18522         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18524         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18526 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18528         * reflection.c (resolve_object): Add support for DynamicMethod.
18530         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18531         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18533 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18535         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18536         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18538 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18540         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18541         Fixes #77888.
18543 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18545         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18546         slightly: remove a shadow local variable.
18548 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18550         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18551         definition that introduces the virtual function slot.
18552         Also fix Coverity #105.
18554 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18556         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18557         for dynamic assemblies. Fixes #78724.
18559 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18561         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18562         Fixes #78722.
18564 2006-06-21  Martin Baulig  <martin@ximian.com>
18566         * reflection.c
18567         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18568         fixes #76484.
18570 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18572         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18574 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18576         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18577         nor TYPEREFs.
18578         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18579         Inflate result if necessary.
18580         (mono_class_get_full): Remove old version.  Rename from
18581         'mono_class_get' and add 'context' argument.  Pass it to
18582         ..._create_from_typespec.
18583         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18584         (mono_ldtoken): Revert change below.
18586 2006-06-20  Martin Baulig  <martin@ximian.com>
18588         * class.c (mono_ldtoken): Don't pass the generic context to
18589         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18591 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18593         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18594         and later freeing it. Fixes #78638.
18596 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18598         * icall.c (mono_class_get_throw): Revert over-zealous error
18599         throwing, the caller for mono_class_get_throw will cope with
18600         errors when classes are not properly initialized already.
18602         The code still copes with loader exceptions though.
18604         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18605         
18606 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18608         Fixes the `make run1' version of RuntimeAbort (to be commited,
18609         source is in Bugzilla).
18610         
18611         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18612         FALSE on class loading failure instead of returning true.
18614         * class.c (mono_class_create_from_typedef): It is possible for
18615         mono_metadata_interfaces_from_typedef_full to fail if a class is
18616         not found, cope with this.
18617         
18619 2006-06-14  Dick Porter  <dick@ximian.com>
18621         * socket-io.c: 
18622         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18623         4.1.1
18625 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18627         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18629 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18631         * icall.c: Another fix for building mono in Visual Studio.
18633 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18635         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18636         
18637 2006-06-09  Martin Baulig  <martin@ximian.com>
18639         * debug-mono-symfile.c: Put this back and really fix it this
18640         time. Sorry for all the trouble.
18642 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18644         * icall.c (mono_class_get_throw): Fix a warning.
18645         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18646         ReflectionTypeLoadException if needed. Fixes #78606.
18648         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18649         (mono_class_init): Ditto.
18651         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18652         ref_only exceptions.
18653         (mono_loader_clear_error): Make this work even if there is no error.
18655 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18657         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18658         Marshal.GetComSlotForMethodInfo using internal call.
18660 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18662         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18663         a function for signalling it.
18665         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18666         a referenced assembly is not found.
18668         * loader.c (mono_loader_error_prepare_exception): Add support for 
18669         LOADER_ERROR_ASSEMBLY. Fix formatting.
18671 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18673         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18674         for VARIANT marshalling on windows and increment corlib version
18675         since Variant struct was added.
18677 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18679         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18680         stack trace line information:
18682         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18683         (Martin) when looking up B which is between A and C, return A not C.
18685         Bug is #78573.
18687         Thanks to Alexander Olk for tracking this down.
18689 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18691         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18692         
18693         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18694         avoid clobbering its value.
18695         (mono_string_to_lpstr): Fix a warning on windows.
18697 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18699         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18701         * reflection.c loader.c: Removed references to 'dummy' flag.
18703         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18705         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18706         it gets GC tracking.
18708         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18709         GC tracking.
18710         
18711         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18713         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18715         * appdomain.c: Bump corlib version.
18717 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18719         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18720         CEE_STIND_REF when working with object references.
18722 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18724         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18725         Fixes #78539.
18727 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18729         * loader.c (method_from_memberref): Fix argument value for
18730         mono_loader_set_error_method_load (I was passing the MonoClass
18731         instead of the class name char *).
18733 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18735         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18736         CEE_STIND_REF when working with object references.
18738 2006-05-30  Martin Baulig  <martin@ximian.com>
18740         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18741         mono_method_full_name() change and replace the ':' with a '.'
18742         here.
18744 2006-05-30  Martin Baulig  <martin@ximian.com>
18746         * debug-mono-symfile.c
18747         (mono_debug_symfile_lookup_location): Fix the algorithm:
18748         when looking up B which is between A and C, return A not C.
18750 2006-05-29  Martin Baulig  <martin@ximian.com>
18752         * mono-debug.h
18753         (MonoDebugMethodInfo): Make the typedef public.
18754         (MonoDebugSourceLocation): New public struct.
18756         * mono-debug.c
18757         (mono_debug_source_location_from_address): Removed.
18758         (mono_debug_source_location_from_il_offset): Removed.
18759         (mono_debug_il_offset_from_address): Removed.
18760         (mono_debug_address_from_il_offset): Removed.
18761         (mono_debug_lookup_method): New public function.
18762         (mono_debug_lookup_source_location): New public function; replaces
18763         the old mono_debug_source_location_from_*() functions; see the
18764         inline documentation.
18765         (mono_debug_free_source_location): New public function.
18766         (mono_debug_print_stack_frame): New public function; see the
18767         inline documentation.
18769         * debug-mono-symfile.c
18770         (mono_debug_find_source_location): Renamed into
18771         mono_debug_symfile_lookup_location(); only take a
18772         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18773         documentation.
18774         (mono_debug_find_method): Renamed into
18775         mono_debug_symfile_lookup_method().
18777 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18779         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18780         returned by mono_image_open_full ().
18782         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18783         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18784         #78517.
18786         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18787         #78518.
18789 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18791         * class.c (mono_class_from_typeref): handle missing images
18792         earlier, deals with bug #78418.   Refactor code; 
18794         Fix a warning introduced in my previous commit (some stale code
18795         from before I revisited my patch).
18797         * class.c (mono_class_create_from_typedef): On failure, remove the
18798         class from the MonoImage->class_cache as the class is not
18799         initialized;   Fixes the leak pointed out by Paolo.
18801 2006-05-25  Dick Porter  <dick@ximian.com>
18803         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18804         DeleteCriticalSections until I figure out which one may still be
18805         sometimes locked when mono_thread_cleanup is called.
18807 2006-05-24  Dick Porter  <dick@ximian.com>
18809         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18810         of mono_thread_manage and back into its own function, so it can be
18811         called after the finalizer thread has finished.
18813         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18815 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18817         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18818         Fixes #78495.
18820         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18821         with non-blittable elements.
18822         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18824 2006-05-24  Martin Baulig  <martin@ximian.com>
18826         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18827         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18829         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18830         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18831         `mono_debugger_event_handler' to NULL.
18833 2006-05-24  Martin Baulig  <martin@ximian.com>
18835         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18837 2006-05-24  Martin Baulig  <martin@ximian.com>
18839         * mono-debug-debugger.h
18840         (mono_debugger_create_notification_function): Added
18841         `MonoCodeManager *' argument.
18843 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18845         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18847 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18849         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18850         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18851         implementation.
18853 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18855         * icall.c: precise GC support: objects can't be stored in unmanaged
18856         memory anymore, even if they are kept alive by other references: since
18857         they can move the GC needs to be able to always find them.
18859 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18861         * object.c: precise GC support for static fields. Support
18862         for moving GCs: write barriers and pinned allocation for interned
18863         strings.
18865 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18867         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18868         structure.
18870 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18872         * class.c, gc.c: sgen and precise GC updates.
18874 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18876         * marshal.h, marshal.c: added write barrier wrapper and precise type
18877         fixes.
18879 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18881         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18882         support.
18884 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18886         * reflection.c: precise and sgen GC updates.
18888 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18890         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18892 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18894         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18896 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18898         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18899         MONO_TYPE_OBJECT. Fixes #78462.
18901 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18903         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18904         and blittable types.
18906 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18908         * class.c (mono_class_get_exception_for_failure): Implement parts
18909         of a TODO: if the loader error is set (instead of the class
18910         error), we return a Loader exception that can be properly thrown
18911         elsewhere.
18913         This was exposed by some Winforms 2.0 code that I tried to run
18914         (Atsushi pointed me to it).
18916 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18918         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18919         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18920         
18921         * marshal.c (emit_marshal_vtype): Add limited support for 
18922         UnmanagedType.LPStruct. Fixes #78427.
18924         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18925         Applied a patch from kangaroo to fix #77523.
18927 2006-05-17  Martin Baulig  <martin@ximian.com>
18929         * threads.c
18930         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18931         (debugger_thread_created): Removed.
18932         (debugger_thread_exited): Removed.
18934 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18936         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18938         * object-internals.h (MonoReflectionResource): Sync with managed version.
18940 2006-05-12  Wade Berrier <wberrier@novell.com>
18942         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18944 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18946         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18947         functions try to allocate from the image mempool.
18949 2006-05-12  Dick Porter  <dick@ximian.com>
18951         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18953 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18955         * object.c: The FieldGetter and FieldSetter methods require the full
18956         name of the class, not only the name. Fixes bug #78277.
18958 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18960         * loader.c (method_from_memberref): Do not pass the NULL klass to
18961         mono_loader_set_error_() methods.  Pass the non-NULL value
18962         (class). 
18964 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18966         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18967         (mono_assembly_close): Null out assembly->image->references after freeing it.
18969         * image.c (mono_image_close): Free image->references.
18970         
18971         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18973 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18975         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18976         before checking if it's NULL (g_assert).
18978 2006-05-10  Martin Baulig  <martin@ximian.com>
18980         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18981         I thought I already killed that two months ago, but now it somehow reappeared.
18983 2006-05-10  Martin Baulig  <martin@ximian.com>
18985         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18987 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18989         * reflection.c: Allocate memory for dynamically created methods in the image
18990         mempools.
18992 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18994         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18995         don't use the ad pointer before checking if it's NULL (g_assert).
18997 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18999         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19000         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19002         * marshal.c: Allocate all signatures from mempools.
19004         * marshal.c: Allocate some more signatures from mempools.
19006 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19008         * object.c (mono_load_remote_field): The code used to provide a
19009         temporary variable for returning results if the user did not
19010         provide a result pointer.  But our temporary variable was allocted
19011         on the satck.
19013         Fix calling code to always pass a result area.   Coverity ID 103.
19015 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19017         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19018         value, not the old. Fixes #78312.
19019         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19021         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19022         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19023         per-image cache.
19025         * assembly.c (mono_assembly_close): Free image->references.
19027         * assembly.c (mono_assembly_names_equal): Fix a warning.
19028         (mono_assemblies_cleanup): Cleanup more global data.
19030         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19032         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19033         ptr_cache and image->modules.
19035         * image.c (mono_image_init): Allocate array_cache lazily.
19036         
19037 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19039         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19040         behavior was changed recently and has bad side effects.
19042 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19044         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19045         
19046         * assembly.c (mono_assembly_close): Remove a debug printf.
19048         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19050         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19051         to also allow for temporary references between mono_image_open ()/close ().
19053         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19055 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19057         * marshal.c: Fix support for dynamic methods.
19059         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19061         * marshal.c (mono_marshal_cleanup): New cleanup function.
19063         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19064         image mempools.
19066         * class.c (mono_class_init): Fix leaking class->nested_classes.
19068         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19070         * image.c (mono_image_init): Initialize the new cashes.
19072         * image.c (mono_image_close): Destroy the new cashes.
19074         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19076         * mempool.c (mono_mempool_strdup): New helper function.
19078         * class-internals.h: Add prototype for mono_loader_unlock ().
19080         * domain.c (mono_jit_info_table_find): Fix a warning.
19081         (mono_debugger_check_runtime_version): Ditto.
19083         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19084         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19085         functions to these modules.
19087         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19088         metadata modules.
19089         
19090         * marshal.c (mono_free_bstr): Fix a warning.
19092         * assembly.c (mono_assembly_open_full): Fix another small leak.
19094         * object.c: Fix some unload leaks in the remoting code.
19096         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19097         function.
19099         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19101         * reflection.c: Fix some unload leaks in dynamic assemblies.
19103 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19105         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19106         * marshal.h: Add BSTR support on Win32
19107         * icall.c: Add BSTR icalls
19108         * metadata.h: Add BSTR enums
19110 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19112         Work to catch the crash from #76795 and turn it into an
19113         exception.   As I stubbed out pieces of the VisualBasic support,
19114         I found a number of places where the code was failing and I added
19115         checks to those places. 
19116         
19117         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19118         function return a status code.  If we fail to parse the signature
19119         from mono_metadata_parse_generic_inst, return FALSE.
19121         * loader.c (mono_get_method_from_token): If we fail to load the
19122         method (mono_class_get) return NULL.   
19124         * (method_from_memberref): Return NULL if we are unable to parse
19125         the method signature
19127         (mono_loader_error_prepare_exception): Since we now use the
19128         loader_error flag internally to stop processing, and obtaining
19129         exceptions that might be thrown will walk this code path the
19130         proper way of going from a MonoLoaderError into a
19131         MonoException was convoluted.   This new routine encapsulates the
19132         process of turning the error into an exception and *clearing* the
19133         error afterwards.
19134         
19135 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19137         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19138         with missing assemblies), and to cope with:
19140                 * Missing fieldref from a non-existing assembly.
19141                 * Missing methodref from a non-existing assembly.
19143         The first batch of work to address *some* of the issues from 76661.
19144         
19145         * object.c (mono_class_create_runtime_vtable): If we fail to
19146         initialize the class raise the exception here. 
19148         * metadata.c (mono_class_get_overrides_full): If any methods fail
19149         to load return the failure to the caller.
19151         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19152         flagging assemblies that failed to load.   
19154         Do not crash if we are unable to load the assembly.
19156         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19157         assemblies. 
19159         * loader.c (mono_loader_set_error_type_load): Change the
19160         convention to always pass unallocated strings, so we make our own
19161         copies (I know our own code had duplicated strings before, but
19162         this keeps the normal conventions).
19163         (method_from_memberref): Call mono_loader_set_error_method_load
19164         for all possible failures of loading the class. 
19165         Remove assert, turn into a loader error.
19167         (mono_loader_error_to_exception): Move this routine from mini
19168         (mini_loader_error_to_exception) there was no need to have that in
19169         mini. 
19171         * class.c (mono_class_from_typeref): If we were not able to load
19172         the assembly with mono_assembly_load_reference, call the
19173         mono_loader_set_error_type_load to register the problem.
19175         (mono_class_setup_fields): If we fail to load the type from
19176         mono_metadata_parse_type_full, call mono_class_set_failure and
19177         break from the loop.
19179         If class->exception_type is set, we do not layout the fields as
19180         that might crash the runtime, and instead return (from breaking
19181         from the previous loop).
19183         (mono_class_setup_vtable): This now returns a boolean indicating
19184         whether the table was properly setup.   The decision is driven by
19185         mono_class_get_overrides_full which might run into non-existing
19186         methods. 
19187         
19188         (mono_class_init): Returns TRUE on success or FALSE if there was a
19189         problem in loading the type (incorrect assemblies, missing
19190         assemblies, methods, etc).
19192         When we call mono_class_setup_fields we also check for a potential
19193         error inside this call (either a class exception or a general
19194         loader exception).
19196         (mono_class_create_from_typedef): If the parent fails to load
19197         (calling mono_class_get_full) return NULL.
19198         
19199         ** Important **
19201         calls to mono_metadata_parse_type_full should be checked
19202         everywhere and set the mono_class_set_failure
19203         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19205         The current patch checks the places where my manually constructed
19206         tests show the errors are showing up, but we should do it
19207         everywhere. 
19209         ** Important2 **
19211         mono_class_init return values should be tested everywhere, like
19212         the previous case this is something that we should audit
19213         everywhere and not only on the cases exposed by the tests I
19214         created. 
19216 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19218         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19219         boolean parameter and instead pass the information on `options'
19220         parameter (FileOptions).
19222         * icall.c: Register the new signature for MonoIO.Open.
19224         * debug-helpers.c (dis_one): Trying to understand how coverity
19225         works.  Fix Run 5, item 78.
19227 2006-04-26  Dick Porter  <dick@ximian.com>
19229         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19230         dereference.
19232 2006-04-25  Martin Baulig  <martin@ximian.com>
19234         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19236         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19237         debugger_thread_created().
19238         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19239         special way.
19240         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19241         (mono_debugger_finalize_threads): New function; undo the effects
19242         of mono_debugger_init_threads().
19243         (mono_debugger_create_all_threads): Removed.
19245 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19247         * image.c (mono_image_close): Tidy up trace messages.
19249         * assembly.c (mono_assembly_close): Ditto.
19251         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19252         no longer references an already freed assembly. Fixes #78168.
19254 2006-04-21  Dick Porter  <dick@ximian.com>
19256         * threads.c (mono_thread_detach): Fix reference counting when
19257         detaching threads.
19259 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19261         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19262         #78155.
19264 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19266         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19267         (mono_type_to_stind): Ditto.
19269         * marshal.c: Use the new helper functions to simplify code.
19271         * image.c (mono_image_close): Add some code for help debug assembly unloading
19272         problems.
19274         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19275         image mempool.
19277         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19278         assembly was already loaded in another appdomain. Fixes #78083.
19280 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19282         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19283         referenced assemblies.
19284         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19286         * domain.c (mono_domain_free): Add a trace message.
19288         * appdomain.c (add_assemblies_to_domain): Ditto.        
19290         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19291         field.  
19293 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19295         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19297 2006-04-12  Martin Baulig  <martin@ximian.com>
19299         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19300         `USE_INCLUDED_LIBGC'.   
19302 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19304         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19305         the patch contains ../ and a small directory name later. Hopefully fixes
19306         #78035.
19308 2006-04-10  Martin Baulig  <martin@ximian.com>
19310         Clean up the debugger's thread-handling code.
19312         The debugger's thread-handling code has been moved from
19313         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19314         over the `threads' hash, keep track of exiting threads and also
19315         use proper locking.
19317         We can now debug XSP and XSP based applications with the debugger.
19319         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19321         * threads.h
19322         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19323         (mono_install_thread_callbacks): Likewise.      
19325         * threads.c (mono_thread_callbacks): Removed.
19326         (debugger_thread_created, debugger_thread_exited): New static functions.
19327         (start_wrapper): Call debugger_thread_created().
19328         (thread_cleanup): Call debugger_thread_exited().
19329         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19330         (mono_debugger_init_threads): New public function.
19331         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19332         iterate directly over the `threads' hash and also use proper locking.
19334         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19336         * mono-debug-debugger.h
19337         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19339 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19341         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19342         argument type=array. Fixes #78057.
19344 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19346         * culture-info-table.h : regenerated. Fixed bug #69652.
19348 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19350         * loader.c metadata.c: Reapply a variant r59116.
19351         
19352         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19354         * class.c (mono_class_setup_interface_offsets): New internal function.
19356         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19357         interfaces too. Fixes #77398.
19359         * reflection.c (encode_cattr_value): Add support for 
19360         parameter type=object, argument type=array.
19361         (load_cattr_value): Ditto. Fixes #77916.
19363         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19364         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19366         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19367         a byval char array and CharSet is Ansi.
19369         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19371 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19373         * metadata.c: Add some locking comments.
19374         
19375         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19376         mempool.
19377         (mono_metadata_free_method_signature): Don't free the signature itself.
19379         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19381         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19382         reference the same MonoImage.
19383         (mono_assembly_load_from_full): Add an assert.
19385 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19387         * image.c (mono_image_close): Don't put the image we are about to free into the
19388         loaded_images_guid_hash.
19390         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19391         to reduce code duplication.
19393         * marshal.c: Register the native functions called by this module as icalls, to
19394         somewhat centralize the creation of MonoMethodSignature's.
19396         * loader.c (mono_method_signature): Add a cache for method signatures.
19398         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19399         the parameter attributes of a method.
19400         (mono_metadata_parse_method_signature_full): Refactored the computation of
19401         parameter attributes into a separate function. Also avoid one allocation in
19402         most cases.
19404         * assembly.c (mono_assembly_close): Ditto.
19406         * image.c (mono_image_close): Log trace messages with INFO level.
19408         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19410         * image.c reflection.c: Correct reference counting of image modules.
19411         
19412         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19413         of this function from the image mempool.
19414         
19415         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19416         to allow more cached types to be used.
19418         * mono-debug.c (mono_debug_add_method): Appled patch from
19419         David S. Miller  <davem@sunset.davemloft.net>: Access 
19420         minfo->lexical_blocks[] entry elements using read32().
19422 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19424         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19425         methods as it is allocated from the mempool.
19427         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19428         image mempool.
19430         * metadata-internals.h: Add comments describing the reference counting scheme
19431         used for MonoImage and MonoAssembly.
19433         * image.c assembly.c reflection.c: Rework reference counting of images and 
19434         assemblies so they are freed when the runtime is shut down. Free some 
19435         additional memory structures when an image is unloaded.
19436         
19437 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19439         * class.c loader.c reflection.c: Allocate more data structures in
19440         the image mempool.
19442 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19444         * icall.c
19445         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19446         build on pre glib 2.4 systems.
19448 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19450         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19452         * icall.c: Fix some warnings.
19454 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19456         * culture-info-table.h : regenerated.
19458 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19460         * threads.c, object-internals.h, verify.c: changed the culture caching
19461         code to use a normal MonoArray for storage so the GC can keep track of
19462         them easily. Fixed bits of the cache logic, too and simplified the
19463         code.
19465 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19467         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19468         thread for non-Boehm GCs.
19470 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19472         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19473         needed to keep track of the data for static fields.
19475 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19477         Fix #75172
19478         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19479         for interface classes.  Use 'num_methods' instead.
19480         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19481         before using '->vtable_size' field.
19483 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19485         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19486         doesn't contain managed pointers, so use a normal hashtable.
19488 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19490         * reflection.c, class-internals.h, domain.c: fixed handling of types
19491         used as values for objects in custom attributes (bug #77915):
19493 2006-03-24  Martin Baulig  <martin@ximian.com>
19495         * class.c (mono_class_setup_fields): Added support for generic
19496         instances; fixes #77580.
19498 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19500         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19502 2006-03-24  Dick Porter  <dick@ximian.com>
19504         * file-io.c (get_file_attributes): More stat macro breakage.
19505         Fixes bug 77759.
19507 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19509         * profiler.c: added the file=filename option in the default profiler
19510         to output the profile data to filename.
19512 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19514         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19515         bug #77877.
19517 2006-03-22  Martin Baulig  <martin@ximian.com>
19519         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19520         allocated `MonoClassField *' in `fb->handle'.
19522 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19524         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19525         allocate interface ID to save memory and allow better ID reuse on
19526         appdomain unload. setup_generic_vtable () removal from Martin.
19528 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19530         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19531         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19532         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19533         write barriers for reference stores with managed objects accessed with
19534         C structures in the runtime and in embedding programs.
19536 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19538         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19539         'interface_id' and 'max_interface_id' fields of MonoClasses
19540         representing open generic types.
19542 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19544         * object.h, object.c, icall.c: added functions to deal with
19545         storing valuetypes that contain references in managed objects.
19546         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19547         fixes and comments around uses of mono_array_addr ().
19549 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19551         * object.h, icall.c, monitor.c: object.GetHashCode ()
19552         implementation that supports the moving garbage collector.
19554 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19556         * icall.c, threads-types.h, threads.c: implemented finalizer for
19557         LocalDataStoreSlot.
19559 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19561         * metadata.c (mono_type_size): Add a fixme.
19562         (mono_type_stack_size): Ditto.
19564         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19565         'type_forwarders' field.
19567         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19568         attribute from net 2.0.
19570         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19571         from class.c.
19573         * class.c (mono_class_setup_fields): Fix a warning.
19574         
19575         * class.c (mono_class_from_name): Add support for assemblyref entries
19576         in the EXPORTEDTYPE table.
19578         * reflection.c: Add support for handling type forwarders under net 2.0.
19580         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19581         
19582 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19584         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19585         overwriting entries in ModuleBuild->types, also clean up the code
19586         a little. Fixes #77774.
19588 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19590         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19591         load friend assembly info when present.
19593 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19595         Fix crasher on gtest-158.cs.
19596         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19597         the return value if the MonoClass we want is yet in an
19598         inconsistent state.
19599         * class.c (mono_class_create_from_typedef): Add an comment
19600         explaining an order dependency between mono_class_setup_parent and
19601         mono_class_setup_mono_type.
19603 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19605         * class.c: documentation updates and events bug fix.
19607 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19609         * class.c: some cleanup, locking fixes.
19611 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19613         * class.c: fix the generics code to setup nested
19614         type info to the instantiated type (bug #77770).
19616 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19618         * marshal.c: fixed a few type correctness issues.
19620 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19622         * loader.c: the Set/Get/Addrtess array methods should be public.
19624 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19626         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19627         
19628         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19629         info->wrapper.
19631 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19633         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19635         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19637         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19638         (mono_mempool_alloc0): Ditto.
19640 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19642         * socket-io.c:
19643         (create_object_from_sockaddr): it was allocating 4 extra bytes
19644         for the AF_UNIX data. Fixes bug #77747.
19646 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19648         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19650 2006-03-09  Dick Porter  <dick@ximian.com>
19652         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19653         Fixes bug 76966 again.
19655 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19657         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19658         names from r57532
19659         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19661 2006-03-07  Martin Baulig  <martin@ximian.com>
19663         * object.c
19664         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19666 2006-03-07  Martin Baulig  <martin@ximian.com>
19668         * class.c
19669         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19670         regression introduced in r56970; see gtest-252.cs.
19672         * loader.c (mono_get_method_constrained): Correctly handle generic
19673         methods; see gtest-253.cs.
19675 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19677         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19679 2006-03-04  Martin Baulig  <martin@ximian.com>
19681         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19682         compute the parent type at runtime, just like we're already doing
19683         it for interfaces.
19685         * reflection.c
19686         (mono_reflection_bind_generic_parameters): Don't compute the
19687         parent type anymore.
19689         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19691 2006-03-04  Martin Baulig  <martin@ximian.com>
19693         * mono-debug-debugger.h
19694         (mono_debugger_create_notification_function): Allocate memory at
19695         runtime and return a pointer to it.
19697 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19699         * assembly.c: Fix windows build.
19700         
19701         * assembly.c: Fix build.
19703         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19705         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19706         
19707 2006-03-03  Dick Porter  <dick@ximian.com>
19709         * process.c
19710         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19711         Check parameters before dereferencing them.  Fixes Aaron's part of
19712         bug 77393.
19714 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19716         Fix performance regression.
19717         * loader.c (find_method_in_class): Add 'from_class' argument.
19718         Rename 'klass' argument to 'in_class'.  The signature is compared
19719         against the method in 'in_class', and the corresponding method is
19720         returned from 'from_class'.
19721         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19722         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19723         type definition and generic instantiation in parallel.
19724         (mono_get_method_constrained): Update to changes.
19726 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19728         * threads.c: make sure the domain is correct, too when doing
19729         mono_thread_attach ().
19731 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19733         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19734         windows. Fixes #77683.
19736 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19738         * object.h, *: introduced specific way to set elements of an array
19739         of references to be used as write barrier. Still need to audit the
19740         uses of mono_array_addr.
19742 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19744         * object-internals.h: New field to cache the assmebly name, patch
19745         from Tambet Ingo (tambet@ximian.com)
19747 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19749         * decimal.h, class-internals.h, metadata-internals.h,
19750         file-io.h: mark a few function declarations as internal, to
19751         reduce the number of PLT entries.
19753 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19755         * file-io.c: fix typo in warning message.
19757 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19759         * loader.c: on unix, lookup the "*A" version of a function
19760         if charset is auto as a second option before failing.
19762 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19764         * class.h (mono_class_inflate_generic_method): Revert to two
19765         argument version.
19766         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19767         (mono_class_inflate_generic_method_full): Add.
19768         * class.c (mono_class_inflate_generic_method_full): Rename from
19769         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19770         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19771         * loader.c, reflection.c: Update to changes.
19773 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19775         * icall.c: const fixes and small improvements.
19777 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19779         * threadpool.c: for asynchronous connect(), enable the same workaround
19780         for BSD 6 as for the Mac. Fixes bug #77637.
19782 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19784         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19785         formatted classes. Fixes #77524.
19787 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19789         * class.c (inflate_generic_type): Add a couple more
19790         micro-optimizations.
19791         (inflate_generic_context): Don't use the 'gmethod' from
19792         'inflate_with'.
19793         (mono_class_inflate_generic_method): If the method has generic
19794         parameters, but the passed-in context doesn't have a 'gmethod',
19795         create one.  Use the possibly simplified generic instantiation
19796         from the declaring class instead of the one passed in.
19798 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19800         Make generic method signature and method header handling lazy.
19801         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19802         (inflate_generic_header): Likewise.
19803         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19804         parameter to avoid inflating types.
19805         (mono_get_inflated_method): Empty out.
19806         * class.h (mono_class_inflate_generic_method): Update to changes.
19807         * loader.c (mono_get_method_from_token): Don't parse signature for
19808         generic methods, nor methods of generic classes.
19809         (mono_method_signature): Rename from 'mono_method_signature'.
19810         Inflate signature on demand.
19811         (mono_method_get_header): Inflate method header on demand.
19812         * reflection.c: Update to changes.
19814 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19816         * metadata.c (mono_metadata_inflate_generic_inst): If the
19817         instantiation is closed, don't bother expanding it in the new
19818         context.
19819         * class.c (inflate_generic_class): If the generic instantiation
19820         doesn't change after inflation, return the argument itself.
19821         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19822         Add bounds checks.
19823         (inflate_generic_context): If neither the generic class nor the
19824         generic method instantiations change, return the original context.
19825         * reflection.c (mono_method_get_object): Do
19826         'mono_get_inflated_method' before accessing the ->klass field.
19827         (inflate_mono_method): Don't create a MonoGenericMethod unless
19828         necessary.
19829         (inflate_method): Don't pass a constructed type as the declaring
19830         type of a methodbuilder.
19832 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19834         * object.c: fix memory overwrite.
19836 2006-02-22  Dick Porter  <dick@ximian.com>
19838         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19839         it doesn't work any more.
19840         (mono_threads_request_thread_dump): Fix unused variable warnings.
19842 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19844         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19845         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19846         the public header file.
19848 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19850         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19852 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19854         * class-internals.h, object.c: reduce the size of MonoVTable
19855         and store the interface_offsets array at negative offsets.
19857 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19859         * metadata.c: tweak table descriptors data structures to reduce
19860         size and runtime relocations.
19862 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19864         * marshal.c: fix some types and opcodes to be type-safe
19865         in marshaling wrappers.
19867 2006-02-21  Ankit Jain  <jankit@novell.com>
19869         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19871 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19873         * metadata.c (get_constraints): Relax debugging checks for monodis.
19875 2006-02-21  Ankit Jain  <jankit@novell.com>
19877         * metadata.c (mono_metadata_load_generic_params): Move the code
19878         checking for ambiguous generic params from here to mono/dis/get.c
19879         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19881 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19883         Fix assertion triggered when compiling nemerle.
19884         * class.c (mono_get_shared_generic_inst): Rename from
19885         get_shared_inst and make non-static.
19886         * loader.c (mono_get_shared_generic_method): New.  Used to create
19887         the MonoGenericContext-equivalent of a MonoGenericContainer.
19888         (mono_get_method_from_token): Initialize the 'context' field of
19889         the created MonoGenericContainer.
19890         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19891         * metadata.c (get_constraints): Add sanity check.
19892         * class-internals.h: Add new internal methods.
19894         * reflection.c (verify_safe_for_managed_space): New sanity check.
19895         Currently checks that owner-less generic parameters aren't allowed
19896         in managed space.
19897         (mono_type_get_object): Use it.
19898         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19899         that are now in mono_type_get_object.
19900         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19902 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19904         * metadata.c (mono_type_create_from_typespec): Rename from
19905         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19906         argument and caching of types in the generic container.
19907         (unwrap_arrays, find_generic_param): Remove.
19908         * metadata-internals.h: Update.
19909         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19911 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19913         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19915         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19916         return values. Fixes #77581.
19918         * class.c (mono_fnptr_class_get): Switch name and name_space.
19920         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19921         classes and add support for [In, Out] attributes.
19922         (mono_marshal_free_asany): Ditto. Fixes #77524.
19924 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19926         * class.c (mono_class_from_generic_parameter): Make more robust to
19927         incomplete MonoGenericContainers from monodis.
19929 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19931         * class-internals.h: added some more exception types.
19932         * class.c, metadata.c: added a few checks to handle missing
19933         types.
19935 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19937         Use owner-less generic-params some more.
19938         * class.c (my_mono_class_from_generic_parameter): Remove.
19939         (mono_class_from_generic_parameter): Handle null image,
19940         param->name and param->owner.
19941         (mono_class_from_mono_type): Update.
19942         (mono_class_create_from_typespec): Remove 'container' parameter.
19943         If that parameter is non-null, the result is always inflated by
19944         'mono_class_get_full' anyway.
19945         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19946         parameter.
19947         (mono_class_get_full): Update.
19949         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19950         instance is not open, don't bother inflating.
19951         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19952         parse metadata for inflated classes.
19953         (_mono_class_get): Change GenericContext* parameter to
19954         GenericContainer*.
19955         (mono_class_create_from_typespec): Likewise.  Simplify, and
19956         implement trivially.  All the cases are handled in
19957         mono_class_from_mono_type.  Don't inflate returned class.
19958         (mono_class_get_full): Delegate GENERICINST optimization to
19959         inflate_generic_type.
19960         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19962 2006-02-16  Dick Porter  <dick@ximian.com>
19964         * socket-io.c (create_object_from_sockaddr): Fix typo.
19965         (create_sockaddr_from_object): Check array lengths before
19966         potentially accessing items off the end.
19967         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19968         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19969         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19970         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19971         length checks to avoid wraparound overflows.
19972         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19973         contents of the array of sockets
19974         (hostent_to_IPHostEntry2)
19975         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19976         Check return value of inet_ntop ().
19977         (addrinfo_to_IPHostEntry): Fix typo
19979 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19981         Type metadata parsing doesn't use generic-instantiation information.
19982         * metadata.c (mono_metadata_parse_array_full): Change
19983         MonoGenericContext* parameter to MonoGenericContainer*.
19984         (mono_metadata_parse_type_full): Likewise.
19985         (mono_type_create_from_typespec_full): Likewise.
19986         (mono_metadata_parse_mh_full): Likewise.
19987         (mono_metadata_parse_generic_inst): Likewise.
19988         (do_mono_metadata_parse_generic_class): Likewise.
19989         (do_mono_metadata_parse_type): Likewise.
19990         * metadata-internals.h: Update to changes.
19991         * class.c (mono_class_find_enum_basetype): Likewise.
19992         (mono_class_setup_fields): Likewise.
19993         (mono_class_create_from_typespec): Likewise.
19994         * loader.c (method_from_methodspec): Likewise.
19995         (mono_get_method_from_token): Likewise.
19996         (mono_method_get_header): Likewise.
19998 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20000         * marshal.c: handle additional GENERICINST case (patch from
20001         Thong Nguyen <tum@veridicus.com>).
20002         Fix a few cases where LDIND_I/STIND_I was used for references.
20004 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20006         * reflection.c (mono_reflection_get_token): Remove unused variable.
20008 2006-02-16  Martin Baulig  <martin@ximian.com>
20010         * reflection.c (mono_reflection_get_token): Add support for fields
20011         in instantiated generic types.
20013         * icall.c
20014         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20016 2006-02-15  Martin Baulig  <martin@ximian.com>
20018         * icall.c
20019         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20020         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20021         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20022         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20024 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20026         * class.c, metadata.c, metadata.h, object.c, icall.c,
20027         marshal.c: changed mono_type_get_underlying_type () to do
20028         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20029         Fixed handling of instantiated generic valuetypes (bug #75479).
20031 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20033         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20034         Delegate to mono_metadata_decode_value, and work on the returned value.
20036         * icall.c (ves_icall_MonoType_GetGenericArguments):
20037         Add consistency check here too.
20038         
20039 2006-02-15  Ankit Jain  <jankit@novell.com>
20041         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20042         char/short etc.
20044 2006-02-15  Ankit Jain  <jankit@novell.com>
20046         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20047         signed values, used only for representing lower bounds of arrays.
20048         (mono_metadata_parse_array_full): Use new
20049         mono_metadata_decode_signed_value to decode lower bounds.
20051 2006-02-14  Martin Baulig  <martin@ximian.com>
20053         * reflection.c
20054         (mono_reflection_get_token): Support "MonoGenericMethod" and
20055         "MonoGenericCMethod" and allow generic instances / methods.
20057 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20059         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20060         to obtain the terminal size using an ioctl.
20062         * object.c (mono_nullable_init): Revert this as nullable reference
20063         types are not valid.
20064         (mono_nullable_box): Ditto.
20066 2006-02-09  Dick Porter  <dick@ximian.com>
20068         * threads.c (mono_thread_detach): Drop a reference to the thread
20069         we're detaching.
20071 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20073         * object.c (mono_nullable_init): Handle nullable reference types.
20074         (mono_nullable_box): Ditto. Fixes #77446.
20076 2006-02-07  Martin Baulig  <martin@ximian.com>
20078         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20080 2006-02-07  Ankit Jain  <jankit@novell.com>
20082         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20083         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20084         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20085         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20086         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20087         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20089 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20091         * class.c (mono_class_create_generic): Set type_token as well.
20093         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20094         compatible with MS.
20096 2006-02-02  Martin Baulig  <martin@ximian.com>
20098         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20099         has never been used so far.
20101 2006-02-02  Martin Baulig  <martin@ximian.com>
20103         * mono-debug-debugger.h: Changed comment at the top of this file;
20104         the header is not installed, but it's safe to #include it from
20105         within the JIT.
20107         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20108         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20110 2006-02-02  Martin Baulig  <martin@ximian.com>
20112         * mono-debug.h
20113         (MonoSymbolTable): Removed the `metadata_info' field.
20115         * mono-debug.c
20116         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20118         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20119         (mono_debugger_add_builtin_types): Removed.
20120         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20121         (mono_debugger_create_notification_function): We now operate on a
20122         pre-allocated area; take a `gpointer' and return `void'.
20124         * mono-debug-debugger.c
20125         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20126         (mono_debugger_add_builtin_types): Removed.
20128 2006-02-02  Martin Baulig  <martin@ximian.com>
20130         * threads.c (mono_debugger_create_all_threads): New public method.
20132 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20134         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20135         breaks on several platforms.
20137 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20139         * assembly.c: the VS.NET build doesn't supply default values for
20140         MONO_ASSEMBLIES and MONO_CFG_DIR.
20142 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20144         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20145         helper function.
20147         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20149         * loader.c (method_from_memberref): Fix a warning.
20151         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20153         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20154         with explicit layout. Fixes #77433.
20156 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20158         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20159         max_interface_id is initialized before using it. Fixes #77398.
20160         (ves_icall_Type_GetInterfaces): Ditto.
20162 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20164         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20165         allocate memory for parameter attributes when parsing memberref
20166         signatures.
20167         * loader.c (mono_loader_set_error_method_load): Don't warn.
20168         (method_from_memberref): Ensure MissingMethodException gets thrown
20169         if method is not found.  Make warning more informative.
20171 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20173         Fix #77397
20174         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20175         return true if is byref.
20176         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20177         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20178         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20180 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20182         Fix tests/find-method.2.il
20183         * loader.c (find_method, find_method_in_class): Remove is_inflated
20184         argument.  Revert 2006-01-18 change.
20185         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20186         is generic, search for method in its generic definition.
20187         * class.c (mono_class_setup_vtable_general): Print generic
20188         arguments of generic types in debugging printf.
20190 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20192         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20194         * threads.c (mono_threads_request_thread_dump): New helper function.
20196 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20198         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20200 2006-01-25  Ankit Jain  <jankit@novell.com>
20202         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20203         move definition to ..
20204         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20205         
20206 2006-01-25  Ankit Jain  <jankit@novell.com>
20207             Raja R Harinath  <rharinath@novell.com>
20209         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20210         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20211         as necessary.
20213 2006-01-25  Martin Baulig  <martin@ximian.com>
20215         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20216         `MonoDebuggerThread' into debug-debugger.c.
20218 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20220         * profiler.c: fix printing of data.
20222 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20224         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20225           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20227 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20229         * object.c: fix deadlock related to string interning.
20231 2006-01-23  Martin Baulig  <martin@ximian.com>
20233         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20235         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20237 2006-01-23  Martin Baulig  <martin@ximian.com>
20239         * mono-debug.h: Moved the prototypes of some functions which are
20240         used by the JIT here from mono-debug-debugger.h.
20242 2006-01-21  Martin Baulig  <martin@ximian.com>
20244         * Makefile.am: Don't install mono-debug-debugger.h.
20246 2006-01-21  Martin Baulig  <martin@ximian.com>
20248         * mono-debug-debugger.h: Enforce the private status of this header
20249         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20250         Moved some stuff from mono-debugger-jit-wrapper.h here.
20252 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20254         * class.c (mono_class_from_typeref): Add a sanity test to help
20255         catch lack of assembly load/search hooks.
20257 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20259         * marshal.c (emit_struct_conv): Relax the fields with same offset
20260         check even more. Fixes #77230.
20262 2006-01-18  Martin Baulig  <martin@ximian.com>
20264         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20265         argument; if false, we compare the uninstantiated signatures.
20266         (method_from_memberref): Compare the uninstantiated signatures;
20267         fixes #76417.
20269 2006-01-18  Robert Jordan  <robertj@gmx.net>
20271         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20272         Clear the weak link. Fixes bug #77170.
20274         * gc.c (mono_gchandle_free):
20275         Reflect *-gc.c changes (tiny optimization).
20277 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20279         * metadata.c (mono_metadata_signature_dup): Applied patch from
20280         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20281         Fixes #77288.
20283 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20285         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20286         marshalling from native to managed code. Fixes #77230.
20288 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20290         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20291         connect. Fixes bug #77020.
20293 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20295         * class.c: fixed id assignement for nested interfaces (bug #77275).
20296         Added also better info for --print-vtable debugging.
20298 2006-01-12  Martin Baulig  <martin@ximian.com>
20300         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20301         interfaces on-the-fly; fixes #76625.
20303         * class-internals.h
20304         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20305         don't need that anymore.
20307 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20309         * socket-io.c
20310         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20311         To avoid initing the nested_classes when not needed I turned the
20312         PeerCredData as a toplevel internal class, as it has to be shared
20313         anyways. 
20315         Fixes the CASA issue.
20317 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20319         * domain.c: Accessors for MonoJitInfo
20321         * profiler-private.h: Add jitinfo to the end jit hook
20323         * profiler.[ch]: Define new hooks, called after jitting which give
20324         the MonoJitInfo that was compiled
20326 2006-01-10  Martin Baulig  <martin@ximian.com>
20328         * class.c (mono_class_setup_events): Add support for generic
20329         classes; fixes #76440.
20331 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20333         Fix #77160.
20334         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20335         on passed-in method.
20337 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20339         * object.c (mono_runtime_invoke_array): Add Nullable support.
20341         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20343 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20345         * file-io.c: Don't consider sockets as directory and avoid an endless
20346         loop. Fix bug #76966.
20348 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20350         * object.c (mono_nullable_init): New helper function.
20351         (mono_nullable_box): Ditto.
20353         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20355         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20357         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20358         
20359 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20361         * class.c (mono_class_is_assignable_from): Make T assignable to 
20362         Nullable<T>.
20364 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20366         * appdomain.c: Bump corlib version to 46.
20367         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20368         serialization purpose) and changed ves_icall_System_Reflection_
20369         Assembly_get_code_base signature to accept a boolean (to escape, or 
20370         not, the assembly code base).
20372 2005-12-23  Dick Porter  <dick@ximian.com>
20374         * icall.c: 
20375         * threads-types.h: 
20376         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20377         CreateEvent icall now returns "created" boolean parameter.
20379 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20381         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20382         #76967.
20384         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20385         when attr_klass is an interface. Fixes #77045.
20387 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20389         * marshal.c (emit_struct_conv): Fix previous patch.
20390         
20391         * marshal.c (emit_struct_conv): Add a check for fields with the same
20392         offset.
20394 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20396         Fix regression in Mono.C5.
20397         * class.c (mono_class_create_generic): If 'klass' is an interface
20398         set up the interface offsets.
20399         (mono_class_is_assignable_from): Don't throw away generic arguments.
20401 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20403         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20404         type parameters.
20406 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20408         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20409         dead store.
20410         (do_mono_metadata_parse_generic_class): Don't pass the current
20411         generic context when parsing the type being instantiated: it
20412         cannot use it, anyway.
20414         * loader.c (method_from_memberref): Don't inflate a signature if
20415         it doesn't contain any type parameters.
20417 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20419         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20421 2005-12-14  Martin Baulig  <martin@ximian.com>
20423         * class.c
20424         (mono_type_get_name_recurse): Don't return null for type
20425         parameters and open generic classes.
20426         (mono_class_setup_methods): Don't exclude generic instances.
20427         (mono_get_unique_iid): Use different IDs for different
20428         instantiations of the same generic type.
20429         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20430         open generic instances; create a normal vtable for closed generic
20431         instances.
20432         (mono_class_setup_vtable_general): We're now also called for
20433         closed generic instances.
20435         * reflection.c
20436         (mono_reflection_bind_generic_parameters): Correctly use
20437         mono_metadata_lookup_generic_inst() everywhere.
20439 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20441         * object.c (mono_class_create_runtime_vtable): Call 
20442         mono_class_setup_vtable ().
20444         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20445         function.
20446         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20447         #76959.
20449         * loader.c (mono_loader_set_error_type_load): Print the type load
20450         warnings to the console so they are more visible to the user.
20451         (mono_loader_set_error_method_load): Ditto.
20453         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20454         is still broken.
20455         
20456         * reflection.c (ensure_runtime_vtable): Fix build.
20458         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20459         doesn't work in all cases.
20461 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20463         * object.c (mono_array_new_full): Treat a single dimensional array
20464         with 0 lower bounds as an szarray. Fixes #76973.
20466         * reflection.c (custom_attr_visible): Really fix this.
20468 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20470         * reflection.c (custom_attr_visible): Allow nested public attributes
20471         as well.
20473         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20474         interface check.
20476 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20478         * class.c (set_generic_param_owner): Delete.
20479         (mono_class_create_from_typedef): Don't set ->owner field of
20480         generic parameters to "param containers" of enclosing classes.
20481         * reflection.c (mono_reflection_initialize_generic_parameter):
20482         Likewise.
20484 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20486         * reflection.c (custom_attr_visible): Fix build.
20488 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20490         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20491         private attributes.
20492         
20493         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20494         handling of null parameter defaults.
20496 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20498         * class.c (mono_class_from_generic_parameter): Don't set
20499         klass->generic_container.
20500         (my_mono_class_from_generic_parameter): Likewise.
20502 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20504         * reflection.c (load_public_key): Fix a warning.
20505         (method_encode_code): Fix unaligned accesses.
20507 2005-12-07  Martin Baulig  <martin@ximian.com>
20509         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20511         * reflection.c
20512         (write_generic_param_entry): Encode our custom attrs.
20514         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20516 2005-12-07  Martin Baulig  <martin@ximian.com>
20518         * reflection.c (encode_new_constraint): Removed; we don't use the
20519         `NewConstraintAttribute' anymore.
20521 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20523         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20524         not fire a TypeResolve event when Assembly.GetType () is called.
20526 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20528         Beginning of support for nullable types in the runtime. Parts of
20529         this patch are from Martin.
20531         * appdomain.c (MONO_CORLIB_VERSION): Bump
20533         * domain.c (mono_init_internal): get the nullable type
20535         * class.c (mono_class_is_nullable): New method
20536         (mono_class_get_nullable_param): New mehod
20537         (mono_class_create_generic): In types T? set cast_class to T
20539         * class-internals.h (MonoDefaults): new nullable default class
20540         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20541         new methods.
20543 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20545         * metadata.c (select_container): New.  Refactor code to select the
20546         appropriate GenericContainer given the type of generic parameter
20547         we are looking for.
20548         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20549         not a MonoGenericContext.  Use select_container.  Update parameters.
20550         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20551         and MONO_TYPE_MVAR.
20552         (unwrap_arrays): Remove duplicate tests.
20553         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20554         generic instantiated class to find any arguments that are generic
20555         parameters.
20556         (mono_type_create_from_typespec_full): Use find_generic_param to
20557         avoid evicting some generic instantiations from the typespec
20558         cache.
20560 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20562         * reflection.c: fixed writing of doubles on ARM FPA.
20564 2005-12-02  Robert Jordan  <robertj@gmx.net>
20566         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20568 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20570         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20571         least on SUSE 10 they are not the same (on debian, they are just the
20572         same thing).
20574 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20576         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20577         DeclaringType for VARs and MVARs.
20578         * class.c (set_generic_param_owner): Fix initialization of owner
20579         fields.
20581 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20583         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20585 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20587         * threadpool.c: workaround for a bug that shows up on the Mac:
20588         select()+connect() on a blocking socket is not like it should
20589         be, so we proceed to connect() in that case, wasting the I/O
20590         threadpool thread until connect succeedes. Fixes bug #75436.
20592 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20594         * threadpool.c: fix typo when setting file descriptor states.
20596 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20598         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20599         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20600         create a temporary signature container.
20601         (mono_metadata_parse_generic_param): Update to changes.
20602         (mono_type_create_from_typespec_full): Update to changes.
20603         * loader.c (method_from_memberref): Don't use a
20604         MonoGenericContainer while parsing a memberref signature.
20605         (method_from_methodspec): Remove dead-store of the 'container'
20606         variable.  It's overwritten before use.
20608         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20609         checks tighter.
20610         (mono_metadata_parse_generic_param): Likewise.
20611         * loader.c (find_method_in_class): Does not need a
20612         MonoGenericContainer.  Use 'mono_method_signature' rather than
20613         'mono_method_signature_full'.
20614         (find_method, mono_get_method_constrained, method_from_memberref):
20615         Update to changes.
20617         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20618         owner-less generic-parameters are never evicted from the typespec
20619         cache.
20621         * loader.c (method_from_memberref): Don't use the current context
20622         when parsing signatures.
20623         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20625         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20626         side-effects in g_assert.
20627         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20628         that we don't potentially lose information.
20630 2005-11-26  Dick Porter  <dick@ximian.com>
20632         * icall.c:
20633         * threads.c: icalls to implement basic (ie, not named)
20634         System.Threading.Semaphore.
20636 2005-11-24  Dick Porter  <dick@ximian.com>
20638         * process.c
20639         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20640         Use GetProcessId() if it's available.
20642 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20644         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20646 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20647             Ankit Jain  <jankit@novell.com>
20649         * loader.c (mono_get_method_from_token): Initialize 'method' field
20650         of all generic parameters before parsing the signature.  Remove
20651         code that "fixed"-up MVAR references.
20653 2005-11-23  Ankit Jain  <jankit@novell.com>
20655         * metadata.c (mono_metadata_has_generic_params):
20656         (mono_metadata_load_generic_param_constraints):
20657         (mono_metadata_load_generic_params): Move duplicate code ...
20658         (mono_metadata_get_generic_param_row): ... here. Returns the
20659         first row-id in GenericParam table for a given owner (token).
20660         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20661         prototype.
20663 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20664             Ankit Jain  <jankit@novell.com>
20666         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20667         comparing VARs too.
20668         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20669         type->data.generic_param only if the type is an MVAR.
20670         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20671         leak owner-less VARs and MVARs into managed space.
20673 2005-11-21  Martin Baulig  <martin@ximian.com>
20675         * class-internals.h
20676         (MonoMethod): Moved the `generic_container' here from
20677         `MonoMethodNormal' since we now also need it for
20678         `MonoMethodPInvoke';
20679         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20680         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20681         an union containing both `MonoMethodNormal' and
20682         `MonoMethodPInvoke'.
20684         * loader.c
20685         (mono_get_method_from_token): Allow implementing generic methods
20686         as interncalls.
20688         * threads.c
20689         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20690         icall.
20692 2005-11-17  Dick Porter  <dick@ximian.com>
20694         * icall.c: 
20695         * process.h: 
20696         * process.c: Split the Process Start_internal icall into
20697         ShellExecuteEx_internal and CreateProcess_internal, which are
20698         called depending on whether UseShellExecute is true.  Fixes bug
20699         76670.
20701         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20703 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20705         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20706         'msize' parameters, use the information in 'mspec' instead.
20707         (emit_object_to_ptr_conv): Ditto.
20709         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20710         fields out of order. Fixes #76733.
20712 2005-11-17  Ankit Jain  <jankit@novell.com>
20714         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20716 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20718         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20719           bug #76575.
20721 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20723         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20724         for types with non-auto layout. Fixes #76717.
20726 2005-11-16  Ankit Jain  <jankit@novell.com>
20728         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20729         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20730         if generic_context is null.
20731           (mono_metadata_generic_param_equal): param->owner can be null.
20732           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20733         null.
20735 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20737         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20738         the correct value.
20740 2005-11-15  Martin Baulig  <martin@ximian.com>
20742         * object.c (set_value): Use mono_class_from_mono_type() instead of
20743         the hack for generic instances; fixes #76136.
20745 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20747         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20748         fields.
20750         * image.c (load_metadata_ptrs): Initialize the new fields.
20752         * reflection.c (create_dynamic_mono_image): Ditto.
20754         * reflection.c (build_compressed_metadata): Use the new fields.
20756         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20757         icall.
20759         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20760         icall.
20761         
20762 2005-11-15  Ankit Jain  <jankit@novell.com>
20763             Raja R Harinath  <harinath@gmail.com>
20765         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20766         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20767         new per-generic_container cache if the cached MonoType's context matches
20768         the current context.
20769           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20770         to the expected context.
20771           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20773 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20775         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20776         we changed the signature of an icall.
20777         * icall.c: Modify to mono_double_ParseImpl return true/false 
20778         depending on the success, instead of throwing the exception. This will
20779         help us in Double.TryParse methods.
20780         
20781 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20783         * marshal.c (emit_marshal_object): Throw an exception when
20784         marshalling 'object' instead of crashing. Fixes #76696.
20786 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20788         * class-internals.h: Add prototype for mono_type_get_full_name ().
20790 2005-11-11  Dick Porter  <dick@ximian.com>
20792         * threads.c (mono_thread_manage): Make sure the main thread has
20793         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20795 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20797         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20798         console about the missing type.
20799         (mono_loader_set_error_method_load): Ditto.
20801 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20803         * mono-config.c (mono_get_config_dir): Set the system defaults if
20804         none is specified.
20806         * assembly.c (mono_set_dirs): New API entry point to set the
20807         assembly and the config directory in one call
20809 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20811         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20812         the ftnptr was created from a delegate in a domain other than the
20813         current domain. Fixes #75377.
20815         * exception.h exception.c: Add mono_get_exception_not_supported ().
20817 2005-11-08  Martin Baulig  <martin@ximian.com>
20819         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20821 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20823         * security-manager.h: Added definitions to deal with strongname key 
20824         pairs bigger (and smaller) than 1024 bits.
20825         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20826         adjust wrt the public key length being used.
20828 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20830         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20831           Windows build (r51396-51397).
20833 2005-11-03  Martin Baulig  <martin@ximian.com>
20835         * class.c (mono_class_setup_vtable_general): Also add generic
20836         methods to the vtable; fixes #76581.
20838 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20840         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20841         sure that we lookup GetString method from the System.Text.Encoding
20842         class, not the derived class or we get an empty method.
20844         Fixed class #76612.
20846 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20848         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20849         if it has been previously set (embedders). 
20851         Make mono_set_rootdir available also on Unix.
20853 005-10-24  Robert Jordan  <robertj@gmx.net>
20855         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20857 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20859         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20860         only calls which are made to native code use this flag.
20862         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20864 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20866         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20867         Add support for FieldBuilders.
20869 2005-10-29  Martin Baulig  <martin@ximian.com>
20871         * mono-debug.c
20872         (mono_debug_using_mono_debugger): New public method; returns
20873         whether we're running inside the debugger.
20875 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20877         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20878         for Method/Constructor/FieldBuilders.
20880 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20882         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20883         and fields as well.
20885 2005-10-26  Martin Baulig  <martin@ximian.com>
20887         * mono-debug-debugger.c
20888         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20890 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20892         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20893         integer to isspace.
20895 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20897         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20898         when passing valuetypes byref. Fixes #76502.
20900 2005-10-19  Jackson Harper  <jackson@ximian.com>
20902         * profiler.c: Don't put a . in front of types that are not in a
20903         namespace.
20905 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20907         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20909 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20911         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20912         #76436.
20913         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20915 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20917         * assembly.c metadata-internals.h icall.c: Define an additional
20918         parameter for mono_assembly_name_parse_full, so we can avoid creating
20919         S.R.AssemblyName.Version when no version info wasn't passed.
20920         
20921 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20923         * class.c (mono_type_get_full_name): Reimplement method that was
20924         removed. 
20926         * image.c: Some docs
20928 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20930         * profiler.c (output_newobj_profile): Fix printing of Total memory
20931         on x86.
20933 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20935         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20937 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20939         * threads.c: remove debug output.
20941 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20943         * threads.c (mono_thread_manage): Fix crashes if more than 64
20944         threads need to be aborted. Hopefully fixes #75899.
20946         * assembly.c (mono_stringify_assembly_name): New helper function.
20948         * class.c: Use mono_stringify_assembly_name instead of the similar
20949         static function.
20951         * assembly.h assembly.c: Add support for calling a postload search 
20952         hook if an assembly cannot be loaded.
20954         * appdomain.c: Register new search hooks which call the AssemblyResolve
20955         events in AppDomain. Fixes #75231
20957 2005-10-07  Martin Baulig  <martin@ximian.com>
20959         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20960         methods without debug info.
20962 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20964         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20965         wrappers.
20967 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20969         * file-io.c: now that we return symlinks, use lstat and, when the file
20970         is a symbolic link, stat, to get the file attributes. Also avoid the
20971         conversion to/from utf16/external.
20973 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20975         * class.c (mono_class_layout_fields): Compute klass->has_references
20976         correctly if an embedded valuetype is not yet initialized. Fixes
20977         #76331.
20979 2005-10-04  Martin Baulig  <martin@ximian.com>
20981         * metadata.c
20982         (mono_metadata_load_generic_param_constraints): New public
20983         function; splitted the constraints loading out from
20984         mono_metadata_load_generic_params().
20986         * class.c (mono_class_create_from_typedef): Call
20987         mono_metadata_load_generic_param_constraints() after setting up
20988         the type and creating our parent; fixes #75329.
20990 2005-10-04  Martin Baulig  <martin@ximian.com>
20992         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20993         non-dynamic parent classes.
20995 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20997         * file-io.c : win32 build fix (ETXTBSY seems not found).
20999 2005-10-04  Martin Baulig  <martin@ximian.com>
21001         * reflection.c
21002         (mono_image_get_methodspec_token): Make the cache actually work;
21003         fixes #75974.
21005 2005-10-04  Martin Baulig  <martin@ximian.com>
21007         * class.c (mono_class_name_from_token): Removed the unneccessary
21008         `MonoGenericContext *' argument.
21010 2005-10-04  Martin Baulig  <martin@ximian.com>
21012         * loader.c
21013         (method_from_methodspec): Make the caching work again; fixes the
21014         performance regression from #76262.
21016 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21018         * file-io.c:
21019         * file-io.h:
21020         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21021         GetFileSystemEntries that performs the same work but without going
21022         into io-layer, locking, etc.
21024 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21026         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21027         ThreadState_Stopped as well. Fixes #76047.
21029 2005-09-29  Martin Baulig  <martin@ximian.com>
21031         * class.c
21032         (inflate_generic_context): If the new context has a `gmethod', set
21033         its `container' that that gmethod's `container'.
21035         * metadata.c
21036         (mono_metadata_parse_generic_param): Simplify things;
21037         `generic_container = generic_context->container;' is just fine.
21039         * loader.c (method_from_methodspec): Code cleanups.
21041 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21043         * decimal.c: fix warning (and let gcc generate correct
21044         code on ARM with optimizations).
21046 2005-09-28  Martin Baulig  <martin@ximian.com>
21048         * loader.c
21049         (method_from_memberref): Added `MonoGenericContext *class_context'
21050         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21051         (method_from_methodspec): If we're a memberref, use the enclosing
21052         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21054 2005-09-28  Martin Baulig  <martin@ximian.com>
21056         * object.c (mono_runtime_invoke_array): Added support for
21057         MONO_TYPE_GENERICINST; fixes #75917.
21059 2005-09-27  Martin Baulig  <martin@ximian.com>
21061         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21062         `k->byval_arg.type' to determine the actual type.
21064         * loader.c (method_from_methodspec): Removed some hacks.
21066 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21068         * class-internals.h (mono_field_is_deleted): Do the test for
21069         rtspecialname before we check the actual name of the field. This
21070         prevents us from dereferencing a pointer into the string table,
21071         saving us from accessing a few pages
21073         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21074         macros. This will allow a deadlock debugger to easily be plugged
21075         in.
21077 2005-09-27  Martin Baulig  <martin@ximian.com>
21079         * loader.c (method_from_methodspec): Create a "signature"
21080         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21082 2005-09-27  Martin Baulig  <martin@ximian.com>
21084         * class.c
21085         (inflate_generic_class): Correctly set the new context's
21086         container.
21088         * loader.c
21089         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21090         instead of a `MonoGenericContext *'.
21091         (mono_method_signature_full): Take a `MonoGenericContainer *'
21092         instead of a `MonoGenericContext *'.
21094         * metadata.c
21095         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21096         instead of a `MonoGenericContext *'.
21097         (mono_metadata_parse_method_signature_full): Likewise.
21099 2005-09-26  Martin Baulig  <martin@ximian.com>
21101         * class.c
21102         (mono_class_from_generic_parameter): Set `klass->generic_container'
21103         (mono_class_from_generic_parameter): Likewise.
21104         (mono_bounded_array_class_get): We inherit the generic container
21105         from the element class.
21107         * loader.c
21108         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21109         argument rather than computing it here.
21110         (method_from_memberref): Correctly set the generic context before
21111         parsing the signature.  Fixes #75681.
21113 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21115         * object.c (mono_class_has_special_static_fields): Fix warnings.
21117 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21119         * assembly.c: Add parse_public_key function, to
21120         par the public keys. Also added mono_assembly_name_parse_full,
21121         to define it the parsed key should be freed or not.
21122         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21123         to parse a long format assembly name.
21124         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21125         private, since calling it to preserve the key requires
21126         freeing it manually.
21127         
21128 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21130         * locales.c : removed HAVE_ICU part.
21132 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21134         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21135         field_is_special_static if the klass has no special static fields.
21137         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21138         (MonoCachedClassInfo): Likewise.
21140         * object.c (mono_class_has_special_static_fields): New helper function.
21142 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21144         * class.c (mono_class_create_from_typedef): Don't call 
21145         interfaces_from_typedef_full for enums.
21146         (mono_class_create_from_typedef): Compute the base types of enums directly
21147         without calling mono_class_setup_fields ().
21148         (mono_class_find_enum_basetype): New helper function.
21150         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21151         one place inside the string heap.
21152         
21153 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21155         * class.c: locking fixes, code cleanups, some docs added.
21156         Allocate some data structures in the image mempool.
21158 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21160         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21161         the example code.
21162         
21163 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21165         * class-internals.h, class.c, reflection.c: reduce memory taken by
21166         MonoClass.
21168 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21170         * metadata.c, metadata.h, loader.h: documentation updates, code and
21171         API cleanups.
21173 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21175         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21176         the example code.
21178         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21179         page faults caused by the runtime while reading metadata.
21181 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21183         * socket-io.c: the field names were changed 3 months ago and no one
21184         realized until bug #76077 got filed!
21186 2005-09-20  Martin Baulig  <martin@ximian.com>
21188         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21190 2005-09-20  Martin Baulig  <martin@ximian.com>
21192         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21193         write the rank into the class entry.
21195 2005-09-20  Martin Baulig  <martin@ximian.com>
21197         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21199 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21201         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21203         * icall.c (custom_attrs_defined_internal): New icall.
21205         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21206         function.
21207         (mono_custom_attrs_construct_by_type): New helper function.
21209 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21211         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21212         terminate the resulting string. Fixes #76123.
21214 2005-09-16  Martin Baulig  <martin@ximian.com>
21216         * mono-debug.c
21217         (mono_debug_add_method): Ignore inflated methods for the moment.
21219 2005-09-14  Martin Baulig  <martin@ximian.com>
21221         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21223 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21225         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21226         return a success/failure indication.
21227         (mono_metadata_interfaces_from_typedef_full): Ditto.
21228         (get_constraints): Ditto.
21230 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21232         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21233         
21234         * marshal.c (emit_marshal_array): Add support for returning string
21235         arrays from delegates. Fixes #76063.
21237         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21239 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21241         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21242         icall.
21244 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21246         * reflection.c icall.c: Fix after mono_get_exception_type_load
21247         signature change.
21249         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21250         (mono_assembly_load_reference): Use the new helper.
21252         * class-internals.h (MonoLoaderError): New structure containing 
21253         information about type loading errors.
21255         * class-internals.h loader.c: Add APIs to store per-thread loader
21256         error information.
21258         * loader.c class.c: Set the loader error if needed.
21260         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21262 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21264         * decimal.c: fixed to handle the broken ARM fp format.
21266 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21268         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21269         broken.
21271 2005-09-06  Martin Baulig  <martin@ximian.com>
21273         * domain.c (supported_runtimes): Added v2.0.50727.
21275 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21277         * culture-info.h: reduce the size of some structures.
21279 2005-09-05  Martin Baulig  <martin@ximian.com>
21281         Reflect latest API changes in the August CTP.
21283         * icall.c
21284         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21285         ("MonoType.HasGenericArguments"): Removed.
21286         ("MonoMethod.BindGenericParameters"): Renamed to
21287         "MakeGenericMethod".
21288         ("MethodBuilder.BindGenericParameters"): Renamed to
21289         "MakeGenericMethod".    
21291 2005-09-05  Martin Baulig  <martin@ximian.com>
21293         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21295 2005-09-05  Martin Baulig  <martin@ximian.com>
21297         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21299         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21300         generic_container is non-NULL.
21302 2005-09-05  Martin Baulig  <martin@ximian.com>
21304         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21306         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21308 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21310         * reflection.c (encode_locals,
21311         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21312         for large generic types.
21314 2005-09-05  Martin Baulig  <martin@ximian.com>
21316         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21318         * class.c (mono_dup_array_type): New public method.
21319         (mono_metadata_signature_deep_dup): New public method.
21320         (dup_type): Correctly duplicate array and function types.
21322 2005-09-05  Martin Baulig  <martin@ximian.com>
21324         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21326         * reflection.c (get_default_param_value_blobs): Handle generic types
21327         and generic methods.
21329 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21331         * class.c: Fixed error reporting (method/class were inversed) for 
21332         inheritance demands.
21333         * security-manager.c|h: Added the AppDomain when calling the managed
21334         System.Security.SecurityManager.InheritanceDemand method.
21336 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21338         * reflection.c (encode_marshal_blob): 'marshaltype' and
21339         'marshaltyperef' are alternate sources for the custom marshaler
21340         name.
21342 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21344         * class.c: fix creation of array classes with rank == 1
21345         (patch by Ankit Jain <jankit@novell.com>).
21347 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21349         * object.c: fix check for creating the bound data for arrays vs
21350         szarrays.
21352 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21354         * object.c: configuration file name is now based on the executable name,
21355         not the image name. Fixes bug #75931.
21357 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21359         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21360         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21362 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21364         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21366 2005-08-24  Ankit Jain  <jankit@novell.com>
21367             Raja R Harinath  <rharinath@novell.com>
21369         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21370           called by it recursively.
21371           (mono_class_init): Remove special case in pending_init handling, since it's
21372           superseded by the fix to mono_class_from_typeref.
21374 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21376         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21377         BROKEN_THREAD_START stuff.
21379 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21381         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21382         trampoline.
21384         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21385         
21386         * object.c (mono_delegate_ctor): Replace the original function address with
21387         a delegate trampoline.
21389 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21391         * icall.c: add boolean argument to base64_to_byte_array and 
21392         InternalFromBase64String to control whether a whitespace-only string
21393         is allowed (or should casue a FormatException to be thrown). We need
21394         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21395         to match the MS behaviour in both profiles.
21396         * appdomain.c: Bump corlib version.
21398 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21400         This patch implements a big portion of publisher policy
21401         support, used to bind assembly versions and redirect
21402         one assembly from version A to version B.
21404         * assembly.c:
21405         New GSList loaded_assembly_bindings, for storing the cached
21406         assembly bindings.
21407         (assembly_binding_maps_name): New static function for checking if a 
21408         assembly binding information maps an assembly name.
21409         (mono_assembly_binding_info_free): New function for freeing
21410         assembly binding information resources.
21411         (get_publisher_policy_info): New static function for retrieving 
21412         assembly binding information from a MonoImage.
21413         (compare_versions): New static function for comparing an assembly
21414         binding information data and the version of an assembly name.
21415         (check_policy_versions): New static function for checking if an
21416         assembly binding info mapping an assembly name is valid for it.
21417         (mono_assembly_load_publisher_policy): New static function for
21418         loading the 'policy.major.minor.MyAssembly' image for an assembly
21419         with an assembly name 'aname'.
21420         (mono_assembly_bind_version): New static function for updating
21421         assembly redirection.
21422         (mono_assembly_apply_binding): New static function for applying
21423         assembly binding.
21424         (search_binding_loaded): New static function for searching 
21425         loaded assembly binding infos in the cache domain.
21426         (mono_assembly_load_full): Don't apply assembly binding for
21427         reflection only assemblies.
21429         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21430         which contains information about assembly binding. Also
21431         declare signature for mono_config_parse_publisher_policy ()
21432         function, used to retrieve pub policy info.
21433         
21434         * mono-config.c:
21435         (publisher_policy_start): New static function used to parse publisher 
21436         policy config files.
21437         (publisher_policy_parser): New static MonoParseHandler containing 
21438         the functions used when parsing config files.
21439         (mono_config_parse_publisher_policy): New function for parsing
21440         publisher policy files.
21441         
21442 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21444         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21446         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21448         * object.c (mono_get_addr_from_ftnptr): New helper function.
21450         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21452         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21454 2005-08-19  Dick Porter  <dick@ximian.com>
21456         * threads.c, threads.h, appdomain.c, appdomain.h,
21457         profiler-private.h, monitor.c, object.c, object-internals.h,
21458         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21459         store the thread ID, so it can hold a 64 bit value if needed.
21461 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21463         * reflection.c (mono_reflection_create_dynamic_method): Store the
21464         handle class into the method references as well so ldtoken works in
21465         dynamic methods.
21467         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21468         types.
21470 2005-08-19  Ankit Jain <jankit@novell.com>
21472         Fix #75847.
21473         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21474           here rather than using the method signature of a arbitrary function
21475           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21476           two arguments.
21477           Hack done with Harinath.
21479 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21481         * threadpool.c: disable printing stack traces when we get a exception
21482         in a threadpool thread. I need to do more testing to figure out which
21483         cases actually print this. Fixes bug #75828.
21485 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21487         * icall.c: there might be ignored whitespace after the last '='. This
21488         fixes length computation and bug #75840.
21490 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21492         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21493         well. Fixes #75809.
21495         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21496         #75784.
21497         
21498         * reflection.c (create_custom_attr_data): Ditto.
21500 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21502         * locales.c, culture-info.h : removed RegionLCIDMap.
21503         * culture-info-tables.h : regenerated.
21505 2005-08-16  Martin Baulig  <martin@ximian.com>
21507         * class.c (mono_type_get_name_recurse): Small fix.
21509 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21511         * locales.c : indentation fixie.
21513 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21515         * object-internals.h,
21516           locales.h,
21517           locales.c,
21518           culture-info.h,
21519           icall.c : added RegionInfo table support.
21520         * culture-info-table.h : regenerated for region support.
21522 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21524         * reflection.c (resolve_object): handle all kinds of MonoMethod
21525         including generic ones
21527 2005-08-12  Ankit Jain <jankit@novell.com>
21529         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21530           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21532 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21534         * process.c: Don't close a thread handle when it's NULL. This is a
21535         workaround for bug #75733.
21537 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21539         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21541 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21543         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21545 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21547         * threadpool.c: if a work item in the thread pool has a callback that
21548         catches a exception, don't propagate it after invoking the callback.
21549         Fixes bug #75336.
21551 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21553         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21555         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21557         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21559         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21561 2005-08-03  Ankit Jain  <jankit@novell.com>
21563         Fix #75683.
21564         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21565           PInvoke calling convention is 0.
21567 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21569         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21570         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21572 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21574         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21575         to handle threads not started by the GC (patch by Michael Meeks
21576         <michael.meeks@novell.com>).
21578 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21580         * reflection.c: Make buffer used in emitting types larger for some
21581         big generic types (patch by Michal Moskal).
21583 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21585         * mono-debug.c: Fix some (not all) alignment problems.
21587 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21589         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21590         Invoke mono_image_load_from_data_full passing the refonly
21591         parameter.
21593         * assembly.c
21594         (mono_assembly_open_from_bundle): Add the refonly argument, 
21595         in order to pass it to other methods it calls to.
21596         (do_mono_assembly_open): Add the refonly argument, in order 
21597         to pass it to other methods it calls to.
21598         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21599         the refonly parameter to it.
21601         * image.c: Add loaded_images_refonly_hash and
21602         loaded_images_refonly_guid_hash to cache the reflection
21603         only loaded images.
21604         (mono_images_init): Initialize the hash tables used for
21605         caching the reflection only images.
21606         (load_modules): Invoke mono_image_open_full passing the refonly
21607         parameter to load the modules the correct way.
21608         (build_guid_table): Add the refonly argument, to re-build the 
21609         correct hash table.
21610         (do_mono_image_open): Added the refonly argument, in order to
21611         define it for the loaded image.
21612         (mono_image_loaded_full): New function, which receives an
21613         additional parameter to look for the image in the refonly or
21614         non-refonly section.
21615         (mono_image_loaded): Updated, using mono_image_loaded_full.
21616         (mono_image_loaded_by_guid_full): The same case that happens
21617         with mono_image_loaded_full.
21618         (mono_image_loaded_by_guid): Likewise.
21619         (register_image): Use the ref_only variable inside MonoImage
21620         to decide in which hash table store the current image.
21621         (mono_image_open_from_data_full): Rename
21622         mono_image_open_from_data to mono_image_open_from_data_full,
21623         adding the refonly argument, to define the ref_only variable 
21624         inside MonoImage.
21625         (mono_image_open_from_data): Return 
21626         mono_image_open_from_data_full.
21627         (mono_image_open_full): Rename mono_image_open to
21628         mono_image_open_full, receiving the new refonly argument,
21629         to pass it to inner methods.
21630         (mono_pe_file_open): Update this function, to open
21631         a MonoImage as a non-refonly image.
21632         (mono_image_close): Use the refonly variable inside
21633         MonoImage to remove the image from the correct caches.
21635         * image.h: Add the signatures of mono_image_open_full,
21636         mono_image_open_from_data_full, mono_image_loaded_full,
21637         mono_image_loaded_by_guid_full.
21639         * metadata-internals.h: Add the ref_only field to 
21640         MonoImage.
21641         
21642 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21644         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21645         Fix the last behavior, which used to load the assemblies and
21646         extract MonoReflectionAssemblyName information, instead of
21647         extract it from the metadata tables. Needed for Reflection
21648         Only assemblies.
21649         
21650 2005-07-29  Martin Baulig  <martin@ximian.com>
21652         * mono-debug-debugger.c
21653         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21654         not initialized.
21656         * mono-debug.c
21657         (mono_debug_address_from_il_offset): Check whether we have
21658         debugging support before attempting to take the lock.
21659         (mono_debug_source_location_from_address): Likewise.
21660         (mono_debug_source_location_from_il_offset): Likewise.
21661         (mono_debug_il_offset_from_address): Likewise.
21662         (mono_debug_address_from_il_offset): Likewise.
21664 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21666         * class.c (mono_class_from_name_case): Add support for dynamic images.
21667         Fixes #75650.
21669         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21670         for #75479.
21672 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21673         
21674         * reflection.c (mono_method_get_object): Fix warning.
21676 2005-07-28  Martin Baulig  <martin@ximian.com>
21678         * mono-debug.c
21679         (mono_debug_add_wrapper): Also write the wrapper type.
21681 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21683         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21684         
21685         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21686         data indicates the class has none.
21688 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21690         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21691         loader lock with the debugger lock. Prevents deadlocks for beagle.
21693         Beagle can now run on an smp box for a weekend without any
21694         issues. Woohoo!
21696 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21698         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21699         in a module. Fixes #75629.
21701 2005-07-26  Martin Baulig  <martin@ximian.com>
21703         * mono-debug.c (mono_debug_add_wrapper): New static method.
21704         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21705         interncall or a wrapper.
21707         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21708         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21709         (MONO_DEBUGGER_VERSION): Bump to 51.
21711         * mono-debug-debugger.c
21712         (mono_debugger_add_type): Removed this empty function.
21713         (mono_debugger_add_method): Likewise.
21715 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21717         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21718         before accessing method->slot.
21720 2005-07-21  Jb Evain  <jbevain@gmail.com>
21722         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21723         Fixes #75010.
21725 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21727         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21728         #75587.
21730 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21732         * image.h image.c: Add mono_image_get_guid () API function.
21734 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21736         There were issues when multiple threads tried to load
21737         assemblies. A deadlock was created between assemblies_mutex and
21738         mono_domain_assemblies_lock. This fixes the issue by making the
21739         assembly ref counting be lock free. See bug 75586.
21740         
21741         * image.c (mono_image_close): The add ref function here was using
21742         Interlocked operations while the unref was using a mutex and a
21743         --. I don't think this was ever a bug that would be exposed in a
21744         non-pendantic way (ie, by an embedder doing a ref on one thread
21745         and an unref on another), but for the sake of correctness, this is
21746         now Interlocked.
21748         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21749         (mono_assembly_load_reference): Call mono_assembly_addref rather
21750         than touching the refcount ourselves.
21751         (mono_assembly_close): Use InterlockedDecrement to unref the
21752         assembly. Don't acquire the lock unless it is actually needed.
21754 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21756         * class.c (mono_class_layout_fields): Fix calculation of has_references
21757         for generic types.
21759 2005-07-12  Martin Baulig  <martin@ximian.com>
21761         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21763         * metadata.c
21764         (mono_type_hash): Provide better hashing for generic instances.
21765         (mono_generic_inst_hash): Improve hashing.
21766         (mono_generic_class_hash): Likewise.
21768         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21769         generic instances.
21771 2005-07-12  Martin Baulig  <martin@ximian.com>
21773         * reflection.c (mono_reflection_create_runtime_class): Remove the
21774         hack for generic type definitions and non-`Run' assemblies.
21775         (mono_reflection_bind_generic_parameters): Also use
21776         `klass->wastypebuilder' to check for TypeBuilders.
21778 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21780         * class.c (mono_class_layout_fields): Fix calculation of has_references
21781         for generic types.
21783         * class.c (inflate_generic_class): Fix a leak.
21784         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21785         for generic types.
21787 2005-07-11  Martin Baulig  <martin@ximian.com>
21789         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21790         on error.
21792 2005-07-11  Martin Baulig  <martin@ximian.com>
21794         * loader.c (find_method): Also lookup in
21795         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21797 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21799         * appdomain.c (mono_domain_unload): Don't free the error message
21800         before passing it to mono_get_exception_...
21802         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21803         
21804 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21806         * threads.c: try to better guess an available RT signal (bug #75387).
21808 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21810         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21811         and CACHE_OBJECT.
21813 2005-07-07  Martin Baulig  <martin@ximian.com>
21815         * class.c (mono_type_get_name_full): Return NULL for
21816         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21817         fixes #75408.
21819 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21821         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21822         exit the appdomain as well being aborted.
21824         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21825         change back to the root domain after calling managed code. This enables
21826         appdomains using threadpools to be unloaded.
21828 2005-07-07  Martin Baulig  <martin@ximian.com>
21830         * class-internals.h
21831         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21832         into `MonoDynamicGenericClass' since we only need it for dynamic
21833         types.
21835         * reflection.c (mono_class_bind_generic_parameters): We don't need
21836         to compute the `parent' here.
21838 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21840         * culture-info-table.h : regenerated.
21842 2005-07-06  Martin Baulig  <martin@ximian.com>
21844         * icall.c
21845         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21847         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21849 2005-07-06  Martin Baulig  <martin@ximian.com>
21851         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21852         we're doing a signature-only comparision; fixes #74945.
21854 2005-07-06  Martin Baulig  <martin@ximian.com>
21856         * class-internals.h (MonoGenericClass): Moved some things out into
21857         a new `MonoInflatedGenericClass' type.  
21858         (MonoInflatedGenericClass): New type; the `klass' of a
21859         `MonoGenericClass' is now computed lazyly in
21860         mono_get_inflated_generic_class().      
21862         * class.c (mono_get_inflated_generic_class): New public function.
21863         (mono_class_inflate_generic_method): Removed the unused
21864         `MonoClass *' argument.
21865         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21866         all the methods.
21867         (mono_class_create_generic): Make this static and merge it with
21868         mono_class_create_generic_2(); we're now called automatically from
21869         mono_get_inflated_generic_class().
21871         * loader.c (mono_method_signature): Call
21872         mono_get_inflated_method() here.
21874 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21876         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21877         type of fields with RVA.
21879         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21880         for this pseudo class.
21881         (my_mono_class_from_generic_parameter): Likewise.
21882         (mono_class_init): Allow interfaces to have cctors.
21884 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21886         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21887         lazily for AOT methods.
21889 2005-07-05  Martin Baulig  <martin@ximian.com>
21891         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21892         returns FALSE for a successful match, not TRUE.
21894 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21896         * loader.c (mono_method_get_index): Optimize this a bit.
21898 2005-07-04  Martin Baulig  <martin@ximian.com>
21900         * class.c
21901         (class_compute_field_layout): Move the check for generic type
21902         definitions into mono_class_layout_fields().  Fixes #74684.
21903         (mono_class_from_generic_parameter): Correctly compute
21904         `klass->parent'; fixes #75457.
21906         * reflection.c (register_assembly, register_module): Make sure
21907         `domain->rejobject_hash' is already created.
21909 2005-07-02  Martin Baulig  <martin@ximian.com>
21911         * class-internals.h
21912         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21913         `MonoDynamicGenericClass'.      
21915 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21917         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21918         returned by a field getter is null, since null is a valid value.
21920 2005-07-01  Martin Baulig  <martin@ximian.com>
21922         * reflection.c (mono_reflection_generic_class_initialize): Update
21923         the `dgclass->fields [i].parent' to the correct class.
21924         (mono_image_get_fieldref_token): Use the declaring type, not the
21925         reflected type.
21927 2005-07-01  Martin Baulig  <martin@ximian.com>
21929         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21931 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21933         * threads.c (thread_cleanup): assert that thread != NULL
21934         (wait_for_tids_or_state_change): We were using the wrong variable
21935         when accessing wait->threads. `i' was always out of the bounds of
21936         the array.
21938 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21940         * loader.c: map user32 and kernel32 to libMonoSupportW
21942 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21944         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21946 2005-06-28  Martin Baulig  <martin@ximian.com>
21948         * loader.c (method_from_methodspec): Fix #75334.
21950 2005-06-28  Martin Baulig  <martin@ximian.com>
21952         Fix #74953 - Arrays now implement the generic IList<T> interface
21953         on the 2.0 platform.
21955         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21957         * reflection.c (mono_class_bind_generic_parameters): New public
21958         function; similar to mono_reflection_bind_generic_parameters(),
21959         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21961         * domain.c (mono_init_internal): Try to initialize.
21962         `mono_defaults.generic_array_class' here; this'll only succeed if
21963         we're using the 2.0 corlib.
21965         * icall.c
21966         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21967         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21968         (mono_lookup_internal_call): Added support for nested classes.
21970         * loader.c
21971         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21972         we're an interncall and have generic arguments.
21974         * class.c
21975         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21976         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21977         instance of System.Array.InternalArray<T> for arrays, so they
21978         implement the generic IList<T> interface.
21980 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21982         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21983         (chastamar@yahoo.com). Fixes #75374.    
21985 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21987         * culture-info-table.h: regenerated.
21989 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21991         * icall.c: handle spaces correctly for base64 strings.
21993 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21995         * *.c: Kill some warnings.
21997 2005-06-23  Duncan Mak  <duncan@novell.com>
21999         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22000         that this builds on Solaris 10 (x86).
22002 2005-06-23  Martin Baulig  <martin@ximian.com>
22004         * class.c
22005         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22006         generic type definitions.
22008 2005-06-23  Martin Baulig  <martin@ximian.com>
22010         Fix #75331.
22012         * metadata.c (mono_class_get_overrides): Renamed to
22013         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22014         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22015         pass it to mono_get_method_full().
22017 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22019         * reflection.c (mono_reflection_create_runtime_class): take the
22020         mono_domain_lock in this method. Prevents deadlocks
22022 2005-06-22  Martin Baulig  <martin@ximian.com>
22024         * loader.c (method_from_methodspec): Fix #75330.
22026 2005-06-22  Martin Baulig  <martin@ximian.com>
22028         * reflection.c (type_get_qualified_name): Use
22029         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22030         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22031         argument; use it if we don't have an assembly name.
22033 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22035         * object.c: In mono_message_init, set "copy out" flag for in
22036         parameters with the [Out] flag.
22038 2005-06-21  Martin Baulig  <martin@ximian.com>
22040         * class.c
22041         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22042         and MONO_TYPE_PTR.
22044 2005-06-21  Martin Baulig  <martin@ximian.com>
22046         * class.c (mono_class_init): Don't initialize `class->fields' for
22047         generic instances since they're initialized again in
22048         compute_field_layout(). 
22049         (compute_field_layout): Set the field's `generic_info' here; fix
22050         #75320. 
22052 2005-06-21  Martin Baulig  <martin@ximian.com>
22054         * class-internals.h
22055         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22057         * metadata.c (mono_metadata_generic_method_equal): Also
22058         distinguish the `generic_class'; fixes #75334.
22060 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22062         * domain.c:
22063         * appdomain.c:
22064         * domain-internals.h:
22065         * reflection.c: 'domain_assemblies' field is now protected by its own
22066         lock. Don't call into managed code to run the AssemblyLoad event if we
22067         now there are no registered delegates for it.
22069 2005-06-20  Martin Baulig  <martin@ximian.com>
22071         * class.c (mono_class_is_assignable_from): Use a custom version of
22072         mono_class_has_parent() to make things work for generic instances;
22073         fix #75300.
22075 2005-06-20  Martin Baulig  <martin@ximian.com>
22077         * loader.c (method_from_methodspec): Apply a patch from
22078         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22080 2005-06-20  Martin Baulig  <martin@ximian.com>
22082         * class.c (mono_class_init): Reverted Zoltan's last change; it
22083         breaks generics.
22085 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22087         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22089 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22091         * socket-io.c: fix the index in the socket array for writable/error
22092         sockets. Fixes bug #75306.
22094 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22096         * class.c (mono_class_init): Allow interfaces to have static ctors.
22098 2005-06-17  Martin Baulig  <martin@ximian.com>
22100         * loader.c (method_from_methodspec): Use `context->container' when
22101         parsing the `gmethod->inst'.
22103 2005-06-17  Martin Baulig  <martin@ximian.com>
22105         * class.c (mono_type_get_name_recurse): Don't add the assembly
22106         name for type arguments.
22108 2005-06-15  Martin Baulig  <martin@ximian.com>
22110         * reflection.c (mono_image_get_inflated_method_token): Encode
22111         correct klass; fixes #75260.
22113 2005-06-13 Michal Moskal <malekith@nemerle.org>
22115         * icall.c: Make GetCorrespondingMethod/Constructor take
22116         MonoReflectionMethod method not MonoMethod. Removed
22117         MonoType.GetCorrespondingField, and make
22118         MonoGenericType.GetCorrespondingField take name not
22119         MonoClassField.
22121 2005-06-13  Michal Moskal <malekith@nemerle.org>
22123         * reflection.c (field_encode_signature, encode_locals):
22124          Make sizes of buffers for types larger (for big generic types).
22125          (create_generic_typespec,
22126          mono_reflection_sighelper_get_signature_local,
22127          mono_reflection_sighelper_get_signature_field):
22128          Add asserts for too small buffers.
22130 2005-06-15  Martin Baulig  <martin@ximian.com>
22132         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22133         if our parent is not a dynamic type.
22135 2005-06-15  Martin Baulig  <martin@ximian.com>
22137         * class-internals.h (MonoTypeNameFormat): New enum.
22139         * class.c
22140         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22141         (mono_type_get_full_name): Removed.
22142         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22143         argument instead of the boolean's.
22145         * icall.c (ves_icall_System_MonoType_getFullName):
22146         Added `gboolean assembly_qualified'.    
22148         * reflection.h
22149         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22151         * reflection.c (mono_reflection_parse_type): Parse the new type
22152         name format.
22154 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22156         * icall.c: no need to convert from utf16 to utf8 and then back again
22157         after the call to GetLogicalDrives.
22159 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22161         * icall.c: frombase64. Fix problems exposed by new tests.
22163 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22165         * icall.c: added internal calls for converting char [] and strings in
22166         base64 into byte [].
22168 2005-06-10  Martin Baulig  <martin@ximian.com>
22170         * class.c (mono_class_create_generic_2): Read the nested classes
22171         from the metadata rather than from `gklass->nested_classes' since
22172         `gklass' might not be initialized yet.
22174 2005-06-09  Duncan Mak  <duncan@novell.com>
22176         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22177         all public headers. Fixes #74919.
22179 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22181         * domain.c: The key for proxy_vtable_hash is now a pointer
22182         array. Added new GHashFunc and GCompareFunc functions for this.
22184         * class.h: The list of interfaces in MonoRemoteClass is known in
22185         advance and can't grow (we create a new MonoRemoteClass if needed),
22186         so now the interface array can be allocated together with
22187         MonoRemoteClass.
22188         
22189         * object.c: Added a new method create_remote_class_key.
22190         Fixed mono_remote_class so it does not depend on
22191         mono_upgrade_remote_class.
22192         Removed extend_interface_array.
22193         Added new method clone_remote_class(), which makes a copy of a remote
22194         class and adds a new interface or class to it.
22195         mono_upgrade_remote_class() now creates a new remote class (or gets
22196         it from the cache) if an vtable upgrade is needed. In this way
22197         we make sure that other objects sharing the same remote class
22198         don't get the new vtable with unwanted interfaces.
22199         
22200         * object-internals.h:
22201         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22202         
22203         * marshal.c: Track changes in mono_upgrade_remote_class().
22205 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22206         * icall.c: Add runtime methods for obtaining members of inflated
22207         class, which were created from supplied non-inflated members. It
22208         is used in internal Get{Method,Constructor,Field} methods in
22209         System.Type
22211 2005-06-09  Martin Baulig  <martin@ximian.com>
22213         * reflection.c
22214         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22216 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22217         * reflection.c (mono_image_basic_init): Define
22218         Version in MonoDynamicAssembly. 
22219         
22220 2005-06-08  Martin Baulig  <martin@ximian.com>
22222         Fix #75136.
22224         * loader.c
22225         (mono_method_signature_full): New public method; takes a
22226         `MonoGenericContext *'.
22227         (find_method): Use mono_method_signature_full() and pass the
22228         klass'es context to it.
22230         * class.c (mono_class_is_inflated_method): Use
22231         mono_method_signature_full() and pass the context to it.
22233 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22235         * object.c: add proper locking in mono_remote_class_vtable(),
22236         fixes possible memory corruption.
22238 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22240         * marshal.c (mono_remoting_marshal_init): set
22241         initialized after initialization.
22243 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22245         * locales.c : hush.
22247 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22249         * object.c (extend_interface_array): fix really silly
22250         memory corrupting / comparison bug.
22252 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22254         * reflection.c: Functions added to support the creation
22255         of CustomAttributeData, which includes Attribute data
22256         used by ReflectionOnly methods.
22258         * reflection.h:  mono_reflection_get_custom_attrs_data and
22259          mono_custom_attrs_data_construct added (functions exposed).
22261          * icall.c: Added mono_reflection_get_custom_attrs_data
22262          as icall.
22263         
22264 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22266         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22267         lupus's request.
22269 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22271         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22273         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22274         dynamic DllImportAttribute.
22276         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22277         dynamic DllImportAttribute.
22279         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22280         Fixes #75162.
22282 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22284         * threads.c: avoid segfault when an unstarted thread is aborted.
22286 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22288         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22289         Returns the name and version of the runtime for reporting.
22291 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22293         * appdomain.c: bump corlib version.
22294         * object-internals.h: new field in MonoReflectionAssembly.
22296 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22298         * object-internals.h: Carlos forgot to add this field.
22300 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22302         * icall.c: Added create_version to create instances
22303         of Version of MonoReflectionAssemblyName. This change helps
22304         the AssemblyName tests to keep running fine.
22305         
22306 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22307   
22308         * object.c (mono_method_return_message_restore): A somehow less
22309         intrusive fix for #75138.
22311 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22313         * object.c (mono_method_return_message_restore): Fix computation
22314         of expected number of out args.
22316 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22318         * reflection.c (mono_image_get_method_info): Fix the case when the
22319         charset is empty.
22321 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22323         * object.c: Added missing null check in
22324           mono_method_return_message_restore.
22326 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22328         * reflection.c (mono_image_get_method_info): Handle the case when
22329         dllentry is empty.
22331 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22333         * object.c: When creating the vtable for a proxy, take into account
22334         all inherited interfaces, not only the ones registered in
22335         iclass->interfaces. This fixs bug #74996.
22336         Also, in mono_method_return_message_restore, verify that the array
22337         of out args has the expected lengh.
22339 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22341         * socket-io.c: update the timeout in Poll when the call is interrupte.
22343 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22345         * socket-io.c: support abort/suspend in Select_internal after last
22346         change.
22348 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22350         * threadpool.c: remove warning.
22352 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22354         * icall.c:
22355         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22356         removing the 1024 limit from select(). Runtime part of the fix for
22357         bug #71203.
22359 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22361         * socket-io.c: when resolving the addresses for the same
22362         host returned by gethostname(), get the local IPs from the interface
22363         list. Loopback addresses are discarded if the are interfaces up with
22364         non-loopback ones. Fixes bug #63265.
22366 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22368         * appdomain.c, verify.c, object-internals.h, reflection.c:
22369         bumped corlib number to 36, and added new extra_flags field
22370         to ReflectionMethodBuilder and friends.  Fixes #75060.
22372 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22374         * gc.c: register a new weak link only if the object is non-null
22375         (fixes bug#75047).
22377 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22379         * culture-info.h : short time pattern too.
22381 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22383         * culture-info.h : expand long time pattern string length.
22385 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22387         * culture-info-table.h : update (more French date format; #72788).
22389 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22391         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22392         the method is static. Fixes #75029.
22394 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22396         * reflection.c: Update the table_idx field of method builders after
22397         saving the module, since it can change. This is a workaround for
22398         bug #74914. 
22400 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22402         * culture-info-table.h : update (additional French date format).
22404 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22406         * icall.c (ves_icall_type_Equals): Revert last change.
22407         
22408         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22410         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22412 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22414         * class-internals.h: Added executioncontext_class field to 
22415         MonoDefaults structure.
22416         * domain.c: Cache System.Threading.ExecutionContext class in 
22417         mono_defaults.
22418         * object.c: Capture the ExecutionContext for asynchroneous calls in
22419          mono_async_result_new.
22420         * object-internals.h: Added execution_context and original_context 
22421         fields to MonoAsyncResult. Added execution_context to MonoThread.
22422         * security-manager.c|.h: Added mono_get_context_capture_method to 
22423         return the capture method (if required by the security manager or by
22424         the framework version used).
22425         * threadpool.c: Apply capture (if present) ExecutionContext in 
22426         mono_async_invoke and revert to original context after it completes.
22428 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22430         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22432 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22434         * culture-info-table.h : zh-CHT related workaround.
22436 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22438         * marshal.c (emit_marshal_custom): Add some error checking and call the
22439         methods in the ICustomMarshaler interface. Fixes #74875.
22440         
22441         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22442         native->managed wrappers.
22444 2005-05-12  Martin Baulig  <martin@ximian.com>
22446         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22447         here and use the loader lock.
22449         * mono-debug.c: Properly lock when the debugger is not attached.
22450         (mono_debug_init): Release the initial lock if we're not running
22451         in the debugger.
22453 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22455         * marshal.c (emit_marshal_custom): Pass through NULL values without
22456         calling the custom marshalling routines.
22458         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22459         conversion in structures. Fixes #74882.
22461 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22463         * culture-info-table.h : zh-* cultures were missing.
22465 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22467         * threads.c: Added a new event background_change_event which is signaled
22468         when a thread changes its background mode.
22469         Moved here several checks previously done in managed code. The checks
22470         require the thread lock, and using the thread lock in managed code
22471         can result in deadlocks.
22472         Merged Start_internal and Thread_internal into a single method. Now 
22473         Thread_internal does all work of creating and starting a thread.
22474         Added icalls for setting and getting the state of the object. Moved from
22475         managed code to avoid locking there.
22476         Added wait_for_tids_or_state_change() which is called instad of
22477         wait_for_tids when waiting for non-backround threads to end. This method
22478         will return if one of the threads ends or the background_change_event
22479         is signaled.
22480         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22481         the background mode. This method signals the background_change_event
22482         event.
22483         * icall.c:
22484         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22485         removed Start_internal.
22486         
22487 2005-05-11  Martin Baulig  <martin@ximian.com>
22489         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22490         to order of some fields to get proper alignment on 64-bit machines.
22492 2005-05-11  Martin Baulig  <martin@ximian.com>
22494         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22495         changes as they're broken and completely fuck up the debugger.
22497         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22499 2005-05-10  Martin Baulig  <martin@ximian.com>
22501         * reflection.c (mono_reflection_generic_class_initialize): Don't
22502         call mono_class_setup_parent() here.
22504 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22506         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22507         send/receive timeout use an integer in milliseconds. We were using a
22508         struct timeval.
22510 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22512         * locales.c:
22513         (internal_get_cultures): reserve the first slot of the array for the
22514         InvariantCulture, which will be filled in managed code.
22516 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22518         * reflection.c (mono_image_fill_module_table): Initialize the
22519         GENERATION field as well.
22521 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22523         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22524         Monitor.Enter on the object.
22526 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22528         * threads.c: Enable the wait for running threads when exiting.
22529         * icall.c: Suspend all threads before exiting.
22531 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22533         * assembly.c (mono_assembly_load_reference): Fix warning.
22535 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22537         * threadpool.c: changed the default number of threads per cpu. From now
22538         on, the default will be 20 + (5 * number of cpus) instead of 50.
22540 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22542         * loader.c (mono_method_get_signature_full): Add locking here.
22544 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22546         * appdomain.c: Moved methods for parsing and freeing assembly
22547         names to assembly.c.
22548         * assembly.c, domain-internals.h: Created public methods for parsing
22549         assembly names. Fixed mono_assembly_load_with_partial_name:
22550         it now finds the best match, taking into account the version,
22551         token and culture specified in the partial name. Also return
22552         the latest version if no version information is specified.
22554 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22556         * threadpool.c: replace check for SocketAsyncCall class.
22558 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22560         * threadpool-internals.h:
22561         * Makefile.am: added threadpool-internals.h
22563         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22564         that happen in threadpool threads (tested on MS).
22565         (mono_thread_pool_remove_socket): new function that dispatch any pending
22566         AIO call on a socket that is closing. By now only epoll really needs it,
22567         as select/poll wake up when the socket closes.
22570         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22572 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22574         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22576 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22578         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22580 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22582         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22583         has an abort request, convert it into a suspend request.
22585 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22587         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22588         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22589         is not supported yet.
22591 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22593         * image.c: register assemblies loaded from data (bundles) in the loaded
22594         assemblies hash. Fixes bug #74772.
22596 2005-04-29  Martin Baulig  <martin@ximian.com>
22598         * class.c (mono_type_get_name_recurse): Update to the new naming
22599         schema from the latest .NET 2.x beta2.
22600         (mono_class_setup_vtable_general): If we're a generic instance,
22601         copy the vtable from our generic type definition and inflate all
22602         the methods in it.
22604         * loader.c (find_method): Update to the new naming schema from the
22605         latest .NET 2.x beta2.
22607 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22609         * class.c (mono_class_init): Add a mono_loader_unlock to the
22610         #74734 fix.
22612 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22614         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22615         suspend_all_other_threads () call for the time being, since it can hang.
22617         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22618         the background threads to exit, since it can also hang.
22620         * class.c (mono_class_init): Applied patch from Ankit Jain 
22621         (radical@gmail.com). Avoid pending init errors when a field refers
22622         to a nested class using a typeref. Fixes #74734.
22624         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22625         this for dynamic modules.
22627 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22629         * threads.c: don't wait for threads that are in the process of aborting
22630         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22631         and waiting for background threads to finish. This makes xsp and
22632         mod-mono-server exit without random length delays and/or hangs.
22634 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22636         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22638 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22640         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22641         dynamic types to prevent infinite loops. Fixes #74727.
22643         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22644         ..._is_assignable_to.
22646 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22648         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22650 2005-04-25  Martin Baulig  <martin@ximian.com>
22652         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22654         * domain.c
22655         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22657         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22659         * reflection.c (build_compressed_metadata): Set metadata header
22660         version to 2.0.
22662 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22664         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22665         number into an integral and a decimal part. Fixes #70473.
22667         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22669 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22671         * culture-info-table.h : reflected the latest locale-builder output.
22673 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22675         * threadpool.c: check for SuspendRequested too when deciding if
22676         mono_thread_interruption_checkpoint should be called.
22678 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22680         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22681         * threads.c: remove interruption_mutex and use Interlocked instead. When
22682         suspending all the threads, wait for all the suspended events at once.
22683         If we're shutting down and get an APC that is going to be queued,
22684         call mono_thread_execute_interruption immediately, as the thread might
22685         be sleeping on a pthread condition or mutex.
22687         * icall.c: call mono_runtime_set_shutting_down before suspending the
22688         threads.
22690         Fixes bug #74693. And now xsp is happier when exiting.
22692 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22694         * loader.c (mono_stack_walk): Fix #74690.
22696 2005-04-22  Martin Baulig  <martin@ximian.com>
22698         * mono-debug.h (MonoDebugMethodJitInfo): Added
22699         `MonoDebugMethodJitInfo *jit'.
22701         * mono-debug.c (mono_debug_read_method): Cache the
22702         MonoDebugMethodJitInfo in `address->jit'.
22703         (mono_debug_free_method_jit_info): New public method.
22705 2005-04-22  Martin Baulig  <martin@ximian.com>
22707         * class.c (mono_class_is_assignable_from): Disallow
22708         type parameter -> interface.
22710 2005-04-21  Dick Porter  <dick@ximian.com>
22712         * threads.c (mono_thread_create): Turn an assertion into an error.
22714 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22716         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22717         
22718         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22719         Fix some gcc 4.0 warnings.
22721 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22723         * file-io.c: fix alt dir separator char on unix systems
22724         and cleanup (fixes bug #71214).
22726 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22728         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22729         a call to a remote domain, since the method may be an
22730         interface method in the client domain. This fixes bug #74192.
22732 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22734         * threadpool.c: recv/send are now performed before going back to managed
22735         code to save one transition.
22737 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22739         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22741         * metadata/threadpool.c: removed hack to workaround the bug above.
22743         Fixes bug #74618.
22745 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22747         * reflection.c reflection.h: Fix handling of parameter defaults in
22748         dynamic methods. Also fixes handling of parameter attributes.
22749         Fixes #74609.
22751         * mono-debug.c (mono_debug_close_image): Fix warning.
22753 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22755         * socket-io.h: replaced old unused field with new 'blocking'.
22756         * threadpool.c: restore socket blocking state on windows(tm).
22758 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22760         * icall.c: don't return the codebase in the AssemblyName[] returned by
22761         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22762         * object-internals.h: Removed FIXME (fields were presents) and fixed
22763         versioncompat declaration.
22765 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22767         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22768         not closed, so don't cleanup when it happens.
22770 2005-04-13  Chris Toshok  <toshok@ximian.com>
22772         * mono-debug-debugger.h: change prototype for
22773         mono_debugger_lookup_type.
22775         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22776         this function, although it should probably be named
22777         mono_debugger_init_type.
22779 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22781         * threadpool.c: fix non-AIO case.
22783 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22785         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22786         the built-in profiler to measure just JIT compilation times.
22788 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22790         * threadpool.c: the epollfd might be closed by another thread at
22791         any time, so ignore EBADF at treat it as a "we're closing" sign.
22793 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22795         * threadpool.c: release the semaphores with a count equals to the number
22796         of working threads in both IO and regular pools. Fixed typo that messed
22797         up the count of IO pool threads. Don't initialize the pipe handles if
22798         we're using epoll.
22800 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22802         * threadpool.c: some systems don't like a NULL when deleting the socket
22803         from epoll.
22805 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22807         * threadpool.c: fix semaphore allocation.
22809 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22811         * threadpool.c: added epoll() based implementation for asynchronous IO
22812         that is used instead of the default poll() when available.
22813         It can be disabled by setting MONO_DISABLE_AIO.
22815 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22817         * threadpool.c: windows needs 'closesocket' and instead of returning
22818         0 when the stream is closed while in select, it returns -1. Fixes bug
22819         #74573.
22821 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22823         * class.c (class_compute_field_layout): Fix the regression caused by
22824         the previous try.
22826 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22828         * threadpool.c: separate pool for socket async. IO.
22829         * threadpool.h: mono_max_worker_threads is not a global any more.
22831 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22833         * class.c (class_compute_field_layout): Fix #74549.
22835 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22837         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22838         use 2 connected sockets instead.
22840 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22842         * mono-config.c: Add new entry point for mkbundle
22843         mono_config_parse_memory. 
22845 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22847         * threadpool.c: removed another unused function.
22849 2005-04-08  Ankit Jain  <radical@corewars.org>
22851         * reflection.c (get_default_param_value_blobs): Add 'types'
22852         parameter to get the types encoded in the constant table.
22853         (mono_param_get_objects): Use the type from the constant table,
22854         not the type of the parameter, when creating default values.
22855         Handle null default values correctly.
22857 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22859         * file-io.c:
22860         * file-io.h:
22861         * threadpool.c:
22862         * threadpool.h:
22863         * icall.c:
22864         * socket-io.c: removed dead code for async IO.
22866 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22868         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22870         * threadpool.c: intercept socket async. calls and pass them to a thread
22871         that is polling and dispatching the job items to the threadpool as
22872         socket become ready. Fixes bugs #71217, #71933.
22874         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22875         between char and short/ushort arrays.
22877         * socket-io.c: remove dead code.
22879 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22881         * locales.c,
22882           icall.c : removed InternalToUpper_Comp() and
22883           InternalToLower_Comp().
22885 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22887         * char-conversions.h : The tables were incorrectly generated. Should
22888           be generated against invariant culture.
22890 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22892         * object.c (mono_runtime_invoke_array): Fix return value when 
22893         passing pre-created valuetype objects to ctors.
22895         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22896         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22897         Fixes #74338.
22899 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22901         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22902         only used with --security and hides the wrong corlib version error.
22904 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22906         * class.c: Changed mono_class_name_from_token so that types
22907         outside of a namespace don't have an initial period.  Improved
22908         the g_warning message used in _mono_class_get when loading
22909         fails.
22910         * assembly.c: In mono_assembly_load_reference, when an assembly
22911         can't be found, "No such file or directory" is misleading and
22912         unhelpful because a few paths were checked for the presence of
22913         the assembly.  When that happens (ENOENT), display a nicer
22914         message indicating the directories that were searched.  In all
22915         cases, the warning is made easier to read for non-hackers.
22917 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22919         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22920         project/solution.
22921         * appdomain.h|domain.c: Removed inline from functions.
22922         * appdomain.c: Reduced warnings when compiling on windows.
22923         * icall.c: Fixed output_debug declaration to gunichar2*.
22924         * mono-config.c: Reduced warnings when compiling on windows.
22925         * rand.c: Added missing "windows.h". Added missing return value.
22926         * rawbuffer.c: Added missing winsock2.h for windows.
22927         * sysmath.h: Added mono-compiler.h header to allow/ease 
22928         compilation with non-GCC compilers.
22929         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22930         Removed cast warnings.
22932         Adapted from the work of J Lothian (for VC6).
22934 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22936         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22937         from default_path.
22939 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22941         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22942         the 2.0 profile.
22944 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22946         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22947         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22948         stuff, and it would probably use $(prefix)/share rather than
22949         $(prefix)/lib.
22951 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22953         * console-io.c: added 2 includes that might be missing.
22955 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22957         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22958         profile.
22960         * reflection.c (create_custom_attr): Allocate the params array using
22961         alloca so it gets GC tracking.
22963 2005-03-23  Chris Toshok  <toshok@ximian.com>
22965         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22966         out some spew.
22968 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22970         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22971         changes to pick up any changes in prefix, etc.
22973 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22975         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22976         
22977         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22978         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22980 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22982         * class-internals.h object-internals.h class.c reflection.c: Extend the
22983         mono_lookup_dynamic_token () function to return the class of the
22984         token as well. 
22986         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22987         well. Fixes #73848.
22989 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22991         * security-manager.c: Skip inheritance checks for intra-corlib
22992         class inheritance and method overrides. This skips a lot of checks
22993         and (anyway) permissions cannot work until corlib is loaded.
22995 2005-03-23  Martin Baulig  <martin@ximian.com>
22997         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22998         MONO_TYPE_GENERICINST.  
23000 2005-03-23  Martin Baulig  <martin@ximian.com>
23002         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23004 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23006         * class.c: added locking comments to some functions.
23007         Cache the interface offsets arrays (saves about 20 KB
23008         of runtime memory in a typical app).
23009         Reduce the time overhead in mono_class_setup_supertypes ().
23011 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23013         * icall.c: speedup and fix leaks in GetMethodsByName and
23014         GetPropertiesByName.
23016 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23018         * reflection.c: some locking fixes.
23020 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23022         * metadata.c: added missing break in case statement.
23024 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23026         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23027         typedbyref return values. Fixes #73941.
23029 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23031         * security-manager.c|h: Added demandunmanaged method and 
23032         suppressunmanagedcodesecurity class to MonoSecurityManager.
23033         Renamed aptc class to allowpartiallytrustedcallers.
23035 2005-03-17  Martin Baulig  <martin@ximian.com>
23037         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23039 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23041         * file-io.c: disabled file async. IO using aio_*. It uses the
23042         threadpool now. Workaround for bug #73718.
23044 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23046         * assembly.h, mono-config.c: added code to deal with bundled configs
23047         for bundled assemblies.
23049 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23051         * *.c, private.h: cleanup, removing old private.h header file.
23053 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23055         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23056         and throw_on_unmappable_char attributes.
23058 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23060         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23061         _ProcessName_internal.
23063 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23065         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23066         #73631.
23068         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23069         are no longer used.
23071 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23073         * object.c (compute_class_bitmap): Add support for generics. Fixes
23074         #73527.
23076 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23078         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23080 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23082         * filewatcher.c: commented out the code for windows watcher, as we don't
23083         use it (we use the managed implementation instead).
23085 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23087         * object-internals.h (MonoThread): Remove 'unused1' field.
23089         * appdomain.c: Bump corlib version.
23091         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23093         * reflection.c (mono_reflection_create_runtime_class): Remove the
23094         AssemblyBuilder.Save optimization since it causes too many problems.
23096 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23098         * exception.c|h: Added mono_get_exception_reflection_type_load to
23099         create a ReflectionTypeLoadException object.
23100         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23101         to return NULL is a InheritanceDemand fails during reflection. Updated
23102         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23103         ReflectionTypeLoadException if an InheritanceDemand fails during 
23104         reflection. Added icall mapping for GetLinkDemandSecurity.
23105         * security-manager.c|h: Added ves_icall_System_Security_
23106         SecurityManager_GetLinkDemandSecurity internal call to return the
23107         class and methods permissions set for a LinkDemand. Removed unused
23108         fields in MonoSecurityManager.
23110 2005-03-10  Martin Baulig  <martin@ximian.com>
23112         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23113         it's a generic instance.
23115 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23117         * reflection.c (mono_get_object_from_blob): Applied patch from
23118         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23120         * class.c (mono_class_is_assignable_from): Another try at fixing 
23121         #73469 without breaking anything.
23123 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23125         * class.c: (mono_class_is_assignable_from): Revert the last changes
23126         since they don't work with generics.
23127         
23128         * class.c (mono_class_is_assignable_from): Fix build bustage.
23130         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23131         the managed IsAssignableFrom method. Fixes #73469.
23133         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23134         function.
23136 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23138         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23139         memory when the remoting callback does not sets the out arguments.
23140         Fixes #73007.
23142         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23143         by mistake.
23145         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23147         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23149         * appdomain.c: Bump corlib version.
23151 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23153         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23154         function.
23156         * threads.c (mono_thread_attach): Detect threads which are not started
23157         by the GC pthread wrappers.
23159 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23161         * icall.c: Added new icall for RNG.
23162         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23163         single handle on Linux to access /dev/urandom and fix #73183.
23165 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23167         * object.c: setting the new vtable in a transparent proxy object must
23168         not change the GC descriptor.
23170 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23172         * object.c: fixed compilation without GCJ support.
23173         * reflection.c: for runtime-created types ensure klass->has_references
23174         is correct (bug #73215).
23176 2005-03-02  Martin Baulig  <martin@ximian.com>
23178         * class.c (mono_class_is_assignable_from): Make this work if
23179         `oklass' is a generic instance; fixes #72831.
23181 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23183         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23184         with hasthis set.
23185         
23186         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23188         * marshal.c: Reorganize native->managed marshalling code to also use
23189         the emit_marshal_... functions.
23191 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23193         * object.c: typed allocs have issues with bitmap sizes > 30,
23194         so check for max_set >= 30.
23196 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23198         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23199         managed code. Fixes #73012.
23201         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23203         * metadata.c reflection.c: Load/Emit elem_mult as well.
23204         
23205         * metadata.h (MonoMarshalSpec): Add comment.
23207         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23209         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23210         num_elem to -1 if not given.
23212         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23214         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23215         given values.
23217 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23219         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23221 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23223         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23225         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23227 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23229         * object.c: generalized the reference bitmap creation
23230         and added hooks for the new GC.
23231         * class-internals.c: removed the gc_bitmap field from MonoClass.
23233 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23235         * domain.c: help the compiler to produce better code
23236         in mono_jit_info_table_find ().
23238 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23240         * object.c: make all allocations look typed.
23242 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23244         * socket-io.c: load Mono.Posix if it's not loaded already
23245         (fixes bug#73033).
23247 2005-02-24  Martin Baulig  <martin@ximian.com>
23249         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23250         * reflection.c (dup_type): Likewise.
23252 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23254         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23255         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23257 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23259         * domain.c, threads.c, object-internals.h: make the critical thread
23260         local vars use the fast access mode (even when we're compiled in
23261         a lib). Provide accessors to be used by the jit during codegen.
23263 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23265         * appdomain.c: Changed hook functios behavior to include
23266         support for the reflection only assemblies. Some icalls were changed
23267         to support the mentioned assemblies too. Signatures of static methods
23268         try_assembly_resolve and real_load now have an additional parameter:
23269         refonly.
23271         * assembly.c: General changes to mono_assembly_ methods to support
23272         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23273         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23274         suffix, to support an additional gbool parameter to specify whether
23275         the assembli is reflection only or not. Created some new hook functions 
23276         to add support for reflection only assemblies. Signatures of static 
23277         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23278         have now an additional parameter: refonly.
23280         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23281         indicating whether the assembly is reflection only or not.
23283         * exception.c: Add mono_get_exception_invalid_operation.
23285         * icall.c: Throw an InvalidOperationException when trying to invoke
23286         a property/method/event, or trying to set/get the value of a field.
23287         Also add an icall to retrieve the ref_only flag to the
23288         MonoReflectionAssembly.
23290 2005-02-23  Chris Toshok  <toshok@ximian.com>
23292         Part of fix for #72827.
23293         * mono-debug.c (mono_debug_add_method): add lexical block data to
23294         the info we write.  Kind of a hack at the moment - we copy the
23295         lexical block info from the MonoDebugMethodInfo to the
23296         MonoDebugMethodJitInfo here, before writing it.
23297         (mono_debug_read_method): read the lexical block info.
23299         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23301         * debug-mono-symfile.h: add lexical block support.
23303         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23304         support.
23306 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23308         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23310         * object.c (mono_runtime_free_method): Call mono_free_method () and
23311         put the TODOs there.
23313         * loader.c (mono_free_method): Free up most memory allocated for 
23314         dynamic methods.
23316 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23318         * reflection.c: properly flag a Type argument to a
23319         named custom attr value (bug #72248).
23321 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23323         * reflection.c: reduce code duplication in named custom
23324         attribute encoding.
23326 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23328         * reflection.c: properly encode custom attrs of type object
23329         (bug #72649).
23331 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23333         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23335 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23337         * socket-io.c: load System.dll if it's not loaded already
23338         (bug #72850 and #70477).
23340 2005-02-21  Martin Baulig  <martin@ximian.com>
23342         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23343         generic instances.
23345 2005-02-21  Martin Baulig  <martin@ximian.com>
23347         * reflection.c (mono_image_build_metadata): We also need to
23348         "fixup" the MethodImpl table after we computed the final method
23349         indices.  Call fixup_methodimpl() to do that.
23350         (fixup_methodimpl): New private method.
23352 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23354         * assembly.c: special case mscorlib.dll (bug#72536),
23355         patch from Carlos Alberto Cortez.
23357 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23359         * threads-types.h threads.c: Fix build bustage.
23361         * threads.c: Use a union for long<->double conversions.
23363         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23364         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23366         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23367         containing the checkpoint call with NOT_TAKEN.
23368         
23369         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23370         checkpoint before pushing the arguments, so they won't have to be
23371         spilled to stack.
23373 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23375         * domain.c, assembly.c, domain-internals.h: make some data
23376         const and relocation-free.
23378 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23380         * object.c, appdomain.c, class-internals.h: introduce the
23381         MonoClassRuntimeInfo structure to hold the info needed to
23382         use a class at runtime. Made mono_class_vtable() lock-free
23383         for all the appdomains.
23385 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23387         * metadata-internals.h, image.c: introduce a per-image mempool to
23388         be used for memory that has the same lifetime as the image.
23390 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23392         * domain.c: In mono_init_internal(), instead of selecting the first
23393         runtime version supported by an executable, get a list of all
23394         supported versions and select the one for which an mscorlib exists
23395         (since even if the runtime supports a given version, it doesn't mean
23396         that the framework for that version is installed).
23397         Modified get_runtimes_from_exe to support this behavior.
23398         In supported_runtimes, added information about additional system
23399         assembly versions.
23400         
23401         * assembly.c: Added support for more than one system assembly version
23402         per runtime version. Updated the assembly list.
23403         In mono_assembly_remap_version, removed the initial version check,
23404         since we don't know to which version we need to compare until we
23405         get the version set on which the assembly is based.
23406         Moved the code for loading corlib into the new method
23407         mono_assembly_load_corlib(), so it can be used by the initialization
23408         code.
23409         
23410         * domain-internals.h: Updated data structures and added declaration
23411         for mono_assembly_load_corlib.
23413 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23415         * reflection.c (resolve_object): Fix the creation of the signature in 
23416         the SignatureHelper case.
23418         * assembly.c (mono_assembly_remap_version): Fix binary search.
23419         
23420 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23422         * class.c: Added inheritance check when a method is overloaded (from a
23423         virtual method or when implementing an interface) and when a class is
23424         inherited. Added functions to set a failure for a class and to 
23425         retreive the exception from a failure.
23426         * class-internals.h: Added fields to MonoClass to keep the exception
23427         information status for inheritance (or other exceptions) to be thrown
23428         later (i.e. not at load time).
23429         * object.c: Throw the inheritance SecurityException when a type is to 
23430         be created with either class or method inheritance violations.
23431         * reflection.c|h: Fix when getting declsec from a class. Removed 
23432         unrequired code for class. Improved sanity in parameter naming.
23433         * security-manager.c|h: Added functions to check for class and method
23434         inheritance.
23436 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23438         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23439         and has_finalize in dynamic types as well.
23441 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23443         * culture-info-table.h : fixed currency format for en-GB (and so on).
23445 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23447         * gc.c: ensure the GC handles never have 0 as a value.
23449 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23451         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23452         a pointer to a struct to unmanaged code. Fixes #72625.
23454 2005-02-16  Martin Baulig  <martin@ximian.com>
23456         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23458 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23460         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23462 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23464         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23466         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23467         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23468         etc. Fixes #71471.
23470         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23472         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23474 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23476         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23477         changes to make the current context a field in MonoThread.
23479 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23481         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23482         the last change.
23483         
23484         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23485         extracted from mono_marshal_get_native_wrapper.
23487         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23488         to create wrappers around native functions.
23490         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23491         delegates for arbitrary function pointers. Fixes #71472.
23493 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23495         * threads.c: cleaned up the code a little.
23497 2005-02-15  Martin Baulig  <martin@ximian.com>
23499         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23500         the data table.
23502         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23503         allocate larger chunks if needed.
23505 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23507         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23508         in by mistake.
23510 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23512         * domain.c: keep the domains in an array and ensure the domain ids
23513         are kept small, so they can be used as indexes to domain-specific data
23514         with a small memory overhead.
23516 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23518         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23520 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23522         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23524 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23526         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23528         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23529         values.
23531         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23532         
23533 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23535         * domain-internals.h: add the hashtable here.
23537         * class-internals.h: Remove `info' from MonoMethod
23539         * domain.c: Add a new hashtable, jit_trampoline_hash
23541 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23543         * object.c: don't set the value of static fields
23544         (fixes bug#72494).
23546 2005-02-11  Martin Baulig  <martin@ximian.com>
23548         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23549         (mono_debug_add_method): Silently ignore the method if it's too big.
23550         (mono_debug_add_type): Likewise.
23552 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23554         * threads.c, appdomain.c: remove #ifdefs from the code.
23556 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23558         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23559         common security informations. This allows us to stay in unmanaged code
23560         when doing LinkDemand and it's special cases (except for the first 
23561         time for initialization). The flags a very much used with --security.
23562         * reflection.c|h: Added code to get declarative security attributes 
23563         for LinkDemand and InheritanceDemand. This required to refactor the
23564         existing code for Demand.
23565         * security-manager.c|h: Added new method fields for the special cases
23566         of LinkDemand.
23568 2005-02-10  Martin Baulig  <martin@ximian.com>
23570         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23571         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23573 2005-02-10  Martin Baulig  <martin@ximian.com>
23575         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23576         debugging code; this is almost a complete rewrite.
23578         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23580 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23582         * domain.c, object.h: expose mono_string_equal () and 
23583         mono_string_hash ().
23584         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23585         it's implemented in managed code.
23587 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23589         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23590         lo leak objects between appdomains.
23592 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23594         * assembly.c: old compilers compilation fix from 
23595         robertj@gmx.net (Robert Jordan).
23597 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23599         * class-internals.h: Little reminder for the future.
23601         * debug-helpers.c: Fix up wrapper_type_names
23603 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23605         * image.c, metadata-internals.h: when loading an image from a file,
23606         mmap all of it and use the same codepaths as when using a
23607         in-memory image: the code is simpler and we use less memory
23608         (both writable and readonly).
23610 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23612         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23613         API to alloc runtime data structures that need to be tracked by the
23614         GC and contain pointers.
23615         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23616         make the code more readable and eventually use a different GC.
23618 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23620         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23621         for out arguments.
23622         
23623 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23625         * object.c: In release_type_locks(), don't release the cctor lock
23626         if it has already been released. This fixes a crash in the
23627         thread5 test.
23629 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23631         * gc.c, marshal.c, icall.c: register a delegate for finalization
23632         only when the native function pointer has been allocated for it.
23634 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23636         * object.c: cleaned up some code, allocate objects that are
23637         pointer free with the atomic malloc variant. Allocate memory
23638         for static data from the mempool if it's pointer-free.
23639         Allocate the bounds array at the end of the array data, when needed.
23640         * object-internals.h, object.h: move a private function in a private
23641         header.
23642         * class.c: handle missing case in tracking references in fields.
23644 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23646         * class.c, class-internals.h: keep track if a type has
23647         reference fields in either the instance or static fields.
23649 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23651         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23652         and renamed to MonoRuntimeInfo. Added fields to store the expected
23653         framework assembly version. Changed mono_get_framework_version and
23654         mono_get_runtime_version for a single mono_get_runtime_info method.
23655         
23656         * assembly.c: Added method to remap system assembly versions to the
23657         current executing runtime version. Removed old mapping code.
23658         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23659         
23660         * icall.c, reflection.c: Track api changes.
23662 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23664         * loader.c (method_from_memberref): Improve error reporting,
23665         produce the class name instead of the typeref/typedef index. 
23667 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23669         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23671 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23673         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23674         stdcall and charset name mangling.  Reorganize the code and add
23675         some tracing stuff.
23677 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23679         * monodiet.c: More iters!
23681         * marshal.c: Iter usage.
23683         * icall.c: Iter usage.
23685         * object.c: Use iters.
23687         * debug-helpers.c: More iters
23689 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23691         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23692         under win32.
23694 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23696         * mono-debug-debugger.c: use iters
23698         * class.c, class-internals.h: mono_class_setup_events is static
23699         now
23701         * All callers: use iters
23703 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23705         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23706         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23708 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23710         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23712         * marshal.h: Add prototypes for ldfld/stfld_remote.
23714         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23715         this is called during startup.
23716         
23717 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23719         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23720         MonoThreadsSync struct private in monitor.c. Changed the way
23721         MonoThreadsSync is allocated so it's faster and there is no
23722         need to keep track of it with a finalizer and it uses less memory.
23723         This also finally allows us to allocate mono objects as ptrfree when
23724         there are no reference fields.
23726 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23728         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23729         disappearing link to the GC interface and use them to simplify
23730         the gchandles code.
23732 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23734         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23735         stfld_remote which call mono_load/store_field_new. This allows methods
23736         calling ldfld/stfld wrappers to be AOTed.
23738         * console-io.c: Include sys/filio.h under solaris.
23739         
23740         * console-io.c: Include curses.h if needed correctly.
23742 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23743         
23744         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23745         method->klass as well.
23747         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23749         * class.c (mono_class_init): Switch on lazy initialization of 
23750         methods.
23752         * class.c (mono_class_get_finalizer): Handle the case when the 
23753         finalizer is inherited.
23755 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23757         * console-io.c: <curses.h> is needed by term.h on solaris.
23759 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23761         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23762         mono_class_setup_properties where possible. Remove this ftn from
23763         the header file, and make it static.
23765 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23767         * loader.c: Add missing setup_... call.
23769         * class.c: Add missing setup_... calls.
23771         * class.c (mono_class_init): Switch on lazy initialization of 
23772         the generic vtable.
23773         
23774         * class.c (mono_class_init): Fix generics broken by the recent changes.
23776         * monodiet.c (handle_type): Add missing setup_... calls.
23778         * class.c: Back out garbage in previous patch.
23779         
23780         * class.c: Add missing setup_... calls.
23782         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23783         mono_class_setup_methods () if possible.
23785         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23787         * class-internals.h (MonoCachedClassInfo): New structure.
23789         * class.c: Initialize properties and events fields of MonoClass lazily.
23791         * class.c: Add infrastructure for lazily initializing the methods and
23792         vtable fields of MonoClass. Not yet used.
23794         * class.c (mono_class_get_finalizer): New helper function.
23796         * class.c: Add infrastructure for loading some class related data from
23797         an AOT file.
23799         * object.c: Add infrastructure for initializing the vtable from data
23800         in the AOT file.
23802         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23804         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23805         appropriate initialization function before accessing parts of the
23806         MonoClass structure.
23808         * marshal.c: Fix warnings.
23809         
23810         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23812         * mono-debug-debugger.c (get_exception_message): Use 
23813         mono_class_get_method_from_name_flags ().
23815 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23817         * reflection.c, appdomain.c: Replace a few manual searches that
23818         Zoltan missed. (Paolo approved this part of my initial patch).
23820 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23822         * profiler.c: disable recording statistical events at report time.
23824 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23826         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23827         to byteswap arrays of enum values, too (bug #72080).
23829 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23831         * appdomain.c (set_domain_search_path): Allow this to be called if
23832         domain->setup is not yet set.
23834         * loader.c (mono_method_get_index): New helper function.
23836         * loader.c reflection.c: Use mono_method_get_index ().
23838         * class.c (mono_class_get_method_from_name_flags): New helper method.
23840         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23841         this.
23843         * class.c (mono_class_get_cctor): New helper method.
23845         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23846         mono_class_get_method () to look up methods.
23848 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23850         * console-io.c: Fix the build, this should work on Windows.
23852 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23854         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23855         be set to null to keep things valid
23857 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23859         * icall.c: added Console 2.0 icalls.
23860         * Makefile.am: added console-io.[ch]
23861         * console-io.[ch]: internal calls for Console 2.0 API.
23863 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23865         * class.c: make sure we consider all the interfaces
23866         when calculating max_interface_id (bug found by
23867         Jeroen Frijters running ikvm).
23869 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23871         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23872         valuetype fields to null.
23874         * object.c (set_value): Ditto. Fixes #71669.    
23876 2005-01-31  Martin Baulig  <martin@ximian.com>
23878         * metadata.c (mono_metadata_has_generic_params): New public
23879         function; checks whether something is a generic method.
23881 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23883         * appdomain.c: fix infinite recursion when adding assemblies.
23885 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23887         * object.c: Fix small typo to return all items for Environment.
23888         GetCommandLineArgs.
23890 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23892         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23893         reflection.c: more domain and assembly-unload related fixes
23894         and memory leaks plugs.
23896 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23898         * 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.
23900 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23902         * loader.c (mono_method_signature): Make this method lazy
23903         (mono_get_method_from_token): Don't computate the signature here.
23905         Doing this saves quite a bit of memory. I got 90 kb on starting up
23906         monodoc. It should also save some disk reads on startup.
23908         * *: MonoMethod->signature might be NULL now. You *MUST* use
23909         mono_method_signature.
23911 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23913         * object.c (mono_runtime_get_main_args): Return an array from the
23914         current domain here. Fixes #71938.
23916 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23918         * monitor.c: formatting changes to comply with the
23919         mono coding style and remove #ifdefs from the code.
23921 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23923         * metadata.c, private.h: remove some unneeded data
23924         and use a more compact representation for table schemas.
23926 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23928         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23929         to get a better distribution in hash tables.
23930         * *.c: use mono_aligned_addr_hash() where appropriate.
23931         * assembly.c: make var static.
23933 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23935         * domain-internals.h: Put MonoJitInfo on a diet.
23937         * domain.c: Fix a warning.
23939 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23941         * gc.c: rework the gc handles code to reuse handles
23942         when freed.
23944 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23946         * domain.c: fixed long standing bug in mono_string_equal() which
23947         was brought to light with the ldstr changes.
23949 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23951         * reflection.c: Remove warning by adding missing include for marshal.h
23953 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23955         * domain.c, object.c: change the ldstr_table to hold
23956         MonoString* as keys: makes the runtime isinterned lookup
23957         faster and simplifies memory management.
23959 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23961         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23962         possible to add imperative security checks before calling the icall.
23963         * reflection.c: Return security attributes on the original MonoMethod
23964         (and not the wrapped one). This fix permissions on icalls.
23966 2005-01-25  Dick Porter  <dick@ximian.com>
23968         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23969         the check for mktime() support actually test the mktime() return
23970         value.  "Fixes" bug 71682, though the output is still different to
23971         MS.
23973 2005-01-25  Martin Baulig  <martin@ximian.com>
23975         * class.c (mono_class_is_assignable_from): Make this work for
23976         generic instances.
23978 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23980         * marshal.c (mono_string_utf8_to_builder)
23981         (mono_string_builder_to_utf16): We might not have ownership of the
23982         string. In thise case, we need to create a new buffer.
23984         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23985         be null, in which case, use the default capacity.
23987 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23989         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23990         GC events to the profiler.
23992 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23994         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23995         if you don't want the GC to run.
23997 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23999         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24000         start providing a GC API and keeping different implementations in
24001         their own file.
24002         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24004 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24006         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24007         mmap rather than allocating a huge buffer.
24008         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24009         above.
24011 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24013         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24014         and CheckExecutionRights.
24015         * reflection.c|h: Keep the index of the declarative security to be 
24016         used, instead of the pointer, when AOT compiler is used. Also add 
24017         class initialization when requesting demands.
24018         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24019         CheckExecutionRights. Both properties are now FALSE by default, and
24020         unmodifiable, unless the --security option is used.
24022 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24024         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24025         reflection.c: properly refcount images and assemblies, many leaks fixed.
24027 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24029         * threadpool.c: increase the timeout for threads in the thread pool to
24030         10s.  Fixes bug #67159.
24032 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24034         * class-internals.h: Sun's compiler insists on explicit
24035         signed on bit fields to handle then correctly.
24037 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24039         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24040         Make the size of the array fit only the number of invalid path
24041         chars that we have.
24043         * class.c (_mono_class_get): Improve the error reporting when a
24044         class referenced is not found, to assist debugging. 
24046 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24048         * threads.c: fix off-by-one error.
24049         * domain.c: free data allocated in the domain.
24051 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24053         * reflection.c (mono_method_body_get_object): Fill out exception info
24054         as well.
24056         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24057         structure.
24058         
24059 2005-01-19  Martin Baulig  <martin@ximian.com>
24061         * loader.c (mono_get_method_constrained): Make this work again.
24063 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24065         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24066         guint16 to match the managed side.
24068         * reflection.c (mono_reflection_body_get_object): Fill out local
24069         variables array.
24071         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24072         as well.
24074         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24075         'local_var_sig_token'.
24077 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24079         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24080         System.Drawing.
24082         * reflection.c (mono_method_body_get_object): Handle abstract and
24083         runtime methods.
24085 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24087         * marshal.c, loader.c, class-internals.h, reflection.c:
24088         store the emthod data for a wrapper in an array instead of a list.
24090 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24092         * marshal.c: change the code to allocate memory more
24093         conservatively for method wrappers.
24095 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24097         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24098         fields from MonoClass to the marshal info structure where they belong.
24100 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24102         * class.c, object.c, class-internals.h, marshal.c: rearrange
24103         some fields and tweak some types to lower memory usage.
24105 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24107         * threads.c (signal_thread_state_change): Handle the case when the
24108         target thread is the current thread.
24110         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24112         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24113         emit_ptr_to_object_conv. 
24115         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24116         marshalling. Fixes #71352.
24118 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24120         * metadata.h, blob.h: move table enum to blob.h so it can be included
24121         in any header.
24122         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24123         cut the size of MonoImage/MonoDynamicImage.
24125 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24127         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24129 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24131         * reflection.c, reflection.h, icall.c: add a function to check
24132         if an attribute type is defined for a metadata object.
24134 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24136         * object-internals.h: Added some needed fields from StringBuilder class.
24137         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24139 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24141         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24142         threads before shutting down the runtime.
24144         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24146 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24148         * object-internal.h, threads.c: implement stacksize and 
24149         parameterized thread start functionality (requires
24150         matching corlib). Marked broken code for later removal.
24152 2005-01-12  Martin Baulig  <martin@ximian.com>
24154         * class-internals.h (MonoGenericClass): Moved the `initialized'
24155         flag to MonoDynamicGenericClass, removed `init_pending'.
24156         (MonoGenericInst): Added `is_reference' flag.
24158 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24160         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24161         inside the MSDOS header. Fixes #71201.
24163         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24164         gc thread.
24165         (mono_domain_finalize): Ditto.
24167 2005-01-12  Martin Baulig  <martin@ximian.com>
24169         * class.c (mono_get_shared_generic_class): Use the cache for
24170         non-dynamic generic classes.
24172         * class-internals.h (mono_class_create_generic_2): Removed
24173         function prototype, this function is now static inside class.c.
24175         * class.c (mono_class_create_generic_2): Made this static, only
24176         call it from mono_class_init() and mono_class_setup_parent().
24177         (collect_implemented_interfaces_aux): Call mono_class_init() on
24178         the interfaces we collect.
24179         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24181 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24183         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24184         it a real thread handle.
24186         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24187         MonoJitExceptionInfo, since each catch clause needs its own variable.
24188         
24189 2005-01-11  Dick Porter  <dick@ximian.com>
24191         * image.c (mono_pe_file_open): New variant on mono_image_open()
24192         that does not set up the CLI metadata; used for FileVersionInfo so
24193         it can get the data for windows binaries too.
24194         
24195         * process.c (process_read_string_block): Don't read off the end of
24196         the StringTable block.
24198         These both fix bug 70766.
24200 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24202         * gc.c: set some fields to NULL at GC cleanup time.
24203         * threads.c: if we quit the main thread, call exit ().
24205 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24207         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24209 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24211         * threads.h, threads.c, object.c: added accessor and settor for
24212         main_thread. Handle it specially when exiting from it: wait
24213         for other foreground threads to exit.
24215 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24217         * process.c, verify.c: remove some bloat.
24219 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24221         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24222         the calling convention to cdecl under win32.
24224 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24226         * object.c (mono_object_get_size): New function to get the size of
24227         an object instance.
24229         * profiler.c (simple_allocation): Use above.
24231 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24233         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24234         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24235         get an appdomain by it's id and we can't assume the root's id is 0).
24236         * domain-internals.h: Change the function prototype to match.
24237         * icall.c: Change the icall table for AppDomain.
24239 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24241         * locales.c (string_invariant_compare_char): Only compute
24242         GUnicodeTypes in the case where we need them.  Test for ordinality
24243         first and return if so.
24245         From the commit:
24247                 /*
24248                  * FIXME: here we must use the information from c1type and c2type
24249                  * to find out the proper collation, even on the InvariantCulture, the
24250                  * sorting is not done by computing the unicode values, but their
24251                  * actual sort order.
24252                  */
24254 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24256         * loader.c: for P/Invoke methods, allow the "Internal" shared
24257         library name to refer to the calling process symbol namespace.
24259 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24261         * Makefile.am: Add the security manager to the build.
24262         * security-manager.c|h: New. Initialization of the security manager.
24264 2005-01-07  Dick Porter  <dick@ximian.com>
24266         * threads.c: 
24267         * monitor.c: Update thread state during Monitor and WaitHandle
24268         waits.  Fixes bug 71031.
24270 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24272         * reflection.c (property_encode_signature): Correctly handle when the
24273         property has no methods.
24275 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24277         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24278         
24279         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24280         fields from mb, not rmb. Fixes #71017.
24282         * marshal.c (emit_ptr_to_str_conv): Add support for 
24283         ByValTStr -> string conversion. Fixes #71015.
24285         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24287         * mempool.c (mono_mempool_contains_addr): New helper function.
24289 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24291         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24292         HasSematics encoded fields.
24293         
24294         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24295         invalid string marshalling.
24297         * metadata.c: Fix warnings.
24298         
24299 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24301         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24302         profiler support.
24304 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24306         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24307         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24308         tests.
24310 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24312         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24313         so methods containing these can be AOTed.
24315 2005-01-03  Martin Baulig  <martin@ximian.com>
24317         * loader.c (find_method): Removed the hack for generic instances.
24318         (method_from_memberref): If our parent is a generic instance, pass
24319         its generic type definition to find_method() and then inflate the
24320         method.
24321         (mono_get_method_constrained): Pass the generic type definition to
24322         find_method() and inflate the method later.
24324         * class-internals.h (MonoStats): Added `generic_class_count'.
24326         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24327         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24329         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24330         generic type definitions.
24332 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24334         * loader.c icall.c: Fix warnings.
24336 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24338         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24339         blittable types. Fixes #70864.
24341 2004-12-29  Martin Baulig  <martin@ximian.com>
24343         * icall.c
24344         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24346         * reflection.c (mono_method_get_object): Create a
24347         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24348         call mono_get_inflated_method().
24350         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24352 2004-12-27  Martin Baulig  <martin@ximian.com>
24354         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24355         (MonoMethodInflated): Added `inflated' field.
24357         * class.c (mono_class_inflate_generic_method): Don't really
24358         inflate the method here; just set the `is_inflated' flag in the
24359         MonoMethod.
24360         (mono_class_get_inflated_method): Actually inflate the method here
24361         if it's not already inflated; we use the MonoMethodInflated's new
24362         `inflated' field as a cache.
24364 2004-12-26  Martin Baulig  <martin@ximian.com>
24366         * class.c
24367         (inflate_generic_class): Moved some code out of inflate_generic_type().
24368         (mono_class_inflate_generic_method): If we're already inflated,
24369         inflate the context and use the declaring method; ie. make sure
24370         the declaring method of an inflated method is always the generic
24371         method definition.
24372         (mono_class_create_from_typedef): Create
24373         `class->generic_container->context->gclass'.
24375 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24377         * metadata-internals.h, marshal.c, reflection.c: More
24378         MonoGHashTable->GHashTable.
24380         * domain-internals.h, class.c: Change MonoGHashTable's into
24381         GHashTables for some cases where no gc stuff is used
24383         All users: update apis
24385 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24387         * metadata.c (builtin_types): Make this `const'. Makes this get
24388         put into the shareable section.
24389         (mono_metadata_init): Casts to make gcc happy.
24391 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24393         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24395 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24397         * icall.c: Added an internal call to retrieve the position and length
24398         of assembly-level declarative security attributes (RequestMinimum, 
24399         RequestOptional and RequestRefuse). This is used by the Assembly class
24400         to re-create the corresponding permission sets.
24402 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24404         * marshal.c: fix the stelemref wrapper to be type correct
24405         (and faster).
24407 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24409         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24410         to do key & 0x7fffffff. Hashtable already does this. It just
24411         results in longer code.
24413 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24415         * appdomain.c: Bump corlib version.
24416         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24417         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24418         * reflection.c|h: Add functions to get declarative security infos
24419         (blob position and length) for assemblies, classes and methods.
24421 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24423         * reflection.c: sort the constant table (bug #70693).
24425 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24427         * object-internals.h, threads.c, domain.c: add accessors for
24428         the MonoThread and MonoDomain tls keys.
24430 2004-12-18  Martin Baulig  <martin@ximian.com>
24432         * class.c (inflate_generic_type): If we're inflating a generic
24433         instance, set `ngclass->context->container = context->container';
24434         ie. the container we inflated into.
24436         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24437         inflate_generic_type() changes.
24439 2004-12-17  Martin Baulig  <martin@ximian.com>
24441         * class-internals.h
24442         (MonoGenericClass): Replaced `MonoType *generic_type' with
24443         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24444         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24445         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24447 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24449         * exception.c (mono_exception_from_token): New helper function.
24451 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24453         * assembly.c (mono_assembly_load_with_partial_name): Call 
24454         mono_assembly_loaded before invoking the preload hooks. Fixes
24455         #70564.
24457         * object-internals.h (MonoThread): Change culture_info and 
24458         ui_culture_info into an array.
24460         * threads.c: Cache culture info objects from more than one appdomain.
24462         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24463         current UI culture.
24465 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24467         * threads.h threads.c appdomain.c: Clear the culture_info field of
24468         all threads during unloading if they point to an object in the dying
24469         appdomain.
24471 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24473         * culture-info.h (TextInfoEntry): New struct
24474         * object-internals.h: sync with managed
24475         * locales.c: fill the `text_info_data' field
24476         * culture-info-tables.h: update
24478 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24480         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24481         collector.
24483 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24485         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24486         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24488 2004-12-12  Martin Baulig  <martin@ximian.com>
24490         * mono-debug-debugger.c (write_type): If we're an enum and the
24491         builtin types have already been initialized, call mono_class_init().
24493 2004-12-11  Martin Baulig  <martin@ximian.com>
24495         * metadata.c (mono_metadata_load_generic_params): Added
24496         `MonoGenericContainer *parent_container' argument; automatically
24497         compute `container->is_method'; pass the correct owner to
24498         get_constraints().      
24500         * reflection.c (compare_genericparam): Sort the GenericParam table
24501         according to increasing owners. 
24503 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24505         * profiler.c: allow disabling the default profiler.
24507 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24509         * decimal.c, icall.c: allow disabling System.Decimal support.
24511 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24513         * reflection.c: Add support for null attribute arguments.
24515 2004-12-09  Martin Baulig  <martin@ximian.com>
24517         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24518         names to get rid of compiler warnings.
24520 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24522         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24523         mono_marshal_load_type_info (). Fixes #69625.
24524         (mono_marshal_get_ptr_to_struct): Likewise.
24526 2004-12-08  Martin Baulig  <martin@ximian.com>
24528         * mono-debug.h: Bumped version number to 47.
24530         * mono-debug-debugger.c
24531         (mono_debugger_event_handler, mono_debugger_event): Take two
24532         guint64 arguments insteed of a gpointer and a guint32.  
24534 2004-12-08  Martin Baulig  <martin@ximian.com>
24536         * debug-mono-symfile.h
24537         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24538         `address' to `native_offset'.
24540 2004-12-08  Martin Baulig  <martin@ximian.com>
24542         * class.c (mono_class_create_from_typespec): Only inflate if we
24543         either have `context->gclass' or `context->gmethod'.
24545 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24547         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24549         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24551         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24553         * reflection.c (mono_assembly_get_object): Remove the workaround put
24554         in for the release.
24555         
24556         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24558         * appdomain.c: Bump corlib version.
24560         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24561         be visible in other appdomains.
24563 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24565         * threads.c: Interlocked inc and dec for longs were messed up,
24566         use a KISS based impl for this. Fixes 70234
24568 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24570         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24572 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24574         * icall.c: fix to follow policy not to allow struct
24575         arguments in icalls.
24577 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24579         * process.c: make the patch that handles spaces in file paths work
24580         on mono/windows too.
24582 2004-12-06  Martin Baulig  <martin@ximian.com>
24584         * class.c (mono_class_create_generic): Call
24585         mono_class_setup_supertypes() if we're dynamic.
24586         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24588 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24590         * object-internals.h: Add new fields to MonoThread.
24592         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24594         * icall.c threads-types.h threads.c: Add new icalls.
24596         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24598         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24599         managed side.
24601         * appdomain.c: Bump corlib version.
24603         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24604         internal assemblies. Fixes #69181.
24606 2004-12-05  Martin Baulig  <martin@ximian.com>
24608         * class.c (mono_class_inflate_generic_signature): Make this a
24609         no-op if `context' is NULL or we don't have any type parameters;
24610         also copy `sentinelpos'.        
24612 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24614         * image.c: Add unbox_wrapper_cache.
24616         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24618         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24619         function generator.
24620         
24621         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24622         Fixes #70173.
24624         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24625         
24626 2004-12-04  Martin Baulig  <martin@ximian.com>
24628         * loader.c (mono_method_get_signature_full): New public function;
24629         like mono_method_get_signature(), but with an additional
24630         `MonoGenericContext *' argument.
24632         * class.c (mono_class_inflate_generic_signature): Formerly known
24633         as inflate_generic_signature(); make this public.
24635 2004-12-04  Martin Baulig  <martin@ximian.com>
24637         * metadata.c
24638         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24639         instead of a `MonoGenericContainer *'.  
24640         (mono_metadata_parse_array_full): Likewise.
24641         (mono_metadata_parse_signature_full): Likewise.
24642         (mono_metadata_parse_method_signature_full): Likewise.
24643         (mono_metadata_parse_generic_inst): Likewise.
24644         (mono_metadata_parse_generic_param): Likewise.
24645         (mono_metadata_parse_mh_full): Likewise.
24646         (mono_type_create_from_typespec_full): Likewise.
24648 2004-12-03  Martin Baulig  <martin@ximian.com>
24650         * class-internals.h (MonoGenericContainer): Replaced the
24651         `MonoGenericContext * pointer with a `MonoGenericContext'
24652         structure and made it the first element.
24654 2004-12-03  Martin Baulig  <martin@ximian.com>
24656         * class.c
24657         (inflate_generic_type): Set the `context->container' when creating
24658         a new MonoGenericContext.
24659         (mono_class_inflate_generic_method): Likewise.
24660         (mono_class_create_from_typespec): Just use `context->container'
24661         to get the container.
24663         * loader.c (method_from_methodspec): Set `context->parent' from
24664         `context->container' - and if that's a method container, use its
24665         parent.  Also set the `context->container' when creating a new
24666         MonoGenericContext.
24667         (mono_get_method_from_token): Use just `context->container' to get
24668         the container.
24670         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24671         `gclass->context->container'.
24673         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24674         the `context->container' when creating a new MonoGenericContext.
24676 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24678         * reflection.c (compare_genericparam): Sort params with identical
24679         owner by their number. Fixes gen-111 on sparc.
24681 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24683         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24684         around the domain changes.
24686         * appdomain.c (mono_domain_unload): Handle the case when the thread
24687         calling Unload is itself being aborted during unloading. Fixes #70022.
24689         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24691         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24692         checkpoint_func as an icall so it gets a wrapper.
24693         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24694         in the cross-appdomain wrappers too.
24696         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24698         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24700         * reflection.c: Fix some memory leaks.
24701         
24702 2004-12-02  Martin Baulig  <martin@ximian.com>
24704         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24706         * metadata.c (generic_class_cache): New static hashtable.
24707         (mono_metadata_lookup_generic_class): New public method.
24709 2004-12-02  Martin Baulig  <martin@ximian.com>
24711         * class.c (mono_class_create_from_typedef): Call
24712         mono_class_setup_parent() and mono_class_create_mono_type() before
24713         parsing the interfaces.
24715 2004-12-02  Martin Baulig  <martin@ximian.com>
24717         * metadata.c (generic_inst_cache): New static hashtable.
24718         (mono_metadata_lookup_generic_inst): New public function.
24719         (mono_metadata_inflate_generic_inst): New public function.
24720         (mono_metadata_parse_generic_inst): New public function.
24721         (do_mono_metadata_parse_generic_class): Use the new
24722         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24723         since this'll also use the cache.
24725         * reflection.c (mono_reflection_bind_generic_method_parameters):
24726         Use mono_metadata_lookup_generic_inst() to use the new cache.
24728         * class.c (inflate_mono_type): Use
24729         mono_metadata_inflate_generic_inst() to inflate a generic
24730         instance; this'll also use the new cache.
24732         * loader.c (method_from_methodspec): Use
24733         mono_metadata_parse_generic_inst() and
24734         mono_metadata_inflate_generic_inst() rather than parsing it
24735         manually, so we can use the new cache.
24737 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24739         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24740         the wait times out.
24742 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24744         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24745         iter->args based on whether parameters are passed in registers (i.e.
24746         MONO_ARCH_REGPARMS is defined)
24748 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24750         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24751         the exception message. Fixes #70070.
24752         (method_from_methodspec): Fix warnings.
24754 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24756         * process.c: (complete_path) return the path quoted
24758 2004-12-01  Martin Baulig  <martin@ximian.com>
24760         * class-internals.h (MonoGenericInst): New structure.
24761         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24762         `is_open' with `MonoGenericInst *inst'.
24763         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24764         `is_open' with `MonoGenericInst *inst'.
24766 2004-11-30  Martin Baulig  <martin@ximian.com>
24768         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24770         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24771         to `generic_class_cache'.
24773         * metadata.c
24774         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24775         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24776         (mono_generic_inst_is_valuetype): Renamed to
24777         mono_generic_class_is_valuetype().
24779         * class-internals.h
24780         (MonoGenericInst): Renamed to MonoGenericClass.
24781         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24782         (MonoClass): Renamed `generic_inst' to `generic_class'.
24783         (MonoGenericContext): Renamed `ginst' to `gclass'.
24785         * object-internals.h
24786         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24788         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24789         mono_reflection_generic_class_initialize().
24791         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24792         now known as "System.Reflection.MonoGenericClass".
24793         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24795 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24797         * class-internals.h: Added a flag field to MonoClass to cache the
24798         declarative security attributes actions associated with the class.
24799         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24800         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24801         applicable to the JITted method.
24802         * reflection.c|h: Added functions to extract (as flags) which security
24803         actions are available (declaratively) for a method, class or assembly.
24804         * metadata.c|h: Added functions to search the declarative security
24805         table in the metadata.
24806         
24807 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24809         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24810         EXPORTEDTYPES are already in the class name cache, so there is no
24811         need to add extra code here to look at them. Just removes a bit of
24812         cruft.
24814         (ves_icall_System_Environment_get_TickCount): No need for #if
24815         WINDOWS. We already have the code in io-layer.
24817 2004-11-28  Martin Baulig  <martin@ximian.com>
24819         * loader.c
24820         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24821         Fixes gen-112.cs.
24823 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24825         * assembly.c (do_mono_assembly_open): Instead of having a
24826         conditional WITH_BUNDLE, incorporate support for bundles here, by
24827         having a global `bundles' variable holding a pointer to the actual
24828         bundles. 
24830         (mono_register_bundled_assemblies): New API call used by the
24831         bundle code. 
24833         See mkbundle.1 for details.
24834         
24835 2004-11-27  Martin Baulig  <martin@ximian.com>
24837         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24838         the vtable for generic methods.
24840 2004-11-26  Martin Baulig  <martin@ximian.com>
24842         * metadata.c
24843         (mono_metadata_generic_method_hash): New public function.
24844         (mono_metadata_generic_method_equal): Likewise.
24846         * class-internals.h
24847         (MonoGenericContainer): Added `GHashTable *method_hash'.
24849         * reflection.c (ReflectionMethodBuilder): Added
24850         `MonoGenericContainer *generic_container'.
24851         (reflection_methodbuilder_to_mono_method): Don't create a new
24852         MonoGenericContainer each time we're called.
24853         (mono_reflection_bind_generic_method_parameters): Use
24854         `container->method_hash' to cache the results so we don't create a
24855         different method if we're called several times with the same
24856         arguments.
24858         * loader.c (method_from_methodspec): Use the new
24859         `container->method_hash' here, too.
24861 2004-11-26  Martin Baulig  <martin@ximian.com>
24863         * class.c (inflate_generic_signature): Correctly compute
24864         `res->has_type_parameters'.
24865         (mono_class_vtable): Use the `has_type_parameters' flag to
24866         determine whether we're a generic method.
24868         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24870 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24872         * object.c (mono_runtime_run_main): Fix a small memory leak.
24874 2004-11-25  Martin Baulig  <martin@ximian.com>
24876         * class.c (set_generic_param_owner): Fixed the loop.
24878 2004-11-25  Martin Baulig  <martin@ximian.com>
24880         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24881         generic methods.
24883 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24885         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24886         names. Fixes #69787.
24888 2004-11-24  Martin Baulig  <martin@ximian.com>
24890         * class.c (mono_class_create_generic_2): If we don't have a
24891         `ginst->parent', inflate `gklass->parent' to get our parent.
24893 2004-11-24  Martin Baulig  <martin@ximian.com>
24895         * reflection.c (compare_genericparam): Correctly sort the
24896         GenericParam table; fixes #69779.
24898 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24900         * reflection.c: When writing a PE file, don't create a huge
24901         buffer in memory. Just write the arrays we have to the file.
24902         This reduces memory usage.
24904         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24905         globally.
24907 2004-11-17  Martin Baulig  <martin@ximian.com>
24909         * class.c (mono_class_init): Don't setup `class->parent' for
24910         dynamic instances; moved this to mono_class_generic_2().
24911         (mono_class_create_generic): Also set `klass->inited' for dynamic
24912         generic instances.
24913         (mono_class_create_generic_2): Don't do anything for dynamic
24914         generic instances.  Set `klass->parent' here and also call
24915         mono_class_setup_parent() here. 
24917         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24918         `MonoType *parent' argument; set `ginst->parent' before calling
24919         mono_class_create_generic_2(), so we set the correct parent.
24921 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24923         * reflection.c: allow getting attributes from ModuleBuilder
24924         (used by ikvm).
24926 2004-11-17  Martin Baulig  <martin@ximian.com>
24928         * class.c (mono_class_create_from_typedef): If a type parameter is
24929         inherited from an outer class, set its owner to that class.
24931 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24933         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24934           for (int*) written size. This fixes bug #69592.
24936 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24938         * icall.c: Added IsAuthenticodePresnet internal call.
24939         * image.c|h: New function that check a MonoImage for an Authenticode
24940         signature in the certificate PE data directory.
24941         * security.c|h: New internal call to ask the runtime if an 
24942         Authenticode signature seems referenced in the PE header.
24944 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24946         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24948         * reflection.c (mono_image_create_pefile): Free the assembly streams
24949         after writing out the assembly file.
24951         * object.c (mono_runtime_run_main): Fix small memory leak.
24953         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24954         property access modifiers. Fixes #69389.
24956 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24958         * domain.c, object.c, object-internals.h, domain-internals.h,
24959         object.h, marshal.c: keep dynamic code info per domain.
24961 2004-11-15  Martin Baulig  <martin@ximian.com>
24963         * class.c (mono_type_get_name_recurse): Put type arguments in
24964         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24965         see bug #68387.
24967 2004-11-15  Martin Baulig  <martin@ximian.com>
24969         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24970         (mono_class_setup_vtable): When computing `the_cname' for a
24971         generic instance, don't include the namespace since we'd otherwise
24972         add it twice.
24974 2004-11-15  Martin Baulig  <martin@ximian.com>
24976         * class.c (mono_class_create_generic): Changed return type to void.
24977         (mono_class_create_generic_2): New public function; setup
24978         `class->method', `class->field' and `class->interfaces' here
24979         instead of in mono_class_init().
24981         * class.h (mono_class_create_generic): Moved to class-internals.h.
24983 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24985         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24986         rather than writing to memory, write to this file. Right now,
24987         we are just writting into a buffer, and copying that. However
24988         we can avoid the buffer later.
24990         (mono_dynamic_stream_reset): new function
24992         * icall.c, object-internals.h: update for the above.
24994 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24996         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24997         have been using gc'd memory. First it is slower, unlikely
24998         the comment in the source code said, secondly, it increases
24999         our footprint to do it in the gc.
25001         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25002         the method so that it does not have to copy to managed code.
25004 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25006         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25008 2004-11-12  Martin Baulig  <martin@localhost>
25010         * reflection.c (mono_image_create_token): Allow generic method
25011         definitions here, since they may appear in an `.override'; see
25012         gen-98/gen-99 for an example.
25014 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25016         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25017         #69365.
25019         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25020         descriptive.
25022 2004-11-11  Martin Baulig  <martin@ximian.com>
25024         * class.c (mono_class_setup_vtable): In an explicit interface
25025         implementation, the method name now includes the arity.
25027 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25029         * object.c (mono_array_full_copy): Fix warning.
25031 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25033         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25034         mono_class_get_method_from_name() instead.
25035         
25036         * class-internals.h: Added two new types of wrappers. 
25037         Added MonoRemotingTarget enum. Added new trampoline function type, which
25038         takes an additional MonoRemotingTarget value as parameter, so it is
25039         possible to request a trampoline for a specific target.
25040         
25041         * class.c: Added new mono_class_get_method_from_name() method.
25042         
25043         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25044         general remoting sinks and one specific for cross domain calls.
25045         
25046         * debug-helpers.c: Added new wrapper names.
25047         
25048         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25049         of a remote class.
25050         
25051         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25052         
25053         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25054         with several other methods (mono_marshal_get_xappdomain_dispatch,
25055         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25056         and others) can generate a fast remoting wrapper for cross domain calls.
25057         More information can be found in docs/remoting.
25058         Other changes: Removed mono_find_method_by_name, and used
25059         mono_class_get_method_from_name instead.
25060         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25061         is stored in the remoting invoke hashtable.
25062         
25063         * marshal.h: published the new method for getting the xdomain wrapper,
25064         and also added a method for getting the adequate wrapper for a given
25065         method and target.
25066         
25067         * object-internals.h, object.c: Added a couple of methods for capying and
25068         cloning arrays.
25069         Modified mono_install_remoting_trampoline, which takes the new remoting
25070         trampoline that has a remoting target as parameter.
25071         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25072         will return the most suitable vtable for the target.
25073         Added mono_remote_class_vtable, which returns the vtable of a remote class
25074         (which can be the normal remoting vtable or the xdomain vtable).
25075         
25076         * threads.c: the xdomain invoke and dispatch wrappers must also be
25077         protected against interruptions.
25079 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25081         * icall.c: use memmove in BlockCopyInternal when the source and
25082         destination arrays are the same.
25084 2004-11-09  Martin Baulig  <martin@ximian.com>
25086         * class-internals.h (MonoGenericContainer): Removed `method' and
25087         `signature', replaced them with `is_method' and `is_signature'
25088         flags.  Added `context'.
25090         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25091         instead of a `MonoGenericContainer *'.
25093         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25094         for dynamic type parameters.
25095         (mono_metadata_load_generic_params): Setup `container->context'.
25097         * reflection.c (mono_reflection_setup_generic_class): Setup
25098         `tb->generic_container->context'.
25099         (do_mono_reflection_bind_generic_parameters): Use
25100         mono_class_inflate_generic_type() to correctly inflate types,
25101         rather than using our own hack just for MONO_TYPE_VAR.
25103 2004-11-09  Martin Baulig  <martin@ximian.com>
25105         * class.c (mono_class_inflate_generic_method): Small fix; don't
25106         crash here.
25108         * icall.c
25109         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25110         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25111         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25112         (ves_icall_Type_BindGenericParameters): Likewise.
25113         (ves_icall_Type_get_IsGenericInstance): Likewise.
25114         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25115         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25116         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25117         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25119 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25121         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25122         assembly versions and public key tokens. Fixes #69113.
25124 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25126         * metadata.c: fix bug introduced with the type cache changes
25127         on 2004-11-06.
25129 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25131         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25132         the MonoClass pointer instead of the token in exception clauses.
25133         * reflection.c: updates for the above and make the code not depend
25134         on the structure of MonoExceptionClause.
25136 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25138         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25139         Add support for dynamic assemblies. Fixes #69114.
25141         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25143 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25145         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25146         since most only those methods use it. the code member of
25147         MonoMethodPInvoke was dead, so that can be removed too. Also,
25148         remove inline_count (again, not used), and move slot so that it
25149         can share bits with some other flags. This saves 8 bytes in the
25150         structure and gives us about 50 kb back for mcs helloworld.cs
25152         * *.[ch]: Do naming changes for the above.
25154         * loader.c (mono_method_get_header): Lazily init the header
25155         on first access.
25156         (mono_get_method_from_token): don't init the header here
25157         (mono_free_method): the header may never be allocated
25159         Overall, this saves 150 kb of unmanaged allocations
25160         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25161         memory at runtime.
25162         
25163         * loader.c, loader.h (mono_method_get_header): new accessor.
25165         * *.[ch]: use the above method. Prepares us to lazily load
25166         the header.
25168         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25169         three warnings, which are actual bugs (see 69206).
25171         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25172         unused. Saves a cool 4 bytes / method.
25174 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25176         * metadata.c (builtin_types): Add types for System.Object here.
25177         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25178         for a class or valuetype from klass->this_arg or klass->byval_arg.
25180         On mcs for a hello world, this gets us down from 21836 MonoType's
25181         to 14560.
25183         (mono_metadata_free_type): Account for the above change.
25185 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25187         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25188         exception instead of asserting if name is null.
25189         (ves_icall_System_AppDomain_GetData): Ditto.
25191 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25193         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25194         EnumBuilder.
25196         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25197         Return NULL when the domain does not have entry_assembly set.
25199         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25200         Add a 'resource_modules' argument.
25201         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25203         * reflection.c (mono_reflection_create_runtime_class): Move setting
25204         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25205         for enums too.
25207         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25208         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25209         Throw an ArgumentNullException if 'ptr' is null.
25211         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25212         assemblies here. Fixes #69020.
25214 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25216         * reflection.c (build_compressed_metadata): Fix the previous patch for
25217         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25218         the stack.
25220 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25222         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25223         the cultures is false. Fixes #69090.
25225         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25226         detected by valgrind.
25227         
25228         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25229         TypeResolve multiple times for the same type. Fixes #65577.
25231 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25233         * marshal.c: Avoid using ldftn to call managed functions. It is
25234         much slower than just a call.
25236         * reflection.c (mono_module_get_object): free the basename we
25237         allocate here from glib.
25238         
25239         * reflection.c (ensure_runtime_vtable): make sure to free
25240         overrides.  Also, we were allocating an array of MonoMethod not an
25241         array of MonoMethod*.
25243         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25245         * image.c (mono_image_close): free image->guid here.
25247 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25249         * reflection.c: Fix some spec conformance issues with the PE file
25250         structures so mcs compiled apps run on the Net 2.0 beta.
25252 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25254         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25255         Implement this. Fixes #67264.
25257         * debug-helpers.h debug-helpers.c marshal.c: Move 
25258         mono_find_method_by_name to debug-helpers.c.
25260 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25262         * object.c (mono_release_type_locks): type_initialization_hash is
25263         a GHashTable.
25265         * reflection.c object.c object-internals.h: Fix warnings.
25267         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25268         without accessors. Fixes #61561.
25270         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25271         application base from the root domain if not set. Fixes #65641.
25272         (mono_runtime_init): Fix warning.
25274 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25276         * appdomain.c: call mono_thread_pool_init.
25277         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25278         of worker threads based on the number of CPUs and the environment
25279         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25280         for non-windows (windows) systems.
25282 2004-10-27  Chris Toshok  <toshok@ximian.com>
25284         * mono-debug-debugger.c (write_class): don't call mono_class_init
25285         here, as even with the check for (!klass->init_pending), we get
25286         into a situation where we're hitting cycles in class
25287         initialization.  Fixes #68816.
25289 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25291         * image.c: Avoid overwriting values in the loaded_images_hash when an
25292         assembly is loaded multiple times. Fixes #61152.
25294         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25295         so multiple satellite assemblies for the same name can be loaded.
25296         Fixes #68259.
25298         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25299         not NULL.
25301         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25302         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25304         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25305         pending finalizers are not invoked after the appdomain has been 
25306         unloaded. Fixes #67862.
25308 2004-10-22  Martin Baulig  <martin@ximian.com>
25310         * mono-debug-debugger.c
25311         (mono_debugger_runtime_invoke): Don't box valuetypes.
25313 2004-10-22  Chris Toshok  <toshok@ximian.com>
25315         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25316         don't hide private methods.
25318 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25320         * icall.c: Allows the runtime to "share" (when known) the public key
25321         token of an assembly. This avoid the need to recalculate the token 
25322         (from the public key) in managed code.
25324 2004-10-21  Chris Toshok  <toshok@ximian.com>
25326         * debug-helpers.c (append_class_name): argh, revert last patch.
25327         
25328 2004-10-21  Chris Toshok  <toshok@ximian.com>
25330         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25331         not '/', so that it matches what the debugger uses to look up
25332         methods.
25334 2004-10-21  Martin Baulig  <martin@ximian.com>
25336         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25337         public method; this is called each time an exception is thrown and
25338         allows the debugger to use exception catch points.
25340 2004-10-21  Martin Baulig  <martin@ximian.com>
25342         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25343         the stack pointer and the exception object in some struct and pass
25344         that to the debugger.
25346 2004-10-21  Chris Toshok  <toshok@ximian.com>
25348         * mono-debug-debugger.c (do_write_class): add instance/static
25349         event support.  We don't expose "raise" or "other" yet.
25350         (event_is_static): new method.
25352 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25354         * mono-debug-debugger.c
25355         (mono_debugger_handle_exception): Remove
25356         bogus return value for fussy compilers.
25358 2004-10-20  Martin Baulig  <martin@ximian.com>
25360         * mono-debug-debugger.c
25361         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25362         (mono_debugger_handled_exception): Likewise.
25364 2004-10-20  Martin Baulig  <martin@ximian.com>
25366         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25367         MONO_DEBUGGER_EVENT_EXCEPTION.
25369         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25370         public function to send the debugger a notification for an
25371         exception and inform it about a catch/finally clause.
25373 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25375         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25376         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25377         fix 2.95 build. 
25379         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25381 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25383         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25384         marshalled as [In,Out]. Fixes #58325.
25386 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25388         * reflection.c (mono_method_body_get_object): Implement some fields.
25390 2004-10-12  Martin Baulig  <martin@ximian.com>
25392         * reflection.c (mono_reflection_bind_generic_parameters): Small
25393         fix, correctly retrieve our parent from a generic instance.
25395 2004-10-12  Martin Baulig  <martin@ximian.com>
25397         * metadata.c (mono_metadata_generic_param_equal): We always have
25398         an owner.
25400         * class.c
25401         (mono_class_from_generic_parameter): We need to have an owner.
25402         (my_mono_class_from_generic_parameter): Likewise.
25404         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25405         mono_reflection_create_generic_class() and added a new
25406         mono_reflection_setup_generic_class().  
25407         (mono_reflection_initialize_generic_param): If we're a nested
25408         generic type and inherited from the containing class, set our
25409         owner to the outer class.
25411 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25413         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25415         * reflection.c (mono_method_body_get_object): New function to create
25416         a MethodBody object.
25418         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25420 2004-10-11  Martin Baulig  <martin@ximian.com>
25422         * metadata.c (_mono_metadata_type_equal): Renamed to
25423         do_mono_metadata_type_equal() and made static.
25425 2004-10-11  Martin Baulig  <martin@ximian.com>
25427         * appdomain.c: Bump corlib version number to 28.
25429 2004-10-10  Martin Baulig  <martin@ximian.com>
25431         * class-internals.h
25432         (MonoGenericInst): Added `MonoGenericContainer *container'.
25433         (MonoGenericMethod): Likewise.
25434         (MonoGenericContext): Likewise.
25435         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25437         * metadata.c
25438         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25439         (do_mono_metadata_parse_generic_inst): Likewise.
25440         (mono_metadata_parse_type_full): New public method.  This is the actual
25441         mono_metadata_parse_type() implementation - with an additional
25442         `MonoGenericContainer *' argument.
25443         (mono_metadata_parse_array_full): Likewise.
25444         (mono_metadata_parse_signature_full): Likewise.
25445         (mono_metadata_parse_method_signature_full): Likewise.
25446         (mono_metadata_parse_mh_full): Likewise.
25447         (mono_type_create_from_typespec): Likewise.
25448         (mono_metadata_interfaces_from_typedef_full): New public method;
25449         this is similar to the other _full() methods, but we take a
25450         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25451         (mono_metadata_parse_generic_param): Take an additional
25452         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25453         from that container.
25454         (mono_metadata_generic_param_equal): New static method to compare
25455         two type parameters.
25456         (_mono_metadata_type_equal): New static method; takes an
25457         additional `gboolean signature_only' argument - if true, we don't
25458         compare the owners of generic parameters.
25459         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25460         with a TRUE argument - do a signature-only comparision.
25462         * loader.c: Use the new _full() methods and pass the
25463         MonoGenericContainer to them.
25465         * object-internals.h (MonoReflectionTypeBuilder): Added
25466         `MonoGenericContainer *generic_container' field.
25467         (MonoReflectionMethodBuilder): Likewise.
25469 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25471         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25472         case initial images of dynamic assemblies.
25474         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25476         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25478         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25479         length of event->other array.
25480         (typebuilder_setup_events): Ditto.
25482         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25483         'assembly_by_name' and add an 'assemblies' list.
25485         * assembly.h assembly.c: Add a new search hook for determining whenever
25486         an assembly is already loaded. Use this instead of searching in the
25487         loaded_assemblies list.
25489         * domain.c appdomain.c: Implement the new search hook so loaded 
25490         assemblies are now scoped by appdomain. Fixes #67727.
25492 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25494         * threads.c (mono_thread_attach): Initialize synch_lock field so
25495         mono_thread_detach works again.
25497         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25498         'lib' too. Fixes #63130.
25500 2004-10-06  Jackson Harper  <jackson@ximian.com>
25502         * culture-info-tables.h: regenerated.
25504 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25506         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25507         implemented by other interfaces in the result. Fixes #65764.
25508         
25509         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25510         Handle unloadable modules without crashing.
25512         * image.c (load_modules): Revert the previous patch since modules must
25513         have a fixed index inside the array.
25514         
25515         * image.c (load_modules): Don't include native modules in the modules
25516         array.
25518 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25520         * reflection.h: Add param_defaults field.
25522         * reflection.c: Add support for parameter defaults in dynamic methods.
25523         Fixes #64595.
25525         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25526         an empty string when a type has no namespace. Fixes #64230.
25528 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25530         * tabledefs.h: Added "internal" security actions to support non-CAS
25531         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25532         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25534 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25536         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25537         constructor of abstract class. Fixes #61689.
25539 2004-10-04  Martin Baulig  <martin@ximian.com>
25541         * class-internals.h (MonoGenericContainer): New type.
25542         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25543         `MonoGenericContainer *generic_container'.
25544         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25545         `MonoGenericContainer *generic_container'.
25547         * metadata.c (mono_metadata_load_generic_params): Return a
25548         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25549         removed the `num' argument.
25551 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25553         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25554         for dynamic images.
25556         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25557         machine fields.
25559         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25561         * reflection.c: Save pe_kind and machine values into the generated
25562         image file.
25564         * appdomain.c: Bump corlib version number.
25566         * object-internals.h: Reorganize layout of LocalBuilder.
25568         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25569         New helper function.
25571         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25572         created MonoType for dynamic types. Fixes #66180.
25574 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25576         * threadpool.c: the ares hashtable needs a critical section around it.
25577         this prevents some nasty segfaults
25579 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25581         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25582         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25583         bug 67324).
25584         
25585 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25587         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25588         
25589 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25591         * image.c: Always canonicalize image file names, to avoid loading
25592         the same assembly twice when referenced using a relative path.
25594 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25596         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25598         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25600         * marshal.c: Fix warnings.
25602 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25604         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25605         attempting to marshal the delegate_trampoline as the method_addr.
25606         This patch has a static hashtable of marshalled delegates so that 
25607         we can map delegate_trampoline addresses back to delegates.  This
25608         allows a delegate passed to managed code to be passed back into native
25609         code.  Fixes #67039
25611 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25613         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25615         * reflection.c (method_encode_code): Align method headers properly.
25616         Fixes #66025.
25618 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25620         * marshal.c: In the runtime invoke wrapper, reset the abort
25621         exception if it is cached. This avoids the automatic rethrowal of 
25622         the exception after the catch of the wrapper. Also check for pending
25623         interruptions before calling the managed method. This is done using
25624         the new method emit_thread_force_interrupt_checkpoint, since the
25625         normal checkpoint method is ignored when running the invoke wrapper.
25626         * object.c: If the abort exception is rethrown, set the abort_exc
25627         field of the thread, so it will be rethrown aftere every catch.
25628         * threadpool.c: Only run an interruption checkpoint if what has been
25629         requested is a stop of the thread (aborts will be ignored).
25630         * threads.c: By default, a thread will now never be interrumped while
25631         running the runtime invoke wrapper (this ensures that runtime_invoke
25632         will always return to the caller if an exception pointer is provided).
25633         There is a new special method mono_thread_force_interruption_checkpoint()
25634         to force an interruption checkpoint even if running a protected
25635         wrapper, which is used by the same runtime invoke wrapper to do a check
25636         at a safe point.
25638 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25640         * object.c, object-internals.h: Implemented mono_release_type_locks,
25641         which releases the cctor locks held by a thread.
25642         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25643         by a thread. Added mono_thread_exit() method to be used to safely stop
25644         a thread.
25646 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25648         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25649         Move null check before dereference.  Avoid indexing beyond the end
25650         of the 'modules' array.
25652 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25654         * metadata-internals.h (MonoImage): Add module_count field.
25655         * image.c (load_modules): Set image->module_count.
25656         (mono_image_load_file_for_image): Use image->module_count.
25657         * reflection.c (mono_image_load_module): Append to image->modules array 
25658         of dynamic assembly.
25659         (mono_module_get_object): Fix loop to actually increment index.
25660         Use image->module_count.
25661         * assembly.c (mono_assembly_load_references): Use image->module_count.
25662         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25663         Likewise.
25665 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25667         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25668         Avoid assert on generic types.
25670 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25672         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25674         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25676         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25677         function to convert a MarshalSpec structure to its managed counterpart.
25679         * reflection.c: Fix warnings.
25680         
25681         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25682         field.
25684         * icall.c (mono_create_icall_signature): Fix build.
25686 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25688         * icall.c: Add MakePointType icall.
25690         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25691         warnings.
25693 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25695         * threadpool.c: reuse allocated slots in the queue.
25697 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25699         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25701         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25703         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25704         previous change.
25706         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25707         ThrowOnUnmappableChar.
25709         * icall.c (ves_icall_Type_GetPacking): New icall.
25711 2004-09-24  Martin Baulig  <martin@ximian.com>
25713         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25715 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25717         * appdomain.c:
25718         (mono_domain_set): allow setting a domain that is being unloaded.
25719         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25720         being unloaded.
25722 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25724         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25725         the GetCustomAttributes icall.
25727 2004-09-23  Martin Baulig  <martin@ximian.com>
25729         * object-internals.h (MonoReflectionGenericParam): Replaced
25730         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25731         with `guint32 attrs'.
25733 2004-09-23  Martin Baulig  <martin@ximian.com>
25735         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25737 2004-09-23  Martin Baulig  <martin@ximian.com>
25739         * object-internals.h (GenericParameterAttributes): New enum.
25741 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25743         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25744         
25745         * class.c (init_events): Fill out event->other field.
25747         * class.c: Fix warnings.
25749         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25751 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25753         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25754         walk which doesn't supply the IL offset.
25756 2004-09-22  Martin Baulig  <martin@ximian.com>
25758         * reflection.c (mono_reflection_setup_internal_class): If we're
25759         System.ValueType, System.Object or System.Enum, set
25760         `klass->instance_size' and create the vtable.
25761         (mono_reflection_create_internal_class): If we're an enum type,
25762         get the base class from our current corlib.
25764 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25766         * reflection.h (MonoResolveTokenError): New type.
25768         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25769         icall.
25771         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25773 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25775         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25776         Support also calling constructors, but only for already allocated objects.
25778 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25780         * reflection.c (type_get_qualified_name): If the klass is null
25781         return the typename to avoid a NullRefEx.
25782         (encode_cattr_value): Get the qualified name of the boxed type,
25783         not the underlying enumtype.  Fixes #62984.
25785 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25787         * marshal.c: Fix problems with previous checkin.
25789 2004-09-21    <vargaz@freemail.hu>
25791         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25792         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25794         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25796 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25798         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25799         should only return a type for pointers, arrays, and passbyref types.
25800         Fixes bug #63841.
25802 2004-09-21  Martin Baulig  <martin@ximian.com>
25804         * domain.c (mono_debugger_check_runtime_version): New public
25805         function.
25807         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25809 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25811         * reflection.c: Added missing sort to the declarative security 
25812         attributes table. MS implementation stops seeing the attributes if the
25813         token number regress in the table (as shown by ildasm and permview).
25815 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25817         * object-internals.h (MonoReflectionModule): Add 'token' field.
25818         
25819         * reflection.c (mono_reflection_get_token): Add support for Module
25820         and Assembly.
25821         (mono_module_get_object): Set 'token' field.
25822         (mono_module_file_get_object): Set 'token' field.
25824         * icall.c: Add new Assembly and Module icalls.
25826         * appdomain.c: Bump corlib version.
25828 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25830         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25831         tokens of metadata objects.
25833         * reflection.h reflection.c (mono_reflection_get_token): New function
25834         to obtain the token of a metadata object.
25836         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25838 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25840         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25841         
25842         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25844 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25846         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25847         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25848         AssemblyBuilder to access the permissions set in the class lib.
25849         * reflection.c: Added security attributes encoding step in 
25850         mono_image_build_metadata.
25851         * tabledefs.h: Added new security actions defined in 2.0:
25852         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25854 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25856         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25857         macro parameter.
25859 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25861         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25862           finalized. There where random SIGSEVs at program termination, when
25863           an object being finalized was trying to do a string comparison and
25864           the current culture was already finalized.
25866 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25868         * threads.c: call thread_cleanup before finishing the thread if we get
25869         there.
25871 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25873         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25874         assemblies from the parent. Fixes #65665.
25876 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25878         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25879         modifiers.
25881 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25883         * reflection.h: add prototype for mono_get_dbnull_object
25884         * reflection.c: add prototypes for get_default_param_value_blobs 
25885         and mono_get_object_from_blob for fussier compilers
25887 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25889         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25890         false deadlock checks in class initialization.
25892 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25894         * image.c (mono_image_addref): Fix comment.
25896         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25897         possible.
25899 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25901         * reflection.c (mono_param_get_objects): Modified to return
25902         ParameterInfo.DefaultValue object.
25904         (get_default_param_value_blobs):
25905         (mono_get_object_from_blob):
25906         (mono_get_dbnull_object): New helper routines. 
25908         * object.c (mono_get_constant_value_from_blob): New helper routine
25909         carved out from get_default_field_value ()
25911         * object-internals.h (mono_get_constant_value_from_blob): Added
25912         function declaration.
25914 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25916         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25917         referenced assemblies. Fixes #62135.
25919         * exception.h exception.c (mono_get_exception_file_not_found2): New
25920         helper function.
25922 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25924         * class.h class.c: Add mono_type_get_underlying_type ().
25926 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25928         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25929         Fix GetTypes() to support dynamically created assemblies.
25931 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25933         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25934         
25935         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25936         previous patch.
25938         * reflection.h reflection.c loader.c: Allow dynamic construction of
25939         pinvoke methods. Fixes #65571.
25940         
25941         * reflection.c (mono_reflection_get_type): Revert previous change since
25942         it causes regressions.
25944 2004-09-08  Martin Baulig  <martin@ximian.com>
25946         * class.c (class_compute_field_layout): Don't call
25947         mono_class_layout_fields() for open generic instances.
25949 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25950         * threads.c appdomain.c: fix typo in GC macro
25952 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25954         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25955         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25957 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25959         * image.c (mono_image_close): Applied patch from 
25960         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25961         assembly is loaded multiple times from data.
25962         
25963         * image.c (mono_image_open): Fix warning.
25965 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25967         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25968         once. Fixes #58334.
25969         
25970         * reflection.c (mono_reflection_create_runtime_class): Initialize
25971         klass->nested_classes. Fixes #61224.
25973 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25975         * threads.c: sched_yield() on exit, to allow threads to quit.
25977 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25979         * object.c (mono_unhandled_exception): Remove leftover debug code.
25981 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25983         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25985 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25987         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25988         
25989         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25991 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25993         * marshal.c (emit_marshal_array): Null terminate string arrays.
25994         
25995         * marshal.c (raise_auto_layout_exception): Fix warning.
25997         * reflection.c (mono_param_get_objects): Initialize the default value
25998         with DBNull.Value, not null. Fixes #62123.
26000 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26002         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26003         throw an exception with a cute explanation.
26005 2004-09-06  Dick Porter  <dick@ximian.com>
26007         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26008         Close the new process's thread handle, as we don't use it.  The
26009         handle stays around forever otherwise.
26011 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26013         * object.c (arith_overflow): Fix warning.
26015         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26016         calling conventions in method refs. Fixes #65352.
26018         * reflection.c: Fix warnings.
26020 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26022         * icall.c: Add a new icall for Array.Clear
26024 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26026         * object.c: When allocating an array, we have to throw
26027         an overflow exception if any of the lengths are < 0.
26029 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26031         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26032         properly. Also move implementation of string array marshalling to 
26033         managed code. Fixes #42316.
26035 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26037         * assembly.c: provide more information when loading an assembly fails.
26039 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26041         * filewatcher.c: don't expect the development fam package to be
26042         installed.
26044 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26046         * marshal.c: Make a copy of the signature cookie since it will be
26047         freed by the caller.
26048         
26049         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26051         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26053         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26054         marshal specs.
26056         * marshal.c: More refactoring.
26057         
26058         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26059         smaller functions.
26061 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26063         * object.c: In mono_message_invoke, fill the output parameter array after
26064           calling the managed method (it was done before the call). This fixes
26065           bug #59299.
26067 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26069         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26070         as well.
26072 2004-09-02  Martin Baulig  <martin@ximian.com>
26074         * class.c (mono_class_instance_size): Don't allow generic type
26075         definitions or open generic instances.
26076         (mono_class_array_element_size): If we're a value type, call
26077         mono_class_instance_size() on the original class.
26079         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26080         handle generic instances.
26082         * mono-debug-debugger.c (write_type): Handle generic instances
26083         like classes.
26085 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26087         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26088         the allocation request fails. Fixes #65089.
26090         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26091         
26092         * object.c (mono_runtime_free_method): New function to free a dynamic
26093         method.
26095         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26096         delegate trampoline.
26098         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26099         with hasthis as dynamic,
26101         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26103         * domain.c (mono_jit_info_table_remove): New function to remove an
26104         entry from the jit info table.
26106         * class-internals.h (MonoMethod): Add 'dynamic' field.
26108         * loader.c: Fix warnings.
26110 2004-09-01  Martin Baulig  <martin@ximian.com>
26112         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26113         instead of mono_debugger_lock() because the latter one is a no-op
26114         unless running in the debugger.
26116 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26118         * class.c (class_compute_field_layout): Classes with auto-layout or
26119         reference fields are not blittable.
26120         
26121 2004-09-01  Dick Porter  <dick@ximian.com>
26123         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26124         mono_image_get_filename() to get the assembly location.
26126         * icall.c:
26127         * metadata.h: Fix compile warnings
26129 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26131         * class.c (class_compute_field_layout): System.Object is blittable.
26133         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26134         as in/out. Fixes #59909.
26136 2004-09-01  Martin Baulig  <martin@ximian.com>
26138         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26139         mono_metadata_generic_inst_is_valuetype() if we're a generic
26140         instance to check whether our underlying type is a reference type.
26142 2004-09-01  Martin Baulig  <martin@ximian.com>
26144         * metadata.c (mono_type_size): If we're a generic instance, call
26145         mono_class_value_size() for value types.
26147 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26149         * marshal.c: Implement more custom marshalling functionality. Fixes
26150         #64915.
26152 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26154         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26156 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26158         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26160         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26162         * icall.c: Fix some warnings.
26164         * threads.c (abort_appdomain_thread): Fix unref errors.
26165         (mono_thread_current): Fix THREAD_DEBUG define.
26167 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26169         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26171         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26173 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26175         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26176         string arrays.
26178 2004-08-28  Martin Baulig  <martin@ximian.com>
26180         * metadata.c
26181         (mono_metadata_generic_inst_is_valuetype): New public function.
26183         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26184         mono_metadata_generic_inst_is_valuetype() if we're a generic
26185         instance to check whether our underlying type is a valuetype.
26187 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26189         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26190         #63768.
26192 2004-08-25  Martin Baulig  <martin@ximian.com>
26194         * loader.c (mono_get_method_from_token): Abstract methods can also
26195         be generic and thus have type parameters.
26197         * metadata-internals.h
26198         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26200         * reflection.c (mono_image_get_generic_param_info): Don't create a
26201         metadata row, just add an entry to the `gen_params' array.
26202         (build_compressed_metadata): Sort the `gen_params' array and then
26203         actually create the metadata.
26205 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26207         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26209 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26211         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26213 2004-08-24  Martin Baulig  <martin@ximian.com>
26215         * class.cs (mono_class_is_subclass_of): Like an interface, a
26216         generic instance also derives from System.Object.
26218 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26220         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26221         custom modifiers to be in any order. Fixes #61990.
26223 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26225         * object.c: Register mono_object_new_fast icall.
26226         
26227         * object.c (mono_class_get_allocation_ftn): Return to calling
26228         mono_object_new_fast, since it seems faster to compute the object 
26229         size in unmanaged code than passing it as a parameter.
26231         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26233         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26234         this function with Boehm as the oom handler, so we don't have to check
26235         the result of GC_malloc.
26237         * object.c: Remove checks for oom.
26239         * object.h object.c (mono_class_get_allocation_ftn): New function to
26240         return the icall which can be used to allocate an instance of a given
26241         class. 
26243         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26245         * class-internals.h: Add 'enabled' field.
26247 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26249         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26251 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26252         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26253         value 0x0010.
26255 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26257         * appdomain.c: use the Tls function for appdomain too,
26258         at Zoltan's request. Actually return in mono_context_get
26260         * appdomain.c, profiler.c, threads.c: use __thread
26262 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26264         * appdomain.c threads.c: Call GC_CreateThread on windows.
26266         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26267         multiple libraries since this don't work on windows.
26269 2004-08-18  Martin Baulig  <martin@ximian.com>
26271         * class-internals.h
26272         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26273         MonoMethodHeader.
26275         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26276         MonoMethodNormal since we also need it for abstract and interface
26277         methods.
26279         * reflection.c
26280         (build_compressed_metadata): Sort the GenericParam table.
26281         (mono_image_create_token): Added `gboolean create_methodspec'
26282         argument; this is false when generating a MethodImpl token.
26283         (reflection_methodbuilder_to_mono_method): Abstract and interface
26284         methods may also have generic parameters.
26286 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26288         * appdomain.c: thread local alloc
26290 2004-08-17  Martin Baulig  <martin@ximian.com>
26292         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26294         * icall.c
26295         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26296         argument.
26298         * class.c (mono_type_get_full_name): New public function.
26299         (mono_type_get_name): Don't include the type arguments.
26301 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26303         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26304         for inclusion into the mono executable.
26306 2004-08-16  Martin Baulig  <martin@ximian.com>
26308         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26309         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26311 2004-08-14  Martin Baulig  <martin@ximian.com>
26313         * class.c (dup_type): Also copy the `byref' field.
26315 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26317         * reflection.c (create_dynamic_mono_image): Revert the last change 
26318         since it breaks bootstrap.
26320 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26322         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26324         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26325         not free them with g_free.
26327 2004-08-11  Martin Baulig  <martin@ximian.com>
26329         * reflection.c (mono_reflection_setup_internal_class): Also call
26330         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26332 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26334         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26335         called during default (first) AppDomain creation. Keep track of
26336         Evidence when loading assemblies.
26338 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26340         * opcodes.c, opcodes.h: reduce runtime relocations.
26342 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26344         * culture-info.h, locales.c: fixes and chages to sue the new
26345         optimized format of the locale data.
26346         * culture-info-tables.h: regenerated.
26348 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26349         
26350         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26352 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26354         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26355         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26356         * domain-internals.h: icall declaration.
26357         * icall.c: icall registration.
26358         * object-internals.h: New fields in MonoAssembly for CAS.
26360 2004-08-05  Duncan Mak  <duncan@ximian.com>
26362         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26363         CEE_LDELEM_ANY.
26365 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26367         * reflection.c: fix to deal with object[] arrays in custom ctors
26368         (bug #62550).
26370 2004-08-05  Martin Baulig  <martin@ximian.com>
26372         * class.c (mono_class_array_element_size): Added support for
26373         generic instances and correctly handle "recursive" types.
26375 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26377         * assembly.c: Fix warnings.
26379 2004-08-04  Martin Baulig  <martin@ximian.com>
26381         * class.c
26382         (mono_type_get_name_recurse): Added `gboolean include_arity'
26383         argument specifying whether or not we should include the generic
26384         arity in the type name.
26385         (_mono_type_get_name): New static function.
26386         (mono_class_setup_vtable): If we're a generic instance, don't
26387         include the generic arity in the names of explicit method
26388         implementations.        
26390 2004-08-03  Martin Baulig  <martin@ximian.com>
26392         * class.c (mono_type_get_name_recurse): Enclose the generic type
26393         arguments in `<', '>'.
26395 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26397         * gc.c: make GC warning messages use the trace API, they are just
26398         noise to most of the users.
26400 2004-08-03  Martin Baulig  <martin@ximian.com>
26402         * debug-mono-symfile.c (read_string): Correctly read the string.
26404 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26406         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26407         
26408         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26409         icalls.
26410         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26412 2004-07-30  Martin Baulig  <martin@ximian.com>
26414         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26415         Reflect latest symbol writer changes.   
26417 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26419         * object.c: always create an object if null is passed
26420         to Invoke() where a valuetype is expected.
26422 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26424         * marshal.c (mono_marshal_init): make managed
26425         signatures match native ones better for 64bits.
26427 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26429         * appdomain.c: hack to build correctly the private bin path on windows.
26430         Fixes bug #61991.
26432 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26434         * assembly.c: Load mscorlib from the correct framework directory
26435           (mono/<version>/mscorlib.dll).
26436         * appdomain.h: Added prototypes for new functions.
26437         * internals.h: Added some prototypes.
26438         * domain.c: When initializing the runtime, get from the executable and
26439           the configuration files the runtime version that the app supports.
26440           Added support methods for reading app.exe.config. Added list of versions
26441           supported by the JIT. Added two new methods: mono_init_from_assembly,
26442           which initializes the runtime and determines the required version from
26443           the provided exe file, and mono_init_version, which initializes
26444           the runtime using the provided version.
26445         * icall.c: Get machine.config from version-specific directory.
26446         * reflection.c: When generating an image, embed the version number
26447           of the current runtime.
26449 2004-07-28  Dick Porter  <dick@ximian.com>
26451         * socket-io.c
26452         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26453         returned sockaddr size before creating the remote address object.
26454         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26455         61608.
26457 2004-07-28  Dick Porter  <dick@ximian.com>
26459         * locales.c (string_invariant_compare_char): Fix invariant char
26460         compares between upper and lower cases.  Fixes bug 61458.
26462 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26463         
26464         * marshal.c: actually cache stelem.ref wrappers.
26465         
26466 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26468         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26469         sections and remove the mono_cli_rva_map () function.
26471 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26473         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26474         by Geoff Norton (<gnorton@customerdna.com>).
26476 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26478         * class.c: fix class loads for pointer types (typeof(int) !=
26479         typeof(int*)).
26481 2004-07-27  Martin Baulig  <martin@ximian.com>
26483         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26484         reading the debugging information from an external ".mdb" file.
26486 2004-07-24  Martin Baulig  <martin@ximian.com>
26488         * reflection.c (mono_image_get_type_info): Only write a class
26489         layout entry if we actually have a size or a packing size.
26491 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26493         * reflection.c (type_get_fully_qualified_name): 
26494         insert cast to get type checking of ?: with non-gcc compilers
26496 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26498         * rand.c: use g_getenv for both lookups of
26499         MONO_EGD_SOCKET
26501 2004-07-17  Martin Baulig  <martin@ximian.com>
26503         * reflection.c (mono_reflection_bind_generic_method_parameters):
26504         Set `gmethod->reflection_info'.
26506 2004-07-17  Martin Baulig  <martin@ximian.com>
26508         * class.c (mono_class_create_from_typedef): Insert the newly
26509         created class into the hash table before computing the interfaces
26510         since we could be called recursively.
26512 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26514         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26515         function to implement stelem.ref in managed code
26516         * class-internals.h, debug-helpers.c: a new wrapper type
26517         for the above.
26519 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26521         * gc.c: allow GC handles to work even when no GC is compiled in.
26522         Fix part of bug #61134 (GetAddrOfPinnedObject).
26524 2004-07-13  Peter Williams  <peter@newton.cx>
26526         * process.c (complete_path): Make sure we don't attempt to execute
26527         directories.
26529 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26531         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26532           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26533           and will add/subtract the hour if needed
26535 2004-07-12  Martin Baulig  <martin@ximian.com>
26537         * reflection.c (mono_field_get_object): If we have
26538         `field->generic_info', take the attributes from
26539         `field->generic_info->generic_type'.    
26541 2004-07-12  Martin Baulig  <martin@ximian.com>
26543         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26544         This function must be called before initializing the runtime.
26545         (mono_debug_init_1): New function; call this after initializing
26546         the runtime, but before loading the assembly.  It tells the
26547         debugger to load corlib and the builtin types.
26549         * mono-debug-debugger.c: Did some larger changes in the debugging
26550         code; support recursive class declarations, make sure we actually
26551         add all classes.
26553 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26555         * debug-helpers.c: undo my previous patch and fixed the real issue in
26556         ../mini/exceptions-x86.c
26558 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26560         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26561         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26562         called from other .cctors.
26564 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26566         * loader.c: Removed the mono_loader_wine_init hack now that we are
26567         doing a managed version of Windows.Forms.
26569 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26571         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26572         threadpool.c, threads.c: remove static data from rootset.
26574 2004-07-09  Dick Porter  <dick@ximian.com>
26576         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26577         Don't do any more processing if the matched length was 0.  It was
26578         increasing the size of the string before.  Fixes bug 61167.
26580 2004-07-09  Dick Porter  <dick@ximian.com>
26582         * socket-io.h:
26583         * socket-io.c
26584         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26585         Add support for SO_PEERCRED if its available.
26587 2004-07-09  Peter Bartok <pbartok@novell.com>
26588         * loader.c: winelib.exe.so error message is now only displayed if
26589         MONO_DEBUG is set. To help us avoid questions when people are trying
26590         out the new Managed.Windows.Forms.
26592 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26594         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26595         for isinst and castclass wrappers.
26597         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26598         to libmetadata from the JIT, so they could be used by the marshalling
26599         code and the interpreter.
26601         * marshal.c: Register marshalling related JIT icalls here instead of
26602         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26603         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26605         * metadata.h: Remove unneeded marshalling conversions.
26607         * opcodes.c: Update for new opcodes.
26608         
26609 2004-07-08  Martin Baulig  <martin@ximian.com>
26611         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26612         (mono_debug_get_domain_data): Make this function static.
26614 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26616         * gc.c, object.h: add nice GC handle API for embedders.
26618 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26620         * reflection.c: more changes for the new api
26622         * object.c: When we reflect on a field w/ a constant value, it
26623         will not have a memory location, so we must access metadata. Also,
26624         allow easier reading of strings so that we can read them from
26625         the constant data.
26627         * class.c (mono_class_layout_fields): no need for literal fields here.
26629         * class-internals.h: api changes for const fields
26631         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26633 2004-07-06  Martin Baulig  <martin@ximian.com>
26635         * mono-debug.h: Increment version number to 44.
26637         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26638         now a gpointer, rewrote this whole method.
26640         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26641         function.  Add information about the wrapper in a new "misc table".
26643         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26644         for the new misc table.
26646 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26648         * metadata-internals.h image.c: Add a cache for helper signatures.
26650         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26652 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26654         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26655         delegates from a delegate. Fixes #61033.
26656         
26657         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26658         marshalling of stringbuilder arrays. Fixes #59900.
26660 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26662         * icall.c: Add EnumBuilder:setup_enum_type icall.
26664 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26666         * icall.c: Added a new icall for the property version of
26667         OffsetOfStringData.
26669 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26671         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26672         it has a constant size across platforms.
26674         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26675         stack trace.
26677 2004-06-29  Martin Baulig  <martin@ximian.com>
26679         * mono-debug.c (mono_debug_add_method): Protect the whole function
26680         in mono_debugger_lock(), not just parts of it.
26682 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26684         * reflection.c: make sure padding bytes in heaps are zeroed.
26686 2004-06-24  David Waite  <mass@akuma.org>
26688         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26689         image.c, loader.c, locales.c, marshal.c, metadata.c,
26690         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26691         string-icalls.c, threads.c: change to C90-style comments from C99 /
26692         C++ -style
26694 2004-06-24  Dick Porter  <dick@ximian.com>
26696         * threads.c
26697         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26698         return createdNew.  Fixes bug 60412.
26700         * threads-types.h: 
26701         * icall.c: Add createdNew parameter to CreateMutex icall
26703 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26705         * reflection.c, object-internals.h: save default value in params.
26707 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26709         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26710         no need to build a new path combining that with the application base.
26711         Fixes bug #60442.
26713 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26715         * reflection.c: fixed minor standard compliance issues.
26717 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26719         * reflection.c: fixed issue with encoding some custom attributes
26720         (arrays in properties and fields, bug #60411).
26722 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26724         * reflection.c: fix start address when copying the public key token.
26726 2004-06-23  Martin Baulig  <martin@ximian.com>
26728         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26729         the `exc' object in a static object to put it into the GC's root set.
26731 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26733         * reflection.c: make mono_reflection_setup_internal_class ()
26734         callable a second time to setup a new parent class.
26736 2004-06-23  Dick Porter  <dick@ximian.com>
26738         * threads.c: Check for WAIT_IO_COMPLETION return values.
26740 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26742         * appdomain.c: Removed the g_free on the public key token. Now copy 
26743         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26744         * assembly.c: Added public key token string value when loading 
26745         assemblies. Fix bug #60439.
26746         * icall.c: Added missing informations (like public key) in 
26747         GetReferencedAssemblies. Fix #60519.
26748         * image.h: Changed definition for public key token from const char*
26749         public_tok_value to guchar public_key_token [17];
26750         * reflection.c: Updated for changes to public key token.
26752 2004-06-22  Lluis Sanchez Gual
26754         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26755         for the field in base classes.
26757 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26759         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26760         mark headers as not supported, they are installed only for use by the
26761         debugger.
26763 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26765         * *.c, *.h: avoid namespace pollution in public headers.
26767 2004-06-21  Martin Baulig  <martin@ximian.com>
26769         * exception.c (mono_get_exception_security): It's in
26770         "System.Security", not in "System".
26772         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26773         the exception classes.
26775 2004-06-21  Martin Baulig  <martin@ximian.com>
26777         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26778         Protect the exception object from being finalized.
26780 2004-06-21  Martin Baulig  <martin@ximian.com>
26782         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26783         public function.
26785 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26787         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26788         if it was not loaded before. Fix parts of #60439.
26790 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26792         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26793         code that was broken since Ben's change: wrappers are now
26794         dependent on the method signature only again.
26796 2004-06-21  Martin Baulig  <martin@ximian.com>
26798         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26799         added interface support.
26801 2004-06-21  Martin Baulig  <martin@ximian.com>
26803         * class.c (mono_vtable_get_static_field_data): New public method.
26805 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26807         * filewatcher.c : Windows build fix to be compliant with API changes.
26809 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26811         * class.h, class.c: more accessors.
26812         * metadata.h, metadata.c: prepare for hiding MonoType and
26813         MonoMethodSignature: people should use the accessors from now on
26814         outside of the tree.
26816 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26818         * *.c, *.h: more API cleanups.
26820 2004-06-18  Jackson Harper  <jackson@ximian.com>
26822         * assembly.c: Trace loading assemblies.
26823         * loader.c: Trace loading native libraries.
26824         * mono-config.c: Trace loading config files.
26825         
26826 2004-06-18  Dick Porter  <dick@ximian.com>
26828         * locales.c: Tell ICU the lengths of strings, it can cope with
26829         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26831 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26833         * image.c: swapped name/filename;
26835 2004-06-18  Martin Baulig  <martin@ximian.com>
26837         * mono-debug-debugger.c (write_class): Write the parent class at
26838         the end of the header.
26840 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26842         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26844 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26846         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26847         (bundle_obj): New conditional define.
26848         (BUILT_SOURCES): Remove.
26849         ($(bundle_srcs)): Make parallel-make safe.
26850         (libmonoruntime_la_LIBADD): Make unconditional.
26851         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26852         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26854 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26856         * culture-info-tables.h: It was inconsistent with the latest
26857           supp info files.
26859 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26861         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26862         be loaded.
26864         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26865         with gcc 2.95.
26867 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26869         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26870         cleaned up public header threads.h.
26872 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26874         * Makefile.am, *.c, *.h: more API cleanups.
26876 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26878         * Makefile.am: removed monosn from compilation.
26879         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26880         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26881         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26882         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26883         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26884         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26886 2004-06-15  Jackson Harper  <jackson@ximian.com>
26888         * assembly.c: Make locales lower case when searching the GAC for
26889         assemblies. gacutil will always make locales lowercase when
26890         installing so this effectively makes them case insensitive.
26891         
26892 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26894         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26895         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26896           parameter which allows to choose whether the wait can be interrupted or 
26897           not. Also added the method mono_monitor_enter(), which locks the monitor
26898           using an infinite wait and without allowing interruption.
26899           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26900           interrupted.
26901         * object.h: Added new fields in MonoThread. suspend_event holds the event
26902           used to susped/resume the thread. synch_lock is the lock object to use for
26903           modifying the thread state.
26904         * threads.c: Use the new synch_lock object for locking, instead of "this",
26905           which can generate deadlocks.
26906           Moved thread state change in Thread.Sleep and Thread.Join from managed
26907           to unmanaged code. This avoids a deadlock when the thread was suspended
26908           just after acquiring the thread lock.
26909           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26910           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26911           which is not fully implemented in the io-layer.
26912         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26914 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26916         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26917         threads-types.h: more API cleanups.
26919 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26921         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26922         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26923         threadpool.c, threads.c: first pass at the exported API cleanup.
26925 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26927         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26929 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26931         * icall.c: added internalGetHome.
26933 2004-06-14  Dick Porter  <dick@ximian.com>
26935         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26936         possible to return successfully when '.' or '..' were the only
26937         entries in a directory, but were skipped.  The MonoIOStat was not
26938         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26939         Fixes bug 59574.
26941 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26943         * reflection.c: make binaries run on .Net 1.1 by default.
26945 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26947         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26949 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26951         * marshal.c: keep track of struct size with explicit layout
26952         (bug #59979).
26954 2004-06-12  Martin Baulig  <martin@ximian.com>
26956         * mono-debug-debugger.c: Comment out a debugging g_message().
26958 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26960         * reflection.c, reflection.h: do not free custom attrs that are cached.
26961         * icall.c: use braces to make code clearer.
26963 2004-06-11  Martin Baulig  <martin@ximian.com>
26965         * class.h (MonoInflatedField): New type.
26966         (MonoClassField): Replaced `MonoType *generic_type' with
26967         `MonoInflatedField *generic_info'.
26969         * icall.c
26970         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26972 2004-06-11  Martin Baulig  <martin@ximian.com>
26974         * reflection.c (mono_image_create_method_token): Correctly encode
26975         varargs methods.
26977 2004-06-11  Martin Baulig  <martin@ximian.com>
26979         * metadata.c (mono_metadata_parse_method_signature): When parsing
26980         a MethodDef which has VarArgs, also set sentinelpos if we don't
26981         have any parameters.
26983 2004-06-11  Martin Baulig  <martin@ximian.com>
26985         * verify.c (mono_method_verify): In CEE_CALL, use
26986         mono_method_get_signature() to get the method's signature, unless
26987         we're a PInvoke method.
26989 2004-06-10  Jackson Harper  <jackson@ximian.com>
26991         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26992         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26993         logical name as the supplied path is just a prefix to the gac not
26994         the direct path to it.
26995         
26996 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26998         * reflection.c: make the token for a created method match
26999         the token of the MethodBuilder it was created from
27000         (IKVM requires this behaviour now).
27002 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27004         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27005         reflection.c, socket-io.c: leak fixes.
27007 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27009         * icall.c: handle sentinel pos in vararg methods in position different
27010         from 0.
27012 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27014         * culture-info-tables.h: freshly generated.
27016 2004-06-09  Martin Baulig  <martin@ximian.com>
27018         * loader.c (mono_get_method_constrained): Call `mono_class_init
27019         (constrained_class)'.   
27021 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27023         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27024         any methods. Fixes #59629.
27026 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27028         * culture-info-tables.h: reflecting locale-builder updates.
27030 2004-06-08  Dick Porter  <dick@ximian.com>
27032         * object.h:
27033         * locales.c: Fixed compile warnings, including a real bug in
27034         CompareInfo_internal_compare.
27035         
27036 2004-06-08  Dick Porter  <dick@ximian.com>
27038         * locales.c
27039         (ves_icall_System_Globalization_CompareInfo_internal_index):
27040         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27041         Double-check the resuls of usearches, because ICU currently
27042         ignores most of the collator settings here.  Fixes bug 59720.
27043         
27044 2004-06-08  Dick Porter  <dick@ximian.com>
27046         * locales.c
27047         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27048         Fix memory leak and segfault-causing typo.  No idea how this one
27049         lasted so long without being noticed.
27051 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27053         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27054         any methods. Fixes #59629.
27056 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27058         * assembly.c:
27059         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27060         own the critical section before). Removed dead code (that's done
27061         in the preload hook).
27063         (mono_assembly_load_with_partial_name): call the preload hook.
27065 2004-06-08  Martin Baulig  <martin@ximian.com>
27067         * metadata.c (mono_metadata_signature_alloc): Default
27068         `sentinelpos' to -1.
27070         * reflection.c (mono_image_get_array_token): Likewise.
27072 2004-06-08  Martin Baulig  <martin@ximian.com>
27074         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27076         * metadata.c (mono_metadata_parse_method_signature): When parsing
27077         a MethodDef which has VarArgs, set sentinelpos.
27079         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27080         `gint16' since we're using -1 for non-varargs methods.
27082         * reflection.c
27083         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27084         (method_encode_signature): Added varargs support.
27085         (method_builder_encode_signature): Likewise.
27086         (mono_image_get_varargs_method_token): New static method.
27087         (mono_image_create_method_token): New public method; this is
27088         called via an icall instead of mono_image_create_token() when
27089         calling a varargs method.       
27091 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27093         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27095 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27097         * culture-info-tables.h : Reflecting the latest locale-builder that
27098           fixed empty array representation ({} to {0}).
27100 2004-06-07  Jackson Harper  <jackson@ximian.com>
27102         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27103         looking up extra gac paths. This allows MONO_GAC_PATH to act
27104         exactly like a prefix.
27105         
27106 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27108         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27109         type name before modifying it. Fixes #59405.
27111 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27113         * culture-info.h: added fields for "all datetime patterns".
27114         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27115           _construct_datetime_format ()): fill xxx_patterns fields.
27116         * object.h: added fields for "all datetime patterns" to
27117           MonoDateTimeFormatInfo.
27118         * culture-info-tables.h: reflecting locale-builder updates.
27120 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27122         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27123         the event has no add and remove methods. Fixes #59629.
27125 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27127         * object.c: Fixed possible integer overflow when allocating large
27128         strings.
27130 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27132         * culture-info-tables.h: reflecting locale-builder updates.
27134 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27136         * culture-info-tables.h: reflecting locale-builder updates.
27138 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27140         * culture-info-tables.h: reflecting locale-builder updates.
27142 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27144         * threads.c: Made Thread.Sleep abortable.
27146 2004-06-02  Martin Baulig  <martin@ximian.com>
27148         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27150         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27152 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27154         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27156 2004-05-30  Jackson Harper  <jackson@ximian.com>
27158         * reflection.c: Do not hardcode assembly versions or public key
27159         tokens anymore. All of this except the corlib section was dead
27160         code anyways.
27161         
27162 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27164         * object.c (mono_runtime_invoke_array): Automatically create boxed
27165         objects for byref valuetypes if needed. Fixes #59300.
27166         
27167         * object.c (mono_method_return_message_restore): Handle 
27168         MONO_TYPE_OBJECT as well.
27170 2004-05-28  Jackson Harper  <jackson@ximian.com>
27172         * reflection.c: The modified type encoding was causing build
27173         problems. Reverted for now.
27174         
27175 2004-05-28  Jackson Harper  <jackson@ximian.com>
27177         * reflection.c/h: Take an assembly ref so that we dont create
27178         fully qualified names when encoding types in the same assembly as
27179         the custom attribute being emitted.
27180         * appdomain.c: Increment version number.
27181         
27182 2004-05-26  Duncan Mak  <duncan@ximian.com>
27184         * icall.c
27185         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27186         Set the full version number (major, minor, build, revision).
27188 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27190         * marshal.c (emit_struct_conv): increment src/dst after blit
27191         (mono_marshal_get_managed_wrapper,
27192         mono_marshal_get_native_wrapper): make sure we have marshalling
27193         info before marshalling params (info computation affects
27194         blittable)
27196         * class.c (class_compute_field_layout): correctly deal with
27197         blittable
27198         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27199         value types (as per what windows dows by default)
27200         (mono_class_setup_mono_type): System.ValueType is blittable
27201         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27202         blittable
27204         * marshal.c (mono_marshal_load_type_info): flag types  as
27205         non-blittable if the native layout doesn't match the managed
27206         layout
27208 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27210         * appdomain.c: don't add stuff in the private search path that is
27211         above the application base. If application base is not set, there's
27212         no private search path.
27214 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27216         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27217         byref struct arguments in native->managed marshalling.
27219 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27221         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27222         cache methods using signature (special case for methods
27223         that are value type or string class)
27224         
27225         * image.c (mono_image_close): clean up allocated GSList's
27226         in runtime_invoke_cache.
27228 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27230         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27231         there's no MONO_CFG_DIR environment variable defined.
27233 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27235         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27237 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27239         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27240           is interrumped.
27241         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27242           before waiting for it, and call CloseHandle after the wait to unref it.
27243           This will make sure that handles are not disposed too early.
27245 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27247         * appdomain.c:
27248         * appdomain.h:
27249         * icall.c: removed
27250         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27251         needed now.
27253         * object.c: se the application_base only for the domain that runs
27254         Main. Fixes bug #59216,
27256 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27258         * appdomain.c:
27259         * object.c: only the domain in which Main is run have
27260         SetupInformation.ConfigurationFile set, so moved a few lines from
27261         appdomain.c to object.c.
27263 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27265         * appdomain.c: we tried to load [name].(dll|exe), but according
27266         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27267         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27268         There's a test case attached to bug #58922.
27270 2004-05-27  Dick Porter  <dick@ximian.com>
27272         * icall.c:
27273         * file-io.c: Implemented icalls for locking and unlocking regions
27274         in a file.
27275         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27276         FALSE on error (fixes both compiler warning and real bug.)
27278 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27280         * culture-info-tables.h: reflecting locale-builder updates.
27282           (Added missing ChangeLog entry for 05/26)
27284 2004-05-27  Jackson Harper  <jackson@ximian.com>
27286         * locales.c: Fix some cut and paste errors.
27287         
27288 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27290         * mono-config.c: set the correct path for config. directory on windows.
27292 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27294         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27295           on win32.
27297 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27299         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27300         from pinvoke functions.
27301         
27302         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27304 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27306         * culture-info-tables.h: reflecting locale-builder updates.
27308 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27310         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27311         #59086.
27313 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27315         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27316         * icall.c: Modified icalls for RNG.
27317         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27318         Windows (CryptoAPI).
27320 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27322         * locales.c: Fix build.
27324 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27326         * culture-info-tables.h: reflecting locale-builder updates.
27328 2004-05-25  Jackson Harper  <jackson@ximian.com>
27330         * locales.c: When creating the current culture use the $LANGs
27331         specific culture. So DateTimeFormat and NumberFormat entries are created.
27332         
27333 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27335         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27336         a char array as parameter.
27338 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27340         * image.c: In mono_image_open(), always use an absolute path name to
27341           look for already loaded images.
27343 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27345         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27346         missing in the windows build (like older cygwin include files).
27348 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27350         * icall.c: Fixed check for possible integer overflow in Buffer_
27351         BlockCopy icall. Replaced comments style // by /* */.
27353 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27355         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27356         
27357         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27358         check after MONO_VTADDR. Fixes pinvoke2.exe.
27360         * marshal.h marshal.c metadata.h: Add beginnings of support for
27361         ftnptr -> delegate marshalling.
27363 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27365         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27366         * threads.c: Fix warnings.
27368 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27370         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27371         * icall.c: Registered icalls for Suspend and Resume.
27372         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27373           Thread.Abort.
27374         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27375         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27376         * process.c: Use WaitForSingleObjectEx.
27377         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27378           checkpoints.
27379         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27380           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27381           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27382           background threads. Added basic support for Abort in Windows.
27383           Start new threads using a managed delegate invoke wrapper. This wrapper
27384           has an interruption checkpoint that is needed since an interruption
27385           can be requested before the thread leaves the unmanaged code that starts 
27386           the thread.
27387         * marshal.c: Added interruption checkpoint after every native call, and
27388           also before managed calls for wrappers called from unmanaged code to
27389           go into managed code.
27390         * object.h: Added new field in MonoThread to keep track of interruption
27391           requests.
27393 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27395         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27396         calls.
27398 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27400         * appdomain.c:
27401         * assembly.c:
27402         * gc.c:
27403         * locales.c:
27404         * mono-config.c:
27405         * rand.c: getenv -> g_getenv (windows!)
27407         * process.c: complete_path is also used on non-windows platforms.
27409 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27411         * icall.c: new signature for Process_Start.
27413         * process.[ch]: new signature for Process_Start. If we're on windows
27414         and UseShellExecute is false, we have to search for the program by
27415         ourselves if we don't get a full path.
27417 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27419         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27420         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27422 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27424         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27425         Fixes bug #58373.
27427 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27429         * process.c: use double quotes to quote program name and arguments on
27430         windows. Fixes bug #58575.
27432 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27434         * file-io.c: don't return "." and ".." when using windows Find*File.
27436 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27438         * marshal.c: Don't pass wrappers to message init because method 
27439         addressed used to lookup metadata. part of remoting[2|3] fix.
27441 2004-05-15  Jackson Harper  <jackson@ximian.com>
27443         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27444         path is essentially the same as MONO_PATH except that it points to
27445         GACs instead of lib directories.
27446         * loader.h: The user gac is gone so we dont need function to
27447         enable/disable it.
27448         * mono-config.c: user gac option is now gone.
27449         
27450 2004-05-15  Jackson Harper  <jackson@ximian.com>
27452         * culture-info.h: Make defines more consistent, add calendar data
27453         to the culture info table.
27454         * culture-info-tables.h: Add basic calendar data. Basically
27455         everyone gets default gregorian until all the data is
27456         updated.
27457         * locales.c: Use the new consistent defines. Set calendar data for
27458         culture info objects.
27459         * object.h: add a field for calendar data to CultureInfo
27460         
27461 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27463         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27464         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27465         a signature.
27466         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27467         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27468         an extra param that is the pointer of the method to invoke. The IL for
27469         the invoke method is no longer specific to the method, but to the
27470         signature of the method. Thus, we can share the same code for multiple
27471         methods. This reduces the number of methods that have to be compiled.
27473 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27475         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27477         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27479         * icall.c: Optimize Buffer.BlockCopy.
27481 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27483         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27484         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27485         quote). Changed them to "MMMM yyyy".
27487 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27489         * rand.c
27490         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27492 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27494         * reflection.h: Updated after changes to managed structures.
27496         * appdomain.c: Bump corlib version.
27498 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27500         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27501         windows.
27503 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27505         * Makefile.am: link to ../os/libmonoos.la on windows.
27507         * assembly.c:
27508                 -If MONO_DEBUG, warn about non-existing directories in
27509                 MONO_PATH.
27510                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27511                 compile time variable.
27512                 -Removed init_default_path and call mono_set_rootdir from
27513                 libmonoos.a instead (windows only).
27515         * assembly.h: declare mono_assembly_getrootdir().
27517         * domain.c:
27518         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27520         * loader.c: s/getenv/g_getenv/
27522 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27524         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27526         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27528         * metadata.h: Add new marshalling conversions.
27530         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27531         function.
27533         * reflection.c (mono_reflection_get_type): Lookup the type in all
27534         modules of a multi-module assembly. Fixes #58291.
27536 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27538         * threads.c: Before aborting a background, set the StopRequested
27539         state.  This avoids throwing the Abort exception.
27540         In mono_thread_manage, don't continue with the shutdown until all
27541         aborted threads have actually stopped.
27543 2004-05-10  Jackson Harper  <jackson@ximian.com>
27545         * locales.c: Remove the modifier from culture names.
27546         
27547 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27549         * Makefile.am: monosn is not installed any more. It has been deprecated
27550         in favor of sn.
27552 2004-05-07  Jackson Harper  <jackson@ximian.com>
27554         * locales.c
27555         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27556         Fix array construction, add bailout if the length is 0.
27558 2004-05-07  Dick Porter  <dick@ximian.com>
27560         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27561         machine doesn't have a DNS entry.  Patch by Urs Muff
27562         (umuff@quark.com), fixes bug 57928.
27564 2004-05-06  Jackson Harper  <jackson@ximian.com>
27566         * reflection.c: Handle null PublicTokens properly. alloc mem for
27567         assembly names culture so we dont crash when freeing it.
27568         
27569 2004-05-06  Jackson Harper  <jackson@ximian.com>
27571         * assembly.c: Check the usergac when loading with partial names.
27572         
27573 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27575         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27576         does nothing for now (not required for Linux/Windows) but the class
27577         library can call it (and a newer or modified runtime could need it).
27578         * icall.c: Registred icall.
27580 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27582         * loader.c: prints a message on module loading error we set MONO_DEBUG
27583         environment variable.
27585 2004-05-05  Jackson Harper  <jackson@ximian.com>
27587         * appdomain.c: Handle PublicKeyToken=null properly.
27588         
27589 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27591         * environment.c|h: Added icall ves_icall_System_Environment_
27592         GetOSVersionString to get the current OS version as a string.
27593         * icall.c: Registred icall.
27595 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27597         * object.c: in mono_object_get_virtual_method(), take into account that
27598         non-virtual methods don't have a slot in the vtable. Check needed when
27599         the object is a proxy.
27601 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27603         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27604         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27606         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27608         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27609         passed when a valuetype is expected.
27611         * object.c (mono_unhandled_exception): Only set the exit code if the
27612         exception happens in the main thread. Fixes thread5.exe.
27614         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27615         invalid names. Fixes #58047.
27617 2004-05-03  Jackson Harper  <jackson@ximian.com>
27619         * assembly.c: This line was committed accidently and is unneeded.
27620         
27621 2004-05-03  Jackson Harper  <jackson@ximian.com>
27623         * icall.c: Add new icall for Assembly::LoadWithPartialName
27624         * assembly.c/.h: new function that probes the GAC to load partial
27625         assembly names by Paolo Molaro.
27626         
27627 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27629         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27630         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27631         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27632         full type name.
27634 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27636         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27637         * reflection.c: fix bug when parsing a full type name and Version is not
27638         the last thing in the string.
27640 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27642         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27643         crashes when it is freed.
27645 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27647         * assembly.c: print the compat warning to stderr.
27649 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27651         * assembly.c (mono_assembly_load_references): Add a compatibility
27652         hack to run old applications that might be still referencing the
27653         3300-based assemblies, only do this for System.xxx.
27655 2004-05-01  Jackson Harper  <jackson@ximian.com>
27657         * appdomain.c: If the culture is neutral we set it to "".
27658         
27659 2004-04-29  Jackson Harper  <jackson@ximian.com>
27661         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27663 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27665         * string-icalls.c: added low overhead function for copying chars
27666         * icall.c: added needed icall for the above function
27668 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27670         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27671         Environment.GetLogicalDrives.
27673 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27675         * rand.c: try and talk to egd or prngd
27676         for random bytes if opening devices fail.
27678 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27680         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27681         alignment for the type using the native alignment of its members 
27682         instead of using klass->min_align.
27684         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27686 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27688         * file-io.c:
27689         * socket-io.c: added check for sys/aio.h.
27691 2004-04-28  Dick Porter  <dick@ximian.com>
27693         * threads.c: Don't abort a thread thats already aborting, when
27694         terminating everything.
27696 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27698         * icall.c: added 2 new async calls for Socket.
27700         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27701         IO on *nix systems.
27703         * threadpool.c: removed unused variable.
27705 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27707         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27709 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27711         * locales.c: put back string_invariant_tolower () and
27712         string_invariant_toupper ().
27714 2004-04-26 David Waite <mass@akuma.org>
27716         * file-io.h:
27717         * socket-io.h:
27718         * threads.h:
27719         * unicode.h: remove comma from end of enumeration declarations
27721 2004-04-26 David Waite <mass@akuma.org>
27723         * debug-mono-symfile.h:
27724         * decimal.c:
27725         * mono_debug.h:
27726         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27729 2004-04-26  Jackson Harper  <jackson@ximian.com>
27731         * appdomain.c: Increment version number.
27732         
27733 2004-04-26  Jackson Harper  <jackson@ximian.com>
27735         * appdomain.c: Set assembly references public token value when
27736         PublicKeyToken is specified, not the hash_value. Free public token
27737         values when free assembly name data. Previously the public key
27738         token was hex decoded, however we are using hex encoded public key
27739         tokens, so this is not neccasary.
27740         * assembly.c: Lookup assemblies in the gac if their public token
27741         value is set. Add function to allow enabling user gac
27742         lookups. Specify whether or not the assembly was loaded from the
27743         GAC. Compare full assembly names when checking the cache for
27744         assemblies (Temporarily disabled see comment in code). Remove
27745         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27746         specifies trace-loader they get extra info to stdout on the
27747         loading of assemblies.
27748         * image.h: Add a field for an assembly references public token
27749         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27750         whether an assembly has been loaded from the GAC.
27751         * image.c: Remove a corlib -> mscorlib name mapping.
27752         * loader.h: Add function to enable/disable the user gac.
27753         * mono-config.c: Check if the usergac is enabled in the config
27754         file.
27755         * icall.c: New icall to determine whether or not an assembly has
27756         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27757         * tabldefs.h: Add constant for assemblyref flag that specifies a
27758         full public key is used instead of a public token.
27759         * reflection.c: Remove mscorlib -> corlib mappings. Set
27760         PublicTokenValue instead of hash value. This value is a hex
27761         string so it does not need to be expanded.
27763 2004-04-26  Martin Baulig  <martin@ximian.com>
27765         * mono-debug-debugger.c (mono_debugger_initialize): Set
27766         `mono_debugger_initialized' before calling mono_debug_lock().
27768 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27770         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27771           InternalToUpper/InternalToLower.
27772         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27773           removed invariant culture shortcut.  This is now done in managed code.
27774         * locales.c: (string_invariant_toupper/tolower) removed.
27776 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27778         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27779         Added Poll internal call.
27781         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27782         call for Poll. Select was too heavy for polling a single socket.
27784         * threadpool.[ch]: added mono_threadpool_cleanup.
27785         * threads.c: use it. Don't use Thread_Abort on windows.
27787 2004-04-23  Martin Baulig  <martin@ximian.com>
27789         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27791 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27793         * icall.c: Registred new icalls for key pair protection and added an
27794         icall for Environment.GetFolderPath on Windows.
27795         * security.c|h: Added new icalls for key pair protection.
27797 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27799         * socket-io.c: don't display the non-supported family warning for known
27800         families. Now this is not displayed on windows when checking support
27801         for IPv4/IPv6.
27803 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27805         * class.c: don't display the layout warning for static fields.
27807 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27809         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27810         * locales.c, locales.h: Added new icalls for culture-specific
27811         Char.ToLower and Char.ToUpper.
27813 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27815         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27816         by David Waite.
27818 2004-04-20  Martin Baulig  <martin@ximian.com>
27820         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27821         of the type name before passing it to mono_reflection_type_from_name().
27823 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27825         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27826         encodings here. Fixes #56965.
27828 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27830         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27831         fix test on strstr result not that I can see anything that
27832         relies on the result.
27834 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27836         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27837         Fixes #57081.
27839         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27841         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27842         function to determine which marshalling to use for strings. Fixes
27843         #56965.
27845         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27847         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27849 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27851         * icall.c: #include mono-config.h
27853 2004-04-15  Jackson Harper  <jackson@ximian.com>
27855         * culture-info-tables.h: Fix date formats for en-US culture.
27856         
27857 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27859         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27860         ThreadPool.SetMinThreads.
27861         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27862         ThreadPool.SetMinThreads.
27864 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27866         * mono-config.c: also load the .config file in the directory
27867         where the assembly was found.
27869 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27871         * assembly.c: load per-assembly config files.
27872         * icall.c: decrapified code to get the config dir and moved to
27873         mono-config.c.
27874         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27875         per-assembly config files. When doing a dll map lookup give precedence
27876         to the per-assembly data.
27878 2004-04-14  Martin Baulig  <martin@ximian.com>
27880         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27881         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27882         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27884         * mono-debugger-debugger.c: While the debugger is locked, remember
27885         whether the symbol tables have changes and send one single
27886         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27888 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27890         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27892         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27893         function.
27895         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27896         account when marshalling string arrays. Fixes #56965.
27898 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27900         * icall.c: Add new icalls mapping for security.
27901         * security.c|h: Add internal calls for WindowsIdentity,
27902         WindowsImpersonationContext and WindowsPrincipal.
27904 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27906         * class.c: Added comment to ensure the System.MonoDummy class
27907         is removed when no longer necessary
27909 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27911         * appdomain.c: Pass arguments to the bootstraping exceptions to
27912         minimize JITed methods at boot
27914         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27915         second string to be null.
27917         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27918         Change the protocol to minimize the JIT methods at startup.  Now
27919         it Returns the internal codepage, if the value of "int_code_page"
27920         is 1 at entry, and we can not compute a suitable code page
27921         number, returns the code page as a string.
27923 2004-04-13  Jackson Harper  <jackson@ximian.com>
27925         * culture-info-tables.h: Fix number of decimal digits for all
27926         english locales.
27928 2004-04-13  Jackson Harper  <jackson@ximian.com>
27930         * icall.c: Clairfy out of sync error message. It is not always
27931         your corlib that is out of sync.
27933 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27935         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27936         properties when only the set accessor is overriden. Fixes #55874.
27938 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27940         * assembly.c (mono_assembly_load_references): Make this thread safe.
27941         Fixes #56327.
27943 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27945         * monosn.c: Add missing initialization calls.
27947 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27949         * locales.c:
27950         ves_icall_System_Globalization_CultureInfo_construct_number_format
27951         Fix g_assert so it compiles on fussier compilers re int/ptr
27952         mismatch
27954 2004-04-08  Dick Porter  <dick@ximian.com>
27956         * socket-io.h:
27957         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27958         53992.  Also rearrange the code so that the internal calls return
27959         an error value and exceptions are thrown from managed code.
27961         * icall.c: Add type info to the socket icalls.
27963 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27965         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27966         owes me a beer.
27968 2004-04-07  Martin Baulig  <martin@ximian.com>
27970         * class.c (mono_class_from_generic_parameter): Don't default
27971         `klass->parent' to `mono_defaults.object_type'.
27973 2004-04-07  Martin Baulig  <martin@ximian.com>
27975         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27976         `param->pklass->reflection_info'.       
27978 2004-04-07  Jackson Harper  <jackson@ximian.com>
27980         * culture-info-tables.h: Fix date separator symbol.
27981         
27982 2004-04-07  Martin Baulig  <martin@ximian.com>
27984         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27985         from System.Type to System.MonoType.
27987 2004-04-07  Martin Baulig  <martin@ximian.com>
27989         * reflection.h
27990         (MonoReflectionGenericParam): Added `has_reference_type' and
27991         `has_value_type' fields.
27993         * reflection.c (mono_image_get_generic_param_info): Encode the
27994         correct flags if we have the `class' or `struct' constraint.
27996 2004-04-07  Martin Baulig  <martin@ximian.com>
27998         * reflection.h
27999         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28001 2004-04-07  Jackson Harper  <jackson@ximian.com>
28003         * appdomain.c: Revert extra patches, just wanted to bump the
28004         version number.
28005         
28006 2004-04-07  Jackson Harper  <jackson@ximian.com>
28008         * Makefile.am: Add culture-info private headers.
28009         * icall.c: Add new icalls for contructing locales.
28010         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28011         * locales.h: Declare new culture info construction methods.
28012         * object.h: Add new fields used to avoid the CultureMap to
28013         MonoCultureInfo.
28014         * culture-info.h: Definition of structs used in the culture info
28015         tables.
28016         * culture-info-tables.h: Autogenerated tables that contain culture
28017         info data. This file was generated with the locale-builder tool.
28018         * appdomain.c: Incement corlib version number.
28019         
28020 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28022         * appdomain.c: (mono_runtime_init) move mono_thread_init
28023         to before mono_object_new calls so critical sections
28024         are initialized before use.
28026 2004-04-07  Martin Baulig  <martin@ximian.com>
28028         * icall.c
28029         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28030         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28031         (ves_icall_MonoGenericParam_initialize): Removed.
28032         (monogenericparam_icalls): Removed.
28033         (generictypeparambuilder_icalls): Added new table for
28034         System.Reflection.Emit.GenericTypeParameterBuilder.
28036         * reflection.c
28037         (mono_reflection_define_generic_parameter): Removed.
28038         (mono_reflection_initialize_generic_parameter): This is now called
28039         from GenericTypeParameterBuilder's .ctor.
28041 2004-04-06  Martin Baulig  <martin@ximian.com>
28043         * class.c (mono_class_init): Don't inflate nested classes in a
28044         generic instance.
28045         (mono_type_get_name_recurse): Include the generic arguments for
28046         generic instances and generic type declarations.
28047         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28048         (_mono_class_get_instantiation_name): Removed.
28049         (mono_class_create_generic): Always use `gklass->name' as our name.
28051         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28053         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28054         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28055         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28056         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28057         closed generic methods here.
28059         * reflection.c
28060         (mono_reflection_generic_inst_get_nested_types): Removed.
28061         (inflate_mono_method): Copy the generic parameters from the
28062         MonoMethodHeader into out MonoGenericMethod.
28064 2004-04-06  Martin Baulig  <martin@ximian.com>
28066         * row-indexes.h
28067         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28069         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28071         * reflection.c (build_compressed_metadata): If we have any entries
28072         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28073         set the header version to 1.1.
28075 2004-04-06  Martin Baulig  <martin@ximian.com>
28077         * class.c (mono_class_init): If we're a generic instance,
28078         initialize our nested classes, too.
28079         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28080         suffix. 
28082 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28084         * process.c: quote the argument passed to the shell on windows.
28086 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28088         * threads.c (mono_alloc_special_static_data): Allow this to be
28089         called during startup.
28091 2004-04-02  Martin Baulig  <martin@ximian.com>
28093         * icall.c
28094         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28096 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28098         * icall.c: Fix build.
28100 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28102         * Makefile.am: Added security.c|h.
28103         * icall.c: Added icall for get_UserName;
28104         * security.c: New file for security related icalls. Added function
28105         get_UserName for System.Environment (fix #56144).
28106         * security.h: New. Header file for security.c
28108 2004-04-02  Dick Porter  <dick@ximian.com>
28110         * icall.c: Deleted the icalls that were obsoleted some time ago
28111         by the ICU string code, and which were mixed into the icall
28112         rearranging.  Fixes bug 55969.
28114         * string-icalls.h: 
28115         * string-icalls.c: Deleted the code that those icalls reference.
28117 2004-04-01  Martin Baulig  <martin@ximian.com>
28119         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28121         * class.c (mono_class_from_generic_parameter): Don't set 
28122         TYPE_ATTRIBUTE_INTERFACE.
28123         (my_mono_class_from_generic_parameter): Likewise.
28125 2004-04-01  Martin Baulig  <martin@ximian.com>
28127         * loader.c (find_method): Added an optional `MonoClass *ic'
28128         argument to search in a specific interface.
28129         (mono_get_method_constrained): New public function.
28131 2004-04-01  Martin Baulig  <martin@ximian.com>
28133         * reflection.c (mono_image_get_generic_field_token): Use the
28134         `handleref' cache here.
28136 2004-04-01  Martin Baulig  <martin@ximian.com>
28138         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28140         * reflection.c (create_generic_typespec): Use the `typespec' hash
28141         here, not the `typeref' one.    
28143 2004-04-01  Martin Baulig  <martin@ximian.com>
28145         * class.c (mono_class_inflate_generic_type): Moved the
28146         functionality into a new static inflate_generic_type() which
28147         returns NULL if it didn't do anything.  Only increment the
28148         `mono_stats.inflated_type_count' if we actually inflated
28149         something.
28150         (mono_class_get_full): Check the classes type to see whether we
28151         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28153 2004-04-01  Jackson Harper  <jackson@ximian.com>
28155         * reflection.c: Set culture for assembly references.
28156         
28157 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28159         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28161 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28163         * assembly.c:
28164         (do_mono_assembly_open): the critical section also covers
28165         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28167 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28169         * threads.c:
28170         (mono_manage_threads): abort the background threads when finishing.
28171         Fixes bug #47232.
28173 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28175         * gc.c: only close the done_event handle if there was no timeout.
28176         C-ified comments.
28178 2004-03-30  Martin Baulig  <martin@ximian.com>
28180         * icall.c (icall_entries): It's called "System.Activator", not
28181         "System.Activation".    
28183 2004-03-30  Martin Baulig  <martin@ximian.com>
28185         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28186         (mono_class_create_from_typespec): Likewise.
28188 2004-03-30  Martin Baulig  <martin@ximian.com>
28190         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28191         `has_ctor_constraint' and `initialized'.
28193 2004-03-30  Martin Baulig  <martin@ximian.com>
28195         * reflection.c (encode_new_constraint): New static function to add
28196         the constructor constraint attribute to a type parameter.
28197         (encode_constraints): Call encode_new_constraint() if necessary.
28199         * reflection.h
28200         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28202         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28203         
28204 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28206         * reflection.c, icall.c: add support for pinning variables. 
28208 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28210         * marshal.c (mono_marshal_get_managed_wrapper):
28211         init bool local with zero rather than null.
28213 2004-03-29  Martin Baulig  <martin@ximian.com>
28215         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28216         the "official" behavior here.
28217         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28219 2004-03-29  Martin Baulig  <martin@ximian.com>
28221         * icall.c: Reflect latest API changes.
28223 2004-03-29  Martin Baulig  <martin@ximian.com>
28225         * loader.c (mono_get_method_from_token): Also call
28226         mono_metadata_load_generic_params () for abstract and interface
28227         methods; replace the type arguments in the method signature with
28228         the ones which are loaded from the metadata.
28230 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28232         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28233         of the lock is not the current thread. MS.NET don't do it, in spite of
28234         what the documentation says. See bug #56157.
28236 2004-03-28  Martin Baulig  <martin@ximian.com>
28238         * class.c (mono_class_init): Don't call init_properties() and
28239         init_events() for generic instances; set `prop->parent' when
28240         inflating properties.
28242         * reflection.c (mono_generic_inst_get_object): Call
28243         `mono_class_init (ginst->klass)'.
28244         (mono_type_get_object): Only create a MonoGenericInst if your
28245         generic type is a TypeBuilder.
28246         (do_mono_reflection_bind_generic_parameters): Only set
28247         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28249 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28251         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28252         Fixes #56091.
28254 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28256         * icall.c: added Kill_internal icall.
28257         * process.[ch]: added Kill_internal icall.
28259 2004-03-25  Martin Baulig  <martin@ximian.com>
28261         * class.h (MonoStats): Added `generic_instance_count',
28262         `inflated_method_count', `inflated_type_count' and
28263         `generics_metadata_size'.       
28265 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28267         * reflection.c: no warnings now.
28269 2004-03-25  Martin Baulig  <martin@ximian.com>
28271         * class.c (mono_class_get_full): New public function; does a
28272         mono_class_get(), but also takes a `MonoGenericContext *'.
28274         * loader.c (mono_field_from_memberref): Renamed to
28275         `field_from_memberref', made static and added `MonoGenericContext *'
28276         argument.
28277         (mono_field_from_token): Added `MonoGenericInst *' argument.
28278         (method_from_memberef): Likewise.
28279         (mono_get_method_from_token): Likewise.
28280         (mono_get_method_full): New public function; does a
28281         mono_get_method(), but also takes a `MonoGenericContext *'.
28283         * verify.c (mono_method_verify): Get the method's generic context
28284         and pass it to mono_field_from_token(), mono_get_method_full() and
28285         mono_class_get_full().
28287 2004-03-25  Martin Baulig  <martin@ximian.com>
28289         * class.c (mono_class_inflate_generic_type): Take a
28290         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28291         `MonoGenericMethod *'.
28293 2004-03-25  Martin Baulig  <martin@ximian.com>
28295         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28296         instead of the MonoGenericMethod here.
28298 2004-03-25  Martin Baulig  <martin@ximian.com>
28300         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28301         each time we create a new MonoGenericInst, we also create a new
28302         context which points back to us.
28304         * class.c (inflate_method): Use `ginst->context' instead of
28305         creating a new context.
28307         * loader.c (method_from_memberref): Use
28308         `klass->generic_inst->context' instead of creating a new context.
28310 2004-03-25  Martin Baulig  <martin@ximian.com>
28312         * class.h (MonoGenericContext): New struct.
28313         (MonoGenericMethod): Removed `generic_inst'.
28315         * class.c (mono_class_inflate_generic_method): Take a
28316         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28318 2004-03-25  Martin Baulig  <martin@ximian.com>
28320         * loader.h (MonoMethodInflated): New typedef.
28322         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28323         `generic_param_count' consume just 30 bits, added `is_inflated'
28324         and `has_type_parameters' flags (one bit each).
28326         * class.c (mono_class_inflate_generic_method): Create a
28327         MonoMethodInflated instead of a MonoMethodNormal and set
28328         `is_inflated' in the method signature.
28330         * class.h (MonoGenericMethod): Removed `generic_method'.
28332 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28334         * image.c: Make sure the name of a MonoImage is always an absolute path.
28335           This fixes bug #54415.
28337 2004-03-24  Martin Baulig  <martin@ximian.com>
28339         * class.c (mono_class_setup_vtable): If we're a generic instance,
28340         use our generic type's vtable size.
28342 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28344         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28345         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28346         problems.
28348 2004-03-23  Martin Baulig  <martin@ximian.com>
28350         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28351         `MonoEvent *events'.
28353         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28354         (typebuilder_icalls): Added "get_event_info"; calls
28355         mono_reflection_event_builder_get_event_info(). 
28357         * reflection.c (mono_reflection_generic_inst_initialize): Added
28358         `MonoArray *events'.
28359         (mono_reflection_event_builder_get_event_info): New function.
28361 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28363         * object.h: add mono_type_initialization_init
28365         * object.c (mono_runtime_class_init): 
28366         implement class constructor synchronization rules
28367         to cope with threading issues.  
28368         add mono_type_initialization_init
28370         * appdomain.c (mono_runtime_init): call 
28371         mono_type_initialization_init
28373         * class.h: removing initializing field from MonoVTable
28375 2004-03-23  Martin Baulig  <martin@ximian.com>
28377         * class.c (my_mono_class_from_generic_parameter): Use
28378         `param->name' if it's not NULL. 
28380 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28382         * class.c: do not insert non-virtual methods in the vtable.
28383         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28384         that means the method is non-virtual. This never would have
28385         happened before.
28387 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28389         * profiler.c: Added lock for accessing coverage_hash.
28391 2004-03-22  Martin Baulig  <martin@ximian.com>
28393         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28394         `method->method->signature->generic_param_count != 0' to make it
28395         work for interface methods.
28397 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28399         * process.c: quote the string passed to the shell using g_shell_quote.
28401 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28403         * threads.c:
28404         (mono_threads_manage): don't remove the finalizer thread and self
28405         from the threads hash table so that mono_thread_manage can be called
28406         more than once.
28408 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28410         * process.c: quote the arguments when UseShellExecute is true. Fixes
28411         bug #55790.
28413 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28415         * threads.c: set mono_thread_detach as a cleanup routine for every
28416         thread. This way it's always executed upon thread termination, either
28417         aborted or finished normally. No more xsp hangs!
28419 2004-03-17  Martin Baulig  <martin@ximian.com>
28421         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28422         `int count_nested' and a `MonoType **nested'.
28424         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28425         most of the functionality into a new static
28426         do_mono_reflection_bind_generic_parameters() and don't take a
28427         `MonoType *nested_in' argument any more.  Don't compute nested
28428         types here.
28429         (mono_reflection_generic_inst_get_nested_types): New public method
28430         to get nested types.
28432         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28433         we're a nested class.
28435         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28436         mono_reflection_generic_inst_get_nested_types() to compute the
28437         nested types.
28439 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28441         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28442         descriptive error message under windows.
28443         
28444 2004-03-17  Martin Baulig  <martin@ximian.com>
28446         * class.c (dup_type): Added `const MonoType *original' argument;
28447         copy the attrs from the original type.
28449 2004-03-17  Martin Baulig  <martin@ximian.com>
28451         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28452         `m->generic_inst_cache' here.
28454 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28456         * exception.h exception.c: Add stack_overflow_exception.
28458 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28460         * threadpool.c:
28461         (overlapped_callback): call SetEvent *after* invoking the callback.
28462         No need to call CloseHandle.
28464 2004-03-16  Martin Baulig  <martin@ximian.com>
28466         * reflection.c (mono_image_get_fieldref_token): Take a
28467         `MonoReflectionField *' instead of a `MonoClassField *' and a
28468         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28470 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28472         * appdomain.c: don't add the culture to the filename we're looking for
28473         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28475 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28477         * locales.c: don't ignore symbols when doing case insensitive compares.
28478         Thanks Dick! Fixes bug #54046.
28480         * threads.c: surround 'threads' usage with enter/leave in
28481         mono_thread_manage.
28483 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28485         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28486         implicitly marshalled as [Out]. Fixes #55450.
28488         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28489         an exception.
28491 2004-03-16  Martin Baulig  <martin@ximian.com>
28493         * class.c (mono_class_from_generic_parameter): Use the actual
28494         parameter name. 
28496 2004-03-16  Martin Baulig  <martin@ximian.com>
28498         * reflection.c (type_get_signature_size): New static function.
28499         Compues the size of the type in a method signature.
28500         (method_get_signature_size): New static function; calls
28501         type_get_signature_size() to compute the actual size of the
28502         method's signature.
28503         (method_encode_signature): Use method_get_signature_size() to get
28504         the signature's size rather than using `nparams * 10'.
28506 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28508         * file-io.h: define here WapiOverlapped on windows. I don't want the
28509         regular OVERLAPPED one.
28511         * file-io.c:
28512         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28513         Disabling AIO on windows.
28515 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28517         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28518         bug #55385.
28520 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28522         * appdomain.c: upgraded corlib version.
28524         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28525         and BeginWrite. Allow opening files for asynchrnous operations.
28527         * file-io.h: new struct that maps FileStreamAsyncResult.
28528         * icall.c: added new icalls.
28529         * process.[ch]: support setting child process environment variables
28530         and use the SHELL or COMSPEC when UseShellExecute is true.
28532         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28533         callback for async. IO is here and also BindHandle.
28535         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28536         from here.
28538 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28540         * reflection.c (create_custom_attr): Allow len == 0.
28542         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28543         computation on big-endian machines.
28545 2004-03-13  Martin Baulig  <martin@ximian.com>
28547         * class.h (MonoGenericInst): Added `int count_ifaces'.
28549         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28550         `ginst->count_ifaces' instead `klass->interface_count' since we
28551         may get called before the vtable is created.
28553         * loader.c (mono_method_get_param_names): If we're a generic
28554         instance, return and don't initialize the class.
28556         * reflection.c (mono_reflection_setup_generic_class): Don't call
28557         ensure_runtime_vtable().
28558         (mono_reflection_bind_generic_parameters): Set
28559         `ginst->count_ifaces'.
28561 2004-03-11  Jackson Harper <jackson@ximian.com>
28563         * icall.c:
28564         * unicode.c:
28565         * unicode.h: Remove unused System.Char icalls.
28566         
28567 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28569         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28570         code when we P/Invoke the first library in Windows.Forms, instead
28571         of when we first open the assembly.
28573         * assembly.c: Drop the lookup from here.
28575 2004-03-10  Martin Baulig  <martin@ximian.com>
28577         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28578         class for properties, fields and events.  Finally fixes #54945.
28580 2004-03-10  Martin Baulig  <martin@ximian.com>
28582         * metadata.c (mono_metadata_class_equal): New static function;
28583         checks whether two generic instances or two generic parameters are
28584         equal.
28585         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28586         compare classes.        
28588 2004-03-10  Martin Baulig  <martin@ximian.com>
28590         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28592         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28593         argument and write it into the `reflection_info' field.
28595         * icall.c
28596         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28597         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28599 2004-03-09  Jackson Harper  <jackson@ximian.com>
28601         * char-conversions.h: use 8 bits for numeric data its all we need
28602         * icall.c: numeric data is only 8 bits now.
28604 2004-03-09  Martin Baulig  <martin@ximian.com>
28606         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28608         * class.c (init_properties, init_events): Initialize the new
28609         `parent' field.
28611         * reflection.c (typebuilder_setup_properties): Likewise.
28612         (typebuilder_setup_events): Likewise.
28614         * reflection.h (MonoEventInfo): Replaced `parent with
28615         `declaring_type' and `reflected_type'.
28617         * icall.c (ves_icall_get_property_info): Distinguish between
28618         declaring and reflected type.
28619         (ves_icall_get_event_info): Likewise.
28621 2004-03-09  Martin Baulig  <martin@ximian.com>
28623         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28624         (ves_icall_Type_GetField): Correctly set field->klass.
28626 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28628         * loader.h: Fix warning.
28630 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28632         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28633         library routine if present.  Notice that it will still continue
28634         executing even if its missing, for those working on the Gtk#
28635         edition of Windows.Forms.
28637         * assembly.c (do_mono_assembly_open): If loading the
28638         System.Windows.Forms call mono_loader_wini_init.
28640 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28642         * class.h: Added MonoRemoteClass struct.
28643         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28644         function for MonoStrings.
28645         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28646         Added internal call for getting the proxy type.
28647         * marshal.c: Get the type of transparent proxies from its remote_class.
28648         Added methods that generate the IL for type checks and casts:
28649         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28650         mono_marshal_get_proxy_cancast.
28651         * marshal.h: Declaration of the previous new methods.
28652         * object.c: Added new moethods for creating and updating MonoRemoteClass
28653         instances: mono_remote_class, mono_upgrade_remote_class, 
28654         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28655         * verify.c: FIx transparent_proxy_fields layout.
28656         * appdomain.c: Bump corlib version.
28658 2004-03-04  Jackson Harper  <jackson@ximian.com>
28660         * icall.c: Add icall to access char conversion tables.
28661         * char-conversions.h: Character conversion tables.
28662         * Makefile.am: Add char-conversions.h private header file.
28663         
28664 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28666         * appdomain.c (unload_thread_main): Increase unloading timeout to
28667         10 sec as a temporary workaround for Nant problems.
28669 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28671         * gc.c: Add checks for GC_enable and GC_disable.
28673         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28674         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28675         (bug #54988).
28676         
28677 2004-02-27  Martin Baulig  <martin@ximian.com>
28679         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28680         `MonoReflectionType *' instead of a `MonoType *'.
28682 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28684         * gc.c (run_finalize): Avoid finalizing the object representing the
28685         finalizer thread.
28686         (finalizer_thread): Fix warning.
28688 2004-02-25  Martin Baulig  <martin@ximian.com>
28690         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28691         argument for nested types.
28692         (mono_class_create_generic): Added support for nested generictypes.
28694         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28695         `GList *nested'.
28697         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28699         * reflection.c (method_encode_signature): Increase the minimum
28700         value of `size' from 10 to 11.
28701         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28702         and `MonoType **types' arguments instead of the `MonoArray
28703         *types'; added `MonoType *nested_in'.  Recursively instantiate
28704         nested classes. 
28706 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28708         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28709         stack_overflow_ex members which are used by exception handling.
28711         * appdomain.c (mono_runtime_init): Initialize the new members.
28713         * gc.c (mono_gc_enable): New helper function.
28714         * gc.c (mono_gc_disable): New helper function.
28716 2004-02-23  Martin Baulig  <martin@ximian.com>
28718         * icall.c: I must have been really stupid - make it actually work
28719         this time ;-)
28721 2004-02-23  Martin Baulig  <martin@ximian.com>
28723         * loader.c (method_from_memberref): Only inflate the method if
28724         it's in another klass.
28726 2004-02-23  Martin Baulig  <martin@ximian.com>
28728         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28729         (mono_class_init): If we're a generic instance and an interface,
28730         compute `class->interface_id'; also create `class->interfaces'
28731         here and inflate them.
28733         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28734         `ginst->is_open'.
28735         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28737         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28739 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28741         * reflection.c (method_encode_code): Improved the error message
28742         generated by the exception.
28744 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28746         * icall.c: Martin did not do what he said in the ChangeLog for
28747         2004-02-18, but put back the changes for properties and events.
28748         Commenting those changes out again and adding comment to bug #54518.
28749         
28750         * process.c: removed warning.
28752 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28754         * marshal.c (emit_struct_conv): Print an error message instead of
28755         asserting when a type does not have the StructLayout attribute.
28757 2004-02-20  Martin Baulig  <martin@ximian.com>
28759         * reflection.c (mono_type_get_object): Also use the cache for
28760         generic instances.
28761         (mono_reflection_bind_generic_parameters): Always compute
28762         `ginst->ifaces'.        
28764 2004-02-20  Martin Baulig  <martin@ximian.com>
28766         * class.h (MonoGenericMethod): Removed `klass'.
28768         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28769         *klass' argument.
28771 2004-02-20  Martin Baulig  <martin@ximian.com>
28773         * reflection.c (method_encode_methodspec): Actually use the
28774         uninflated signature for the memberref.
28776 2004-02-20  Martin Baulig  <martin@ximian.com>
28778         * class.h (MonoGenericMethod): Removed `declaring'.
28780         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28781         is NULL, compute it here.
28783 2004-02-20  Martin Baulig  <martin@ximian.com>
28785         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28787         * metadata.c (mono_metadata_generic_inst_hash): New method.
28788         (mono_metadata_generic_inst_equal): New method.
28790         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28791         `klass->image->generic_inst_cache' cache to avoid creating
28792         duplicate MonoGenericInst's.
28794         * class.c (mono_class_inflate_generic_type): Use the cache.
28796 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28798         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28800 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28802         * icall.c: added Socket.WSAIoctl icall.
28804         * socket-io.[ch]: implemented
28805         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28807 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28809         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28811 2004-02-18  Urs C Muff  <umuff@quark.com>
28813         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28814         this work on PPC and other big-endian architectures.
28816         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28817         fields with an underscore to make sure they're only accessed by
28818         the read32() macro.
28820 2004-02-18  Martin Baulig  <martin@ximian.com>
28822         * icall.c: Put the klass->refclass changes back for methods and
28823         fields, but not for properties and events.  We're currently not
28824         distinguishing between DeclaringType and ReflectedType for
28825         properties and events, that's what caused the regressions.
28827 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28829         * object.c:
28830         (mono_async_result_new): the handle can be NULL.
28832         * threadpool.c: Use an event instead of a semaphore, don't initialize
28833         it until needed. This saves quite a few semaphores from being created
28834         when using the threadpool.
28836 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28838         * object.c (mono_string_is_interned_lookup): Fix interning of long
28839         strings. Fixes #54473.
28841         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28843         * icall.c: Revert the klass->refclass changes since they introduce
28844         regressions (bug #54518).
28846 2004-02-18  Martin Baulig  <martin@ximian.com>
28848         * class.c (mono_class_init): If we're a generic instance and don't
28849         come from a TypeBuilder, inflate our members here.
28850         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28851         (mono_class_create_generic): New public method.
28852         (mono_class_initialize_generic): Removed.
28853         (get_instantiation_name): Renamed to
28854         _mono_class_get_instantiation_name() and made it public.
28856 2004-02-18  Martin Baulig  <martin@ximian.com>
28858         * class.c (mono_class_inflate_generic_type): Clear the new
28859         instance's `nginst->klass' when inflating a generic instance.
28860         (mono_class_is_subclass_of): Added (basic) support for generic
28861         instances.
28863 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28865         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28866         MonoMempool to hold compiled native code.
28868 2004-02-17  Martin Baulig  <martin@ximian.com>
28870         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28871         `properties'.
28873         * reflection.c (mono_reflection_generic_inst_initialize): Added
28874         `MonoArray *properties' argument.
28876         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28878 2004-02-17  Martin Baulig  <martin@ximian.com>
28880         * icall.c (ves_icall_Type_GetFields): Renamed to
28881         ves_icall_Type_GetFields_internal() and added a
28882         `MonoReflectionType *rtype' argument; pass it to
28883         mono_field_get_object() to set the field's "reflected" type.
28884         (ves_icall_Type_GetConstructors): Likewise.
28885         (ves_icall_Type_GetEvents): Likewise.
28886         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28887         argument; pass it to mono_method_get_object() to set the method's
28888         "reflected" type.       
28890 2004-02-17  Martin Baulig  <martin@ximian.com>
28892         * class.h (MonoDynamicGenericInst): New type.
28893         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28895         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28896         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28897         (ves_icall_MonoGenericInst_GetFields): New interncall.
28899         * class.c (mono_class_from_generic): Don't call
28900         mono_class_initialize_generic() if this is a dynamic instance;
28901         ie. it's being created from a TypeBuilder.
28902         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28903         `class->byval_arg.type'.
28905         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28906         to `inflate_method' and made static.
28907         (mono_reflection_inflate_field): Removed.
28908         (mono_reflection_generic_inst_initialize): New public method.
28910         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28911         `ctors' and `fields'; added `initialized'.
28913 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28915         * debug-helpers.c (mono_method_full_name): Fix output for empty
28916         namespaces.
28918 2004-02-12  Martin Baulig  <martin@ximian.com>
28920         * class.h (MonoClassField): Added `MonoType *generic_type'.
28922         * reflection.c (mono_image_get_fieldref_token): Added support for
28923         instantiated generic types.
28924         (field_encode_inflated_field): Removed.
28925         (mono_image_get_inflated_field_token): Removed.
28926         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28928         * reflection.h (MonoReflectionInflatedField): Removed.
28930 2004-02-12  Martin Baulig  <martin@ximian.com>
28932         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28933         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28935         * reflection.c (mono_image_get_methodspec_token): Take a
28936         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28937         (mono_image_create_token): Check whether we have a
28938         `method->signature->gen_method' and call
28939         mono_image_get_methodspec_token() if appropriate.
28940         (inflated_method_get_object): Removed.
28941         (mono_reflection_bind_generic_method_parameters): Return a
28942         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28943         (mono_reflection_inflate_method_or_ctor): Likewise.
28945         * reflection.h (MonoReflectionInflatedMethod): Removed.
28947 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28949         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28950         for custom valuetype marshalling.
28952         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28954 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28956         * icall.c: fixed WSAGetLastError_internal name.
28958 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28960         * threads.c (mono_thread_attach): Allow this to be called multiple
28961         times for a thread.
28962         
28963         * threads.c (build_wait_tids): Do not wait for ourselves.
28965         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28966         appdomain list is empty.
28968         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28969         memory returned by mono_string_builder_to_utf16, since it points into
28970         managed memory. Thanks to Bernie Solomon for noticing this.
28972         * icall.c: Add AppDomainSetup icalls.
28974         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28976         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28977         types.
28979         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28980         custom attributes to the method_aux struct. Also fix array indexes etc.
28982         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28983         
28984 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28986         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28987         (both static and runtime) and reduce startup time.
28989 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28991         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28992         AsAny marshalling conversion instead of crashing.
28994         * marshal.c: Fix warnings.
28996 2004-02-09  Martin Baulig  <martin@ximian.com>
28998         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29000         * reflection.h (MonoReflectionInflatedMethod): Removed the
29001         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29003         * reflection.c (method_encode_methodspec): Removed the `method'
29004         argument; we get it from `gmethod->declaring'.
29005         (inflated_method_get_object): Removed the `declaring' argument.
29007 2004-02-09  Martin Baulig  <martin@ximian.com>
29009         * class.h (MonoGenericMethod): New type.
29010         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29011         `generic_method'.
29013         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29014         a `MonoGenericMethod *gen_method' one.
29016         * class.c (mono_class_inflate_generic_type): Take an additional
29017         `MonoGenericMethod * argument.  This is only non-NULL if we're
29018         inflating types for a generic method.   
29019         (mono_class_inflate_generic_signature): Renamed to
29020         inflate_generic_signature() and made static; take a
29021         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29022         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29023         instead of a `MonoGenericInst *' one.
29024         (mono_class_inflate_generic_method): Likewise.
29026         * reflection.c (encode_generic_method_sig): Take a
29027         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29028         (method_encode_methodspec): Likewise.
29029         (inflated_method_get_object): Likewise. 
29031         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29032         field with a `MonoGenericMethod *gmethod' one.  
29034 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29036         * class.h (mono_class_has_parent): add parens to expansion
29037         so you can ! this.
29039 2004-02-08  Martin Baulig  <martin@ximian.com>
29041         * image.h (MonoImage): Removed `generics_cache'.
29043         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29044         instead of a `MonoType *' argument; removed the `inflate_methods'
29045         argument.  Don't inflate methods here.
29047         * loader.c (find_method): If it's a generic instance, call
29048         mono_class_init() on the `sclass->generic_inst->generic_type'.
29050         * metadata.c (mono_type_size): Make this work on uninitialized
29051         generic instances; call it on the `ginst->generic_type's class.
29053         * reflection.c (mono_reflection_bind_generic_parameters): Call
29054         mono_class_from_generic() to create the `ginst->klass'.
29056 2004-02-08  Martin Baulig  <martin@ximian.com>
29058         * class.h (MonoClass): Changed type of `generic_inst' from
29059         `MonoType *' to `MonoGenericInst *'.
29061 2004-02-08  Martin Baulig  <martin@ximian.com>
29063         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29064         mono_type_get_object(), this is now creating a `MonoGenericInst'
29065         for MONO_TYPE_GENERICINST.
29066         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29067         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29069         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29070         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29071         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29072         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29073         and reflected type.
29075         * reflection.h (MonoReflectionInflatedMethod): Removed
29076         `declaring_type' and `reflected_type'.
29078 2004-02-08  Martin Baulig  <martin@ximian.com>
29080         * class.h (MonoGenericInst): Added `MonoType *parent' and
29081         `MonoType **ifaces'.
29083         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29084         `parent' and `interfaces'.
29086         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29087         `MonoType *' argument and return a `MonoType *'.
29089         * icall.c
29090         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29091         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29093 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29095         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29096         valuetype marshalling.
29098 2004-02-06  Martin Baulig  <martin@ximian.com>
29100         * class.c
29101         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29102         (my_mono_class_from_generic_parameter): Likewise.
29104 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29106         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29107         contents of the symbol files lazily.
29109         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29111         * threads.h threads.c icall.c: New icalls for getting and setting the
29112         threads name.
29114 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29116         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29117         Raise an exception when the domain is not found.
29119 2004-02-03  Martin Baulig  <martin@ximian.com>
29121         * reflection.c (mono_image_get_methodspec_token): Use the
29122         uninflated signature; fixes gen-33.
29124 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29126         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29127         the finalizer code can use thread functionality.
29129         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29130         the finalizer thread.
29132         * threads.c: Make some functions more robust.
29134         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29136         * metadata.h: Add new marshalling conventions.
29138         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29139         stringbuilder marshalling. Fixes #53700.
29141         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29143         * reflection.c (mono_image_get_type_info): Save declarative security
29144         info.
29146         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29147         unmanaged fields as well.
29149         * appdomain.c: Bump corlib version.
29151 2004-02-01  Martin Baulig  <martin@ximian.com>
29153         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29154         method type arguments.  
29156 2004-01-30  Duncan Mak  <duncan@ximian.com>
29158         * marshal.h: Add prototype for
29159         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29160         and
29161         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29162         fix the build.
29164 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29166         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29167         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29169 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29171         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29172         custom marshalling of valuetypes.
29174         * marshal.c: Fix some warnings.
29176 2004-01-29  Martin Baulig  <martin@ximian.com>
29178         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29179         for generic method parameters.
29181         * reflection.c (method_encode_methodspec): Write the uninflated
29182         signature into the methodspec table.
29183         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29184         is always the uninflated method.
29185         (reflection_methodbuilder_to_mono_method): Copy the generic
29186         parameters from the MethodBuilder into `header->gen_params'.
29188 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29190         * class.c (mono_class_from_generic_parameter): Fix warning.
29192 2004-01-27  Martin Baulig  <martin@ximian.com>
29194         * class.c (mono_class_from_generic_parameter): Don't create
29195         `klass->methods' here.  
29197 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29199         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29200         extension since it does not work with libraries named lib<FOO>.dll.so.
29202 2004-01-25  Martin Baulig  <martin@ximian.com>
29204         * class.c (mono_class_inflate_generic_type): Added support for
29205         MONO_TYPE_GENERICINST.
29207         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29208         inflate methods on open constructed types.      
29210 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29212         * object.c: fire ProcessExit event in the root AppDomain after running
29213         Main. Fixes bug #53299.
29215 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29217         * socket-io.c: include the new socket-wrappers.h header.
29218         Use the wrappers instead of the unix socket functions to make the code
29219         more clear.
29221 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29223         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29225         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29226         Fixes #22532.
29228 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29230         * reflection.c (mono_image_create_pefile): Handle the case when the
29231         entry point is not a MethodBuilder.
29233         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29234         field to ReflectionMethod since it is not allways a builder.
29236         * reflection.c (type_get_fully_qualified_name): New helper function to
29237         return the fully qualified name of a type.
29239         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29240         type name for custom marshallers.
29242         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29244         * class.c (mono_class_setup_vtable): If a parent class already 
29245         implements an interface, use the implementing methods from that class.
29246         Fixes #53148.
29248 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29250         * threadpool.c: just return instead of ExitThread to allow for thread
29251         clean up earlier.
29253 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29255         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29256         when closing resource modules.
29258         * reflection.c (mono_image_create_pefile): Handle the case when the
29259         entry point is not a MethodBuilder.
29261         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29262         field to ReflectionMethod since it is not allways a builder.
29264 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29266         * marshal.c (mono_marshal_get_managed_wrapper): 
29267         mono_marshal_alloc takes native int so CONV_I
29268         the arg for 64bits.
29270 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29272         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29273         tokens in the cattr table. Fixes #53108.
29275 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29277         * loader.c: don't trim ".dll" before looking up in the config file.
29278         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29280 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29282         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29283         Return the module which contains the resource as well.
29284         (ves_icall_System_Reflection_Module_Close): New icall.
29286         * appdomain.c: Bump corlib version number.
29288         * image.c (mono_image_addref): New public function.
29290         * assembly.c: Call mono_image_addref.
29292         * reflection.c (mono_module_get_object): Increase reference count of 
29293         the image.
29295         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29296         Fixes #22532.
29298         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29299         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29300         proper exceptions on DllImport problems.
29302 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29304         * class.c, metadata.c: eliminate CSIZE macro.
29306 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29308         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29309         * object.h: Added async_callback field in MonoAsyncResult.
29310         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29311         * verify.c: Added async_callback in MonoAsyncResult layout.
29313 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29315         * reflection.c (mono_reflection_get_custom_attrs): Add support
29316         for Modules.
29318 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29320         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29321         marshalling.
29322         (mono_marshal_method_from_wrapper): Add null pointer check.
29324 2004-01-16  Martin Baulig  <martin@ximian.com>
29326         * debug-mono-symfile.h: Set version number to 36 and reflect
29327         latest symbol writer changes.
29329 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29331         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29332         multi-dimensional arrays.
29333         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29334         (mono_class_from_mono_type): Use bounded_array_class_get.
29335         
29336         * class.c (mono_bounded_array_class_get): New function which takes
29337         a 'bounded' bool argument to distinguish vectors from one dimensional
29338         arrays.
29340         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29341         bounded_array_class_get if the array has bounds.
29343         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29344         Search modules loaded using AssemblyBuilder:AddModule as well.
29346 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29348         * appdomain.c: increased corlib version.
29349         * filewatcher.c: removed g_print.
29350         * icall.c:
29351         (get_property_info): only allocate what is actually requested.
29352         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29354 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29356         * Makefile.am: added filewatcher.[ch]
29357         * filewatcher.[ch]: FileSystemWatcher runtime support.
29358         * icall.c: added new FSW icalls.
29360 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29362         * string-icalls.c: fix stringbuilder regression as suggested by
29363         Iain McCoy <iain@mccoy.id.au>.
29365 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29367         * process.c (process_read_stringtable_block): Recognize '007f' as
29368         a language neutral stringtable block.
29370 2004-01-12  Patrik Torstensson
29372         * object.h (MonoStringBuilder) : Changed layout to support our
29373         new stringbuilder class.
29374         * marshal.c: Change marshalling to support the new layout of 
29375         string builder.
29376         * appdomain.c: increased version number because new layout of
29377         string builder.
29379 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29381         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29382         assembly name as an string instead of an AssemblyName, since it is
29383         easier to extract info from it.
29385         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29386         the culture subdirectories too. Fixes #52231.
29388 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29390         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29391         It takes 2 new parameters with an optional name for the method to look
29392         for and case ignoring info.
29394         * threadpool.c: removed unused variable.
29396 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29398         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29399         It takes 2 new parameters with an optional name for the property to look
29400         for and case ignoring info.
29401         Fixes bug #52753.
29403 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29405         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29406         Fix #52451.
29408 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29410         * appdomain.c:
29411         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29412         Fixes bug #52630.
29414 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29416         * reflection.c: Add support for more than one unmanaged resource.
29418         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29419         in field->def_value, as done in all other cases.
29421         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29422         TypeBuilders.
29424         * reflection.c (mono_reflection_create_runtime_class): Remove 
29425         errorneous assignment to klass->element_class, since it is already
29426         done in mono_reflection_setup_internal_class.
29428 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29430         * gc.c: added missing LeaveCriticalSection.
29431         * icall.c: indented a couple of lines.
29432         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29433         if we call EndInvoke inside a callback. Fixes bug #52601.
29435 2004-01-07  Martin Baulig  <martin@ximian.com>
29437         * mono-debug-debugger.h
29438         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29440 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29442         * appdomain.c: Use messages in NotImplementedException.
29444         * exception.c (mono_get_exception_not_implemented): Now this takes
29445         a message argument.
29447         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29448         exception instead of g_asserting an aborting when something is not
29449         implemented.
29451         Add some inline docs.
29453 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29455         * reflection.h: Update after changes to object layout.
29457         * reflection.c: Implement saving of unmanaged aka win32 resources.
29459         * appdomain.c: Bump version number.
29461         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29462         Handle missing domains gracefully.
29464 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29466         * file-io.c : On Windows, there are much more invalid_path_chars.
29468 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29470         * class.h, object.c: prepare for GetType () speedup.
29472 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29474         * profiler.c: workaround for --profile null reference exception on
29475           cygwin. Patch by Patrik Torstensson.
29477 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29479         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29480         make work for unaligned access.
29482 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29484         * class.c: small cleanup (class->fields [i] -> field).
29485         * image.c: check address of metadata is valid.
29487 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29489         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29490         search the list of loaded assemblies.
29492         * reflection.c (mono_reflection_type_from_name): Use 
29493         mono_assembly_loaded instead of mono_image_loaded.
29495         * reflection.c: Fix warnings.
29497 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29499         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29500         is dynamic. This is needed since an assembly can contain both dynamic and
29501         non-dynamic images.
29503         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29504         assembly->dynamic.
29506         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29508         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29509         to store modules loaded using AddModule.
29511         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29512         on Modules.
29514         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29516         * reflection.c (mono_image_fill_export_table_from_module): New function to
29517         fill out the EXPORTEDTYPES table from a module.
29519         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29520         into a separate function. Also handle loaded non-dynamic modules.
29522         * reflection.c (mono_image_basic_init): Fix memory allocation.
29524         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29526         * assembly.c (mono_assembly_load_references): Make this public.
29528 2003-12-19  Martin Baulig  <martin@ximian.com>
29530         * class.c (mono_class_initialize_generic): Made this static, take
29531         a `MonoGenericInst *' instead of a `MonoClass *'.
29532         (mono_class_from_generic): Call mono_class_initialize_generic()
29533         unless we're already initialized or being called from
29534         do_mono_metadata_parse_generic_inst().
29536         * class.h (MonoGenericInst): Added `initialized' and
29537         `init_pending' flags.
29539         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29540         `mono_class_init (gklass)' or mono_class_initialize_generic()
29541         here; set `generic_inst->init_pending' while parsing the
29542         `type_argv'.
29544 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29546         * locales.c: include string.h for memxxx prototypes
29548 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29550         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29551         constructor when accessing literal fields.
29553 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29555         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29557         * reflection.c (assembly_add_resource_manifest): New function to fill
29558         the MANIFESTRESOURCE table.
29560         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29562         * reflection.h: Update to changes in class layout.
29564         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29565         Reenable call to mono_runtime_is_shutting_down ().
29567         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29568         determine if the runtime is shutting down.
29570 2003-12-16  Jackson Harper <jackson@ximian.com>
29572         * icall.c: comment out call to mono_runtime_is_shutting_down to
29573         fix build.
29574         
29575 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29577         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29578         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29580 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29582         * reflection.c: move definition of swap_with_size
29583         to before its first call
29585 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29587         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29589         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29590         icall.
29592         * object.c: Fix warnings.
29594         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29595         members if FlattenHierarchy is set.
29597         * reflection.c (mono_image_add_decl_security): New function to emit
29598         declarative security.
29600         * reflection.h reflection.c: Add support for declarative security.
29602         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29603         
29604 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29606         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29607         
29608         * appdomain.c verify.c: Moved corlib version checking into its own
29609         function in appdomain.c since it needs to create vtables etc.
29611 2003-12-13  Patrik Torstensson <p@rxc.se>
29613         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29614         instead of unwrapped server.
29616 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29618         * verify.c (check_corlib): Fix field index.
29620 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29622         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29623         GetGacPath icall.
29625 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29627         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29628         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29629         cope with sizeof(size_t) != sizeof(guint32).
29631 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29633         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29634         in case of failure.
29636 2003-12-10  Mark Crichton <crichton@gimp.org>
29638         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29639         in managed code.
29641         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29643 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29645         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29646         marked as deleted.
29648 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29650         * verify.c (check_corlib): Handle the case when the version field is 
29651         initialized by a static constructor.
29653 2003-12-08  Patrik Torstensson  <p@rxc.se>
29655     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29657 2003-12-08  Martin Baulig  <martin@ximian.com>
29659         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29660         a MonoReflectionGenericParameter, also take the parameter index
29661         and name as arguments.
29662         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29663         (ves_icall_MonoGenericParam_initialize): New interncall.
29664         (ves_icall_Type_make_byref_type): New interncall.
29666         * reflection.h (MonoReflectionGenericParam): Derive from
29667         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29668         `index' fields.
29670         * reflection.c (mono_reflection_define_generic_parameter): Create
29671         and return a new MonoReflectionGenericParam; don't initialize the
29672         constraints here.
29673         (mono_reflection_initialize_generic_parameter): New public method;
29674         initializes the constraints and creates the `param->pklass'.
29676 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29678         * reflection.h reflection.c: Use the new fields 'num_types', 
29679         'num_fields' and 'num_methods' to track the number of types etc.
29681         * verify.c (check_corlib): Check corlib version number.
29683 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29685         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29686         function works on all methods.
29688 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29690         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29691         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29692         the custom_type_info flag of the transparent proxy.
29693         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29694         objects that supports IRemotingTypeInfo.
29695         * object.h: Added custom_type_info field in transparent proxy.
29697 2003-12-06  Martin Baulig  <martin@ximian.com>
29699         * class.c (mono_class_create_from_generic): Removed.
29700         (mono_class_from_generic): Check `ginst->klass' before doing
29701         anything else.  This is important to fully support "recursive"
29702         generic types.
29704         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29705         empty `generic_inst->klass' before doing anything else.
29707 2003-12-06  Dick Porter  <dick@ximian.com>
29709         * verify.c: 
29710         * object.h:
29711         * icall.c:
29712         * locales.c: Use C structs to access class fields.  Don't do a
29713         conversion between MonoString and UChar because both are
29714         platform-endian UTF-16.  Compare now takes startindex and count
29715         parameters.  Add a char overload for IndexOf.  Speed up the
29716         invariant string IndexOf.
29718 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29720         * Makefile.am (monosn_LDADD): Fix parallel build.
29722 2003-12-04  Martin Baulig  <martin@ximian.com>
29724         * icall.c
29725         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29726         (ves_icall_Type_make_array_type): New interncall.       
29728 2003-12-04  Martin Baulig  <martin@ximian.com>
29730         * locales.c: also change it in the !HAVE_ICU case.
29732 2003-12-04  Dick Porter  <dick@ximian.com>
29734         * icall.c:
29735         * locales.c: construct_compareinfo is now in CompareInfo, not
29736         CultureInfo.
29738 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29740         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29741         image->files array.
29743         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29744         table as well.
29746         * assembly.c (mono_assembly_load_references): Only load references
29747         once.
29749         * class.c (mono_class_from_name): Avoid linear search of the 
29750         EXPORTEDTYPE table.
29752         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29754 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29756         * image.h (MonoImage): Add 'field_cache' field.
29758         * loader.c (mono_field_from_token): Cache field lookups.
29759         
29760         * reflection.c (mono_module_get_object): Fix name property.
29762         * icall.c (ves_icall_get_enum_info): Update after changes to 
29763         mono_metadata_get_constant_index ().
29765         * icall.c: Get rid of get_type_info icall, use a separate icall for
29766         each type property to avoid needless memory allocations. Fixes #51514.
29768         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29769         to avoid needless binary searches.
29771         * class.c (class_compute_field_layout): Move the initialization of
29772         field->def_value to mono_class_vtable ().
29774         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29775         non-corlib types.
29777         * object.c (mono_object_allocate): Make it inline.
29779         * object.c (mono_object_allocate_spec): Make it inline.
29780         
29781 2003-12-02  Dick Porter  <dick@ximian.com>
29783         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29784         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29786 2003-12-01  Dick Porter  <dick@ximian.com>
29788         * threads.c: Fix signature and call in CreateMutex and
29789         CreateEvent.
29791 2003-12-01  Dick Porter  <dick@ximian.com>
29793         * icall.c: 
29794         * locales.c: Implement string compares and searching
29796         * object.h: Add extra Thread field
29798 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29800         * reflection.c (fixup_method): Add support for MonoCMethod.
29802 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29804         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29806         * reflection.c (assembly_name_to_aname): Allow extra characters in
29807         assembly names. Fixes #51468.
29809 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29811         * exception.c (mono_exception_from_name_domain): New helper function.
29813         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29814         exception object in the correct domain.
29816         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29817         formatting + make a copy a the input data.
29819         * loader.c (mono_get_method_from_token): Methods which contain
29820         native code do not have entries in the ImplMap.
29822         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29823         Thanks to Gonzalo for spotting this.
29824         
29825         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29826         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29828         * assembly.h (mono_assembly_load_from): Split the second part of 
29829         assembly loading into a new public function.
29831         * exception.h (mono_get_exception_bad_image_format): New function.
29833 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29835         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29836         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29837         
29838         * icall.c: Add new icall for creating dynamic methods.
29840         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29842         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29844         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29845         create a dynamic method.
29847         * reflection.c (resolve_object): New helper function.
29849         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29850         which manipulate it so they can also work on dynamic methods.
29852         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29853         creating the MonoReflectionMethodAux structure if it is not needed.
29854         
29855         * reflection.h verify.c: Update after changes to object layout.
29857         * reflection.c (method_builder_encode_signature): Fix compilation on
29858         gcc 2.95.x.
29860 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29862         * appdomain.h: Added support for context static fields. Added static_data
29863           field to MonoAppContext and renamed thread_static_fields to a more
29864           generic special_static_fields in MonoAppDomain, since it can now contain
29865           context static fields.
29866         * domain.c: Updated hashtable name.
29867         * object.c: Replaced field_is_thread_static() for a more generic
29868           field_is_special_static() which also checks for context static attribute.
29869           In mono_class_vtable(), added support for static context fields.
29870         * threads.c: Changed methods that manage thread static fields to more
29871           generic methods so they can be reused both for thread and context static
29872           data.
29873         * threads.h: Declared some new methods.
29875 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29877         * reflection.h: Update after changes to the managed types.
29879         * reflection.c (encode_custom_modifiers): New helper function.
29881         * reflection.c (method_encode_signature): Emit custom modifiers.
29883         * reflection.c (field_encode_signature): Emit custom modifiers.
29885 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29887         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29889         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29890         implementation.
29892         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29893         icall.
29895         * object.c (mono_field_get_value_object): New function.
29897         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29898         specific.
29900 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29902         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29903         return a preallocated out-of-memory exception instance.
29905         * object.c (out_of_memory): Use the new function.
29907         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29908         flag is before the custom modifiers. Fixes #49802.
29910 2003-11-16  Martin Baulig  <martin@ximian.com>
29912         * class.c (mono_class_is_open_constructed_type): Implemented the
29913         MONO_TYPE_GENERICINST case.
29915 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29917         * assembly.c (mono_assembly_fill_assembly_name): New function to
29918         fill out the MonoAssemblyName structure.
29919         (mono_assembly_open): Use the new function.
29921         * icall.c (fill_reflection_assembly_name): New helper function.
29923         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29924         new function.
29926         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29928 2003-11-15  Martin Baulig  <martin@ximian.com>
29930         * class.c (mono_class_is_open_constructed_type): New public
29931         function; checks whether a type is an open constructed type,
29932         ie. whether it still contains type parameters.
29933         (mono_class_inflate_generic_type): If we're a type parameter and
29934         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29935         type.
29937         * class.h (MonoGenericInst): Added `guint32 is_open'.
29939         * loader.c (method_from_methodspec): Check whether we're an open
29940         or closed constructed type and set `ginst->is_open'.
29942         * reflection.c (mono_reflection_bind_generic_parameters): Check
29943         whether we're an open or closed constructed type and set
29944         `ginst->is_open'.
29945         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29946         from open constructed types.
29948 2003-11-15  Martin Baulig  <martin@ximian.com>
29950         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29951         a generic instance (instead of a generic type declaration) with
29952         unbound generic parameters, bind them to our actual types.
29954 2003-11-14  Martin Baulig  <martin@ximian.com>
29956         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29958         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29959         an interface type, populate `res->interfaces' with instantiated
29960         versions of all the interfaces we inherit.
29962 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29964         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29965         when MONO_PATH is set but doesn't contain the install dir.
29967 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29969         * icall.c:
29970         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29971         it's also implemented in base classes. Fixes bug #50927.
29973 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29975         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29976         if this method is called from a finalizer. Fixes #50913.
29978 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29980         * threads.c: Implement VolatileRead/VolatileWrite
29982         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29984 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29986         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29987         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29988         2.95.3.
29990         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29991         from Peter Ross (pro@missioncriticalit.com).
29992         
29993 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29995         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29997 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29999         * assembly.c (mono_assembly_load_references): Disable check because it
30000         triggers on older corlibs which lots of people have.
30002 2003-11-12  Jackson Harper  <jackson@ximian.com>
30004         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30005         load corlib.dll if mscorlib.dll is not found.
30006         * assembly.h: Remove corlib name define.
30007         * class.c:
30008         * domain.c:
30009         * image.c: Change corlib name to mscorlib.
30010         
30011 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30013         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30015 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30017         * appdomain.h: Added loader_optimization here to sync with the C#
30018         code, and add disallow_binding_redirects field.
30020 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30022         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30024         * reflection.c (mono_image_build_metadata): Fix crash on modules
30025         with no types.
30027         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30029         * icall.c (ves_icall_get_method_info): Return callingConvention as
30030         well.
30032         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30033         namespaces from the EXPORTEDTYPE table as well.
30035         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30036         from all modules inside the assembly.
30037         
30038 2003-11-11  Martin Baulig  <martin@ximian.com>
30040         * reflection.c (mono_reflection_bind_generic_parameters): Make
30041         this work for interfaces.
30043 2003-11-11  Martin Baulig  <martin@ximian.com>
30045         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30047 2003-11-11  Martin Baulig  <martin@ximian.com>
30049         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30050         "MonoInflatedMethod" and "MonoInflatedCtor".
30052 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30054         * reflection.c (resolution_scope_from_image): Use the assembly table
30055         from the manifest module, since other modules don't have it.
30057         * debug-helpers.c (mono_type_full_name): New helper function.
30059         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30061         * image.c (mono_image_load_file_for_image): New public function which
30062         is a replacement for the load_file_for_image in class.c.
30064         * assembly.c (mono_assembly_load_module): A wrapper for the function
30065         above which does assembly association and reference loading too.
30067         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30069 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30071         * appdomain.c: not all of the attributes for the full assembly name
30072         are required and the order doesn't matter. Fixes bug #50787.
30074 2003-11-10  Dick Porter  <dick@ximian.com>
30076         * locales.c: Use platform-endian UTF16
30078 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30080         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30081         
30082 2003-11-10  Martin Baulig  <martin@ximian.com>
30084         * metadata.c
30085         (mono_metadata_load_generic_params): Make this actually work.
30087         * reflection.c (mono_reflection_bind_generic_parameters): If our
30088         parent is a generic instance, pass all the `types' to it, no
30089         matter whether it has the same number of type parameters or not.
30091 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30093         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30095         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30096         assignment code to this function so it gets called recursively for all
30097         modules.
30099         * image.c (load_modules): Remove the assembly assignment since it is
30100         now done by mono_assembly_load_references.
30101         
30102         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30103         Add 'module' argument.
30104         (mono_module_get_types): New helper function.
30105         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30107 2003-11-08  Martin Baulig  <martin@ximian.com>
30109         * class.c (mono_class_inflate_generic_method): Interface method
30110         don't have a header.
30112         * reflection.c (mono_image_get_methodspec_token): Take an
30113         additional `MonoGenericInst *' argument instead of reading it from
30114         the header; this is necessary to support interfaces.
30115         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30116         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30117         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30118         argument.
30120         * reflection.h (MonoReflectionInflatedMethod): Added
30121         `MonoGenericInst *ginst'.
30123 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30125         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30127 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30129         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30131 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30133         * reflection.c 
30134         (reflection_methodbuilder_from_method_builder):
30135         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30136         initialize a ReflectionMethodBuilder structure.
30137         (mono_image_get_methodbuilder_token):
30138         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30139         tokens which point to types in another module inside the same assembly.
30141         * reflection.c: Use the new helper functions.
30142         
30143         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30145         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30146         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30148         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30149         neccesary.
30151         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30152         current module. Emit the manifest only for the main module.
30154         * reflection.c (mono_image_create_token): Add assertion when a 
30155         memberref needs to be created.
30157         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30159         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30160         larger buffer for the custom attribute blob. Fixes #50637.
30161         
30162 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30164         * threadpool.c: notify listener on async processing handles after
30165         invoking the async callback. Thanks to Zoltan.
30167 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30169         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30170         avoid code duplication.
30172         * reflection.h (MonoDynamicImage): New type which is currently unused,
30173         but will be used through the ref.emit code in place of 
30174         MonoDynamicAssembly.
30176         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30177         object layout.
30179         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30180         a MonoDynamicImage instead of just a MonoImage.
30181         
30182         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30183         icalls to ModuleBuilder but keep their semantics, so they will work
30184         with moduleb->assemblyb. This will change later.
30185         
30186 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30188         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30189         object layout.
30191         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30192         main module, since it is now done by the managed code.
30194 2003-11-03  Martin Baulig  <martin@ximian.com>
30196         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30197         `ginst->klass' here.
30198         (method_encode_methodspec): Don't use the `ginst->generic_method's
30199         klass if it's a generic instance, use `ginst->klass' in this case.
30201 2003-11-03  Martin Baulig  <martin@ximian.com>
30203         * reflection.c (mono_image_get_generic_method_param_info):
30204         Removed, use mono_image_get_generic_param_info() instead.
30205         (mono_image_get_type_info): Write the GenericParam table before
30206         the Method table.  This is neccessary because in the GenericParam
30207         table, type parameters of the class (ie. '!0' etc.) must come
30208         before the ones from its generic methods (ie. '!!0' etc).
30210 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30212         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30214 2003-11-02  Martin Baulig  <martin@ximian.com>
30216         * reflection.c (create_generic_typespec): Take a
30217         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30218         the generic parameters from it.
30220 2003-11-02  Martin Baulig  <martin@ximian.com>
30222         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30223         instead of a `MonoClassField *' since we just need the type.
30224         (create_generic_typespec): New static function.  Creates a
30225         TypeSpec token for a generic type declaration.
30226         (mono_image_get_generic_field_token): New static function.
30227         (mono_image_create_token): If we're a FieldBuilder in a generic
30228         type declaration, call mono_image_get_generic_field_token() to get
30229         the token.
30231 2003-11-02  Martin Baulig  <martin@ximian.com>
30233         * reflection.h
30234         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30235         `MonoReflectionGenericInst *declaring_type' and
30236         `MonoReflectionGenericInst *reflected_type' fields.
30238         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30239         `MonoReflectionGenericInst *declaring_type' and a
30240         `MonoReflectionGenericInst *reflected_type' argument instead of a
30241         single `MonoReflectionGenericInst *type' one.  Set
30242         `res->declaring_type' and `res->reflected_type' from them.
30243         (mono_reflection_inflate_field): Likewise.      
30245 2003-11-02  Martin Baulig  <martin@ximian.com>
30247         * class.c (mono_class_setup_vtable): Don't store generic methods
30248         in the vtable.  
30250 2003-11-02  Martin Baulig  <martin@ximian.com>
30252         * reflection.h (MonoReflectionGenericInst): Added
30253         `MonoReflectionType *declaring_type'.
30255         * reflection.c (mono_reflection_bind_generic_parameters): Use
30256         `if (tb->parent)' instead of `klass->parent'.
30258 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30260         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30261         with an empty ASSEMBLY table.
30263         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30264         variable in the inner and outer loops.
30266 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30268         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30269         argument.
30271         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30272         
30273         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30274         icalls. Instead, do everything in managed code. This is needed since
30275         it is hard to restore the original domain etc. in unmanaged code in the
30276         presence of undeniable exceptions.
30278         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30279         New icalls to push and pop appdomain refs.
30281 2003-10-31  Martin Baulig  <martin@ximian.com>
30283         * class.c (inflate_generic_type): Renamed to
30284         mono_class_inflate_generic_type() and made it public.
30286         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30287         New interncall.
30289         * loader.c (mono_field_from_memberref): Also set the retklass for
30290         typespecs.
30292         * fielder.c (mono_image_get_inflated_field_token): New static
30293         method; creates a metadata token for an inflated field.
30294         (mono_image_create_token, fixup_method): Added support for
30295         "MonoInflatedField".
30296         (fieldbuilder_to_mono_class_field): New static function.
30297         (mono_reflection_inflate_field): New public function.
30299         * reflection.h
30300         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30301         (MonoReflectionInflatedField): New typedef.     
30303 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30305         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30306         for Solaris and other platforms without s6_addr16
30308 2003-10-30  Martin Baulig  <martin@ximian.com>
30310         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30311         argument instead of two.
30312         (mono_class_inflate_generic_signature): Likewise.
30313         (inflate_generic_header): Likewise.
30314         (mono_class_inflate_generic_method): Likewise.  In addition, if
30315         `ginst->klass' is set, it becomes the new `method->klass'.
30317         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30318         field.
30320         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30321         first byte. [FIXME]
30322         (method_encode_methodspec): If we have generic parameters, create
30323         a MethodSpec instead of a MethodRef.
30324         (fixup_method): Added support for "MonoInflatedMethod" and
30325         "MonoInflatedCtor".
30326         (mono_image_create_token): Added support for "MonoInflatedMethod"
30327         and "MonoInflatedCtor".
30328         (inflated_method_get_object): New static function; returns a
30329         managed "System.Reflection.MonoInflatedMethod" object.
30330         (mono_reflection_bind_generic_method_parameters): Return a
30331         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30332         (mono_reflection_inflate_method_or_ctor): Likewise.
30333         (mono_image_get_generic_method_param_info): Initialize unused
30334         fields to zero.
30335         (mono_image_get_generic_param_info): Likewise.
30337         * reflection.h (MonoReflectionInflatedMethod): New public
30338         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30339         "S.R.MonoInflatedCtor" classes.
30341         * loader.c (method_from_memberref): If we're a TypeSpec and it
30342         resolves to a generic instance, inflate the method.
30344 2003-10-28  Dick Porter  <dick@ximian.com>
30346         * object.c (mono_runtime_run_main): Convert command-line arguments
30347         into utf8, falling back to the user's locale encoding to do so.
30349 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30351         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30352         at this time.
30354         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30356         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30357         up icalls at method definition time. Partially fixes #33569.
30359 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30361         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30362         marshalling of arrays. Fixes #50116.
30364         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30366         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30367         points to a vtable in the dying appdomain.
30369         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30370         listeners into unmanaged code inside the lock.
30372         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30373         domains and add some comments.
30375 2003-10-25  Martin Baulig  <martin@ximian.com>
30377         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30379         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30381         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30382         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30383         currently parsing.  Create the generic class and store it in
30384         `generic_inst->klass' before parsing the type arguments.  This is
30385         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30386         for an example.
30387         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30388         to support recursive typespec entries.
30390         * class.c (mono_class_setup_parent): If our parent is a generic
30391         instance, we may get called before it has its name set.
30392         (mono_class_from_generic): Splitted into
30393         mono_class_create_from_generic() and mono_class_initialize_generic().
30395 2003-10-25  Martin Baulig  <martin@ximian.com>
30397         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30398         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30399         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30400         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30402         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30403         (create_typespec): Likewise.
30404         (mono_reflection_bind_generic_parameters): Return a
30405         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30406         (mono_reflection_inflate_method_or_ctor): New public function.
30408         * reflection.h (MonoReflectionGenericInst): New typedef.        
30410 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30412         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30413         inside the domain lock. Fixes #49993.
30414         
30415         * object.c (mono_class_vtable): When typed allocation is used, 
30416         allocate vtables in the GC heap instead of in the mempool, since the
30417         vtables contain GC descriptors which are used by the collector even
30418         after the domain owning the mempool is unloaded.
30420         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30422         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30423         reflect what it does. Also invalidate mempools instead of freeing
30424         them if a define is set.
30426         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30427         of the appdomain.
30428         
30429         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30430         hold the finalizable objects in this domain.
30432         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30433         appdomain.
30435         * appdomain.c (mono_domain_set): New function to set the current
30436         appdomain, but only if it is not being unloaded.
30438         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30439         appdomain which is being unloaded.
30440         
30441         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30442         unloading of the root appdomain.
30444         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30445         icall to execute a method in another appdomain. Intended as a 
30446         replacement for InternalSetDomain, which can confuse the code 
30447         generation in the JIT.
30449         * appdomain.c (mono_domain_is_unloading): New function to determine
30450         whenever an appdomain is unloading.
30452         * appdomain.c (mono_domain_unload): New function to correctly unload
30453         an appdomain.
30455         * assembly.c (mono_assembly_load_references): Check that an assembly
30456         does not references itself.
30458         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30459         domain manually, it asks the finalizer thread to do it, then waits for
30460         the result. Also added a timeout.
30462         * icall.c: Register the new icalls.
30464         * threads.h threads.c: Export the mono_gc_stop_world and 
30465         mono_gc_start_world functions.
30466         
30467         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30468         function to fill out the mempool with 0x2a.
30470 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30472         * reflection.h (MonoReflectionMethodAux): New structure to store
30473         information which is rarely used, thus is not in the MonoMethod
30474         structure.
30476         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30477         store the aux info.
30479         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30480         and marshalling info into the aux structure.
30482         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30483         from the aux structure.
30485         * loader.c (mono_method_get_param_names): Retrieve the param names from
30486         the aux structure.
30487         
30488 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30490         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30491         warning.
30493 2003-10-21  Dick Porter  <dick@ximian.com>
30495         * socket-io.c
30496         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30497         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30499 2003-10-21  Martin Baulig  <martin@ximian.com>
30501         * reflection.c (mono_reflection_bind_generic_parameters):
30502         `klass->parent' is NULL for interfaces.
30504 2003-10-21  Martin Baulig  <martin@ximian.com>
30506         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30508 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30510         * exception.c (mono_exception_from_name_msg): New helper function for
30511         creating exceptions and initializing their message field.
30513         * exception.c: Simplify functions using the new helper.
30515         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30516         New function.
30518         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30519         mono_raise_exception, since otherwise gcc doesn't generate the function
30520         epilog for raise_exception, confusing the stack unwinding in the JIT.
30521         Fixes #45043.
30523         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30524         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30525         Fixes #49499.
30527 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30529         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30530         utf8.
30532 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30534         * icall.c: Removed GetUninitializedObject method because
30535           AllocateUninitializedClassInstance does the same.
30537 2003-10-18  Martin Baulig  <martin@ximian.com>
30539         * class.c (inflate_generic_signature): Renamed to
30540         mono_class_inflate_generic_signature() and made it public.
30541         (my_mono_class_from_generic_parameter): New static function; if we
30542         don't already have the generic parameter's MonoClass, create a
30543         very simple one which is just used internally in the runtime and
30544         not passed back to managed code.
30546         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30548         * metadata.h (MonoMethodSignature): Moved the
30549         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30550         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30552         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30553         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30554         interncall on the MonoMethod class, not on MethodInfo.
30555         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30556         calling mono_reflection_bind_generic_method_parameters() directly.
30558         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30559         return the already computed `method->signature'.
30560         (method_from_methodspec): New static function to load a method
30561         from a MethodSpec entry.
30562         (mono_get_method_from_token): Call the new method_from_methodspec()
30563         for MethodSpec tokens.  
30564         (mono_get_method_from_token): If we're a generic method, load the
30565         type parameters.
30567         * reflection.c (mono_image_get_memberref_token): Allow
30568         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30569         table.
30570         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30571         (mono_image_create_token): First check whether it's a generic
30572         method (so we'd need to create a MethodSpec), then do the other
30573         two alternatives.
30574         (mono_reflection_bind_generic_method_parameters): Return a
30575         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30576         called directly from the interncall.
30578 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30580         * reflection.c (load_public_key): Move loading of the public key
30581         into managed code.
30583         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30585         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30586         fields.
30588         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30589         culture, hash_alg and public_key. Fixes #49555.
30591 2003-10-17  Martin Baulig  <martin@ximian.com>
30593         * class.h (MonoGenericInst): Moved this declaration here and added
30594         `MonoMethod *generic_method'.
30596         * icall.c
30597         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30598         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30600         * metadata.c (mono_metadata_type_equal): Two types of
30601         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30602         index; ie. don't compare the address of the `MonoGenericParam'
30603         structure.
30604         (mono_metadata_load_generic_params): Removed the `MonoMethod
30605         *method' argument.
30607         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30608         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30610         * reflection.c (method_encode_signature): Encode the number of
30611         generic parameters.
30612         (encode_generic_method_sig): New static function.
30613         (method_encode_methodspec): New static function; creates an entry
30614         in the MethodSpec table for a generic method.
30615         (mono_image_get_methodspec_token): New static function.
30616         (mono_image_create_token): Call mono_image_get_methodspec_token()
30617         for generic methods.
30618         (mono_reflection_bind_generic_method_parameters): New public
30619         function.  Instantiates a generic method.
30621 2003-10-16  Martin Baulig  <martin@ximian.com>
30623         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30624         *gen_params' here from MonoMethodHeader.
30626         * metadata.c (mono_metadata_parse_method_signature): If we have
30627         generic parameters, initialize `method->gen_params' and then set
30628         the correct `type->data.generic_param' in all the parameters.
30630 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30632         * threads.c (mono_threads_get_default_stacksize): New function to 
30633         return the default stacksize.
30635         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30636         termination of the finalizer thread, since the previous method had
30637         race conditions. Fixes #49628.
30639         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30640         as for the other managed threads.
30642 2003-10-16  Martin Baulig  <martin@ximian.com>
30644         * class.c (inflate_generic_signature): Copy `generic_param_count'
30645         and `gen_params'.
30647         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30648         New interncall.
30650         * metadata.c (mono_metadata_parse_method_signature): Actually set
30651         the `method->generic_param_count' here.
30652         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30654 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30656         * object.h: Add a new field to TypedRef to simplify the implementation
30657         of the REFANY opcodes in the JIT.
30659         * icall.c: Make use of the new field.
30661         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30662         dynamically.
30664 2003-10-15  Martin Baulig  <martin@ximian.com>
30666         * class.c (mono_class_from_gen_param): Renamed to
30667         mono_class_from_generic_parameter() and moved most of the
30668         functionality from mono_reflection_define_generic_parameter()
30669         here; ie. we create a "real" class here.
30670         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30671         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30672         previously been called.
30674         * class.h (MonoGenericParam): Moved the declaration of this struct
30675         here from metadata.h and added `MonoMethod *method'.
30677         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30678         interncall.
30680         * loader.c (mono_get_method_from_token): If we have any generic
30681         parameters, call mono_metadata_load_generic_params() to read them
30682         from the MONO_TABLE_GENERICPAR.
30684         * metadata.c (mono_metadata_load_generic_params): Added
30685         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30687         * metadata.h (MonoMethodSignature): Replaced
30688         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30689         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30691         * reflection.c (mono_reflection_define_generic_parameter): Moved
30692         most of the functionality into the new
30693         mono_class_from_generic_parameter(); set the `method' field if
30694         we're a method parameter.       
30696 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30698         * marshal.c (emit_struct_conv): if native size is 0
30699         emit no code.
30701 2003-10-14  Martin Baulig  <martin@ximian.com>
30703         * icall.c: The generics API has changed in the spec since it was
30704         added to System.Type; these modifications make it match the spec
30705         again.
30706         (ves_icall_Type_GetGenericParameters): Renamed to
30707         `ves_icall_Type_GetGenericArguments'.
30708         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30709         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30710         `ves_icall_MonoType_get_HasGenericArguments'.
30711         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30712         `ves_icall_MonoType_get_IsGenericParameter'.
30713         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30714         this is no interncall anymore.
30715         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30716         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30718 2003-10-14  Martin Baulig  <martin@ximian.com>
30720         * reflection.c (mono_reflection_bind_generic_parameters): Also
30721         inflate generic methods if we're reading the class from IL.
30723 2003-10-13  Martin Baulig  <martin@ximian.com>
30725         * reflection.c (mono_reflection_define_generic_parameter): This
30726         method isn't called directly from the icall anymore; take a
30727         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30728         method generic parameters.
30729         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30730         (method_builder_encode_signature): Encode generic parameters.
30731         (mono_image_get_method_info): Write generic params to the
30732         MONO_TABLE_GENERICPARAM table.
30734         * reflection.h (MonoReflectionMethodBuilder): Added
30735         `MonoArray *generic_params'.
30737         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30739         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30740         wrapper for mono_reflection_define_generic_parameter().
30741         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30743 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30745         * marshal.h: Add missing function to fix build.
30747         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30748         the SetLastError pinvoke attribute.
30750         * marshal.c (mono_marshal_set_last_error): New helper function called
30751         by the generated code.
30752         
30753         * marshal.c (mono_mb_emit_branch): New helper function.
30755         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30757         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30758         classes as parameters and return values of delegates. Fixes #29256. 
30760 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30762         * locales.c: use gint32 in non HAVE_ICU case
30764 2003-10-11  Martin Baulig  <martin@ximian.com>
30766         * mono-debug.c (mono_debug_add_method): Added a workaround for
30767         bug #48591.
30769 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30771         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30772         delegates passed to native code must use the STDCALL calling 
30773         convention. Fixes #35987.
30775 2003-10-10  Martin Baulig  <martin@ximian.com>
30777         * class.c (inflate_generic_type): If we're inflating for a generic
30778         type instance (and not for a generic method), return
30779         MONO_TYPE_MVAR unchanged.
30781 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30783         * string-icalls.c: Join ignores null strings in the source array.
30784         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30785         * threads.c: GetAvailableTheads is slightly more accurate.
30787 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30789         * threads.h threads.c : add mono_threads_set_default_stacksize
30790         and pass default to CreateThread calls.
30792 2003-10-09  Dick Porter  <dick@ximian.com>
30794         * icall.c:
30795         * locales.h:
30796         * locales.c: Internal calls for constructing CultureInfo and
30797         related objects from libicu (if its available.)
30799 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30801         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30803 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30805         * threadpool.c: added an argument to async_invoke_thread that is the
30806         item to process, pass the MonoAsyncResult to the thread start function
30807         when creating a new thread. This way we don't need to acquire any lock
30808         when we're creating a new thread. Readded a semaphore for faster
30809         response times (instead of that Sleep i added).
30811 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30813         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30814         get daylight change dates better on Windows, fix handling
30815         of platforms without tm_gmtoff.
30817 2003-10-06  Martin Baulig  <martin@ximian.com>
30819         * class.c (inflate_generic_method): Renamed to
30820         mono_class_inflate_generic_method() and made public.
30821         (mono_class_init): Don't inflate the generic methods here.
30822         (mono_class_from_generic): Added `gboolean inflate_methods'
30823         argument.  Inflate the methods here.
30825         * loader.c (mono_method_get_param_names): Ignore instances of
30826         generic types for the moment.
30828         * reflection.c (fixup_method): Added support for inflated methods.
30829         (mono_image_create_token): Use mono_image_get_methodref_token()
30830         for inflated methods.
30831         (mono_custom_attrs_from_param): Ignore instances of generic types
30832         for the moment.
30833         (mono_reflection_bind_generic_parameters): New public function.
30834         Moved all the functionality from
30835         ves_icall_Type_BindGenericParameters() here and added support for
30836         dynamic types.
30837         (mono_reflection_define_generic_parameter): Initialize
30838         `klass->methods' here.
30840         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30841         functionality into mono_reflection_define_generic_parameter().
30842         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30843         TypeBuilder, return that TypeBuilder.
30845 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30847         * appdomain.c: removed mono_delegate_semaphore.
30849         * threadpool.c:
30850         (mono_thread_pool_add): moved hash table creation inside and the thread 
30851         creation outside of the critical region.
30852         (mono_thread_pool_finish): removed obsolete code.
30853         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30854         continue or exit the thread depending on the queue.
30856 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30858         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30859         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30860         handle more bool marshalling options
30862 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30864         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30865         arrays of structs. Also add a more descriptive error message when
30866         a structure member is marshalled as LPArray.
30868 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30870         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30871         marshalling arrays of complex types. Fixes #29098. Also remove an
30872         usused and incomplete function.
30874 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30876         * gc.c: report heap_size - free_bytes as total memory allocated
30877         (bug#49362).
30879 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30881         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30882         fix timezone handling problems on Windows.
30883         
30884         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30885         asserts when the year is outside the range handled by ms the functions.
30887         * class.c (setup_interface_offsets): If the class is an interface,
30888         fill out its interface_offsets slot.
30890 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30892         * threadpool.c: mark threadpool threads as background.
30894 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30896         * decimal.c - define DECINLINE to nothing if not using GCC
30898 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30900         * assembly.c: More refcount fixes.
30902 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30904         * string-icalls.c: if we're not trimming, return the same string.
30905         When not splitting, don't create a new string.
30907 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30909         * image.c:
30910         (mono_image_open): increment the ref_count inside the critical section.
30912 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30914         * image.c (mono_image_open): Fix reference counting bug.
30916 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30918         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30919         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30920         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30921         mono_lookup_pinvoke_call throws.        
30923 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30925         * reflection.c (mono_reflection_parse_type): Fix #49114.
30927         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30928         temporary workaround for cygwin header problem.
30930         * object.c (mono_object_isinst): Synchronize this with the code
30931         generated by the JIT for casts.
30933 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30935         * reflection.c (encode_type): Fix #38332.
30937 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30939         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30940         the original method from the wrapper method.
30942 2003-09-25  Martin Baulig  <martin@ximian.com>
30944         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30945         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30946         (ves_icall_Type_get_IsGenericInstance): New interncall.
30948 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30950         * object.c: fix cast warning in big endian code.
30952 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30954         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30955         
30956 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30958         * assembly.c: don't call check_env from mono_assembly_load. It's
30959         already done once in mono_assemblies_init and may cause headaches when
30960         multiple threads are loading assemblies.
30962 2003-09-19  Martin Baulig  <martin@ximian.com>
30964         * reflection.c (mono_reflection_define_generic_parameter): Don't
30965         allocate `klass->methods', set `klass->flags' to
30966         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30968 2003-09-18  Martin Baulig  <martin@ximian.com>
30970         * class.c (mono_class_init): Don't create `class->methods' if it's
30971         already initialized.
30973         * metadata.c (mono_metadata_load_generic_params): Make this
30974         actually work.
30976         * reflection.c (mono_reflection_define_generic_parameter): Set
30977         parent class and interfaces from the constraints.
30979         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30980         to keep this struct in sync with the declaration in TypeBuilder.cs.
30982 2003-09-17  Martin Baulig  <martin@ximian.com>
30984         * metadata.h (MonoType): Replaced the data's `int type_param'
30985         field with `MonoGenericParam *generic_param'.
30986         (MonoGenericParam): Added `MonoClass *klass'.
30988         * class.c (mono_class_from_gen_param): Removed the
30989         `MonoImage *image' and `int type_num' arguments.
30991         * metadata.c (mono_metadata_parse_generic_param): New static
30992         method; creates a MonoGenericParam which just contains the index.
30993         (do_mono_metadata_parse_type): Call
30994         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30995         MONO_TYPE_MVAR.
30997         * reflection.c (mono_image_typedef_or_ref): Generic type
30998         parameters may be in the same assembly, but never use a typedef
30999         for them.
31000         (mono_reflection_define_generic_parameter): We're now creating a
31001         "real" class for the type parameter; it's now safe to call
31002         mono_class_from_mono_type() on the class'es type, it'll do the
31003         right thing.
31005 2003-09-16  Martin Baulig  <martin@ximian.com>
31007         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31008         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31009         the `symfile' data structure must be fully initialized before it
31010         gets added to the table.
31012 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31014         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31016         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31017         class init trampolines.
31019 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31021         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31022         to the built-in profiler to turn off time and allocation profiling
31023         respectively.
31025 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31027         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31028         g_direct_equal.
31030         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31031         in human readable form.
31033 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31035         * reflection.c icall.c: Fixed warnings.
31037         * image.c (load_class_names): Use a temporary hash table to hold the
31038         namespaces in order to avoid doing many string comparisons.
31040         * image.h: Fix typo.
31042         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31043         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31044         since the NULL case is short-circuited inside g_hash_table_lookup, 
31045         leading to better performance.  
31047         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31048         obtain the first custom attribute for a given index. Depends on the
31049         CustomAttribute table being sorted by the parent field.
31051         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31052         for better performance.
31054 2003-09-07  Martin Baulig  <martin@ximian.com>
31056         * class.c (mono_class_init): If we're a generic instance, inflate
31057         all our methods instead of loading them from the image.
31058         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31060 2003-09-07  Martin Baulig  <martin@ximian.com>
31062         * mono-debug-debugger.c: Added support for constructors.
31064 2003-09-06  Martin Baulig  <martin@ximian.com>
31066         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31067         New interncall.
31069         * reflection.c (mono_reflection_setup_generic_class): Call
31070         ensure_runtime_vtable() to create the vtable.
31072 2003-09-05  Martin Baulig  <martin@ximian.com>
31074         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31075         MONO_TYPE_MVAR.
31077 2003-09-04  Martin Baulig  <martin@ximian.com>
31079         * reflection.c (mono_reflection_define_generic_parameter): Generic
31080         parameters start with zero.
31082 2003-09-04  Martin Baulig  <martin@ximian.com>
31084         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31086         * reflection.h (MonoReflectionGenericParam): New typedef.
31087         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31088         the generic parameters from the managed TypeBuilder.
31090         * reflection.c (mono_reflection_define_generic_parameter): New function.
31091         (mono_reflection_create_runtime_class): Encode generic parameters.
31092         (mono_reflection_setup_generic_class): New function; this is
31093         called after adding adding all generic params to the TypeBuilder.
31094         (encode_type): Added MONO_TYPE_VAR.
31096 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31098         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31099         here from the JIT.
31101         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31102         load hook.
31104 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31106         * reflection.h reflection.c class.h class.c: Delete duplicate 
31107         definition of mono_type_get_name () from reflection.c and export the
31108         one in class.c.
31110         * class.c: Class loading fixes from Bernie Solomon 
31111         (bernard@ugsolutions.com).
31113         * reflection.c: Endianness fixes from Bernie Solomon 
31114         (bernard@ugsolutions.com).
31115         
31116 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31118         * assembly.h assembly.c: Define a file format version for AOT
31119         libraries.
31120         
31121         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31123         * appdomain.h (MonoJitInfo): New field to determine whenever the
31124         code is domain neutral.
31125         
31126 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31128         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31130 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31132         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31133         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31134         Avoid caching the result since strings must be domain specific. Fixes
31135         #48050.
31137 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31139         * marshal.c (mono_marshal_init): Make this callable multiple times
31140         since it is hard to find a correct place to call it.
31142         * object.c (mono_runtime_class_init): Execute static constructors in
31143         the correct appdomain.
31145         * image.c (build_guid_table): Handle the case when multiple images have
31146         the same GUID.
31148 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31150         * icall.c: added a couple of icalls for System.Web.
31152 2003-08-28  Martin Baulig  <martin@ximian.com>
31154         * icall.c (ves_icall_Type_BindGenericParameters): Use
31155         `klass->generic_inst' instead of `&klass->byval_arg' in the
31156         mono_type_get_object() call.  The returned type must be
31157         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31159 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31161         * NOTES: New file.
31163         * object.c (mono_class_proxy_vtable): Make it thread safe.
31165         * pedump.c: Fix warning.
31167         * object.c appdomain.h: Get rid of metadata_section. 
31168         It is no longer needed and it was causing deadlocks with domain->lock.
31170         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31172 2003-08-26  Martin Baulig  <martin@ximian.com>
31174         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31176 2003-08-26  Martin Baulig  <martin@ximian.com>
31178         * pedump.c (main): Call mono_metadata_init(),
31179         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31180         and mono_loader_init().
31182 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31184         * loader.h: Add missing include to fix build.
31186         * image.h: mono_image_load_references is no more.
31188         * assembly.c: Reworked assembly loading to make it really thread safe.
31189         After these changes, the assembly returned by mono_assembly_open is
31190         fully initialized, i.e. all its references assemblies are loaded.
31192         * assembly.c (mono_image_load_references): Renamed to 
31193         mono_assembly_load_references, and made private, since clients no
31194         longer need to call it.
31196         * class.c: Removed calls to mono_assembly_load_references, since it was
31197         a source of deadlocks.
31199         * loader.h loader.c class.h class.c: Protect data structures using a 
31200         new lock, the loader lock.
31202         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31203         GPtrArrays only when needed.
31205         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31206         into empty structures by mcs. Fixes pinvoke7.cs.
31207         
31208         * domain.c (mono_init): Call a new initialization function.
31210         * appdomain.c (mono_runtime_init): Call the new initializer function
31211         of the marshal module.
31213         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31214         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31216         * marshal.h marshal.c: Added locks around the wrapper caches to make
31217         this module thread safe.
31219         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31220         this argument. Fixes pinvoke1.exe.
31222 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31224         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31225         enumeration of values. Removed fields to store remote call output values in
31226         MonoAsyncResult. Not needed any more.
31227         * object.c: Initialize call_type and async_result fields in mono_message_init.
31228         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31229         dispatching the message.
31230         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31231         async call to finish. To do it use a message with EndInvoke call type.
31233 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31235         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31236         determines whenever a method has marshalling info.
31238 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31240         * assembly.c: fix the build on windows.
31242 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31244         * object.cs: Fixed bug #47785.
31246 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31248         * string-icalls.c (StringReplace): If their are no occurances of
31249         the old string found return a reference to the supplied
31250         string. This saves some memory and matches MS behavoir.
31251         
31252 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31254         * socket-io.c: fixed compilation for systems that define AF_INET6
31255         and don't define SOL_IP/SOL_IPV6.
31257 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31259         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31260         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31262         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31264         * domain.c: Make this module thread safe.
31266         * domain.c (mono_init): Call new initialization function.
31268         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31269         reference types too. Fixes #38812.
31271         * image.c (mono_image_init): Fixed warnings.
31273         * class.c (mono_class_from_typeref): Handle assembly load failure
31274         correctly.
31276         * appdomain.c (add_assemblies_to_domain): Handle the case when
31277         the references of an assembly are not yet loaded.
31279         * metadata.c image.c assembly.c: Moved initialization of global
31280         variables to a separate function called at startup since lazy 
31281         initialization of these variables is not thread safe.
31282         
31283         * image.c assembly.c: Made this module thread safe by adding locks in 
31284         the appropriate places.
31286         * domain.c (mono_init): Call the new initialization functions of the
31287         three modules.
31289 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31291         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31292           make a direct call. It is proxy's work to make the call asynchronous.
31293           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31294           the return values.
31295         * object.cs: mono_method_call_message_new(): read AsyncResult and
31296           state object from parameters list, if this info is requested.
31297         * object.h: Added fields to store remote call output values in
31298           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31300 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31302         * object.h: add needed fields to MonoThread.
31303         * threads.c, threads.h: allow registering a function to cleanup data
31304         allocated per thread by the JIT.
31306 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31308         * loader.h: portability fix by Bernie Solomon
31309         * <bernard@ugsolutions.com>.
31311 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31313         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31314         return a MonoArray. This simplifies the code and also ensures that
31315         the cache allways contains an object reference as a value.
31317         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31318         function.
31320 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31322         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31323         fixes a problem with byte ordering when getting the address family for
31324         a socket.
31326 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31328         * .cvsignore: Added monosn.
31330         * reflection.h reflection.c loader.c: Added support for parameter
31331         marshalling to dynamically created types. Fixes #47295.
31333 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31335         * rand.c: remove useless warnings.
31337 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31339         * class.c: implemented ldtoken for methods and fieldrefs.
31341 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31343         * threadpool.c: when mono_async_invoke was called, no one took care of
31344         monitoring the queue. So if the method invoked took some time and we
31345         got new async invoke requests after 500 ms (the thread created waited
31346         that long in WaitForSingleObject), the new async invoke was not called
31347         until the previous one finished.
31349         This is fixed now. Thanks to Totte for helping with it.
31351 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31353         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31355 2003-08-11  Martin Baulig  <martin@ximian.com>
31357         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31359 2003-08-06  Martin Baulig  <martin@ximian.com>
31361         * mono-debug-debugger.c: Added support for static fields,
31362         properties and methods.
31364 2003-08-06  Martin Baulig  <martin@ximian.com>
31366         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31367         make this work for applications with multiple application domains.
31369 2003-08-04  Martin Baulig  <martin@ximian.com>
31371         * mono-debug-debugger.c: Completely reworked the type support; the
31372         most important thing is that we're now just using one single
31373         `MonoType' instance per type.
31375 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31377         * mono-endian.h, mono-endian.c, icall.c: Added icall
31378         ves_icall_System_Double_AssertEndianity to assert double word endianity
31379         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31381 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31383         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31384         support, icalls and fixes.
31386 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31388         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31389         classes that are a punctuation character in .NET is not the same a
31390         g_unichar_ispunct.
31392 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31394         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31396 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31398         * icall.c: Add new MemCopy internalcall.
31399         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31400         Simplified code; It is not necessary to handle all the cases here,
31401         as the C# code takes care of it.  Only handle the case of the name
31402         resource embedded into the assembly.
31404         Changed signature to return the data pointer and the size of the
31405         data. 
31407 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31409         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31410         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31412 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31414         * socket-io.c: ignore EINTR error in select.
31416 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31418         * class.h, class.c: removed unused subclasses field in MonoClass.
31420 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31422         * icall.c: improve fix of get_base_definition(). If the parent class
31423           doesn't have the mehod, look at the parent of the parent.
31424         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31425           to check if a parameter is an in or out parameter
31426           (PARAM_ATTRIBUTE_IN is not set by default).
31427           mono_method_return_message_restore(): Use mono_class_value_size to
31428           get the size of a value type. mono_type_stack_size (parameterType)
31429           does not return the correct value if parameterType is byRef.
31430           mono_load_remote_field(), mono_load_remote_field_new(),
31431           mono_store_remote_field(), mono_store_remote_field_new():
31432           raise exception if the remote call returns an exception.
31434 2003-07-28  Martin Baulig  <martin@ximian.com>
31436         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31437         method.  This is a wrapper around mono_runtime_invoke() which
31438         boxes the instance object if neccessary.
31440 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31442         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31443         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31445 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31447         * icall.c: disable mcs bug workaround.
31449 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31451         * object.c (mono_runtime_class_init): Take the metadata_section
31452         mutex before obtaining the domain mutex.
31454         * appdomain.h: Added definition of metadata_section mutex here. 
31456         * object.c: define metadata_mutex here.
31458 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31460         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31461         fixed.
31463 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31465         * reflection.c: Fix bug #46669
31467 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31469         * exception.c:
31470         * exception.h:
31471         * icall.c:
31472         * object.h: fill in the type name for TypeLoadException.
31474 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31476         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31477         relationship between TypeBuilders while compiling corlib) and bug
31478         45993 (Array types returned from the runtime while compiling
31479         corlib were from the loaded corlib).
31481 2003-07-22  Martin Baulig  <martin@ximian.com>
31483         * mono-debug-debugger.c: Reworked the type support a bit more;
31484         distinguish between types and classes.
31486 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31488         * icall.c: add IsArrayImpl icall.
31490 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31492         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31493         initializing real_size only once. Also fix bug #46602.
31495 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31497         * object.c: Renamed mono_metadata_section to metadata_section.
31499 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31501         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31502           empty array if the type is an array. Fixed.
31503           ves_icall_MonoMethod_get_base_definition: if the base method
31504           is abstract, get the MethodInfo from the list of methods of
31505           the class.
31506         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31507           and it was 1-based. Fixed in mono_param_get_objects.
31509 2003-07-20  Martin Baulig  <martin@ximian.com>
31511         * mono-debug.h: Set version number to 31.
31512         (mono_debug_init): Added `MonoDomain *' argument.
31514         * mono-debug-debugger.c: Reworked the type support; explicitly
31515         tell the debugger about builtin types; pass the `klass' address to
31516         the debugger.
31518 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31520         * image.c: Allow new metadata tables to be loaded without a
31521         warning. Also update the warning message to give the new constant value.
31522                 
31523 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31525         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31526         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31527         array type representation changes.
31529 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31531         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31532         on Environment.Exit () call.
31534 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31536         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31537         requires a matching corlib.
31539 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31541         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31542           Committed again without the CRs.
31543         
31544 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31546         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31547           getting it from the "this" socket instance. Did not work
31548           if the socket is a subclass of Socket.
31549           Also fixed bug #35371.
31551 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31553         * metadata.c: fixed size for TypedByRef.
31554         * loader.c: when searching for a method, consider the vararg amrker.
31555         * unicode.c, decimal.c: constify some arrays.
31557 2003-07-15  Dick Porter  <dick@ximian.com>
31559         * socket-io.c: Fixed compilation for gcc < 3.2.
31561         Fixed compilation for machines that don't have AF_INET6 (thanks to
31562         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31564         Fixed compile warnings.
31565         
31566         Fixed formatting and line endings.
31568 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31570         * socket-io.h:
31571         * socket-io.c: Added IPv6 support.
31573 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31575         * class.c (mono_class_is_assignable_from): New function to implement
31576         the is_assignable_from logic. Used by mono_object_isinst, 
31577         Type::IsAssignableFrom () and the interpreter.
31579         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31580         Object, even interfaces.
31581         
31582         * object.c (mono_object_isinst): Implement in terms of 
31583         is_assignable_from.
31585         * icall.c (ves_icall_type_is_assignable_from): New icall.
31587 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31589         * domain.c (foreach_domain): fix compiler warning.
31591 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31593         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31594         not available on all plattforms
31596 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31598         * image.h image.c: Store the metadata version string in MonoImage.
31599         * icall.c: New icall to retrieve the image version.
31600         * reflection.c (create_dynamic_image): Fill in the image version field
31601         * reflection.c (build_compressed_metadata): Use the image version
31602         from the image structure.
31604 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31606         * appdomain.c: modified comment.
31607         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31608         That will be its last iteration when mono_gc_cleanup is called from
31609         mono_runtime_cleanup and before the domain is unloaded.
31611         Fixes bug #45962.
31613 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31615         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31616         attributes.
31618 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31620         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31621         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31622         Bernie Solomon <bernard@ugsolutions.com>.
31624 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31626         * object.c, object.h: provide mono_object_new_fast() for faster
31627         allocation in some special cases.
31629 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31631         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31632         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31634 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31636         * threadpool.c: fix leaks.
31638 2003-07-01  Dick Porter  <dick@ximian.com>
31640         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31641         using MonoGHashTables.  Fixes threadpool bug posted to list.
31643 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31645         * image.h, image.c: added support to load an assembly from a byte array.
31646         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31647         assembly bundle support.
31649 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31651         * threadpool.c (mono_thread_pool_add): keep a reference to the
31652         AsyncResult to prevent GC
31654 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31656         * class.c: leak fix.
31658 2003-06-25  Dick Porter  <dick@ximian.com>
31660         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31661         for the async object, the WaitHandle object will close the handle.
31662         Fixes bug 45321.
31664 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31666         * class.c: in mono_array_class_get (), lookup from the hash with the
31667         same type we insert: this works around a bug in
31668         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31669         lluis. The real fix will have to wait for after the release.
31671 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31673         * icall.c: fix memory leak when getting type members.
31675 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31677         * reflection.c: added more pubtoken special cases.
31679 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31681         * class.c: handle field offset correctly when class size
31682         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31684 2003-06-20  Martin Baulig  <martin@ximian.com>
31686         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31687         *image' field.
31689 2003-06-20  Martin Baulig  <martin@ximian.com>
31691         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31693 2003-06-20  Martin Baulig  <martin@ximian.com>
31695         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31696         just distinguish between variables in registers and variables at
31697         an offset relative to a register.
31699 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31701         * icall.c: #ifdef out latest changes until mcs is fixed.
31703 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31705         * icall.c: return members in metadata order.
31707 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31709         * icall.c: avoid infinite loop in GetTimeZoneData.
31711 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31713         * icall.c: added Marshal.Prelink/All icalls.
31715 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31717         * object.c, object.h: fix warnings and do some overflow checking
31718         when creating arrays.
31720 2003-06-17  Dick Porter  <dick@ximian.com>
31722         * file-io.h:
31723         * file-io.c: File attributes need to be tweaked slightly when
31724         passed from the managed to the w32 world.
31726 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31727         * profiler.h profiler-private.h profiler.c: Rework last patch
31728         based on suggestion by Paolo.
31729         
31730 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31732         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31733         instruction level coverage data collection.
31734         * profiler.h profiler.c (: Added new callback function which can be
31735         used by the profiler to limit which functions should have coverage
31736         instrumentation.
31737         * profiler.c (mono_profiler_load): Call g_module_build_path to
31738         generate the file name of the profiler library.
31740 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31742         * profiler.c, profiler.h, profiler-private.h: added basic block 
31743         coverage profiling API.
31745 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31747         * reflection.c (mono_reflection_create_runtime_class): Add support
31748         for events in dynamically generated code.
31750         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31751         not allocated.
31753 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31755         * icall.c: when getting timezone info, return reasonable values if we
31756         can't get the actual data.
31758 2003-06-14  Dick Porter  <dick@ximian.com>
31760         * threads.c (start_wrapper): Remove the reference to the thread
31761         object in the TLS data, so the thread object can be finalized.
31762         This won't be reached if the thread threw an uncaught exception,
31763         so those thread handles will stay referenced :-( (This is due to
31764         missing support for scanning thread-specific data in the Boehm GC
31765         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31767 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31769         * reflection.c: ensure streams and tables are first allocated with
31770         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31772 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31774         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31776 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31778         * reflection.c (mono_reflection_create_runtime_class): Add support for
31779         properties to dynamically created classes.
31780         * reflection.c: Fix a few places where non-MonoObjects were inserted
31781         into the tokens hashtable.
31783 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31785         * object.c: some support to handle out of memory exceptions.
31787 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31789         * marshal.c (mono_marshal_get_native_wrapper): support reference
31790         return types
31792 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31794         * object.h, object.c: more portability stuff from Bernie Solomon.
31795         Unexport mono_object_allocate(). Added mono_object_unbox ().
31796         Set exitcode when an unhandled exception is thrown.
31798 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31800         * marshal.c (mono_marshal_get_native_wrapper): use custom
31801         marshaler for return types.
31803 2003-06-10  Dick Porter  <dick@ximian.com>
31805         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31806         ip_mreq is available
31808 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31810         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31811         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31812         by Bernie Solomon <bernard@ugsolutions.com>.
31814 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31816         * gc.c (mono_gc_init): Avoid error message on shutdown when
31817         GC_DONT_GC=1 is used.
31819         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31820         New icall to return the GUID of a module.
31822 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31824         * class.c: ensure instance size always includes the parent's size
31825         even whem class size is set explicitly (fixes bug#44294).
31827 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31829         * profiler.h, profiler.c: made the simple profiler thread-safe,
31830         get more accurate timing info. Allow the loading of an
31831         externally-developed profiler module.
31833 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31835         * marshal.c (mono_marshal_get_native_wrapper): improved
31836         class/byref arguments.
31837         (mono_marshal_get_native_wrapper): better string marshaling support.
31839 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31841         * class.c: ensure .pack and .size are handled correctly and
31842         simplified layout of static fields.
31844 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31846         * appdomain.c
31847         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31849         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31850         current directory (fix bug 44008)
31852 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31854         * marshal.c (mono_marshal_get_native_wrapper): started support for
31855         custom marshalers.
31856         (mono_delegate_to_ftnptr): consider marshalling specifications
31858 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31860         * reflection.c, reflection.h: emit custom marshal info.
31862 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31864         * object.c: free the GError.
31865         * icall.c: added CloseEvent_internal.
31866         * threads.[ch]:
31867         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31868         call.
31870 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31872         * loader.c (mono_method_get_signature): Add support for dynamic
31873         assemblies.
31875 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31877         * reflection.c: fixed bug #43905.
31879 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31881         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31882         handling TypedReference and ArgIterator.
31883         * loader.c, loader.h: added function to get signature at call site.
31885 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31887         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31888         data readonly. Buglets and warning fixes. Some MethodSpec support.
31890 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31892         * class.h, class.c, object.c: remove relative numbering support.
31894 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31896         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31897         free the string, until we get a chance to fix Gtk#
31899 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31901         * marshal.c: revert last patch.
31903 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31905         * icall.c: updates for new mono_class_vtable() not calling
31906         the type constructor anymore.
31908 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31910         * object.h, object.c: separate vtable creation from type
31911         initialization. Make running the .cctor thread safe.
31913 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31915         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31917 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31919         * loader.c (mono_get_method): consider calling convention
31921 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31923         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31924         to return the invisible global type for a module.
31926         * reflection.c (mono_image_build_metadata): Emit global fields too.
31928 2003-05-20  Peter Williams  <peterw@ximian.com>
31930         * loader.c (mono_lookup_internal_call): Add a few newlines.
31932 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31934         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31935         literal strings.
31937         * appdomain.c (set_domain_search_path): Recalculate search path when
31938         AppDomainSetup.PrivateBinPath changes.
31940         * object.c (mono_class_compute_gc_descriptor): It turns out some
31941         parts of the class libs (like System.Thread) holds pointers to
31942         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31943         to treat native int a pointer type here.
31944         
31945 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31947         * appdomain.h, domain.c: add hashtable for jump target resolution.
31949 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31951         * reflection.h reflection.c icall.c: Added new icalls 
31952         GetManifestResourceInfoInternal, GetModulesInternal and support
31953         infrastructure.
31955 2003-05-16  Dick Porter  <dick@ximian.com>
31957         * icall.c:
31958         * file-io.h:
31959         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31961 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31963         * object.c: mono_store_remote_field: little fix to previous patch.
31965 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31967         * class.c: add constructors to array classes.
31968         * icall.c: special case array construction for InternalInvoke (),
31970 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31972         * class.h class.c reflection.c object.c: Added support for field
31973         defaults in dynamically generated classes.
31975 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31977         * reflection.c: properly encode charset for ddlimport.
31979 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31981         * threads.c: allow compiling without GC.
31983 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31985         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31986         handling of thread static data.
31988 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31990         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31992 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31994         * class.c (mono_array_class_get): always set the serializable flags
31995         (mono_array_class_get): always set the SEALED attribute for array types
31997 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31999         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32000         attributes (fix for bug 42021).
32002 2003-05-12  Dick Porter  <dick@ximian.com>
32004         * gc.c: Don't run finalizers when the finalizer thread is
32005         finishing up, because the default domain has already been
32006         destroyed.
32008 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32010         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32011         value is null, we should throw an exception.   This is slightly
32012         different than the other conventions used for the constructor.
32014 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32016         * socket-io.c: fixed windows build.
32018 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32020         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32022 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32024         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32025         compilers.
32027 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32029         * class.c (mono_class_layout_fields): Add experimental GC aware
32030         auto layout facility. Requires class library changes to work correctly.
32032         (mono_class_setup_vtable): Avoid overriding explicit interface
32033         method implementations. Fixes iface3.exe test.
32035         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32036         object reference.
32037         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32038         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32040         * metadata.h: Add new type classification macro which determines
32041         whenever the type holds an object reference.
32043 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32045         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32047 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32049         * gc.c (finalizer_thread): Work around a GC bug.
32051 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32053         * marshal.c (emit_struct_conv): allow unions
32055         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32057 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32059         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32061 2003-05-06  Martin Baulig  <martin@ximian.com>
32063         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32065 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32067         * socket-io.c:
32068         (Select_internal): allow NULLs, don't create arrays if not needed.
32069         Coupled with Socket.cs changes.
32071         * threadpool.c:
32072         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32073         register a finalizer for it that will close the semaphore handle. This
32074         fixes the leak and make Lupus' test run with > 4080 loops.
32076 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32078         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32079         Jerome Laban (bug #42287)
32081 2003-05-02  Martin Baulig  <martin@ximian.com>
32083         * debug-mono-symfile.h
32084         (MonoSymbolFile): Moved declaration into mono-debug.h.
32085         (MonoDebugMethodJitInfo): Likewise.
32086         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32087         argument.
32088         (_mono_debug_address_from_il_offset): Take a
32089         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32091         * mono-debug.h
32092         (MonoDebugDomainData): New struct.
32093         (mono_debug_get_domain_data): New function.
32094         (mono_debug_add_method): Take an additional `MonoDomain *'
32095         argument.
32096         (mono_debug_source_location_from_address): Likewise.
32097         (mono_debug_il_offset_from_address): Likewise.
32098         (mono_debug_address_from_il_offset): Likewise.
32100 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32102         * reflection.c: one more check for null type in custom attrs.
32104 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32106         * reflection.c: avoid warning (comparison is always false due to limited
32107         range of data type).
32109 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32111         * icall.c: throw an exception in Type.GetField if the argument 'name'
32112         is NULL.
32114 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32116         * reflection.c: fixed handling of enums in named arguments to custom
32117         attributes (bug #42123).
32119 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32121         * reflection.c: use the right array element type and handle
32122         a null for a Type argument, too.
32124 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32126         * reflection.c: handle arrays as arguments to custom attributes.
32128 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32130         * reflection.c: handle a string value in a custom attr
32131         ctor that takes an object.
32133 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32135         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32136         (fix bug #42063)
32138 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32140         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32142 2003-04-27  Martin Baulig  <martin@ximian.com>
32144         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32145         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32146         MONO_DEBUGGER_EVENT_BREAKPOINT.
32147         (mono_breakpoint_trampoline_code): Removed.
32148         (mono_debugger_event_handler): The last argument is now a
32149         `guint32'.
32150         (mono_debugger_insert_breakpoint_full): Removed the
32151         `use_trampoline' argument.
32152         (mono_debugger_method_has_breakpoint): Likewise.
32153         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32154         mono_debugger_breakpoint_callback(); take the method and
32155         breakpoint number as arguments.
32157 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32159         * metadata.c: fix off by one when loading parameters attributes.
32161 2003-04-24  Martin Baulig  <martin@ximian.com>
32163         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32165 2003-04-24  Martin Baulig  <martin@ximian.com>
32167         * mono-debug-debugger.c: Moved all code which interacts with the
32168         Mono Debugger here.
32170         * debug-mono-symfile.c: This code now just deals with the symbol
32171         file itself, the debugger code is now in mono-debug-debugger.c.
32173 2003-04-23  Martin Baulig  <martin@ximian.com>
32175         * mono-debug.c (mono_debug_source_location_from_il_offset):
32176         New method; like mono_debug_source_location_from_address(), but
32177         takes an IL offset instead of a machine address.
32179 2003-04-23  Martin Baulig  <martin@ximian.com>
32181         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32182         `line' field; this is now computed by the debugger.
32184 2003-04-23  Martin Baulig  <martin@ximian.com>
32186         * mono-debug.[ch]: New files.  This is the new debugging interface.
32188         * mono-debug-debugger.[ch]: New files.  Moved all code which
32189         interacts with the Mono Debugger here.
32191 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32193         * domain.c (mono_init): initialize mono_defaults.monitor_class
32195 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32197         * reflection.c (method_encode_code): Add a spicy exception to help
32198         future compiler authors.
32200 2003-04-21  Martin Baulig  <martin@ximian.com>
32202         * icall.c
32203         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32204         Make this work with relative pathnames; g_filename_to_uri() needs
32205         an absolute filename.
32207 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32209         * icall.c: Track name changes in Object and ValueType.
32211 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32213         * metadata.c (mono_type_stack_size): size should be a multiple of
32214         sizeof (gpointer)
32216 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32218         * gc.c:
32219         (internal_domain_finalize): moved into mono_domain_finalize. No need
32220         to create another thread because the finalizers will be run in the
32221         finalizer thread.
32222         
32223         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32224         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32225         to be run (MS does this too).
32227 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32229         * object.c (mono_class_compute_gc_descriptor): Update comment.
32231         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32233         * image.h: Add synchronized wrapper cache.
32235         * image.c (do_mono_image_open): Initialize cache.
32237         * reflection.c (create_dynamic_mono_image): Initialize cache.
32239 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32241         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32242         ves_icall_System_Buffer_ByteLengthInternal.
32244 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32246         * reflection.c: setup klass->nested_in earlier. Allow
32247         a dash in the assembly name.
32249 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32251         * metadata.c (mono_type_to_unmanaged): dont access
32252         type->data.klass for MONO_TYPE_OBJECT
32253         (mono_type_to_unmanaged): consider System.Delegate class
32255 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32257         * class.c: just setup supertypes in the proper place instead of
32258         initializing the full element class for arrays.
32260 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32262         * class.c: ensure the element class of arrays is initialized.
32263         Setup the supertype info for array classes, too.
32265 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32267         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32269 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32271         * Makefile.am: re-added -m option when running cygpath. This way,
32272         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32273         separator.
32274         * mono-config.c: same codepath for locating mono config file for WIN32
32275         and the rest.
32276         * assembly.c: if mono_assembly_setrootdir is called, don't override
32277         the value set.
32279 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32281         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32282         MONO_ASSEMBLIES variable.
32284 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32286         * icall.c: added Assembly::GetNamespaces() icall.
32288 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32290         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32292 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32294         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32295         * object.c: fixed bug in the construction of vtable for proxies
32297 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32299         * object.c (mono_array_new): Mark mono_array_new as an icall.
32301 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32303         * class.c: fixed test for public method when overriding interfaces.
32304         Closes bug #40970.
32306 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32308         * appdomain.h, domain.c: added mono_domain_foreach() to
32309         be able to access the currently loaded appdomains.
32310         * object.c: make string interning work across sppdomains.
32311         Mark some functions for use as icalls.
32313 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32315         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32317         * reflection.h reflection.c: Allocate long living data using 
32318         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32320         * reflection.c: Double the allocation size in streams instead of
32321         increasing it, to prevent unneccesary copying on large assemblies.
32322         
32323         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32324         creation if the assembly does not have the Run flag set.
32326 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32328         * class.h: avoid the C++ keywords in header files (Jerome Laban
32329         spotted and fixed this).
32331 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32333         * object.c:
32334         (mono_unhandled_exception): fill in the arguments for the
32335         UnhandledException event. Only trigger that event for the default
32336         domain (as MS does).
32338 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32340         * object.c: Improve typed allocation stuff based on suggestions from
32341         Paolo. Also turn it on if the GC library supports it.
32343 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32345         * object.c object.h class.h: Added experimental typed allocation
32346         facility using the interfaces in gc_gcj.h.
32348         * os/gc_wrapper.h: Added new include files.
32349         
32350 2003-04-03  Martin Baulig  <martin@ximian.com>
32352         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32353         which is not yet enabled by default.
32355         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32356         functions.
32357         (mono_gc_lock, mono_gc_unlock): New static functions.
32359         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32360         functions; stop/start the world for the garbage collector.  This
32361         is using the windows API; we need to complete the SuspendThread()/
32362         ResumeThread() implementation in the io-layer to make this work on Unix.
32363         (mono_gc_push_all_stacks): New public function; tells the garbage
32364         collector about the stack pointers from all managed threads.
32366 2003-04-03  Martin Baulig  <martin@ximian.com>
32368         * object.h (MonoThread): Added `gpointer stack_ptr'.
32370         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32372 2003-04-03  Martin Baulig  <martin@ximian.com>
32374         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32376 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32378         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32379         field.last.
32381 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32383         * loader.c (mono_lookup_internal_call): Report the corlib that is
32384         out of sync.
32386 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32388         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32389         System.DBNull (it's class not valuetype).
32391 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32393         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32394         if the array method was already assigned a token (fixes bug#40646).
32396 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32398         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32399         if no assembly is given.
32401 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32403         * metadata.h: Added the new tables.
32405         * row-indexes.h: Added definitions for new tables.
32407         * metadata.c: Add schemas for new tables, and add support for
32408         computing the sizes of them.
32410         * class.c: Update for handling the new type cases.
32412 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32414         * metadata.h (MONO_TYPE_IS_VOID): new macro
32416 2003-03-31  Martin Baulig  <martin@ximian.com>
32418         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32420         * threads.c (mono_thread_new_init): Call `thread_created' in the
32421         mono_thread_callbacks.
32423 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32425         * loader.h: added marshalbyrefobject_class to mono_defaults
32426         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32427         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32428           generation of output parameters.
32429           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32430         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32431           contextbound and the target object belongs to the context of the caller.
32432         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32433         * object.c: Implemented support for interfaces and abstract classes
32434           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32435           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32437 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32439         * class.h class.c (mono_class_is_subclass_of): New function.
32440         
32441         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32442         routines for most common case (calls from ArrayList::ToArray).
32444         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32445         routine so programs which call Environment::Exit() can be profiled.
32447         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32448         Added MONO_ARCH_SAVE_REGS.
32450         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32452 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32454         * blob.h: Add a couple of new MonoType types definitions.
32456         * tabledefs.h: Add a couple of new call convs.
32458 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32460         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32461         the layout of the class.
32463         * reflection.c (alloc_table): double the size on overflow to avoid
32464         unnecessary copying.
32466         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32467         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32468         null so it can be garbage collected.
32469         
32470 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32472         * reflection.c (mono_reflection_get_type): Return the resolved type
32473         only if it is in the assembly we searched.
32475         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32477         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32478         method.
32480 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32482         * appdomain.c:
32483         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32484         the right one is 'file:///blah', but MS allows it.
32485         * assembly.c:
32486         (mono_assembly_open): allow 'file://blah'
32488         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32490 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32492         * socket-io.c: fixes bug #40310.
32494 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32496         * reflection.c (mono_reflection_parse_type): handle deeply nested
32497         types correctly.
32499         * reflection.c (mono_image_create_token): Use unique token values
32500         since they will be put into a hash table.
32502         * class.c (mono_class_setup_vtable): If a method occurs in more than
32503         one place in the vtable, and it gets overriden, then change the
32504         other occurances too.
32506         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32507         object as return type.
32509 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32511         * icall.c: Deleted "ToString" implementation for double and float
32512         because they are full implemented in managed code.
32514 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32516         * reflection.c, reflection.h: implemented and exported functions
32517         to retrieve info about custom attributes.
32519 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32521         * appdomain.c: moved Uri handling to assembly.c
32522         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32523         work when using a file Uri in *nix and windows.
32525         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32526         GetReferencedAssemblies.
32528 2003-03-18  Dick Porter  <dick@ximian.com>
32530         * icall.c: Rename a couple of internal calls
32532         * threads.c: Set the thread state to Stopped when a thread exits.
32533         Fixes bug 39377.
32535 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32537         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32538         New icall.
32540         * object.c (mono_class_vtable): fix warning.
32542 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32544         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32546         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32547         memory.
32548         (method_encode_clauses): Create exception info structures in the right
32549         order.
32550         (mono_reflection_setup_internal_class): Initialize supertypes field.
32552         * class.c object.c: Handle interfaces which implement other interfaces 
32553         correctly.
32555         * class.h class.c: Move the supertypes array initialization code into 
32556         a separate function so it can be used for dynamic types too. Also call
32557         it earlier, in mono_class_init(), since it can be used before the
32558         type is initialized.
32560 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32562         * Makefile.am:
32563         * assembly.c:
32564         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32566         * appdomain.c:
32567         * appdomain.h:
32568         * marshal.c:
32569         * object.c: remove warnings.
32571 2003-03-13  Martin Baulig  <martin@ximian.com>
32573         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32574         (MonoDebugLexicalBlockEntry): New types.
32576         * debug-mono-symfile.c
32577         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32579 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32581         * process.c: ret can be any non-zero value accroding to MS doc.
32583 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32585         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32586         fixing a warning for a miss-used prototype, would have cause
32587         random memory corruption.
32589 2003-03-07  Martin Baulig  <martin@ximian.com>
32591         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32592         getting really annoying ....
32594 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32596         * reflection.c (fixup_method): added support for array methods.
32598 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32600         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32601         (pointed out by Michael Adams).
32603 2003-03-04  Dick Porter  <dick@ximian.com>
32605         * icall.c: Temporarily reverted the Double and Single ToString()
32606         change, because it broke nunit.
32608 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32610         * object.h, threads.h: make include files compatible with C++
32611         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32613 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32615         * icall.c: Erased ToString helper functions for Double and Single.
32616         Now, that implementations ar all in managed code (Double and Single
32617         Formatters).
32619 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32621         * appdomain.c: Added method for initializing the default context of
32622         a domain. Added internal call for getting the default context.
32623         * appdomain.h: Added context variable in MonoDomain struct.
32624         * domain.c: mono_domain_set also sets the default context of the domain
32625         * icall.c: Mapped internal method InternalGetDefaultContext.
32626         * object.c: mono_object_get_virtual_method returns always a remoting
32627         wrapper if the object is a transparent proxy.
32628         mono_runtime_invoke_array: when creating an object by calling the
32629         constructor, if the created object is a proxy, then the constructor should
32630         be called using the a remoting wrapper.
32632 2003-03-03  Dick Porter  <dick@ximian.com>
32634         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32635         variable so it compiles on solaris.  Problem spotted by
32636         Christopher Taylor <ct@cs.clemson.edu>
32638 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32640         * appdomain.c:
32641         (get_info_from_assembly_name): don't leak value.
32643         * icall.c:
32644         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32645         result.
32647 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32649         * assembly.c: export mono_image_load_references ().
32650         * class.c: handle function pointers. mono_class_from_name() now
32651         supports nested type names directly.
32653 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32655         * reflection.h reflection.c: Encode already created dynamic methods 
32656         and fields correctly as a DEF instead of a REF.
32658         * reflection.c: Get rid of the force_ref argument to 
32659         mono_image_typedef_or_ref since it was wrong in the first place.
32661         * string-icalls.c: add error checking to string constructors according
32662         to the MSDN docs.
32664         * reflection.c: Emit types in the order their TypeBuilders were 
32665         created. Previously, a new table index was assigned to each type before
32666         the tables were emitted. This was wrong because the signature blob
32667         might already refer to a type by its original table index.
32669 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32671         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32672         change.
32673         
32674 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32676         * Makefile.am: make assemblies dir have \ instead of / on windows.
32678 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32680         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32681         iterate over the NESTEDCLASS table using a linear search since the
32682         table is not guaranteed to be sorted by the secondary key.
32684         * class.c (mono_class_create_from_typedef): fixed up call to
32685         mono_metadata_nesting_typedef.
32686         
32687 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32689         * marshal.c (mono_string_to_byvalstr): clear the memory as
32690         suggested by Jerome Laban <jlaban@wanadoo.fr>
32692 2003-02-26  Dick Porter  <dick@ximian.com>
32694         * process.c: Cope with padding in .rsrc blocks
32696 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32698         * metadata.h: reverted the filter_len change, it breaks reflection
32699         
32700 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32702         * metadata.h: added a new field to store the filter_len
32703         
32705 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32707         * reflection.c: handle custom attributes for types and members
32708         created with Reflection.Emit (bug#38422).
32710 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32712         * reflection.c: define RTSpecialName automatically for constructors for
32713         compatibility with MS.NET.
32715         * reflection.c (mono_reflection_create_runtime_class): initialize
32716         nested_in field of dynamically created classes.
32718 2003-02-22  Martin Baulig  <martin@ximian.com>
32720         * debug-mono-symfile.h: Incremented version number.
32722 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32724         * object.h icall.c process.c: fix warnings.
32726 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32728         * appdomain.h appdomain.c:
32729         (mono_domain_try_type_resolve): split the 
32730         name_or_tb argument into a name and a tb argument.
32731         (mono_domain_has_type_resolve): new function to check whenever the
32732         application has registered a TypeResolve event handler.
32733         
32734         * icall.c reflection.h reflection.c: move the type resolve logic into
32735         mono_reflection_get_type () so it will be invoked when 
32736         Assembly::GetType () is called.
32738         * reflection.c:
32739         (mono_reflection_get_type): renamed to get_type_internal.
32740         (mono_reflection_get_type): fixed type name generation so it works 
32741         for nested types too.
32742         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32743         costly type name generation if there is no resolve event handler.
32745 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32747         * class.c, image.c: load exported types from file references.
32749 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32751         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32752           used to cache the managed methods used to create proxies and make 
32753           remote invocation of methods.
32754         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32755           to be remotely created.
32756         * object.c: Modified the method mono_class_vtable(). It now initializes 
32757           the remote flag of the vtable. Modified mono_object_new_specific(), 
32758           so now it checks the remote flag.
32759         * icall.c: Added a couple of internal methods, one for enabling instance 
32760           creation interception for a type, and one for creating objects bypassing
32761           the remote check.
32763 2003-02-18  Martin Baulig  <martin@ximian.com>
32765         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32766         New interncall to get a method's metadata token.
32768         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32769         New interncall for the debugger.
32771 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32773         * class.c (mono_class_setup_vtable): allocate supertype array
32775 2003-02-18  Martin Baulig  <martin@ximian.com>
32777         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32779 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32781         * reflection.c:
32782         (assembly_name_to_aname): jump over unknown properties (i've found
32783         something like: 'type, assembly, version=xxx, custom=null, public...',
32784         so now will ignore custom=null and still get the rest of the values).
32786 2003-02-17  Dick Porter  <dick@ximian.com>
32788         * threads.c: Have Thread.Start() wait for a semaphore to signal
32789         that the thread has set up all its local data.  This fixes bug
32790         34323, where Abort() raced the new thread's TLS data.
32792         Also removes the handle_store() call from start_wrapper, because
32793         threads are now always created suspended and there is no longer a
32794         race between the parent and child threads to store the info.
32796 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32798         * image.c: explain the #- heap issue in a message, hopefully
32799         avoiding FAQs on mono-list.
32801 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32803         * icall.c:
32804         (GetEntryAssembly): if the domain has not invoked
32805         AppDomain.ExecuteAssembly yet, return the assembly of the default
32806         AppDomain.
32808 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32810         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32812 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32814         * metadata.c, reflection.c: simple speedup to type hash
32815         and equals code.
32817 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32819         * image.c, image.h, class.c, assembly.c: move module loading
32820         to MonoImage. When loading metadata, consider alignemnet from
32821         the start of metadata, not from the metadata address in memory.
32823 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32825         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32826         AssemblyBuilder objects. Factored out custom attribute creation into
32827         a separate function.
32828         (create_custom_attr): new function to create custom attributes.
32830 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32832         * Makefile.am: Got tired of typing the full pathname to pedump.
32833         Until there is another option, am installing this.
32835 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32837         * class.c (class_compute_field_layout): always set field->parent 
32838         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32840 2003-02-11  Dick Porter  <dick@ximian.com>
32842         * threads-types.h:
32843         * monitor.c: Rewrote Monitor, making lock much faster and
32844         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32845         creates them as needed.
32847         * exception.c: Added SynchronizationLockException
32849         * threads.c: Deleted old Monitor implementation.  The new one is
32850         in a new file.
32852 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32854         * class.c: handled TypedReference type code. Set the correct size for
32855         class data. Setup interface_offsets for interface classes, too.
32857 2003-02-09  Martin Baulig  <martin@ximian.com>
32859         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32861 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32863         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32864         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32865         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32866         * verify.c: check for code that runs after the end of the method.
32868 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32870         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32871         "System.Math::Round2".
32872         * sysmath.h: Added Floor, Round and Round2 definitions.
32873         * sysmath.c: Modified certain functions that were not 100% compliant
32874         with MS.NET (math precision) and added the implementation of Floor,
32875         Round and Round2.
32877 2003-02-07  Martin Baulig  <martin@ximian.com>
32879         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32881 2003-02-07  Martin Baulig  <martin@ximian.com>
32883         * debug-mono-symfile.c: Reflected latest symwriter changes.
32884         (mono_debug_create_mono_symbol_file): Removed.
32885         (mono_debug_open_mono_symbol_file): Take an argument which
32886         specifies whether to create a dynamic symbol file.
32888 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32890         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32892 2003-02-05  Martin Baulig  <martin@ximian.com>
32894         * reflection.c (mono_image_build_metadata): Make this public,
32895         protect it against being called multiple times, don't create
32896         resources and don't build the compressed metadata here.
32897         (mono_image_create_pefile): Do this here.
32899         * icall.c
32900         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32902 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32904         * socket-io.c: fixed bug #36322.
32906 2003-02-06  Piers Haken <piersh@friskit.com>
32908         * appdomain.[ch]:
32909         * class.h:
32910         * debug-mono-symfile.c:
32911         * icall.c:
32912         * loader.c:
32913         * mono-config.c:
32914         * monosn.c:
32915         * reflection.c:
32916         * socket-io.c: warning cleanups
32918 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32920         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32921         function. works like remoting invoke, but does a check for the Proxy first.
32923 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32925         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32927 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32929         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32930         array of pointers.
32931         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32932         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32934         * object.c (mono_store_remote_field_new): used by the new jit
32935         instead of mono_store_remote_field
32936         (mono_load_remote_field_new): used by the new jit
32937         instead of mono_load_remote_field
32939 2003-02-05  Patrik Torstensson
32941         * appdomain.c: changed unload to take the domain id instead
32942         of domain
32943         
32944         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32947 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32949         * appdomain.c: don't look for assemblies in ApplicationBase if
32950         PrivateBinPathProbe is set.
32952 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32954         * object.c: make the first argument in main_args contain the absolute
32955         path to the assembly. Fixes bug #37511.
32957 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32959         * icall.c: get correct UTC offset for countries not using daylight
32960         time saving. Fixes bug #30030.
32962 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32964         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32965         and 1 are the family).
32967 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32969         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32971         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32973 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32975         * reflection.c: added support for SignatureHelper tokens, which is
32976         needed by the Calli opcode.
32978         * reflection.h: track changes to SignatureHelper class.
32980         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32982 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32984         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32986 2003-02-03  Patrik Torstensson
32987         * appdomain.[c|h], domain.c : 
32988          - Added support for getting a domain via domain id
32989          - Support for setting and getting domain from System.AppDomain 
32990            (used in cross appdomain channel)
32991          - Added support for get/set for a MonoAppContext on a thread 
32992            (Context class in System.Runtime.Remoting.Contexts),
32993          - Removed hack in Get/SetData and ExecuteAssembly.
32994         
32995         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32996         the managed world to get control when a proxy is created.
32998         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32999         
33000 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33002         * icall.c
33003         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33004         Populate the codebase field as well.
33006 2003-02-02  Martin Baulig  <martin@ximian.com>
33008         * debug-mono-symfile.c
33009         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33010         (mono_debug_symfile_add_method): Allow interncalls.
33012 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33014         * icall.c: throw parse exception if strtod fails or the string is empty.
33016 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33018         * marshal.c: handle object type separately from defined
33019         class types.
33021 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33023         * marshal.c: handle NATIVE_LPSTR for strings when it's
33024         explicitly specified.
33026 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33028         * reflection.c, reflection.h, icall.c: setup the reflection
33029         handle cache for ModuleBuilders and AssemblyBuilders.
33031 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33033         * reflection.c (reflection_methodbuilder_to_mono_method): set
33034         pinvoke flag
33036 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33038         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33040 2003-01-29  Dick Porter  <dick@ximian.com>
33042         * threads.c: No need for the fake_thread kludge now that Thread
33043         doesn't run a class constructor
33044         
33045 2003-01-29  Dick Porter  <dick@ximian.com>
33047         * threads.c: Use g_direct_hash instead of the rather bogus
33048         g_int_hash
33050 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33052         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33053         (fix pinvoke12.exe)
33054         (mono_marshal_get_struct_to_ptr): generate valid IL code
33055         (mono_marshal_get_ptr_to_struct): generate valid IL code
33056         (*): correctly set sig->pinvoke, we need to memdup the signature
33057         to do that
33059 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33061         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33062         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33064 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33066         * profiler.c: provide more callers information.
33068 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33070         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33072         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33074         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33076 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33078         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33079         exception instead of going into an infinite loop on dates which it 
33080         can't yet handle.
33082         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33083         out-of-range exception if needed.
33085         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33086         an implementation for an interface method and to override an inherited
33087         method at the same time. 
33088         Imagine a scenario when a virtual method is used to override a
33089         virtual abstract method in a parent class, and this same method 
33090         provides an implementation for an method inherited from an interface. 
33091         In this case, the interface resolution code will set im->slot, which 
33092         means that the virtual method override pass will skip this method 
33093         which means a pointer to the abstract method inherited from the parent
33094         will remain in the vtable of this non-abstract class.
33096         * class.c: (mono_class_setup_vtable): continue search for a real 
33097         method if only an abstract method is found.     
33099 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33101         * reflection.c: add size to encoding for ByValStr and ByValArray
33102         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33104 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33106         * class.c (mono_class_setup_vtable): pass the override info as an
33107         argument.
33109         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33110         correctly.
33111         
33112         * reflection.c (ensure_runtime_vtable); add support for method 
33113         overrides.
33114         
33115 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33117         * reflection.c (resolution_scope_from_image): Hack to work to work with
33118         dynamic assemblies.
33120         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33121         added a 'force_ref' argument to force this function to allways return 
33122         a TypeRef. This is needed by mono_image_get_memberref_token ().
33123         
33124 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33126         * reflection.c (mono_image_get_type_info): interfaces really don't have
33127         a parent.
33129         * reflection.c (mono_image_basic_init): fill out missing fields of
33130         image structure.
33132         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33133         dynamic assemblies. This is required so dynamic assemblies show up in
33134         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33135         Type::GetType() etc. This is consistent with MS behaviour.
33137         * image.c image.h reflection.c: add newly created classes to the name 
33138         cache so mono_class_get () will find them.      
33140 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33142         First part of changes to get IKVM.NET running under mono.
33143         
33144         * appdomain.h, appdomain.c: added new function 
33145         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33146         This function will call AppDomain::DoTypeResolve to do the actual work.
33148         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33149         moved existing code dealing with dynamic tokens to a new function 
33150         called mono_reflection_lookup_dynamic_token (). This function will 
33151         raise TypeResolve events when appropriate. Since reflection.c is not 
33152         part of libmetadata, a new hook function called 
33153         mono_lookup_dynamic_token() is added to class.c which will call this.
33155         * assembly.h assembly.c: make the invoke_load_hook function public,
33156         so it can be called for dynamic assemblies.
33158         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33160         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33161         type isn't found.
33163         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33164         MonoGHashTable, since it contains pointers to objects which the GC 
33165         needs to track.
33167         * assembly.c (search_loaded): remove unused variable.
33168         
33169 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33171         * object.c: fixed issue exposed by gcc-generated IL programs
33172         that use RVA data for pointers.
33174 2003-01-25  Martin Baulig  <martin@ximian.com>
33176         * threads.c (start_wrapper): Moved the initialization of
33177         `start_func' above the mono_new_thread_init() call to which we
33178         pass it as argument.
33180 2003-01-24  Martin Baulig  <martin@ximian.com>
33182         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33183         the MonoThread pointer.
33185 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33187         * icall.c: Rename `PowImpl' to Pow.
33189 2003-01-23  Dick Porter  <dick@ximian.com>
33191         * threads.c (start_wrapper): Create a Thread object if needed, so
33192         the Main() thread can do the class initialisation in a subthread
33193         that has been set up to allow managed code execution.
33195         Pass the thread ID instead of the MonoThread pointer to the thread
33196         start and attach callbacks.  This change is required, because the
33197         jit thread start callback must be called _before_ the Thread
33198         object can be created.
33199         
33200         (mono_thread_init): Removed much object creation code that is no
33201         longer needed.  No managed code is called from here now.
33203         * object.c (mono_runtime_exec_managed_code): Create a subthread
33204         for Main, and call back to the runtime to use it.
33205         Set the exit code when Main exits.
33207         * gc.c: Make sure domain finalisation happens in a subthread.
33208         Re-enable threaded GC, fixing bug 31333 (again).
33210         * environment.c: System.Environment internall calls (so far just
33211         ExitCode is here, the others are still in icall.c)
33213         * appdomain.c (mono_runtime_cleanup): All threads running managed
33214         code should have finished before mono_runtime_cleanup() is
33215         reached, so no need to clean up threads.
33217 2003-01-22  Martin Baulig  <martin@ximian.com>
33219         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33220         `gpointer func' arguments.      
33221         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33222         but added `MonoThread *thread' argument.
33223         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33225         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33226         and pass it to the mono_thread_start_cb callback.
33227         (mono_install_thread_callbacks): New public function to install a
33228         set of callbacks which are set by the debugger.
33229         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33231 2003-01-22  Martin Baulig  <martin@ximian.com>
33233         * Makefile.am: Install debug-mono-symfile.h.
33235 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33237         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33239 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33241         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33242         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33243         (mono_array_class_get): correctly set access levels of arrays
33245 2003-01-20      Patrik Torstensson
33246         * image.h (MonoAssemblyName): changed major, minor, build, revision
33247         from signed to unsigned.
33249 2003-01-20  sean kasun <skasun@azstarnet.com>
33251         * reflection.c (load_cattr_value): Now this handles
33252         MONO_TYPE_SZARRAY.  Fixes bug #35629
33254 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33256         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33257         integer value
33259 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33261         * decimal.c: fixed bug #26056.
33263 2003-01-17  Martin Baulig  <martin@ximian.com>
33265         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33267 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33269         * exception.[ch]:
33270         (mono_get_exception_type_initialization): new function.
33272         * object.c: throw a TypeInitializationException when an exception is
33273         thrown invoking the class constructor.
33275 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33277         * reflection.c: fixed attribute reading.
33279 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33281         * icall.c:
33282         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33283         provided, look for the type in the calling assembly and then in
33284         mscorlib; if the assembly name is provided, only try that one.
33286 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33288         * object.c: register the vtable before there is a chance it's
33289         queried again recursively.
33291 2003-01-13  Duncan Mak  <duncan@ximian.com>
33293         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33294         gc-internal.h. 
33295         
33296 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33298         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33300 2003-01-11  Martin Baulig  <martin@ximian.com>
33302         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33303         this to 20 for the release.
33305 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33307         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33309         * loader.c (mono_method_get_marshal_info): bug fix
33311         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33312         structures with explicit layout
33314 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33316         * profiler.c: made the output more readable (and sorted). 
33317         Added caller information for the allocation profiler.
33319 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33321         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33323 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33325         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33326         to get value types.
33327         
33328 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33330         * object.c, profiler.h, profiler.c, profiler-private.h:
33331         Added object allocation profiler.
33333 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33335         * reflection.h, reflection.c: handle global methods.
33336         Compress blob entries.
33338 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33340         * marshal.c: fix compilation.
33342 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33344         * loader.c (mono_method_get_marshal_info): impl.
33346         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33348 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33350         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33351         for reference types.
33353 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33355         * loader.c: fixed off by one error in loaded parameter names.
33357 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33359         * marshal.c (mono_marshal_get_icall_wrapper): like
33360         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33361         instead of a MonoMethod.
33363 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33365         * decimal.c: fixed bug #36537.
33367 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33369         * marshal.c: throw a missing method exception if a
33370         P/Invoke method is not found.
33372 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33374         * icall.c: allow a null this for constructors.
33376 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33378         * icall.c: raise the proper exceptions if the arguments to the
33379         internal Invoke are incorrect.
33381 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33383         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33385 2003-01-03  Martin Baulig  <martin@ximian.com>
33387         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33389 2002-12-31  Martin Baulig  <martin@ximian.com>
33391         * debug-mono-symfile.c: Completely rewrote the type section.
33392         Instead of using individual malloc()ed fields, we use one big
33393         continuous memory area and offsets into this area.
33394         See the comments in the source code for details.
33396 2002-12-30  Martin Baulig  <martin@ximian.com>
33398         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33400 2002-12-30  Martin Baulig  <martin@ximian.com>
33402         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33403         line number table in this data blob instead of using an external
33404         pointer.
33406 2002-12-28  Martin Baulig  <martin@ximian.com>
33408         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33410 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33412         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33413         as a boxed return type.
33415 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33417         * appdomain.c
33418         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33419         g_build_filename to properly get separators on the filename created.
33421         * object.h: Small change, introduce MonoMarshalByRefObject to
33422         track the layout of that structure in the C# universe as we make
33423         changes there.
33425 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33427         * object.c: removed assert to allow static fields on interfaces.
33428         * loader.c: a TypeSpec may be used for any type, not just arrays.
33430 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33432         * class.c, class.h: added mono_class_array_element_size ().
33433         Ignore static methods in interfaces.
33435 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33437         * threads.c: fixed the build under cygwin.
33439 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33441         * reflection.c: handle nullref constants. Allocate keys for
33442         reflection handles with the GC.
33444 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33446         * threads.c, threads.h: added mono_thread_get_abort_signal()
33447         to get a suitable signal for thread abort.
33449 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33451         * metadata.c: fix handling of ExportedType table.
33453 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33455         * icall.c: added WriteWindowsDebugString internal call.
33457 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33459         * reflection.h: added fields to match C# implementation.
33461 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33463         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33465 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33467         * gc.h, gc-internal.h: Rename header for GC internal calls to
33468         gc-internal.h from gc.h as to not clash with Boehm GC having its
33469         header installed as <gc.h> in outside include paths.
33470         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33471         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33473 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33475         * icall.c: assign minor, build and revision in FillName.
33477 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33479         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33480         Added support for running code generated by Reflection.Emit.
33482 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33484         * appdomain.c: check for NULL argument in LoadFrom.
33486 2002-12-10  Dick Porter  <dick@ximian.com>
33488         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33490 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33492         * appdomain.c: fix buglet when building exe file name.  Handle full
33493         assembly name (needed after latest changes to AssemblyName).
33494         * image.c:
33495         (mono_image_close): free some hashtables.
33497 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33499         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33500         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33501         on some systems (redhat 7.3) 
33503 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33505         * threads.c: delete the critical section of a sync block,
33506         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33508 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33510         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33512 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33514         * appdomain.[ch]: handle the assembly preload event to try loading the
33515         assemblies using the paths we have in the current domain.
33517         * assembly.[ch]: created an assembly preload hook that is called to try
33518         loading the assembly by other means that the ones provided here.
33520         * domain.c: initialize the domain search path.
33522         From now on, assemblies (TODO: except corlib and System) are loaded
33523         according to these rules when using mono_assembly_load ():
33525                 1. It tries to load the assembly from the ApplicationBase
33526                 of the current domain appending .dll and .exe (TODO: have to
33527                 try loading from name/name.dll and name/name.exe).
33529                 2. It tries the search path specified in PrivateBinPath for the
33530                 current domain (if any).
33532                 3. Previous behavior.
33534 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33536         * icall.c: implemented GetInterfaceMap() related icall.
33537         * domain.c, loader.h: load MethodInfo in mono_defaults.
33539 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33541         * gc.c: disable the finalizer thread for now, untill all the issues
33542         with it are resolved.
33544 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33546         * string-icalls.c: handle embedded nulls in string ctor when the
33547         length is specified.
33549 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33551         * class.c: look for explicit interface implementation in parent
33552         classes, too.
33554 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33556         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33558 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33560         * gc.c: protect handles with a critical section.
33562 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33564         * icall.c:
33565         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33566         parameters. If no assembly specified, try getting the type from all
33567         the assemblies in the current domain, else, load the assembly and get
33568         the type from it.
33570 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33572         * marshal.c: applied patch from Aleksey Demakov that fixes
33573         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33575 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33577         * icall.c: fixed get_location.
33579 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33581         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33582         declarations to make it work with older gcc. 
33584         * loader.c (mono_get_method): set signature->pinvoke for native calls
33586 2002-11-20  Dick Porter  <dick@ximian.com>
33588         * threads.c (mono_thread_init): Set the main thread's handle
33590 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33592         * gc.c: allow compilation without GC support. Changed to match the
33593         mono coding style.
33595 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33597         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33599 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33601         * reflection.c: set a public key token on the core assemblies.
33603 2002-11-18  Dick Porter  <dick@ximian.com>
33605         * threads.c: Split out some thread initialisation so that other
33606         files can set the start callback function.
33608         * gc.c: Run finalisers in a separate thread, to avoid stack
33609         overflow.  Fixes bug 31333.
33611         * appdomain.c: Set up GC finalisation thread.
33613         * reflection.c: 
33614         * object.c: 
33615         * domain.c: Use gc.h macros for GC_malloc
33616         
33617 2002-11-15  Dick Porter  <dick@ximian.com>
33619         * threadpool.c: 
33620         * threads.c:
33621         * appdomain.c: Removed mono_runtime_init_with_attach(),
33622         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33623         merging the extra parameter with the existing function.  Removed
33624         unneeded code in mono_thread_attach().
33626 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33628         * image.c (mono_image_loaded_by_guid): a method to get loaded
33629         images by guid. 
33630         (load_metadata_ptrs): we store the guid as string.
33632 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33634         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33636         * metadata.c (mono_guid_to_string): imported method form Zoltan
33637         Varga (slightly modified)
33639         * assembly.c (mono_assembly_open): load precompiled code
33641         * loader.h (MonoMethod): we store the method token for use in the
33642         aot compiler. 
33644 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33646         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33647         the hook function called when an assembly is loaded.
33648         
33649         * domain.c: Modified file.
33650         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33652         Fixes bug #33196.
33654 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33656         * reflection.c: Map PEFileKind to the value expected by the WinNT
33657         image loader. 
33659 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33661         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33662         Read until the buffer is filled completely.
33664 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33666         * icall.c: implemented MonoType.InternalGetEvent ().
33668 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33670         * appdomain.c: implemented InitAppDomainSetup. Delayed
33671         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33672         the entry_assembly.
33674         * assembly.c: base_dir is now an absolute path ending with
33675         G_DIR_SEPARATOR.
33677         * icall.c: modified get_location according to the above changes.
33679         * object.c: init AppDomain.SetupInformation for the default domain after
33680         we have the entry assembly.
33682         * domain.c: when unloading a domain, setup = NULL.
33684 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33686         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33688 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33690         * object.h, object.c: introduced mono_object_get_virtual_method ()
33691         to lookup the method invoked on an object when a callvirt is done on
33692         a method.
33693         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33695 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33697         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33698         current domain when loaded an assembly and failed to load it.
33700         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33702 2002-10-31  Dick Porter  <dick@ximian.com>
33704         * icall.c: 
33705         * file-io.h: 
33706         * file-io.c: Return the error status in a parameter, as the
33707         GetLastError() value has long since been blown away if we try and
33708         look it up in a subsequent internal call invocation.  Delete the
33709         GetLastError() internal call, because it's useless.
33711 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33713         * class.[ch]: added cast_class to fix bug 29517
33715 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33717         * marshal.c: create valid IL code in the filter clause:
33718         the new JIT is less forgiving:-)
33720 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33722         * icall.c: removed get_property internal call.
33724 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33726         * appdomain.h domain.c: Added an ID to appdomains.
33727         
33728         * threads.c threads.h icall.c: Implement icall
33729         Thread:GetDomainID(), and remove unused icall 
33730         CurrentThreadDomain_internal.
33732 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33734         * icall.c: Don't recurse through the base types in GetConstructor.
33735         Fixes bug #32063. 
33737 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33739         * mempool.h, mempool.c: added mono_mempool_empty() and
33740         mono_mempool_stats().
33742 2002-10-23  Dick Porter  <dick@ximian.com>
33744         * file-io.c: 
33745         * file-io.h: 
33746         * icall.c: Added MonoIO.GetFileType internal call
33748 2002-10-17  Dick Porter  <dick@ximian.com>
33750         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33751         delegate semaphore before waiting for all threads to finish,
33752         because new threads can also call async delegates.  Fixes bug
33753         32004.
33755         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33756         of 3 seconds, in case another async job is queued.  (This part is
33757         needed because the bug fix reintroduced the 3s exit lag.)  This
33758         makes the mono_runtime_shutdown flag superfluous.
33760 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33762         * reflection.c: include ehader size in method section headers.
33763         Really check for suplicated modules entries.
33765 2002-10-17  Martin Baulig  <martin@gnome.org>
33767         * debug-mono-symfile.c: Added back support for locals.
33769 2002-10-14  Martin Baulig  <martin@gnome.org>
33771         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33772         MONO_TYPE_VOID.
33774 2002-10-14  Martin Baulig  <martin@gnome.org>
33776         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33777         mono_class_get() instead of looking in the class cache. 
33779 2002-10-13  Martin Baulig  <martin@gnome.org>
33781         * debug-mono-symfile.c: Set version number to 28, include the
33782         signature in method names.
33784 2002-10-13  Martin Baulig  <martin@gnome.org>
33786         * debug-mono-symfile.h: Set version number to 27.
33788 2002-10-11  Martin Baulig  <martin@gnome.org>
33790         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33792 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33794         * metadata.c, metadata.h: added helper function to allocate signatures.
33796 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33798         * icall.c: added internal call to get the location of machine.config.
33800 2002-10-08  Martin Baulig  <martin@gnome.org>
33802         * debug-mono-symfile.c: Ignore classes with a pending init for the
33803         moment.
33805 2002-10-03  Dick Porter  <dick@ximian.com>
33807         * threads.c: Freebsd pthread_t is a pointer
33809 2002-10-03  Dick Porter  <dick@ximian.com>
33811         * socket-io.c: Implemented GetHostName_internal
33813 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33815         * mono-config.c:
33816         (mono_config_parse_file): don't leak the text.
33818 2002-10-02  Martin Baulig  <martin@gnome.org>
33820         * debug-mono-symfile.c: Added support for methods.
33822 2002-10-01  Martin Baulig  <martin@gnome.org>
33824         * debug-mono-symfile.c: Don't emit methods and line numbers for
33825         the dynamic symbol file, just write the type table.  We can easily
33826         have an external helper program which creates a symbol file for an
33827         IL file.        
33829 2002-10-01  Dick Porter  <dick@ximian.com>
33831         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33832         Only add the handle to the cleanup array when we're about to
33833         launch the thread.  Bug 31425 deadlocked when the test was run on
33834         mono under w32.
33836 2002-10-01  Martin Baulig  <martin@gnome.org>
33838         * debug-mono-symfile.c: Added support for properties.
33840 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33842         * reflection.c: unaligned store fix from Mark Crichton
33843         <crichton@gimp.org>.
33845 2002-09-27  Martin Baulig  <martin@gnome.org>
33847         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33848         New interncall.
33850 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33852         * assembly.h, assembly.c: use a sane API to hook into the assembly
33853         loading process instead of a useless special-purpouse hack
33854         (ngen needs a hook, too, for example).
33856 2002-09-27  Dick Porter  <dick@ximian.com>
33858         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33859         io-layer can set up some process handle info.  Not needed on w32,
33860         but doesn't hurt either.
33862         * process.c: Pass the program name in the second parameter to
33863         CreateProcess, so the path is searched.  Include the working
33864         directory. Implemented process name, process enumeration, and some
33865         process detail internal calls.
33866         
33867         * icall.c: Added internal calls for process lookup, and some
33868         process details
33870 2002-09-26  Martin Baulig  <martin@gnome.org>
33872         * assembly.c (mono_install_open_assembly_hook): New global
33873         function to install a function to be invoked each time a new
33874         assembly is loaded.
33875         (mono_assembly_open): Run this callback function if set.
33877         * debug-mono-symfile.c: Put back line numbers for the dynamic
33878         symbol file and also record the .il file as source file.  This
33879         allows us to install the temporary symbol file as `file.dbg' just
33880         like a compiler-generated one.
33882 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33884         * Corrected typo in gc.c (BOHEM vs BOEHM).
33886 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33888         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33889         GetProperties. Also avoid calling g_slist_length in GetProperties and
33890         GetMethods.
33892 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33894         * reflection.c: avoid unaligned stores (bug spotted by
33895         Mark Crichton  <crichton@gimp.org>).
33897 2002-09-25  Martin Baulig  <martin@gnome.org>
33899         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33900         instead of guint64 for addresses and added prologue/epilogue info.
33902 2002-09-25  Martin Baulig  <martin@gnome.org>
33904         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33905         store line number info.  For the dynamic symbol file, we only need
33906         to provide the JIT generated dynamic line number info for the dynamic
33907         symbol file.
33909 2002-09-25  Martin Baulig  <martin@gnome.org>
33911         * debug-mono-symfile.h: Incremented version number.
33913 2002-09-24  Martin Baulig  <martin@gnome.org>
33915         * class.c (mono_debugger_class_init_func): New global function
33916         pointer variable.
33917         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33918         call it.
33920         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33921         function.  This is called via the mono_debugger_class_init_func
33922         hook to add all types to the dynamic type table.
33923         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33924         from its metadata token.
33926         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33927         New interncall for the debugger.
33929 2002-09-24  Nick Drochak <ndrochak@gol.com>
33931         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33932         before using it in case it is null.
33933         
33934 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33936         * metadata.c: allow custom modifiers in local var signatures
33937         (bug spotted by Zoltan Varga).
33939 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33941         * class.c: deal with the <Module> class that may have a NULL vtable.
33942         Eliminate warnings.
33944 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33946         * image.c, image.h: more strong name helpers.
33947         * monosn.c: more work: convert pem keys to cryptoapi format.
33949 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33951         * string-icalls.c: speedup IndexOf.
33953 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33955         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33957 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33959         * icall.c: cleanup: use mono_object_domain ().
33961 2002-09-23  Martin Baulig  <martin@gnome.org>
33963         * debug-mono-symfile.c: Improved type support.
33965 2002-09-22  Martin Baulig  <martin@gnome.org>
33967         * debug-mono-symfile.c: Added support for reference types and strings.
33969 2002-09-22  Martin Baulig  <martin@gnome.org>
33971         * debug-mono-symfile.c: Started to work on the type table.
33973 2002-09-21  Martin Baulig  <martin@gnome.org>
33975         * debug-mono-symfile.c: Largely reworked the symbol table format.
33976         The symbol table is now incrementally updated each time a new
33977         method is added.  We're now also using our own magic and version
33978         so that you don't need to recompile all your classes if the
33979         dynamic table changes.
33980         (mono_debug_update_mono_symbol_file): Removed.
33981         (mono_debug_symfile_add_method): New function to add a method.
33983 2002-09-21  Martin Baulig  <martin@gnome.org>
33985         * icall.c
33986         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33987         New interncall.
33989         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33990         New interncall to get a method from its metadata token.
33992 2002-09-21  Martin Baulig  <martin@gnome.org>
33994         * debug-mono-symfile.c: Create type table.
33996 2002-09-20  Martin Baulig  <martin@gnome.org>
33998         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34000 2002-09-20  Martin Baulig  <martin@gnome.org>
34002         * debug-mono-symfile.c: Provide information about params and locals.
34004 2002-09-20  Martin Baulig  <martin@gnome.org>
34006         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34007         New interncall.
34009         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34010         interncall to get a method from its metadata token.
34012 2002-09-20  Martin Baulig  <martin@gnome.org>
34014         * debug-mono-symfile.c: Added a few checks for method->header
34015         being non-NULL.  This should never happen, but for the moment
34016         let's use a g_warning() rather than a g_assert().
34018 2002-09-19  Mark Crichton  <crichton@gimp.org>
34020         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34021         even if support for it isn't present.  Added an #ifdef to fix this.
34023         * socket-io.c: Added checks back for Solaris support.
34025 2002-09-19  Martin Baulig  <martin@gnome.org>
34027         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34028         changes in the symbol file format.
34030 2002-09-18  Martin Baulig  <martin@gnome.org>
34032         * debug-mono-symfile.c: Set version number to 21.
34034 2002-09-18  Dick Porter  <dick@ximian.com>
34036         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34037         on netbsd.  Fixes bug 30051.
34039 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34041         * reflection.c:
34042         (set_version_from_string): little fix.
34044 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34046         * monosn.c, Makefile.am: added strong name utility.
34047         * reflection.h, reflection.c: implemented delayed signing,
34048         locale, version and hash id assembly attributes.
34050 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34052         * loader.c, metadata.c: load param attributes in signatures.
34054 2002-09-16  Martin Baulig  <martin@gnome.org>
34056         * debug-mono-symfile.c: Added string table with all method names.
34058 2002-09-14  Martin Baulig  <martin@gnome.org>
34060         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34061         fast method lookup.
34063 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34065         * reflection.c: record the public key token of referenced assemblies.
34067 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34069         * image.c, image.h: added functions to get the strong name and the
34070         public key of an assembly.
34071         * pedump.c: use them.
34073 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34075         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34077 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34079         * marshal.c (mono_marshal_get_managed_wrapper): Added
34080         MONO_TYPE_BOOLEAN 
34082 2002-09-11  Martin Baulig  <martin@gnome.org>
34084         * gc.c: Call GC_unregister_disappearing_link() on all links when
34085         finalizing them, this is necessary to aviod a crash in boehm's
34086         finalize handler.
34088 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34090         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34091         nick@chemlab.org.
34093 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34095         * icall.c: implemented MonoType::Module.
34096         * reflection.c, reflection.h: mono_module_get_object () from
34097         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34099 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34101         * icall.c: ignore overridden methods in GetMethods ().
34102         Fix for FieldInfo::SetValue().
34103         * object.c: handle float/double in runtime invoke.
34105 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34107         * object.c: allow a constructor to be called again on an object.
34109 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34111         * class.h, class.c: move field layout code to it's own function and
34112         export it. Get an interface id earlier. Move fields in MonoClass
34113         so they are more cache friendly and align the bitfields.
34114         * loader.c: temporary handle get_param_names() for a runtime method.
34115         * reflection.c, reflection.h: more code to handle runtime creation of
34116         types.
34118 2002-09-09  Martin Baulig  <martin@gnome.org>
34120         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34121         signature with the pinvoke field being set for the actual call.
34123 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34125         * icall.c: removed some unused icalls. Start of map of glib charsets
34126         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34128 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34130         * debug-helpers.c: break infinite loop (found and fixed by
34131         Holger Arnold <harnold@gmx.de>).
34133 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34135         * icall.c: target may be null in create_delegate.
34137 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34139         * marshal.c: handle a boolean return type.
34141 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34143         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34145 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34147         * gc.c: fix weakreferences.
34149 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34151         * icall.c: added icall to get default codepage.
34153 2002-09-03  Dick Porter  <dick@ximian.com>
34155         * threads.h: 
34156         * threads.c: Use MonoThread instead of MonoObject where
34157         apropriate.
34159         Store running thread objects in a hash table, so that we have all
34160         the info to hand when waiting for them to finish
34161         (means we don't need OpenThread() any more, so mingw builds should
34162         be fully functional again.)
34164         * verify.c:
34165         * object.h: Added thread ID to MonoThread
34167 2002-09-03  Martin Baulig  <martin@gnome.org>
34169         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34171 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34173         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34175 2002-09-03  Martin Baulig  <martin@gnome.org>
34177         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34178         argument to store the end address of the disassembled instruction.
34180         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34181         here from debug-symfile.h.
34182         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34183         JIT into this struct.
34184         (MonoSymbolFile): Added `char *image_file' field.
34185         (MonoDebugGetMethodFunc): Removed.
34186         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34187         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34188         (mono_debug_find_method): New method.
34190         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34191         create a full symbol file.
34192         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34193         and static symbol files.
34194         (mono_debug_find_method): The symbol file keeps an internal method hash,
34195         call this to get a MonoDebugMethodInfo from a MonoMethod.
34197         * debug-symfile.[ch]: Removed.
34199 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34201         * image.c (do_mono_image_open): Remove linker version check.
34203 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34205         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34206         wrappers for instance methods.
34207         
34208 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34210         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34212 2002-08-28  Dick Porter  <dick@ximian.com>
34214         * Makefile.am: Export HOST_CC for w32 builds
34216 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34218         * file-io.c process.c: MonoString are null terminated, no
34219         need for mono_string_to_utf16() anymore.
34221 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34223         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34225 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34227         * icall.c, reflection.h: speedup System.MonoType.
34229 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34231         * reflection.c: allow null as the value of a string argument in
34232         custom attributes constructors.
34234 2002-08-27  Martin Baulig  <martin@gnome.org>
34236         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34237         `trampoline_address' field.
34239 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34241         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34242         check (fixes bug #29486) 
34244 2002-08-27  Martin Baulig  <martin@gnome.org>
34246         * debug-mono-symfile.c: Changed the file format in a way that allows us
34247         open it read-only and to use a specially malloced area for all the
34248         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34249         debugging IL code and there is no MCS generated symbol file for it.
34251 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34253         * object.c: added a define for a good string and array
34254         creation speedup (not enabled by default because we need to deal with
34255         the synch stuff).
34257 2002-08-26  Martin Baulig  <martin@gnome.org>
34259         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34260         function to create a dynamic symbol file.  This is used by the
34261         debugger to create a symbol file for IL code on-the-fly.
34263 2002-08-26  Martin Baulig  <martin@gnome.org>
34265         * loader.c (mono_lookup_pinvoke_call): Include the error message
34266         from g_module_error() in the error message.
34268 2002-08-24  Martin Baulig  <martin@gnome.org>
34270         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34271         function to update the symbol file.  The symbol file is mmap()ed
34272         writable, but private.  This allows us to install the symbol file
34273         together with the assembly.
34275 2002-08-24  Martin Baulig  <martin@gnome.org>
34277         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34278         but they can read the new symbol file format which mcs is now creating.
34280         * debug-symfile.c (mono_debug_find_source_location): Moved to
34281         debug-mono-symfile.c; this is now operating on the new symbol file.
34283 2002-08-23  Martin Baulig  <martin@gnome.org>
34285         * debug-helpers.c (mono_method_desc_from_method): New function to get
34286         a MonoMethodDesc from a MonoMethod.
34288 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34290         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34291         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34293 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34295         * string-icalls.[ch]: make helper methods static.
34297 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34299         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34300         types to it and to SetValueInternal.
34302         * object.c: Moved handle_enum label to its proper place. This was the
34303         f... bug! ;-)
34305         This time i compiled mcs and gtk-sharp and they both work.
34307 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34309         * icall.c: reverted partially my previous patch until 
34310         object.c:set_value handles enums correcly.
34312 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34314         * icall.c:
34315         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34316         (ves_icall_System_Environment_get_MachineName): removed warning when
34317         compiling under cygwin.
34319 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34321         * object.c: fixed field_get_value() for reference types.
34323 2002-08-22  Dick Porter  <dick@ximian.com>
34325         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34326         Don't free a buffer while it's still needed.  Patch from Jonathan
34327         Liger <Jonathan.liger@wanadoo.fr>
34329 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34331         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34332         internal call.
34334 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34336         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34337         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34339         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34340         we call unmanaged code which throws exceptions.
34342 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34344         * appdomain.h: added per-domain entry_assembly.
34345         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34346         arguments.
34347         * icall.c: Assembly::GetEntryAssembly icall.
34348         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34349         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34351 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34353         * appdomain.h, gc.c: added mono_domain_finalize ().
34355 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34357         * object.c:
34358         (mono_print_unhandled_exception): changed g_warning by g_printerr
34359         because g_log has a 1024 characters limit (yeah, i got a big stack
34360         trace). Don't print exception name, that should be in ToString 
34361         returned string.
34363 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34365         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34366         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34368 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34370         * object.c:
34371         (mono_print_unhandled_exception): after previous commit, i realized
34372         that MS calls ToString on the exception. I changed this function to
34373         do that. This way we get stack_trace for free.
34375 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34377         * object.c:
34378         (mono_print_unhandled_exception): invoke Message property instead of
34379         getting 'message' field from Exception. Don't allocate memory for
34380         'trace' and 'message' if not needed.
34382 2002-08-18  Dick Porter  <dick@ximian.com>
34384         * unicode.c: Fix asserts to match Encoder.cs checks
34386 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34388         * marshal.c: fix unaligned store issue and a few wrong
34389         opcode argument types.
34391 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34393         * icall.c: added GetUninitializedObjectInternal internal call.
34395 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34397         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34398         to the right domain.
34400 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34402         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34404         * class.c (class_compute_field_layout): set blittable to false for Strings
34406         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34408 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34410         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34411         first chunk of code to create types at runtime. Code to
34412         handle ReflectedType/DeclaringType. Make reflection handles
34413         domain specific.
34415 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34417         * class.c: set correct name in arrays.
34419 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34421         * appdomain.c (mono_domain_transfer_object): make it work with
34422         valuetypes. bug fixes.
34424 2002-08-12  Dick Porter  <dick@ximian.com>
34426         * object.h: Rename some parameters to avoid c++ keywords (Patch
34427         from Joseph Wenninger <kde@jowenn.at>)
34429 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34431         * icall.c: added icall to implement Assembly.GetFile*.
34433 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34435         * reflection.h, reflection.c: code to embed managed resources.
34437 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34439         * class.c: move all the type size stuff into
34440         class_compute_field_layout().
34442 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34444         * class.c: ensure enums have always the correct instance size.
34445         * unicode.c: remove wrong assert.
34447 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34449         * assembly.c: fix mem corruption issue.
34450         * image.h, image.c: added mono_image_get_resource () to access
34451         managed resources.
34452         * icall.c: implemented Assembly.EntryPoint property and some
34453         Managed Resources related internalcalls.
34456 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34458         * image.c, image.h: impemented mono_image_get_entry_point ().
34459         * appdomain.c: use mono_image_get_entry_point.
34461 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34463         * reflection.c: support the object type argument when loading
34464         custom attributes.
34466 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34468         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34469         String as return type.
34471 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34473         * reflection.c: fix encoding of named args for custom attrs to match
34474         the ms implementation. Read them back when instantiating custom
34475         attributes.
34477 2002-08-02  Radek Doulik  <rodo@ximian.com>
34479         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34480         by Dietmar as quick fix
34481         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34482         16 as stack size, used on more places as quick fix before Dietmar
34483         will fix it properly
34485 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34487         * object.h, object.c: added accessors for fields and properties.
34489 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34491         * class.c, class.h: made mono_class_get_field_from_name ()
34492         loop on parent types.
34493         Added mono_class_get_property_from_name ().
34495 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34497         * class.c, class.h: move the code to setup the type vtable in its own
34498         function so that it can be reused also for types created at runtime.
34499         Eliminate the "class" identifier from the header file.
34500         * reflection.c: setup the vtable for enums so that we can create
34501         objects for use in SetConstant ().
34503 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34505         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34506         instead of the delegate itself as this pointer (bug #28383)
34508 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34510         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34511         conversions.
34513 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34515         * loader.c: don't set the pinvoke bit on icalls.
34517 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34519         * debug-helpers.c (mono_method_full_name): only print a number to
34520         indicate wrapper type (so that the output is more readable in traces).
34522 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34524         * class.c (mono_class_init): include method override patch from Paolo
34526 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34528         * icall.c: fixed GetTypeCode().
34530 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34532         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34533         use real delegate invoke function to make it work with multicast
34534         delegates (fix bug# 28291).
34536 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34538         * object.c: load constant strings.
34540 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34542         * reflection.c: no magic numbers.
34543         * tabledefs.h: security action enum.
34545 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34547         * assembly.c: fix possible memory corruption.
34549 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34551         * reflection.h, reflection.c: added support for linking resources.
34552         * verify.c: check we have an updated corlib.
34554 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34556         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34557         string arrays.
34558         (mono_marshal_string_array): null terminate unmanaged string arrays.
34559         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34561 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34563         * icall.c: Type.GetType () can now return also types from the
34564         calling assembly.
34566 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34568         * loader.h, loader.c: stack walking support.
34569         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34570         GetCallingAssembly.
34572 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34574         * marshal.c: added optimisations for blittable types 
34576         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34577         (mono_class_setup_mono_type): set blittable attribute for single
34578         and double.
34580         * marshal.c (mono_string_utf8_to_builder): impl.
34581         (mono_string_builder_to_utf8): impl.
34582         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34584 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34586         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34587         (mono_marshal_get_managed_wrapper): impl. byref types
34589 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34591         * icall.c:
34592         (search_method): don't display debug message. 
34594 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34596         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34598 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34600         * appdomain.c: set the missing filename when throwing exception.
34602 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34604         * metadata.c (mono_type_size): code cleanup
34605         (mono_type_stack_size): removed some test code
34607 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34609         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34610         mono_get_exception_file_not_found now.
34612         * exception.c (mono_exception_from_name_two_strings): New version
34613         that will call a constructor with two string arguments. 
34614         (mono_get_exception_file_not_found): New helper routine, used to
34615         report file-not-found errors.
34617 2002-07-20  Dick Porter  <dick@ximian.com>
34619         * process.h:
34620         * process.c: Pass file handles to CreateProcess
34621         
34622         * icall.c:
34623         * file-io.h:
34624         * file-io.c: Implemented CreatePipe
34626 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34628         * metadata.c (mono_get_param_info): set alignment for value types
34630 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34632         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34633         Constify mono_domain_assembly_open().
34634         * loader.c: handle null namespace in icalls.
34636 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34638         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34639         (emit_str_to_ptr_conv): marshal object as structs
34641         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34643         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34645 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34647         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34648         (mono_marshal_get_native_wrapper): we an now return value types
34650 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34652         * verify.c: more checks implemented.
34654 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34656         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34657         (fix bug #27695)
34658         (mono_marshal_get_native_wrapper): allow byref arguments
34659         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34660         impl. PtrToStringXXX methods
34661         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34662         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34663         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34664         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34665         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34667 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34669         * reflection.c: fix buglet in parsing an assembly name.
34671 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34673         * marshal.c (emit_ptr_to_str_conv): first impl.
34675 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34677         * object.c, class.h: cache the vtable in the class as suggested by
34678         vargaz@freemail.hu (Zoltan Varga).
34680 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34682         * class.h, loader.c: added mono_field_from_token().
34683         * verify.c: first cut of type checking code.
34685 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34687         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34689 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34691         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34692         (fix bug #27782)
34693         (mono_marshal_get_remoting_invoke): impl.
34694         (mono_delegate_begin_invoke): impl.
34695         (mono_mb_emit_save_args): impl.
34696         (mono_delegate_end_invoke): impl.
34697         (mono_marshal_get_delegate_begin_invoke):
34698         (mono_marshal_get_delegate_end_invoke):
34699         (mono_marshal_get_delegate_invoke): generate a special name for
34700         those methods (including the signature) and associate them whith
34701         the delegate class. 
34703 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34705         * reflection.[ch]: 
34706         (mono_reflection_type_from_name): now it has a MonoImage parameter
34707         which is used as the default image to search the type in. If the image
34708         is NULL or getting the type from it fails, it defaults to corlib.
34710         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34711         new parameter.
34713 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34715         * reflection.c: update the parameter table index.
34717 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34719         * domain.c: don't include the mark byte in the string hash.
34721 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34723         * icall.cs: icall for Type.GetTypeCode ().
34724         * verify: a couple of fixes and disabled local initialization checks.
34726 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34728         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34730         * debug-helpers.c (mono_method_full_name): print the type of the
34731         runtime wrapper
34733         * metadata.c (mono_signature_hash): a hash function for signatures
34734         (mono_signature_hash): better hash algorithm
34736         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34738         * debug-helpers.c (mono_method_full_name): this can now generate
34739         method names with signatures
34741         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34742         method dont have this pointers.
34744 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34746         * reflection.c: fixup typebuilder tokens.
34747         * image.c: fix buglet.
34748         * marshal.h: remove whitespace.
34749         * metadata.h, metadata.c: reinstate code that was removed.
34750         * verify.c: handle catch directives and fix another couple of bugs.
34752 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34754         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34755         (mono_marshal_get_native_wrapper): make it comp. with the old code
34756         (mono_marshal_get_native_wrapper): support boolean
34757         (mono_marshal_get_managed_wrapper): support more types
34759 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34761         * class.c (class_compute_field_layout): compute class->blittable attribute.
34763 2002-07-09  Dick Porter  <dick@ximian.com>
34765         * threads.c: Make the thread cleaning up cope with threads that
34766         call ExitThread()
34768 2002-07-08  Radek Doulik  <rodo@ximian.com>
34770         * reflection.c (method_encode_code): use non-translated values to
34771         compute finally_start, this fixes exception handling on ppc, yay!
34773         * decimal.h (struct signscale): fix endianess
34775 2002-07-07  Radek Doulik  <rodo@ximian.com>
34777         * reflection.c: swap box_val and not val
34779 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34781         * reflection.c, reflection.h: handle full assembly info in type name.
34782         Handle Type arguments when loading custom attributes.
34783         * icall.c: updated to use new mono_reflection_type_from_name () method.
34785 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34787         * loader.c:
34788         (method_from_memberref): also print assembly name when method not found.
34790 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34792         * icall.c:
34793         (ves_icall_TypeGetProperties): fixed bug #27473. 
34795 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34797         * reflection.c: display image name and token when cannot find the
34798         .ctor for an attribute.
34800 2002-07-05  Martin Baulig  <martin@gnome.org>
34802         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34804 2002-07-04  Dick Porter  <dick@ximian.com>
34806         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34807         compile on mingw.  This will cause mingw builds to not wait for
34808         subthreads to terminate after the main thread does.  I've lodged a
34809         bug with the mingw developers for them to wrap OpenThread().
34811 2002-07-03  Dick Porter  <dick@ximian.com>
34813         * threads.c: Store thread IDs instead of handles, because
34814         GetCurrentThread() returns a pseudohandle and therefore stores
34815         useless values.  mono_thread_cleanup() continues checking the
34816         array of threads until it is empty, to cope with subthreads
34817         spawning new threads after the main thread has finished.
34819         * profiler.h:
34820         * profiler.c:
34821         * profiler-private.h: Pass the thread ID to thread profiler
34822         functions, instead of a handle
34824 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34826         * verify.c: fixes to make it more usable.
34827         * pedump.c: added --verify code to verify IL code in an assembly.
34829 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34831         * reflection.c: turn errors into warnings to allow compiling corlib.
34833 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34835         * reflection.c: add special cases to compile corlib.
34837 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34839         * reflection.c: handle properties with only a set method.
34841 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34843         * opcodes.h: add enum with opcodes in opval order.
34845 2002-07-01  Dick Porter  <dick@ximian.com>
34846         
34847         * object.h:
34848         * object.c (mono_runtime_run_main): Removed unneeded argument
34850 2002-06-28  Martin Baulig  <martin@gnome.org>
34852         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34854 2002-06-27  Dick Porter  <dick@ximian.com>
34856         * threads.c: Store the handle in both the parent thread and in the
34857         subthread, to minimise the time between starting a new thread and
34858         storing its ID.
34860 2002-06-26  Dick Porter  <dick@ximian.com>
34862         * appdomain.c (mono_runtime_cleanup): Close the socket library
34863         after all the threads have finished, not before
34865 2002-06-26  Martin Baulig  <martin@gnome.org>
34867         * debug-symfile.c (mono_debug_find_source_location): Added
34868         `guint32 *line_number' argument.  If it's not NULL, store the line number
34869         there and return the file name without the line number.
34871 2002-06-25  Dick Porter  <dick@ximian.com>
34873         * icall.c:
34874         * process.h:
34875         * process.c: Process forking and other support functions
34877 2002-06-25  Dick Porter  <dick@ximian.com>
34879         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34880         things dont happen when the image is closed.
34881         (mono_image_lookup_resource): Walk the resource section looking
34882         for a particular entry
34884         * cil-coff.h: PE resource section decoding
34886 2002-06-25  Dick Porter  <dick@ximian.com>
34887         
34888         * assembly.h:
34889         * assembly.c: 
34890         (mono_assembly_foreach): Accessor functions to walk the list of
34891         loaded assemblies
34892         (mono_assembly_set_main):
34893         (mono_assembly_get_main): Process methods need to know which
34894         assembly is the "main" one
34896         * object.c (mono_runtime_run_main): Record the main assembly
34898         * debug-helpers.c: Fix typo
34900 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34902         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34903         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34905 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34907         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34909 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34911         * image.c (do_mono_image_open): Initialize reference count,
34912         otherwise we leak the MonoImage.
34914 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34916         * reflection.c: small tweak to handle self-hosting.
34918 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34920         * reflection.c: fix type name parse code.
34922 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34924         * reflection.c: break out of the loop.
34925         * image.c: special case corlib.
34927 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34929         * reflection.c: add all the custom attrs at the end to ensure the
34930         ctors have been properly initialized when the attributes are defined
34931         in the current assembly.
34933 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34935         * reflection.c: handle correctly multiple-nested types.
34937 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34939         * row-indexes.h: fix typos.
34940         * reflection.c: adjust for typos and fix method_def_or_ref
34941         encoding in MethodImpl table.
34943 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34945         * reflection.c: fix entry point patching (thanks Serge!).
34947 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34949         * verify.c: add check for System.Exception
34951 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34953         * image.c, class.c: minifix for code just c&p'ed.
34954         * reflection.c: warning fix.
34955         * object.h, loader.h, domain.c: load also StringBuilder.
34957 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34959         * marshal.h, marshal.c: some support code to handle complex marshaling.
34961 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34963         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34964         Better signatures with vtable error dump.
34966 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34968         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34970 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34972         * icall.c (ves_icall_Type_GetField): impl.
34974 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34976         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34977         to retrieve a marshal description blob for a field or param.
34979 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34981         * reflection.h, reflection.c: change order of nested type emission
34982         to avoid table corruption. The NestedTypes table is sorted.
34983         * icall.c: change order of GetConstructor results to workaround mcs bug.
34985 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34987         * reflection.h, reflection.c: handle field and param marshal
34988         information.
34990 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34992         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34994 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34996         * reflection.c: fix call convention.
34998 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35000         * reflection.h, reflection.c: mono_image_get_memberref_token()
35001         takes a type instead of a class, now. Added
35002         mono_image_get_array_token() to create tokens for the special
35003         multi-dim array methods.
35005 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35007         * assembly.c: handle modules (no assembly table). Split
35008         loading references in its own function.
35009         * class.c: handle moduleref resolution scope.
35010         * image.c, image.h: cache module name in image.
35012 2002-06-07  Martin Baulig  <martin@gnome.org>
35014         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35015         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35017 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35019         * icall.c: more signature fixes that used uint instead of int.
35021 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35023         * reflection.c: fixed signature of field refs.
35025 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35027         * class.c, reflection.c: handle typerefs of nested types
35028         (both on read and when writing files).
35030 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35032         * icall.c: fix method signatures that tried to workaround the previous
35033         typo, d'oh!
35035 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35037         * debug-helpers.c: fix typo.
35039 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35041         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35042         rewrote the PE/COFF writing code (our programs are understood by the
35043         ms runtime, now).
35045 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35047         * gc.c, gc.h, icall.c: weakreference support.
35049 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35051         * Makefile.am, mono-config.c: use $(sysconfdir).
35053 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35055         * icall.c: changed default precision of Double.ToString() to 15.
35056         Fixed memory leak. Unified with Single.ToString.
35058 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35060         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35062 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35064         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35065         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35066         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35067         and myself.
35069 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35071         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35073 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35075         * reflection.c, socket-io.c: more compilation fixes.
35077 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35079         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35080         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35081         unicode.c: warning and compiler compatibility fixes.
35083 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35085         * class.h, metadata.c: fixed warnings/compilation errors.
35087 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35089         * Makefile.am, mono-config.c, mono-config.h: configuration file
35090         support routines.
35091         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35092         config file. Export methods to insert and lookup mappings.
35094 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35096         * reflection.c: handle types and boxed objects in custom attr
35097         constructors.
35099 2002-05-30  Martin Baulig  <martin@gnome.org>
35101         * debug-symfile.c
35102         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35104 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35106         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35107         to lookup the implmap row for a P/Invoke method.
35108         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35109         P/Invoke method from the runtime on an as needed basis.
35111 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35113         * metadata.c (mono_metadata_parse_signature): impl.
35115 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35117         * class.c: handle .pack directive.
35119 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35121         * object.c: initialize static fields with RVA data.
35123 2002-05-25  Martin Baulig  <martin@gnome.org>
35125         * debug-symfile.c
35126         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35128 2002-05-24  Martin Baulig  <martin@gnome.org>
35130         * debug-symfile.c
35131         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35132         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35133         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35135 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35137         * object.c: special case string ctros in invoke.
35138         * gc.c: silly whitespace changes.
35140 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35142         * threadpool.[ch]: impl. a threadpool that can
35143         be used by mint and mono.
35145 2002-05-22  Martin Baulig  <martin@gnome.org>
35147         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35148         The first argument is now a `MonoReflectionModuleBuilder *', the return
35149         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35150         `methods' field to get the method builder.  The `token' argument is the
35151         unfixed token.
35153         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35154         invalid characters instead of g_assert_not_reached()ing.  This seems
35155         to be the behaviour of mscorlib.
35157 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35159         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35160         Hestilow to fix bug #25104
35162 2002-05-21  Martin Baulig  <martin@gnome.org>
35164         * debug-symfile.c (mono_debug_find_source_location): New function.
35165         Looks up an IL offset in the line number table and returns the source
35166         location as a string.
35168 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35170         * icall.c:
35171         (mono_double_ToStringImpl): changed %f by %g until we have something
35172         better.
35174 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35176         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35177         parameters first in C#.
35179 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35181         * icall.c, reflection.h: added icall to get info about an event.
35183 2002-05-20  Radek Doulik  <rodo@ximian.com>
35185         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35186         endian
35187         (mono_value_box): don't use memcpy for small sizes on
35188         architectures with unaligned access
35190 2002-05-20  Martin Baulig  <martin@gnome.org>
35192         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35193         if `tb->parent == NULL'.
35194         (mono_reflection_create_internal_class): New function.  This is
35195         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35196         for enum types.
35198         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35199         New interncall.
35201 2002-05-19  Martin Baulig  <martin@gnome.org>
35203         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35204         argument to get the length, don't default to the array length.
35206 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35208         * assembly.c (mono_assembly_setrootdir): New function used to
35209         override the MONO_ASSEMBLIES directory.
35211 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35213         * icall.c: ValueType_GetHashCode() initialize local var.
35215 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35217         * reflection.c: sort custom attributes table.
35219 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35221         * reflection.c: support named args in custom attributes (write support).
35223 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35225         * reflection.c: fix finally position calculation.
35227 2002-05-15  Radek Doulik  <rodo@ximian.com>
35229         * reflection.c: fixed endianess at many places
35231         * icall.c (ves_icall_InitializeArray): comment out debug msg
35233 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35235         * object.c (mono_unhandled_exception): new function to handle
35236         unhandled exceptions.
35237         (mono_unhandled_exception): call the UnhandledException event.
35238         (mono_runtime_delegate_invoke): impl.
35240 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35242         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35243         returns the RVA, not the direct pointer to the data. Handle the case
35244         when the class size is fixed.
35246 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35248         * reflection.c: fix some endianess issues.
35250 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35252         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35254         * threads.c (mono_thread_init): added a callback which is invoked
35255         at thread start.
35257 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35258         
35259         * icall.c: make GetHashCode return non-negative values.
35261 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35263         * object.c, icall.c, gc.c: revert to address-based hashcode.
35265 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35267         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35269 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35271         * icall.c, class.c: special case <Module>.
35273 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35275         * icall.c: fix bug in GetNow().
35277 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35279         * object.c (mono_runtime_class_init): make sure that we call all
35280         static class constructors.
35282 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35284         * reflection.c: sort methodsemantics table.
35286 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35288         * reflection.h, reflection.c: honour init locals setting.
35290 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35292         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35294 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35296         * reflection.c: support ContructorBuilders in attribute blob creation.
35298 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35300         * reflection.c: some changes to build a binary that can be run
35301         directly in windows.
35303 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35305         * loader.c: print a big message when an icall can't be found.
35307 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35309         * string-icalls.c: fix bug 24248.
35311 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35313         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35314         icall.c, reflection.h: separate assembly loading by pathname and by
35315         assembly name. Use the MONO_PATH env var to search for assemblies.
35317 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35319         * assembly.c, image.h: add some support for assemblies
35320         with multiple modules.
35321         * class.c, class.h: export mono_class_from_typeref().
35322         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35323         instead.
35325 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35327         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35328         documentation says (the ECMA one is correct).
35330 2002-05-02  Dick Porter  <dick@ximian.com>
35332         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35333         Don't name the synchronisation mutex.
35335 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35337         * rand.c
35338         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35339         Make the prototypes match.
35340         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35341         Same.
35343         * icall.c
35344         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35345         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35346         all systems have tm.tm_zone, so use strftime() with %Z to print
35347         the timezone abreviation into a temp string.
35349         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35350         rather than mono_array_addr() on a MonoString on Big Endian
35351         machines.
35353 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35355         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35356         fix bug 24041
35358 2002-04-30  Dick Porter  <dick@ximian.com>
35360         * socket-io.c: Cope with SOCKET being an integer rather than a
35361         pointer now.
35363         * threads.c: Added Thread_free_internal, to deal with thread
35364         handle cleanup.  Moved calls to handle_store() and handle_remove()
35365         to start_wrapper(), so each can only be called once.  Allocate
35366         synchronisation blocks with GC_malloc(), and use GC finalisation
35367         to close the handles.
35369         * icall.c: added System.Threading.Thread::Thread_free_internal
35371 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35373         * icall.c: support Environment.Exit, CommandLineArgs().
35375 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35377         * object.c, object.h: added mono_runtime_run_main () and
35378         mono_runtime_get_main_args () for use in System.Environment.
35380 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35382         * gc.c: fix thinko, enable actual finalization since the jit is now
35383         fixed.
35385 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35387         * gc.c, object.c: take into account that an object may be offset wrt the address
35388         returned by GC_malloc().
35390 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35392         * image.c: handle files without entries in the assembly table (modules).
35394 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35396         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35397         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35398         allowed to be null when it's System.Object class setup.
35400 2002-04-27  Martin Baulig  <martin@gnome.org>
35402         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35403         if `tb->parent == NULL' rather than crashing.
35405 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35407         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35408         calling acos() where asin() should have been called.
35410 2002-04-26  Martin Baulig  <martin@gnome.org>
35412         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35413         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35414         there's a subdirectory called `System', but we don't want to read that
35415         subdirectory as an assembly.
35417 2002-04-25  Martin Baulig  <martin@gnome.org>
35419         * debug-symfile.c: Reflect latest MonoString changes.
35421 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35423         * rand.c, rand.h: instance method icalls need to have an explicit
35424         this pointer as first argument in the C implementation.
35426 2002-04-25  Nick Drochak <ndrochak@gol.com>
35428         * icall.c: Fix typo in map for GetNonZeroBytes
35430 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35432         * string-icalls.c : String does now passes unit tests without any 
35433         errors, the following changes has been made:
35434         
35435         Implemented replace methods.
35436         Renaming of methods to (try) follow the standard.
35437         Fixed compare ordinal
35438         Made all memory allocated directly to function instead of via icall function.
35439         Small performance fix in is_in_array function
35440                         
35441  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35443         c (mono_string_Internal_ctor_charp_int_int):
35444         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35445         sindex < 0, throw ArgumentOutOfRangeException instead of
35446         ArgumentNullException.
35448         Added new check for length == 0, however
35449         I need to make it return String.Empty from the C code.
35450         
35451         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35452         that calculate the length for us here.
35453         
35454         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35455         mono_string_new_utf16 with mono_string_new, since value is utf8.
35457 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35459         * object.c: register the object for finalization if needed.
35460         Allocate one more char in the string for the terminating 0 char.
35462 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35464         * class.c, class.h, image.c: check if a type implemenst a destructor.
35465         Use the proper key for array class lookups.
35466         * icall.c: register the icalls in the System.GC class.
35467         * gc.c, gc.h: GC-related functions and icalls.
35469 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35471         * icall.c:
35472         * socket-io.c:
35473         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35474         changed a couple of free () by g_free ().
35476         * decimal.c: one-liner in the comments for decimal2string ().
35478 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35480         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35482 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35484         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35485         * object.c (mono_runtime_invoke_array) : handle null in params
35487 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35489         * string-icalls.c: fixed bug in split (one off bug)
35491 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35493         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35494         * icalls.c: added String::Equals as internal method
35496 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35498         * threads.c: fixed bug in the double interlocked functions
35500 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35502         * threads.c: implemented all of the new interlocked icalls.
35503         * string-icalls.c: fix a bug in insert.
35504         * icalls.c: added the icalls for interlocked, removed old string functions.
35505         
35506 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35508         * loader.c: fix off-by-one error when reading argument names.
35510 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35512         * profiler.c: win32 counter implementation (untested).
35513         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35514         (the latter needs testing and more complete impl. from win32 folks).
35516 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35518         * object.c: mono_array_new_full workaround mono_array_class_get
35519         problem.
35521 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35523         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35524         * object.h (mono_string_chars): Changed casting type.
35526 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35528         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35529                            method signatures to use gunichar2 instead of gint16.
35531 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35533         * object.h, object.c: domain-specific versions of mono_object_new and
35534         mono_array_new.
35536 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35538         * object.c: changed String layout
35540         * string-icalls.c (mono_string_Internal_ctor_chara): added
35541         internal string constructors.
35543 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35545         * threads.c: pass 'this' to the thread start routine.
35547 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35549         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35550         InternalCompareStr don't call twice mono_string_cmp_char for the last
35551         character. Improved performance in mono_string_cmp_char.
35553 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35555         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35556         code into its own library: libmonoruntime.
35558 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35560         * object.h, object.c: changed array format so that szarrays do not
35561         require a bounds structure.
35562         * icall.c, appdomain.c: support for new szarray format.
35564 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35566         * metadata.c: compare also the retuns type when comparing signatures:
35567         we didn't do this as an optimization since really overloaded methods
35568         must differ also in the arguments, but this doesn't work with
35569         low-level IL code (or when using explicit conversion operators: see
35570         bug#23498 for an example).
35572 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35574         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35576 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35578         * icall.c: make MonoType::GetElementType its own icall.
35580 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35582         * icall.c: remove MonoMethod_get_Name().
35583         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35584         object.
35586 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35588         * string-icalls.c: optimized a few methods.
35590 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35592         * icall.c: added all new string internal calls
35593         * string-icalls.c: added, new string internal call implementation.
35594         * object.c: added mono_string_new_size for allocating a string a size
35596 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35598         * object.c (mono_object_isinst): use the same code as in the
35599         optimized x86 version.
35601 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35603         * profiler.c: TSC-based timer code (faster and more accurate).
35604         Not hooked up in configure, yet (set USE_X86TSC to 1).
35606 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35608         * profiler.c, profiler.h: track time spent compiling methods.
35609         * threads.c: track thread creation/destruction.
35611 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35613         * profiler.c, profiler.h, profiler-private.h: profiling interface
35614         and sample implementation. Moved here so that it can be used also by
35615         the jit.
35617 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35619         * reflection.c, reflection.h: keep types and other handles separate in
35620         the hash tables for referred tokens. Add guid for modules.
35622 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35624         * assembly.c: fix bugs found with valgrind.
35625         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35627 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35629         * threads: added icall support for getting current domain for
35630                    the thread.
35632 2002-04-13  Martin Baulig  <martin@gnome.org>
35634         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35635         (MonoDebugVarInfo): Added `index' field for register based addresses.
35636         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35637         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35638         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35639         `MonoDebugVarInfo *this_var'.
35641         * debug-symfile.c (relocate_variable): New static function to write
35642         a location description for a local variable or method parameter.
35644 2002-04-12  Martin Baulig  <martin@gnome.org>
35646         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35647         stack offset and begin/end scope address of a local variable.
35648         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35649         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35650         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35652         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35653         Added new relocation types for start/end scope of a local variable.
35655 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35657         * object.h: add mono_object_domain() macro.
35658         * reflection.c: handle typespecs.
35659         * icall.c: MonoMethod::get_Name() implementation.
35661 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35663         * icall.c: String::GetHashCode() icall implementation.
35665 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35667         * icall.c: String::IndexOfAny icall.
35668         * object.c, object.h: make array->max_length more useful.
35669         Intrduced mono_object_class() and mono_string_length() macros.
35671 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35673         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35674         instead of g_unichar_isdigit.
35676 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35678         * icall.c: Implement a simple Double.ToString().
35680 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35682         * appdomain.h: only io-layer.h is supposed to be included.
35683         * icall.c: explicitly import environ. Fix warning.
35685 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35687         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35688                 return true even if it's not Daylight Savings time.
35689                 Only return false for the case where the function isn't
35690                 implemented for a plaform (read Windows).
35692 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35694         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35695         data with a mutex.
35697 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35699         * mempool.c (mono_mempool_alloc): only use g_malloc when
35700         absolutely necessary.
35702 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35704         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35706         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35707         (mono_class_proxy_vtable): use domain mempool
35709 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35711         * appdomain.h, appdomain.c: split initialization that requires the
35712         execution engine support into mono_runtime_init().
35714 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35716         * class.c (mono_class_init): don't include vtable inside MonoClass
35717         to save some memory, gather some statistics.
35718         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35720 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35722         * icall.c: internalcall implementation for ValueType.Equals().
35724 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35726         * object.c (mono_message_init): moved 
35727         (mono_runtime_exec_main): new arch. independent impl.
35728         (mono_runtime_invoke_array): new method - like
35729         mono_runtime_invoke, but you can pass an array of objects.
35730         (mono_remoting_invoke): new arch. independent impl.
35731         (mono_message_invoke): new arch. independent impl.
35732         (mono_runtime_class_init): new arch. independent impl.
35733         (mono_runtime_object_init): new arch. independent impl.
35735 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35737         * metadata.c, object.c, reflection.c: documented the exported
35738         functions.
35740 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35742         * icall.c: simpler code to pass the assembly builder data to corlib.
35743         Implement GetNestedTypes() internalcall.
35745 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35747         * class.c: warn if a type can't be loaded.
35749 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35751         * image.h: typedef MonoImageOpenStatus
35752         * types.h: removed unused file
35753         
35754 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35756         * icall.c: Enum_ToObject accepts enum value arguments.
35758 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35760         * class.c: move initialization of properties, events and nested
35761         classes, so that they happen for interfaces, too.
35763 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35765         * icall.c: cleanup some ugly casts in Array_SetValue*.
35767 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35769         * icall.c: the values array fro enums is of the correct type, now.
35770         Implement (correctly) getFullName instead of assQualifiedName for
35771         MonoType.
35772         * reflection.h, reflection.c: added mono_type_get_name ().
35774 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35776         * assembly.c, image.h: for each MonoImage, record from wich assembly
35777         it was loaded.
35778         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35779         Make Type.Assembly work.
35781 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35783         * debug-symfile.h: use char* instead of gpointer to avoid
35784         unnecessary casts.
35786         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35788         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35789         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35791 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35793         * icall.c (mono_message_init): impl. (code cleanup)
35794         (ves_icall_InternalExecute): impl. FieldGetter
35796         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35797         defined we call all (non-static)methods through the vtable. 
35799 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35801         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35802         finalizer even though the memory is still referenced (and the chunk of
35803         memory is not freed).
35805 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35807         * assembly.c: fix brokeness.
35809 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35811         * class.c: kill some warnings. Check explicit interface method
35812         implementation also without considering the namespace.
35813         Load also literal strings in static class data.
35815 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35817         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35818         (default_assembly_name_resolver): Make the resolver take the
35819         "base" directory where the assembly was originally defined, so we
35820         can load DLLs that are in the same directory as the assembly that
35821         is being referenced.
35823 2002-03-28  Dick Porter  <dick@ximian.com>
35825         * file-io.h: 
35826         * file-io.c:
35827         * socket-io.c: 
35828         * unicode.h: 
35829         * unicode.c: Warning cleanups
35831 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35833         * object.h, reflection.h: use the correct type instead of MonoObject.
35835 2002-03-28  Martin Baulig  <martin@gnome.org>
35837         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35838         (mono_debug_update_symbol_file): Initialize classes if necessary.
35840 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35842         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35843         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35845 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35847         * assembly.h: fix function prototype.
35848         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35849         * mono-endian.h: use const cast.
35851 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35853         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35855 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35857         * loader.c: don't assert when a typeref can't be loaded, give
35858         a chance to the runtime to trow an exception instead.
35859         * loader.h: fix warning.
35861 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35863         * class.c (mono_class_proxy_vtable): added proxy support
35865 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35867         * icall.c: removed last of PAL calls, added System.Environment
35868         * file-io.h, file-io.c: MonoIO implementation
35869         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35871 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35873         * appdomain.c: do not use the byte marker in ldstr table lookup.
35874         * debug-helpers.c: allow two ':' to separate class and method name.
35875         * object.c: allocate arrays bounds with the GC, too.
35876         * verify: add a few more checks.
35878 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35880         * reflection.c: output also literal strings. Allocate parameter data
35881         with GC_malloc() (thanks, Martin, for catching this!).
35883 2002-03-26  Martin Baulig  <martin@gnome.org>
35885         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35886         include the `this' offset in the `param_offsets'.
35888 2002-03-25  Martin Baulig  <martin@gnome.org>
35890         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35891         mono_debug_get_class() function to get the classes. Added new
35892         relocation types for arrays and strings.
35893         (mono_debug_get_class): New static function to search in all
35894         referenced assemblies for a metadata token.
35896         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35898 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35900         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35901         hold gc-allocated objects. Make the string heap a stream like the
35902         others. Removed duplicated code when writing stream info.
35903         Added asserts to catch possible buffer overflows. Set the sorted map
35904         for tables that need sorting. Added some documentation.
35906 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35908         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35909         for interned strings and vtables.
35911 2002-03-24  Martin Baulig  <martin@gnome.org>
35913         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35914         it in the array since it was created with g_slist_prepend().
35916 2002-03-24  Martin Baulig  <martin@gnome.org>
35918         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35919         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35920         (mono_debug_method_from_token): Renamed to
35921         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35922         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35924         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35925         relocation types.
35927         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35929 2002-03-24  Martin Baulig  <martin@gnome.org>
35931         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35932         (mono_debug_method_from_token): New func.
35934         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35935         New interncall, calls mono_debug_local_type_from_signature().
35936         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35937         calls mono_debug_method_from_token().
35939 2002-03-23  Martin Baulig  <martin@gnome.org>
35941         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35942         specifies the number of bytes to be converted, not the array size.
35943         Return the number of chars, not the number of bytes.
35944         (ves_icall_iconv_get_chars): The `byteCount' argument
35945         specifies the number of bytes to be converted, not the array size.
35947 2002-03-23  Martin Baulig  <martin@gnome.org>
35949         * reflection.h (MonoReflectionSigHelper): New type.
35951         * reflection.c (mono_reflection_sighelper_get_signature_local),
35952         (mono_reflection_sighelper_get_signature_local): New functions.
35954         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35955         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35956         interncalls.
35958 2002-03-23  Martin Baulig  <martin@gnome.org>
35960         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35961         is_writeable is set.
35962         (mono_raw_buffer_update): New function to write the modified map
35963         back to disk.
35965         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35967         * debug-symfile.c (mono_debug_update_symbol_file): Call
35968         mono_raw_buffer_update() when done writing.
35970 2002-03-23  Martin Baulig  <martin@gnome.org>
35972         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35974         * debug-symfile.c: Added support for arguments and local variables.
35976 2002-03-23  Dick Porter  <dick@ximian.com>
35978         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35979         protected by ifdefs, hence breaking the w32 build.
35981 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35983         * object.c: implement is_interned() the right way.
35985 2002-03-21  Martin Baulig  <martin@gnome.org>
35987         * debug-symfile.[ch]: New files to handle debugging information
35988         files. There's also support to dynamically update these symbol
35989         files to include machine dependent information.
35991 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35993         * threads.c (mono_thread_create): new function to create thread
35994         from C
35996 2002-03-20  Martin Baulig  <martin@gnome.org>
35998         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35999         method is a constructor.
36000         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36001         points to ves_icall_InternalInvoke().
36003 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36005         * file-io.c: Flush shouldn't throw exceptions.
36007 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36009         * file-io.c: FileStream flush support; FileSetLength now
36010         restores file pointer.
36012 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36014         * class.c: set image for pointer classes.
36016 2002/03/19  Nick Drochak <ndrochak@gol.com>
36018         * sysmath.c: Forgot one.
36020 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36022         * sysmath.c: Avoid redefining existing names.
36024 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36026         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36027         handled by runtime as icall rather than dllimport from libm.so
36028         * file-io.c, file-io.h: fixed handle argument type.
36030 2002-03-18  Dick Porter  <dick@ximian.com>
36032         * reflection.c (mono_image_get_type_info): rename interface to
36033         iface, because of "#define interface struct" on windows.
36035 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36037         * class.c, class.h: rename and export mono_ptr_class_get().
36038         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36039         * reflection.c, reflection.h, icall.c: better/saner type name
36040         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36041         method signatures.
36043 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36045         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36047         * icall.c (ves_icall_InternalInvoke): impl.
36049 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36051         * reflection.c: output the interface map table, too.
36053 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36055         * class.c (class_compute_field_layout): separate computation of 
36056         static field layout
36058 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36060         * icall.c: added System.Buffer support.
36061         * file-io.c: moved file icalls from PAL to FileStream.
36063 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36065         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36067 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36069         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36071 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36073         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36075 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36077         * debug-helpers.{c,h}: moved here from monograph some useful functions
36078         to locate a method by name/signature in a class or image. Included
36079         also a small and flexible IL disassembler.
36081 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36083         * reflection.c: fixup tokens in methods with small header size, too.
36085 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36087         * object.c (mono_string_to_utf8): remove assert(!error), instead
36088         print a warning. 
36090 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36092         * icall.c: update to the new mono_Array_class_get interface.
36094 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36096         * appdomain.c, object.c: Boehm-GC enable.
36097         * icall.c: make get_data_chunk() support split data requests.
36098         Ensure a class is initialized in more cases. Return only the first
36099         property found in GetProperties() or the compiler gets confused. 
36100         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36101         * reflection.h, reflection.c: add fixup mechanism for field and method
36102         tokens. Initialize assembly->typeref in a single place. Output
36103         properties after events. Support custom attributes for events, too.
36104         Typo fix for paramter custom attrs.
36106 2002-03-07  Martin Baulig  <martin@gnome.org>
36108         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36110 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36112         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36114 2002-03-06  Martin Baulig  <martin@gnome.org>
36116         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36117         non-zero lower bounds. See testcases #F10-#F13.
36119 2002-03-05  Martin Baulig  <martin@gnome.org>
36121         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36123         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36124         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36125         here.
36126         (ves_icall_System_Array_SetValue): Likewise.
36127         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36128         as argument and does the actual work. This function is used when copying a
36129         multi-dimensional array.
36130         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36131         now do all the widening conversions of value types.
36132         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36134 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36136         * class.c: remove some magic numbers and use the smbolic names,
36137         instead. Added init_events() to load event info at class init time.
36138         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36139         and mono_metadata_methods_from_event().
36140         * reflection.h, reflection.c: added support for writing out the evnets
36141         related information.
36143 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36145         * reflection.h, icall.c: use a different method (GetInterfaces)
36146         to gather interface info and add isbyref, isprimitive and
36147         ispointer to the ves_icall_get_type_info() return value.
36149 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36151         * class.h: stared adding support for events.
36152         * icall.c: split find_members implementation. Added debug icall to get
36153         the address of an object.
36154         * reflection.c: handle TypeBuilders in mono_type_get_object().
36156 2002-03-01  Martin Baulig  <martin@gnome.org>
36158         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36159         ArgumentOutOfRangeException(), not an ArgumentException().
36160         (ves_icall_System_Array_GetLowerBound): Likewise.
36161         (ves_icall_System_Array_GetValue): Improved argument checking.
36162         (ves_icall_System_Array_SetValue): Improved argument checking.
36164 2002-03-01  Martin Baulig  <martin@gnome.org>
36166         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36167         called with invalid arguments rather than just dying with g_assert().
36168         (ves_icall_System_Array_SetValue): Likewise.
36169         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36170         raise a NotImplementedException instead.
36171         (ves_icall_System_Array_GetLength): Added argument checking.
36172         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36174 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36176         * object.h (mono_assert): new macros mono_assert and
36177         mono_assert_not_reached
36179 2002-02-28  Martin Baulig  <martin@gnome.org>
36181         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36182         and "System::String::IsInterned" to "System::String::_IsInterned".
36184 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36186         * icall.c: remove hacks for typebuilder. Added icall to create a
36187         modified type from a tybebuilder.
36188         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36189         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36190         to create a backing MonoClass for a TypeBuilder.
36192 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36194         * class.c, class.h: more refactoring of class init.
36195         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36197 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36199         * marshal.c, marshal.h: start of marshaling interface.
36201 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36203         * icall.c: fix order in assembly qualified name icall.
36205 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36207         * class.c: do not free str, since we store it in the hash table.
36208         * reflection.h: add label field to MonoILExceptionInfo.
36209         * reflection.c: handle references to more than one assembly. Handle
36210         case when there isn't a module created in the assembly.
36212 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36214         * class.c: Fix typo. Start refactoring of class init code.
36216 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36218         * appdomain.c: exit with 1 on error.
36219         * class.c: we already have the name in MonoClassField.
36220         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36221         MonoStreamHeader instead of an offset of image->raw_metadata.
36223 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36225         * appdomain.c (mono_init): Be even more descriptive about the error.
36227 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36229         * appdomain.c: give the user an informative message when corlib can't
36230         be loaded.
36232 2002-02-26  Martin Baulig  <martin@gnome.org>
36234         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36235         New icall to get the time zone data.
36237 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36239         * reflection.c: set virtual and raw size of section correctly.
36240         * threads.c: transfer domain information to newly created threads.
36242 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36244         * class.c: when instancing a class in a domain, load the default
36245         vaules for static fields from the constant table. Fix System.Enum to
36246         not be an enum.
36247         * icall.c: implement Object::GetType() internalcall. Implemented
36248         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36249         Fixed checking of binding flags in find_members().
36250         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36251         * reflection.c: handle enumerations when writing to the constant
36252         table. Use a different object cache for types.
36255 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36257         * object.c (mono_object_isinst): fix for arrays
36259         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36261 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36263         * object.c: don't use mprotect ()  and fix intern pool hash table
36264         lookup for big endian systems.
36266 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36268         * icall.c: change type_is_subtype_of () signature.
36270 2002-02-21  Mark Crichton  <crichton@gimp.org>
36272         * rand.c, rand.h: Added random number generator for
36273         System.Security.Cryptography classes.
36275         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36277         * icall.c: Added System.Security.Cryptography calls.
36279 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36281         * class.c, icall.c, metadata.c: better support for pointer types.
36282         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36283         * reflection.c: Add support for getting custom attrs for properties
36284         and simplify some code.
36286 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36288         * icall.c: change getToken () and add custom attribute GetBlob()helper
36289         method.
36290         * reflection.h: add custom attrs array to the reflection builder structures.
36291         * reflection.c: encode and emit custom attributes for all the relevant
36292         reflection objects. Cache fieldref and methodref tokens. Change
36293         mono_image_create_token() interface to take a MonoDynamicAssembly.
36294         More complete custom attributes decoder. Load custom attributes for
36295         Assembly, Field, Method and Constructor objects, too. Make the
36296         returned array an Attribute[] one, not object[]. Added
36297         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36298         custom attribute constructor.
36300 2002-02-20  Dick Porter  <dick@ximian.com>
36302         * icall.c:
36303         * rawbuffer.c:
36304         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36305         problem code out for now).
36307 2002-02-19  Radek Doulik  <rodo@ximian.com>
36309         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36311 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36313         * icall.c: register the GetCustomAttributes method.
36314         * object.c, object.h: add mono_string_new_len ().
36315         * reflection.h, reflection.c: added mono_runtime_invoke(),
36316         mono_install_runtime_invoke(). Added
36317         mono_reflection_get_custom_attrs () to load custom attributes and
36318         create the attribute objects.
36320 2002-02-19  Dick Porter  <dick@ximian.com>
36321         * threads-dummy-types.c:
36322         * threads-dummy-types.h:
36323         * threads-dummy.c:
36324         * threads-dummy.h:
36325         * threads-pthread-types.c:
36326         * threads-pthread-types.h:
36327         * threads-pthread.c:
36328         * threads-pthread.h:  Deleted obsolete files
36330 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36332         * class.c (mono_class_vtable): runtime init the class when we
36333         allocate static class data.
36335         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36337         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36338         and String - but we will need generic marshalling support in the
36339         future. 
36340         (mono_init): set the domain name in a ms compatible way
36342         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36343         String[].
36345 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36347         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36348         for sizes
36350         * appdomain.c (mono_domain_unload): impl.
36352 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36354         * appdomain.c, object.c: fix intern pool implementation.
36355         * class.c: fix alignment code.
36357 2002-02-16  Radek Doulik  <rodo@ximian.com>
36359         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36360         and s2 > s1, just copy lower bytes to be compatible with little
36361         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36362         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36364         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36365         force big_endian to be 1 for big endian machines 
36366         (ves_icall_iconv_new_decoder): ditto
36368 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36370         * socket-io.c (convert_sockopt_level_and_name): If the system
36371         doesn't define SOL_IP or SOL_TCP, get them by hand using
36372         getprotobyname() and caching the values (because this could be a
36373         slow operation).
36374         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36375         Use the appropriate struct when the system does support it. Ie,
36376         not all systems have struct ip_mreqn so use struct ip_mreq when
36377         appropriate.
36379 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36381         * reflection.c: handle finally clauses.
36383 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36385         * socket-io.c: use g_snprintf() instead of snprintf.
36387 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36389         * reflection.c (mono_param_get_objects): Cast second argument to
36390         mono_method_get_param_names to a const char** to silence the
36391         compiler warning.
36393         * appdomain.c (mono_domain_assembly_open): Put parens around the
36394         truth statement in the for-loop.
36396         * unicode.c (iconv_convert): Got rid of a compiler warning about
36397         int i being unused when the system has a new iconv.
36398         (iconv_get_length): Same.
36400         * image.c (load_class_names): Cast the second argument to
36401         g_hash_table_insert() to char* to hush compiler warnings about the
36402         arg being a const.
36403         (mono_image_open): Same here.
36405         * socket-io.c: Don't conditionally include sys/filio.h or
36406         sys/sockio.h here anymore since we now get them from
36407         io-layer/io-layer.h
36408         (inet_pton): If the system doesn't support inet_aton, implement
36409         using inet_addr and also #define INADDR_NONE if it isn't defined
36410         by the system.
36412 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36414         * metadata.c, metadata.h: added function to get packing and size info
36415         of a typedef.
36416         * reflection.h, reflection.c: handle field RVA data. Save info about
36417         the table layout if needed. Assign typedef indexes to all the types
36418         before dumping the info about them to avoid forward reference problems.
36420 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36422         * socket-io.c (convert_sockopt_level_and_name): ifdef
36423         SO_ACCEPTCONN because it is not defined on my system (old debian)
36425 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36427         * opcode.c: use stddef.h to get NULL.
36429 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36431         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36432         for FIONBIO, FIONREAD and SIOCATMARK.
36433         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36434         define INADDR_NONE and besides, inet_addr() is deprecated and
36435         should not be used. Use inet_pton() instead - it also has the
36436         added bonus that it can easily handle IPv6 addresses as well.
36437         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36439 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36441         * decimal.c: remove _MSC_VER conditional.
36443 2002-02-13  Dick Porter  <dick@ximian.com>
36445         * socket-io.c: 
36446         * icall.c: Internal calls for Blocking, Select, Shutdown,
36447         GetSocketOption and SetSocketOption
36449 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36451         * assembly.cs: better resolver: use it instead of some kludgy
36452         code.
36454 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36456         * reflection.c: the best way to speed-up the compiler is to avoid
36457         infinite loops.
36459 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36461         * class.c (mono_class_vtable): changed the object layout
36462         (obj->vtable->class). 
36463         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36465 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36467         * assembly.c: look for assemblies in the assembly dir, too.
36469 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36471         * class.c: fix thinko in mono_class_from_type().
36473 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36475         * exception.h, exception.c: added TypeLoadException.
36476         * object.h, object.c: added mono_array_clone ().
36477         * icall.c: handle throwOnError in AssemblyGetType().
36478         Added Array.Clone().
36479         * opcode.h, opcode.c: use a single value for the opcode val.
36480         Compile fix for non-gcc compilers.
36482 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36484         * opcodes.c, opcodes.h: export interesting info about opcodes.
36486 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36488         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36489         icalls. 
36491         * class.c (class_compute_field_layout): set element_class for enums
36492         (mono_class_create_from_typedef): set element_class for normal classes
36494         * icall.c (ves_icall_System_Enum_get_value): impl.
36496         * class.c (mono_class_create_from_typedef): do not set valuetype
36497         flag for System.ValueType and System.Enum
36499 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36501         * unicode.c (iconv_convert): fix big endian problem.
36503 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36505         * class.c: add asserts if we are ever going to scribble over memory.
36506         * socket-io.c: not all systems have AF_IRDA defined.
36508 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36510         * class.c (class_compute_field_layout): do not consider static
36511         fields to compute alignment
36513 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36515         * appdomain.c (mono_appdomain_get): impl.
36516         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36518 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36520         * icall.c: ignore "file://" prefix when loading an assembly.
36522 2002-01-23  Dick Porter  <dick@ximian.com>
36524         * socket-io.c:
36525         * icall.c:
36526         * Makefile.am: Added socket support
36528 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36530         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36531         code back.  This should return the assemblies that are loaded by
36532         the runtime on behalf of an application domain. 
36534         The current implementation is still broken, it just returns every
36535         assembly loaded, but until we get real applications domain this
36536         will do.
36538 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36540         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36541         AppDomain object.
36543 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36545         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36546         the mono_class_from_name lookup.
36547         (ves_icall_get_parameter_info): ditto.
36548         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36549         method.
36550         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36552 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36554         * class.c: load also nested classes on class init.
36555         System.ValueType instance methods gets passed boxed
36556         values, unless methods in derived classed that get a pointer to the
36557         data.
36558         * icall.c: use better name parsing code in GetType().
36559         * image.c, image.h: add mono_image_loaded ().
36560         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36561         * reflection.c, reflection.h: added mono_reflection_parse_type().
36563 2002-01-22  Veronica De Santis <veron78@interfree.it>
36565         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36566         * threads.c : Added the implementation of internal calls for events
36567         * threads.h : Added prototypes of internal calls for events
36568         
36569 2002-01-21  Radek Doulik  <rodo@ximian.com>
36571         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36573 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36575         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36576         (mono_class_value_size): use min_align
36578 2002-01-20  Dick Porter  <dick@ximian.com>
36580         * threads.h:
36581         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36582         so it compiles on w32.
36584 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36586         * metadata.c (mono_type_stack_size): impl.
36588         * class.c (mono_class_get_field): impl. memberref token
36590 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36592         * icall.h : Added the internal calls mapping for CreateMutex_internal
36593                     and ReleaseMutex_internal.
36594         * threads.h : Added the prototype of mutexes internal calls.
36595         * threads.c : Added the implementations of mutexes internal calls.
36597 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36599         * metaparse.h: removed unused file.
36600         * reflection.c, reflection.h: added stream_data_align () function 
36601         to align data in streams and keep stream aligned. Add support for
36602         exception support in method headers.
36604 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36606         * unicode.c: make iconv_convert () return the number of bytess written
36607         in the output buffer.
36609 2002-01-15  Dick Porter  <dick@ximian.com>
36610         * threads.c: Make the runtime's idea of infinite timeouts coincide
36611         with the class library's
36613         Fix a particularly egregious bug in mono_thread_cleanup(). That
36614         code was so utterly bogus it must have been written on a Monday.
36616 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36618         * reflection.h: add subtypes field to TypeBuilder.
36619         * reflection.c: encode constants for literal fields.
36620         Handle subtypes. Fix user string token (and add a zero byte)
36621         at the end.
36622         
36623 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36625         * class.c (mono_class_init): bug fix: assign slot numbers for
36626         abstract methods.
36628 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36630         * reflection.c: don't try to output a code RVA for abstract methods.
36631         Small fixes for method header format. Output parameter info to the
36632         ParamDef table. Save method overriding info to MethodImpl table.
36633         Fix property support. Allow typedef.extends to be a type in the
36634         building assembly.
36635         * verify.c: fix off-by-one error.
36637 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36639         * class.c: fix mono_class_from_mono_type () for szarray types.
36640         Remove unused cache check in mono_class_from_type_spec().
36641         * icall.c: *type_from_name () functions handle simple arrays and byref.
36642         * reflection.c: handle byref and szarray types. Handle methods without
36643         body (gets P/Invoke compilation working). Handle types and fields in
36644         get_token ().
36645         * reflection.h: add rank to MonoTypeInfo.
36647 2002-01-10  Dick Porter  <dick@ximian.com>
36649         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36650         internal calls
36652 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36654         * icall.c: initialize class in type_from_handle ().
36655         Loop also in parent classes for get_method ().
36656         * reflection.c: properly encode class and valuetype types.
36657         Start on encoding TypeBuilder types. Handle fieldrefs.
36658         Use correct length when registering a user string.
36659         Handle ConstructorBuilder and MonoMethod in get_token ().
36660         Make mono_type_get_object () aware of cached types.
36661         * object.c: back out change to mono_string_new ().
36663 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36664         * object.c: mono_string_new should return a NULL when the string 
36665         passed in is NULL -- not try to deference it.
36666         
36667 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36669         * icall.c: hack to make IsSubType work for TypeBuilders.
36670         * reflection.c: emit constructors before methods.
36671         Retrieve param names in mono_param_get_objects().
36673 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36675         * Makefile.am: fix list of headers and sources so automake 1.5
36676         doesn't complain. Removed \# at end of list.
36678 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36680         * reflection.c: get token for a method ref. Set return type of
36681         constructor to void.
36682         * loader.c: debug message.
36683         * class.c: typo fix.
36685 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36687         * icall.c: fix array init with rank > 1. FindMembers
36688         loops in parent class as well.
36689         * image.c: do not insert nested types in name cache.
36690         * reflection.c: warning fix.
36691         * reflection.h: add override method (for interface impl).
36693 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36695         * metadata.c: fix customattr decoding.
36697 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36699         * rawbuffer.cs: Added native Win32 implementation, avoids using
36700         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36702 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36704         * class.c: make the low-level routines handle the cache.
36706 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36708         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36710 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36712         * class.c: fix mono_array_element_size() for objects.
36713         * class.h, class.c: add properties to MonoClass and load them
36714         at init time.
36715         * icall.c: check with isinst() when assigning a value to an array
36716         instead of requiring the classes to match exactly.
36717         Implemented icall for System.Type::GetType().
36718         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36719         enums. Handle bindingflags when looking for methods and fields.
36720         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36721         and mono_metadata_methods_from_property().
36722         * reflection.h, reflection.c: added structures for propreties,
36723         parameters and enums. Implemented mono_property_get_object() and
36724         mono_param_get_objects().
36726 2001-12-18  Dick Porter  <dick@ximian.com>
36728         * file-io.c: Use mono_string_to_utf16() instead of
36729         mono_string_chars()
36731         * object.c: Added mono_string_to_utf16(), which copies the non
36732         NULL-terminated MonoString into a new double-null-terminated
36733         buffer.
36735 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36737         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36739 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36741         * file-io.c: raise exceptions if handle is invalid.
36743 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36745         * assembly.c: yet another check for mscorlib.
36746         * class.c, class.h: load nesting info for classes.
36747         * icall.c: many new functions to support the Reflection classes.
36748         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36749         * reflection.h, reflection.c: mono_image_create_token(),
36750         mono_assembly_get_object(), mono_type_get_object(),
36751         mono_method_get_object(), mono_field_get_object(): methods to return
36752         objects that parallel the C representation of assemblies, types,
36753         methods, fields.
36755 2001-12-11  Dick Porter  <dick@ximian.com>
36757         * icall.c:
36758         * file-io.c: Internal calls for file IO.
36760 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36762         * tabledefs.h: missing FileAttributes.
36763         * verify.h, verify.c: use is_valid_string () to simplify and check for
36764         valid strings more correctly. Fix warnings and speeling.
36765         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36766         Check code: branches, maxstack, method calls.
36768 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36770         * object.c (mono_object_allocate): removed static, so that the jit
36771         can allocate value types.
36773         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36775 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36777         * class.c: init enum types right away and register the
36778         token->MonoClass map in mono_class_create_from_typedef ().
36779         * verify.h, verify.c: first cut of the verifier.
36780         * pedump.c: add --verify switch to verify metadata tables.
36781         * tabledefs.h: add some missing enums.
36783 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36785         * class.c (mono_install_runtime_class_init): impl.
36786         (mono_class_init): renamed mono_class_metadata_init to
36787         mono_class_init, also removed the metadata_inited flag
36789         * object.c (mono_object_isinst): use faster algorithm
36791 2001-11-30  Radek Doulik  <rodo@ximian.com>
36793         * mono-endian.h: reverted last change
36794         added function prototypes
36796         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36797         add mono-endian.c back
36799         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36800         for unaligned access, I've mistaked it with endianess. I am
36801         sorry.
36802         (mono_read16): fix reverted endianess
36803         (mono_read64): ditto
36804         (mono_read32): ditto
36806 2001-11-30  Dick Porter  <dick@ximian.com>
36808         * exception.c: Implement mono_exception_from_name()
36810 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36812         * metadata.h, metadata.c: remove params_size and locals_size and their
36813         calculation from the metadata code: they are only usefult to the
36814         interp.
36816 2001-11-29  Radek Doulik  <rodo@ximian.com>
36818         * object.c (mono_ldstr): swap bytes here, it's probably not the
36819         best place, but works for me now, I'll redo it once I know mono
36820         better, also note that I add PROT_WRITE and don't reset back, also
36821         note that it's only affects big endians, so x86 should be OK
36823         * mono-endian.h (read16): use just glib macros for both endians
36825         * mono-endian.c: removed as glib macros are used in in
36826         mono-endian.h so we don't need to care about endianess for read
36827         macros as glib does that for us already
36829 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36831         * class.h, class.h: take minimum alignment into consideration so
36832         that the fields of a class remain aligned also when in an array.
36834 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36836         * loader.h, loader.c: add mono_method_get_param_names().
36837         * class.c: 0-init class fields.
36839 2001-11-26  Dick Porter  <dick@ximian.com>
36841         * icall.c:
36842         * threads-types.h:
36843         * threads.c: New file that handles System.Threading on all platforms
36845         * object.c: 
36846         * object.h: Remove the synchronisation struct from MonoObject,
36847         replace it with a pointer that gets initialised on demand
36849         * Makefile.am: Replace all the system-specific threading code with
36850         a single file that uses the new wrapper library
36852 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36854         * class.c, class.h: add mono_install_trampoline() so that the runtime
36855         can register a function to create a trampoline: removes the ugly
36856         requirement that a runtime needed to export arch_create_jit_trampoline.
36857         * object.h, object.c: added mono_install_handler() so that the runtime
36858         can install an handler for exceptions generated in C code (with
36859         mono_raise_exception()). Added C struct for System.Delegate.
36860         * pedump.c: removed arch_create_jit_trampoline.
36861         * reflection.c: some cleanups to allow registering user strings and
36862         later getting a token for methodrefs and fieldrefs before the assembly
36863         is built.
36864         * row-indexes.h: updates and fixes from the new ECMA specs.
36866 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36868         * class.h, class.c: add enum_basetype field to MonoClass.
36869         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36870         to get index in the constant table reated to a field, param or
36871         property.
36872         * reflection.h, reflection.c: handle constructors. Set public-key and
36873         version number of the built assembly to 0.
36874         * row-indexes.h: update from new ECMA spec.
36876 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36878         * class.h, class.c: add a max_interface_id to MonoClass.
36879         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36880         since it's used to do that. Added mono_type_type_from_obj().
36881         Make GetType() return NULL instead of segfaulting if the type was not
36882         found. Handle simple arrays in assQualifiedName.
36883         * object.h: add a struct to represent an Exception.
36884         * reflection.c: output call convention in method signature.
36885         Add code to support P/Invoke methods and fixed offsets for fields.
36887 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36889         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36890         the value.
36891         * icall.c: use mono_array_addr instead of array->vector: fixes the
36892         reflection image writing.
36893         * reflection.c: init call convention byte to 0 in method signature.
36894         Encode the property signature. Don't output property-related methods
36895         twice. Really process the properties for a type (don't cast a field to
36896         a property, my mom always told me that).
36897         Fix 64 bit issues in pointer alignment in a different and more
36898         readable way.
36900 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36902         * loader.h: Removed type class from MonoDefaults, added monotype
36904         * loader.c: Loaded MonoType, removed loading of Type
36906         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36907         and fills in System.Type._impl with a RuntimeTypeHandle rather
36908         than the actual MonoClass *
36910         (ves_icall_type_from_handle): change from type_class to
36911         monotype_class
36913         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36914         implemented
36916         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36917         implemented
36919         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36921         (ves_icall_System_Reflection_Assembly_GetType): implemented
36923         (ves_icall_System_MonoType_assQualifiedName): implemented
36925         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36927 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36929         * assembly.c (mono_assembly_open): Implement a cache for the
36930         assemblies. 
36932         (mono_assembly_close): only destroy the assembly when the last
36933         reference is gone.
36934         
36935 2001-11-09  Dick Porter  <dick@ximian.com>
36937         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36939 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36941         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36943 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36945         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36946         from Martin Weindel.
36947         * object.h: add mono_string_chars ().
36949 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36951         * reflection.c (build_compressed_metadata): Eliminates warnings
36952         and uses 64-bit clean code.
36954         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36955         (mono_type_equal): Change signature to eliminate warnings.
36957 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36959         * icall.c, loader.c: remove the internalcall array constructors.
36960         Changes to match the new MonoArray structure.
36961         * object.h, object.c: an array object doesn't allocate an extra
36962         vector. Add mono_array_new_full () to create jagged arrays easily.
36964 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36966         * metadata.h, metadata.c: add mono_metadata_field_info () to
36967         retreive all the info about a field from vairous tables.
36968         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36969         * class.h, class.c: augment MonoClassField with more info.
36970         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36971         policy and load a field's RVA if needed.
36973 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36975         * class.c (mono_class_metadata_init): create a trampoline for all
36976         virtual functions instead of actually compiling them.
36978 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36980         * class.h, class.c: include name in MonoClassField.
36981         * class.c: fix fundamental type of System.Object and System.String.
36982         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36983         tokens in ldtoken.
36984         * icall.c: remove internalcalls for the Reflection stuff that is now
36985         done in C# code.
36986         * loader.c: mono_field_from_memberref () implementation.
36987         * mono-endian.c: thinko (s/struct/union/g).
36988         * object.c, object.h: make the mono_string_* prototypes actually use
36989         MonoString instead of MonoObject.
36990         * reflection.c, reflection.h: updates for changes in the reflection
36991         code in corlib: we use C structures that map to the actual C# classes.
36992         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36993         fat method header if needed and use the info from the ILGenerator for
36994         methods. Handle fields in types. Misc fixes.
36996 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36998         * class.c (mono_class_metadata_init): bug fix: always allocate
36999         space for static class data
37001 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37003         * class.c (mono_compute_relative_numbering): use relative
37004         numbering to support fast runtime type checks.
37006 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37008         * class.c (mono_class_create_from_typeref): added debugging output
37009         to print class name when MonoDummy is returned instead of real class
37011 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37013         * class.c (mono_class_metadata_init): interface offset table now
37014         contains pointers into the vtable - this is more efficient for the jit
37016 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37018         * class.c (mono_class_metadata_init): use a temporary vtable (the
37019         old algorithm only worked for the interpreter, but not for the jit)
37021 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37023         * loader.c (method_from_memberref): use mono_class_get to get the
37024         class of an array instead of using System.Array directly.
37025         (mono_get_method): also add MEMBERREF methods to the method cache
37026         which usefull for arrays.
37028 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37030         * pedump.c (arch_compile_method): added to compute vtable entry
37032         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37033         number of interfaces.
37034         
37035         * class.h: merged MonoArrayClass into MonoClass
37037         * class.c (mono_class_create_from_typedef): compute the vtable size and
37038         allocate space to include the vtable inside MonoClass
37039         (mono_class_metadata_init): initialize the vtable
37041 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37043         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37044         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37045         * image.c: endian fixes by Laurent Rioux.
37046         * object.h, object.c: rename MonoStringObject to MonoString and
37047         MonoArrayObject to MonoArray. Change some function names to conform to
37048         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37049         guint16* as first argument, so don't use char*.
37050         Provide macros to do the interesting things on arrays in a portable way.
37051         * threads-pthread.c: updates for the API changes and #include <sched.h>
37052         (required for sched_yield()).
37053         * icall.c: updates for the API changes above.
37054         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37055         platforms that need them.
37057 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37059         * class.c: set the correct type for all the fundamental
37060         type when loading the class.
37062 2001-10-05  Dick Porter  <dick@ximian.com>
37064         * threads-pthread.c (pthread_mutex_timedlock): Simple
37065         compatibility version for C libraries that lack this call.
37067 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37069         * class.c: MonoTypes stored in MonoClass are stored as
37070         fundamental MonoTypes when the class represents a
37071         fundamental type (System.Int32, ...).
37072         The TypeHandle return by ldtoken is a MonoType*.
37073         * icall.c: ves_icall_get_data_chunk () write out all the
37074         PE/COFF stuff. Implement ves_icall_define_method (),
37075         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37076         * image.c: properly skip unknown streams.
37077         * loader.h, loader.c: add type_class to mono_defaults.
37078         * metadata.c, metadata.h: export compute_size () as
37079         mono_metadata_compute_size () with a better interface.
37080         Typo and C&P fixes.
37081         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37082         * reflection.c, reflection.h: many cleanups, fixes, output method
37083         signatures and headers, typedef and typeref info, compress the metadata
37084         tables, output all the heap streams, cli header etc.
37085         * row-indexes.h: typo fixes.
37087 2001-10-04  Dick Porter  <dick@ximian.com>
37089         * object.h: Add a synchronisation mutex struct to MonoObject
37091         * object.c (mono_new_object): Initialise the object
37092         synchronisation mutexes
37094         * icall.c: System.Threading.Monitor internal calls
37095         
37096         * threads-pthread.h:
37097         * threads-pthread.c: System.Threading.Monitor internal calls
37099         * threads-types.h: New file, includes the system-specific thread
37100         structures
37101         
37102         * threads-pthread-types.h:
37103         * threads-pthread-types.c: New files, handle pthread-specific
37104         synchronisation types
37106         * threads-dummy-types.h: 
37107         * threads-dummy-types.c: New files of dummy support for
37108         thread-specific types
37110         * metadata.c:
37111         * image.c:
37112         * pedump.c: include mono-endian.h not endian.h
37113         
37114         * Makefile.am: More threads files.
37115         Name mono-endian.h not endian.h
37117 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37119         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37120         stuff and implement a few more bits.
37121         * icall.c: a field needs to be dereferenced twice. Do not use the same
37122         name for two variables in the same scope.
37123         * image.c, image.h: cleanups.
37125 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37127         * class.c (mono_class_metadata_init): bug fix: compute the right size
37129 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37131         * icall.c: implemented some of the Reflection internalcalls.
37132         * image.c, image.h: start writing out the PE/COFF image.
37133         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37134         that does the reverse than decode_blob_size ().
37135         * object.c: use mono_metadata_encode_value (). Move here
37136         temporary implementation of mono_string_to_utf8 ().
37137         * rawbuffer.c: make malloc_map static.
37139 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37141         * metadata.c: fix type comparison for arrays.
37142         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37143         Added a couple of new classes to monodefaults.
37144         * icall.c: added a couple of Reflection-related internalcalls.
37145         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37146         Added a byval_arg MonoType to MonoClass.
37148 2001-09-28  Dick Porter  <dick@ximian.com>
37150         * icall.c:
37151         * threads-pthread.h: 
37152         * threads-pthread.c: Implemented internal calls for
37153         LocalDataStoreSlot operations.  Applied mutexes around all shared
37154         data.  Reworked the thread creation and Start() operations to
37155         avoid a race condition.
37156         
37157         * threads-dummy.h:
37158         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37160 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37162         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37164 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37166         * class.c, loader.c: warn and return NULL instead of erroring out.
37167         * icall.c: added System.AppDomain::getCurDomain().
37168         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37170 2001-09-25  Dick Porter  <dick@ximian.com>
37172         * threads-pthread.h:
37173         * threads-pthread.c: Implemented timed thread joining and added
37174         System.Threading.Thread::Join_internal internal call
37176         * icall.c: Added System.Threading.Thread::Join_internal internal call
37178         * threads-dummy.h:
37179         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37181 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37183         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37184         mono_string_intern () to implement the semantics of the ldstr opcode
37185         and the interning of System.Strings.
37186         * icall.c: provide hooks to make String::IsIntern and String::Intern
37187         internalcalls.
37189 2001-09-23  Dick Porter  <dick@ximian.com>
37191         * threads-dummy.c: 
37192         * threads-dummy.h: New files of dummy threading routines
37194         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37195         support code based on system specifics
37197         Rename PTHREAD_LIBS to THREAD_LIBS
37198         
37199 2001-09-23  Dick Porter  <dick@ximian.com>
37201         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37202         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37203         internal calls.
37204         (mono_thread_init): Set up a Thread object instance to return when
37205         the main thread calls Thread.CurrentThread
37206         (mono_thread_cleanup): Wait for all subthreads to exit
37208         * icall.c: New internal calls for System.Threading.Thread::Sleep
37209         (including Schedule) and CurrentThread
37211         * threads.h: New file, to insulate thread-specific stuff from the
37212         rest of the code
37214 2001-09-21  Dick Porter  <dick@ximian.com>
37216         * threads-pthread.h: 
37217         * threads-pthread.c: New file, for handling pthreads-style
37218         threading support.  Start() now starts a new thread and executes
37219         the ThreadStart delegate instance.
37221         * icall.c: Added the internalcall for
37222         System.Threading.Thread::Start_internal
37224         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37226 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37228         * loader.c: work around the different signatures for delegates
37229         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37231 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37233         * class.h, class.c: add mono_class_get_field_from_name ().
37234         * *: Fix C comments and other ANSI C issues.
37236 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37238         * endian.h, assembly.c: fix some endianness issues.
37240 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37242         * loader.h, load.c: add delegate_class to mono_defaults.
37243         Handle runtime provided methods in mono_get_method ().
37245 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37247         * loader.c (mono_get_method): use pinvoke for internal call
37249         * icall.c: use pinvoke for internal call
37251         * loader.c (method_from_memberref): set the method name
37253 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37255         * metadata.c: help the compiler generate better code for
37256         mono_class_from_mono_type ().
37258 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37260         * class.c (mono_class_metadata_init): delayed computing of the
37261         class size to mono_class_metadata_init ()
37263 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37265         * class.c, class.h: add an interfaces member to MonoClass.
37266         * image.c, image.h: add assembly_name field to MonoImage
37267         from the assembly table.
37268         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37270 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37272         * class.c: Handle Array in mono_class_from_mono_type ().
37273         * metadata.c, pedump.c: some endian fixes.
37275 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37277         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37278         * metadata.c: fix small problem introduced with the latest commit.
37280 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37282         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37283         We don't need a MonoMetadata pointer anymore to compare signatures in
37284         mono_metadata_signature_equal (), update callers.
37285         Reduced memory usage an number of allocations for MonoMethodHeader and
37286         MonoMethodSignature.
37288 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37290         * metadata.c: added compare for szarray.
37292 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37294         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37295         and add a couple more types to it and mono_defaults. Give an hint on
37296         classes that need implementing in our corlib and are referenced
37297         in mscorlib.
37299 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37301         * class.h, class.c: keep track if a class is also an Enum.
37302         * loader.c: Implement a couple more types for use in libffi
37303         marshalling. Gives better diagnostics when failing to dlopen
37304         a library. Set method->klass for P/Invoke methods, too.
37306 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37308         * class.c, class.h: add a MonoType this_arg to MonoClass that
37309         represents a pointer to an object of the class' type that
37310         can be used by the interpreter and later the type cache.
37311         Add best guess alignment info for valuetype objects.
37313 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37315         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37316         into MonoType: one less level of indirection and allocation and
37317         simplifies quite a bit of code. Added cache for MonoTypes that are
37318         used frequently, so that we don't need to allocate them all the time.
37320 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37322         * class.c (mono_class_create_from_typedef): System.Enum is also a
37323         value type, although it does not derive from System.ValueType
37324         (maybe a bug in the ms compiler?)
37326         * metadata.c (mono_type_size): return the right size for value types
37328         * loader.c (mono_get_method): only initialize method header if not abstract
37330         * class.c (mono_class_from_mono_type): use mono_default values. 
37332 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37334         * *: use MonoClass pointers instead of <type_tokens>
37335         
37336         * class.h: new flag: metadata_inited.
37338         * class.c (mono_class_metadata_init): impl.
37339         (mono_class_instance_size): impl.
37340         (mono_class_data_size): impl.
37342 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37344         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37345         MonoClass now has the name and name_space fields. 
37346         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37347         mono_get_method () takes and optional MonoClass as argument.
37348         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37349         instead that takes advantage of a map from class names to typedef
37350         tokens in MonoImage.
37352 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37354         * metadata.c: zero is not a valid alignment boundary.
37355         Merge MONO_TYPE_VOID in default decoding code.
37357 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37359         * image.h: merged MonoMetadata into MonoImage
37361         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37362         identify the type of elements.
37364 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37366         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37367         * cil-coff.h: split MonoMSDOSHeader and add size info.
37368         * image.c: add some consistency checks.
37369         * metadata.c: fix row size computation: one programmer
37370         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37371         add explanation for the locator routine.
37372         Fix decoding of size in method header.
37373         
37374 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37376         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37377         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37378         function from gnome-libs.  This uses the right path separator
37379         based on the OS, and also works around a bug in some systems where
37380         a double slash is not allowed. 
37381         (default_assembly_name_resolver): Use g_concat_dir_and_file
37382         (mono_assembly_open): ditto.
37384 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37386         * metadata.c (mono_metadata_signature_equal): impl.
37388         * *: void is now a realy MonoType (instead of using NULL)
37389         
37390         * metadata.c (do_mono_metadata_parse_type): use
37391         mono_metadata_parse_type to parse void value.
37393 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37395         * metadata.c, metadata.h: in the signature and method header store
37396         only the space required for holding the loca vars and incoming arguments.
37398 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37400         * metadata.c (do_mono_metadata_parse_type): treat void like any
37401         other type (instead of assigning NULL);
37403 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37405         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37407 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37409         * image.c (do_mono_image_open): added a cache for arrays.
37411 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37413         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37414         decode a single column from a row in a metadata table and changes
37415         to take advantage of it in the typedef locator (gives a nice speed up).
37416         Store offset info for function params.
37418 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37420         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37422 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37424         * assembly.c: how could mono_assembly_close () had ever worked?
37425         * metadata.c, metadata.h: provide offset info for local vars.
37426         Implement mono_type_size () to take care of alignment as well
37427         as size (it was mono_field_type_size in cli/class.c before).
37429 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37431         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37433         * assembly.h (CORLIB_NAME): set to corlib.dll
37435         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37437 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37439         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37440         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37441         tokentype.h: massive namespace cleanup.
37443 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37445         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37447 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37449         * metadata.c (mono_metadata_free_type): added check for type !=
37450         NULL (void) before calling mono_metadata_free_type()
37452 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37454         * metadata.h, row_indexes.h: added header with enumerations to use
37455         to index in the columns from tables in metadata and to decode coded
37456         tokens: we should start using this instead of embedding magic numbers
37457         all over the code.
37459 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37461         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37462         Move metadata_t info from cli_image_info_t to MonoImage, where
37463         it's easily accessible. Changed all the uses accordingly.
37464         Added the method and class caches to MonoImage.
37465         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37466         and mono_metadata_decode_value () signature to be more consistent
37467         with the other parse functions (and simplify code). Taken advantage
37468         of zero-length array allocation with GCC. Removed reduntant (and
37469         wrong) MonoFieldType struct and use MonoParam instead. Changed
37470         mono_metadata_parse_field_type () to use common code for parsing.
37471         Added mono_metadata_typedef_from_field () and
37472         mono_metadata_typedef_from_method () to lookup a typedef index from a
37473         field or method token.
37474         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37476 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37478         * metadata.c (mono_metadata_parse_field_type): Implement. 
37479         (do_mono_metadata_parse_type): Split engine from
37480         mono_metadata_parse_type, so that we can create smaller structures
37481         for things that just have one pointer to the MonoType (look at
37482         the MonoFieldType)
37484 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37486         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37487         as Jan Gray found out, it is incorrect. 
37489 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37491         * assembly.c: Implement asssembly loading.  This loads an image
37492         and loads all the referenced assemblies.  Come to think of it, we
37493         could always do lazy loading of the assemblies. 
37495         * image.c (mono_image_open): Keep loaded images in a hashtable.
37497         * image.h (MonoImage): Add reference count.
37499 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37501         * assembly.c (mono_assembly_open): Keep track of the file name in
37502         case the assembly has no ASSEMBLY table.
37504         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37505         from get.c here.
37507 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37509         * metadata.c, metadata.h: decode local vars in method header
37510         parse function. Change callers accordingly.
37512 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37514         * metadata.h, cil-coff.h: protect against multiple inclusion.
37515         Added some new structures to hold information decoded from metadata:
37516         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37517         and relevant decoding/free functions.
37518         * metadata.c: implement decoding functions. Add warning for out of bounds
37519         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37520         all the info about a method signature and invocation. Remove check on
37521         uninitialized local var in parse_mh() and fix memory leak.
37523 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37525         * metadata.h: More macros.
37527         * tokentype.h: New file.
37529 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37531         * assembly.c: added a consistency check and initialize
37532         some structures with g_new0().
37533         * metadata.c: fixed a couple more bugs in table size computation
37534         and add other checks for out-of bound access to metadata.
37536 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37538         * metatada.c: fix bugs computing table sizes. Spew a
37539         warning when index in string heap is out of bounds.
37541 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37543         * metadata.h: Add a couple of macros to manipulate tokens. 
37545 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37547         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37548         cli_section_tables).
37550 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37552         * metadata.c (mono_metadata_user_string): New function, provides
37553         access to the UserString heap. 
37555 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37557         * metadata.c: Add inline documentation.
37559 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37561         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37562         files. 
37564 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37566         * typeattr.h: New file, TypeAttribute flags. 
37568 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37570         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37571         mono_assembly_ensure_section): Section loading code.
37572         (load_section_tables): Load the sections.
37574         * mono/metadata/metadata.c (mono_metadata_locate_token,
37575         mono_metadata_locate): Functions to locate the information
37576         definition given a token or a table and an index.
37577         (mono_metadata_compute_table_bases): New.
37578         (compute_size): New function to compute the sizes of the various
37579         tables.
37581         * mono/metadata/metadata.h: Finish listing the different index
37582         types. 
37584         * mono/metadata/pedump.c: Improve to dump new information.
37586 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37588         * mono/metadata/metadata.c: Entered all the tables matching
37589         Beta2. 
37591         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2