2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git] / mono / metadata / ChangeLog
blob319f5c4c79027788c3b2f6d5e02b2039e7b7de6f
1 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3         * mono-ptr-array.h: Add mono_ptr_array_sort.
5         * reflection.c (mono_image_build_metadata): Replace that ugly
6         qsort call with mono_ptr_array_sort.
8 2010-05-13  Mark Probst  <mark.probst@gmail.com>
10         * sgen-gc.c: Switch to the copying major collector, because
11         Mark&Sweep is still buggy.
13 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
15         * reflection.c (mono_image_build_metadata): Don't put managed
16         references on non-tracked memory.
18 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
20         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
22 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
24         * icall.c: Switch to mono-ptr-array.h.
26 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
28         * Makefile.am: Add mono-ptr-array.h.
30         * mono-ptr-array.h: New header that implements
31         a GC tracked equivalent of g_ptr_array. 
33 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
35         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
36         method to avoid initializing the class.
38         Fixes #605115.
40 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
42         * icall.c (ves_icall_System_MonoType_getFullName): It
43         doesn't require to init the class.
45 2010-05-11  Miguel de Icaza  <miguel@novell.com>
47         * console-unix.c: Signal handlers now save and restore errno.   We
48         have never had a bug report about this, ioctl does change errno. 
50         Hide the unused method.   
52         Remove internal declarations from public headers.
54         Document what the signal handler is doing
56 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
58         * sgen-gc.c (clear_unreachable_ephemerons): Clear
59         unreachable keys with a tombstone.
61         * sgen-gc.c (mark_ephemerons_in_range): Ignore
62         tombstone keys.
64 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
66         * icall-def.h:
67         * gc-internals.h:
68         * gc.c: New GC:get_ephemeron_tombstone.
70 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
72         * appdomain.c (create_exceptions): Rename to
73         create_domain_objects. Create the ephemeron tombstone object.
75         * domains-internals.h (MonoDomain): Add new field for the
76         ephemeron tombstone.
78         * domain.c (mono_domain_free): Set ephemeron_tombstone to
79         NULL.
81 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
83         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
84         and dislinks must be processed before LOS since they
85         could end up with pointers to memory returned to the
86         OS.
88 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
90         * class.c (mono_class_alloc): New helper function to centralize memory allocation
91         for classes, allocates either from the image mempool or from the heap.
93         * class.c: Use mono_class_alloc to allocate memory owned by classes.
95         * metadata.c (free_generic_class_dependents): Free more items belonging to
96         generic classes.
98 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
100         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
101         as well. Fixes #604054.
103 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
105         * metadata-verify.c: MS doesn't mind duplicates in the
106         typeref table. Move it to full verification.
108         Fixes #600508.
110 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
112         * image.c (do_mono_image_load): Report verification
113         errors when loading an image fails.
115 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
117         * reflection.c (mono_type_get_object): Remove chunk of code
118         no longer in use.
120 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
122         * icall-def.h
123         * icall.c: Delete some unused icalls.
125 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
127         * appdomain.c (mono_domain_has_type_resolve): Check for
128         NULL domain objects to make pedump happy.
130         * object.c (mono_field_get_value): Assert on NULL object.
131         It's the caller resposibility to check for this.
133         * object.c (mono_field_get_value_object): Ditto.
135         Fixes #601384.
137 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
139         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
140         checks can avoid doing a mono_class_init.
142         * icall.c: Remove mono_class_init from a bunch of icalls that
143         don't need it.
145         Hopefully we're now lazy enough to fix most victims of #601431.
147 2010-05-07  Mark Probst  <mark.probst@gmail.com>
149         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
151 2010-05-07  Mark Probst  <mark.probst@gmail.com>
153         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
155 2010-05-07  Marek Habersack  <mhabersack@novell.com>
157         * culture-info-tables.h: updated to include en-TT culture. Fixes
158         bug #594035
160 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
162         Move mono_class_init from mono_type_get_object to icalls.
163         This causes massive memory savings for Assembly::GetTypes () and
164         make it fail a lot less due to missing dependencies.
166         This is a conservative, naive change as it doesn't remove some
167         mono_class_init from places that might not need them. Carefull
168         review of those should follow.
170         * reflection.c (mono_type_get_object): Don't mono_class_init the
171         returning type.
173         * reflection.c:
174         * cominterop.c:
175         * icall.c:
176         * marshal.c: Call mono_class_init in functions receiving a MonoType
177         object.
179         First step into fixing #601431.
181 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
183         * gc-internal.h: Add new functions required for ephemeron support.
185         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
187         * icall-def.h: Add GC::register_ephemeron_array.
189         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
190         under sgen. Its fields must not be marked.
192         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
194         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
195         handling finalizable objects. Clean dead ones after all finalizable
196         handling.
198         * sgen-gc.c (dump_heap): Add new kind of internal memory.
200         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
201         arrays from the dead domain.
203         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
205         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
206         whose keys are reachable.
208         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
209         list of live ephemeron arrays.
211 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
213         * class.c (mono_class_layout_fields): Don't perform alignment
214         if align is zero.
216         * class.c (mono_class_layout_fields): Init field related information
217         to sane defaults.
219 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
221         * verify.c (mono_verifier_verify_class): Verify the constraint
222         of generic type definitions.
224 2010-05-04  Mark Probst  <mark.probst@gmail.com>
226         * sgen-marksweep.c: Simplify free list maintenance in sweep.
228 2010-05-02  Mark Probst  <mark.probst@gmail.com>
230         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
231         major_do_collection() across the two major collectors.
233 2010-05-02  Mark Probst  <mark.probst@gmail.com>
235         * sgen-gc.c: Add heavy statistics counter for re-added global
236         remsets.
238 2010-05-02  Mark Probst  <mark.probst@gmail.com>
240         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
241         get rid of a division in critical code.
243 2010-04-29  Mark Probst  <mark.probst@gmail.com>
245         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
246         blocks for objects without references in mark&sweep, to improve
247         performance.
249 2010-04-28  Mark Probst  <mark.probst@gmail.com>
251         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
252         statistics up-to-date.
254 2010-04-27  Mark Probst  <mark.probst@gmail.com>
256         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
257         heap-dump for mark&sweep.
259 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
261         * loader.c (mono_method_get_header): Move the is_inflated case before the
262         wrapper case, as a method can be both.
264 2010-04-27  Mark Probst  <mark.probst@gmail.com>
266         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
267         separate pass to scan pinned and large object but use the gray
268         queue like for regular objects.
270 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
272         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
273         string.h for memmove.
275         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
276         ipaddress_to_struct_in6_addr() is only needed when
277         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
279 2010-04-25  Mark Probst  <mark.probst@gmail.com>
281         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
282         separate copy_object functions for major vs nursery.  Allows us to
283         get rid of a few checks and the start and end parameters for many
284         functions.
286 2010-04-25  Mark Probst  <mark.probst@gmail.com>
288         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
289         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
290         collector.
292 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
294         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
295         calling setup_mono_type () since the nested parent could recursively reference
296         the nested class using generic constraints. Fixes #599469.
298 2010-04-24  Mark Probst  <mark.probst@gmail.com>
300         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
301         abstraction.
303 2010-04-24  Mark Probst  <mark.probst@gmail.com>
305         * sgen-gc.c: Remove more unneeded code.
307 2010-04-24  Mark Probst  <mark.probst@gmail.com>
309         * sgen-gc.c: Disable managed allocator and wbarrier when the
310         binary protocol is enabled.
312 2010-04-24  Mark Probst  <mark.probst@gmail.com>
314         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
316 2010-04-24  Mark Probst  <mark.probst@gmail.com>
318         * sgen-gc.c: Remove a few commented out and unneeded bits.
320 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
322         * threadpool.c: patch from Robert Nagy that fixes a nullref and
323         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
325 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
327         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
328         types.
330         Fixes #331126
332 2010-04-21  Mark Probst  <mark.probst@gmail.com>
334         * sgen-gc.c: Turn off semi-precise stack mark.
336 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
338         * reflection.c (mono_custom_attrs_from_index): Use right function
339         to free 'list' (i.e. g_list_free) if the verifier fails.
341 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
343                 * verify.c: Handle the case where mono_type_get_underlying_type_any
344                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
345                 and MONO_TYPE_VALUETYPE in those case.
347                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
349                 Hopefully Fixes #564253.
351 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
353         * domain-internals.h: made threadpool_jobs volatile.
354         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
355         all local jobs.
356         * threadpool.c:
357                 -When two threads try to initialize the socket IO pool,
358                 the second one waits until the intialization is finished
359                 instead of continuing right away.
360                 -Add checks for domain unload: no items added in this case.
361                 -Only measure the time every 10 elements added to the queue.
362                 This is an experiment since linux x86 gettimeofday() sucks.
363                 -Create new thread if there are none waiting for work items.
364                 -There was a missing decrement of the busy threads.
365                 -Make sure the local queue is cleaned up before exiting the
366                 thread when the program ends.
368 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
370         * reflection.c (mono_type_get_object): Normalize generics types
371         as to how managed code expect them to be. A generic instance over
372         the GTD arguments must have the same mirror as the GTD itself.
374         Fixes #473289.
376 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
378         * locales.c: Implement support for DISABLE_NORMALIZATION.
380 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
382         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
383         since it is not a MonoMethod.
385 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
387         * icall-def.h: Add get_RequiresElevatedPermissions icall to
388         System.Security.SecurityManager - used only by Moonlight
389         * security-core-clr.c|h: Add Elevated Trust/Permission support
390         for CoreCLR / Moonlight
392 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
394         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
395         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
397 2010-04-16  Marek Habersack  <mhabersack@novell.com>
399         * mono-perfcounters.c: added code for the "Mono
400         Memory/Total Physical Memory" performance counter.
402         * mono-perfcounters-def.h: added definition of the "Mono
403         Memory/Total Physical Memory" performance counter.
405 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
407         * class.c (mono_class_get_method_by_index): Return NULL
408         on type load failures.
410 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
412         * class.c (mono_class_from_typeref): Check if the supplied
413         image has an assembly bound to it.
415         Fixes #567884.
417 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
419         * loader.c (mono_method_get_signature_full): Use new function
420         inflate_generic_signature_checked to check for errors.
422         Fixes #560839.
424 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
426         * loader.c (inflate_generic_signature): Add _checked variant
427         and move this function to use it.
429 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
431         * class.c (mono_class_setup_vtable_general): Use error checking
432         version of mono_class_inflate_generic_method_full.
434         Fixes #596975.
436 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
438         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
439         error handling passing MonoError around.
441         Fixes #560336.
443 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
445         * socket-io.c: make GetHostByName ("") work on windows.
446         Fixes bug #456723.
448 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
450         * object-internals.h:
451         * threads.c: use a spin lock when accesing the per-thread appdomain
452         list.
454 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
456         * threads.c: no need to take the threads lock in push/pop appdomain.
458 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
460         * reflection.c (_mono_reflection_parse_type): MS supports
461         non-assembly-qualified types in a generic type parameter list
462         when enclosed in '[]' (which signals that they should be a fqn).
464         This breaks ECMA specs for how type names are encoded in cattr
465         blobs but F# does it.
467         Fixes #576342.
469 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
471         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
472         for instance methods/ctors.
474         Fixes #422113.
476 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
478         * reflection.c: Use the new verifier support for checking
479         custom attributes.
481         Fixes #595306.
483 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
485         * metadata-verify.c: Implement structural verification
486         of custom attributes. This check requires access to the
487         loader since to resolve the size of an enum we have to
488         look it up.
489         We don't check if named argumenments are encoded in a
490         compatible fashion to their underlying field/prop.
491         Maybe we should?
493         * verify-internals.h: Add two new cattr verification API.
495 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
497         * metadata-verify.c (decode_signature_header): Fix signature.
499 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
501         * verify.c (mono_verifier_is_enabled_for_method): Handle
502         assembly less images.
504         * verify.c (mono_verifier_is_class_full_trust): Ditto.
506 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
508         * loader.c (mono_method_signature_checked): Properly
509         init MonoError.
511         * loader.c (mono_method_signature): It's the calee
512         resposibility to init the error object.
514 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
516         * metadata-verify.c (decode_signature_header): Do proper
517         overflow checking.
519 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
521         * reflection.c: maintain the invariants required by
522         mono_class_layout_fields() also in typebuilder_setup_fields ().
524 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
526         * security-core-clr.c: Call mono_class_setup_methods in 
527         get_default_ctor before checking klass->methods. Fix typo in
528         comment
530 2010-04-10  Jb Evain  <jbevain@novell.com>
532         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
533         add .net 4.0 RTM version.
535 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
537         * reflection.c (resolve_object): Properly inflate generic
538         methods when a context is supplied.
540         Fixes #591226.
542 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
544         * verify.c (mono_method_verify): A switch op don't empty
545         the stack for the next one. Fixes a bug when running fsi
546         under --verify-all.
548 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
550         * metadata-verify.c (is_valid_standalonesig_blob): Accept
551         fields as valid standalone sig too. F# does generate them.
553         * metadata-verify.c (verify_typedef_table_full): Ignore
554         what <module> extends.
556 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
558         * verify.c (do_invoke_method): It's ok to do use call with
559         virtual, non-final methods if their class is sealed.
561 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
563         * icall.c (ves_icall_MonoField_GetValueInternal): This function
564         is a near identical copy of mono_field_get_value_object. So simply
565         call it.
567         * object.c (mono_field_get_value_object): Handle literal fields
568         on open generic classes.
570         Fixes #594942.
572 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
574         * reflection.c (mono_reflection_create_runtime_class): Setup
575         parent/supertype information again since it can be changed
576         without notice.
578 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
580         * verify.c (verify_type_compatibility_full): Properly handle
581         stores between arrays of primitives.
583         Fixes the verifier side of #555950.
585 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
587         class.c (mono_bounded_array_class_get): Properly init
588         cast_class to take the fact that uint[] and int[] can be
589         casted between each other.
591         Fixes #555950.
593 2010-04-07  Geoff Norton  <gnorton@novell.com>
595         * domain.c: Avoid a deadlock on osx.  Fixes #565765
597 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
599         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
600         builders. Fixes #594464.
602 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
604         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
605         waiting for all threads to suspend, as those threads can't be suspended.
607 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
609         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
610         to avoid crashes on newly created threads.
612 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
614         * file-io.c: reset the MonoIOStat structure in case of error.
615         Fixes bug #582667.
617 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
619         * class.c (print_implemented_interfaces): Print proper type name.
621         * class.c (mono_class_setup_vtable): Don't try that hard to produce
622         the override map for generic instances since it later ignored.
624         * class.c (mono_class_implement_interface_slow): Don't break for
625         dynamic generic instances.
627         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
629         * reflection.c (mono_reflection_method_get_handle): New method that
630         resolves a method handle.
632         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
633         case when we override methods from a dynamic generic instance interface.
635         Fixes #575941.
637 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
639         * threadpool.c: don't attempt to close the pipe when it has not been
640         created.
642 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
644         * threadpool.c: if there are no waiting threads, try to start a new
645         one. This fixes the not-so-random hangs in System.ServiceModel tests.
646         No need to use InterlockedCompareExchange to read volatile variables.
648 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
650         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
651         and reference types that point to the same class.
653         Fixes #565598.
655 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
657         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
658         when verifying compatibility between a generic instance and a generic
659         parameter.
661         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
663         * verify.c (stack_slot_stack_type_full_name): Improve verification type
664         name.
666         Fixes #587849.
668 2010-04-04  Mark Probst  <mark.probst@gmail.com>
670         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
672 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
674         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
676 2010-04-03  Marek Habersack  <mhabersack@novell.com>
678         * process.c: when cross-compiling with MinGW, force GetProcessId
679         lookup using GetProcAddress.
681 2010-04-02  Mark Probst  <mark.probst@gmail.com>
683         * sgen-gc.c: parse_environment_string_extract_number() must be
684         static.
686 2010-04-02  Mark Probst  <mark.probst@gmail.com>
688         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
689         gray_object_dequeue(), to make sure they're inlined.
691 2010-04-02  Mark Probst  <mark.probst@gmail.com>
693         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
694         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
696 2010-04-02  Jb Evain  <jbevain@novell.com>
698         * exception.c: remove dead code.
700 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
702         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
703         with mono-gc.h.
705 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
707         * sgen-gc.c: Make the nursery size adjustable by the
708         MONO_GC_PARAMS environment variable.
710         Code is contributed under MIT/X11 license.
712 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
714         * threadpool.c: threadpool threads wait is alertable.
715         Fixes bug #592964.
716         Reduced the stack size of the *poll_wait thread.
718 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
720         * exception.c|metadata-internals.h: Add new mono_get_exception_
721         field_access_msg and mono_get_exception_method_access_msg 
722         functions that accept a const char* parameter to provide more 
723         details when the exception is thrown.
724         * security-core-clr.c|h: Rework code to allow logging exceptions
725         (export MONO_LOG_MASK="security") and to supply more details in
726         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
727         mono_security_core_clr_is_field_access_allowed and 
728         mono_security_core_clr_is_call_allowed to return an exception,
729         with messages and logging, that can be emitted by method-to-ir.c
731 2010-04-01  Mark Probst  <mark.probst@gmail.com>
733         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
734         pinned object.
736 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
738         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
739         the assembly name is not well formed utf8. Fixes #567882.
741 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
743         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
744         the generic parameters from the builder. Fixes #473298.
746 2010-03-31  Miguel de Icaza  <miguel@novell.com>
748         * object.c (mono_class_proxy_vtable): Eliminate warning. 
750         * marshal.c (emit_marshal_boolean): Eliminate possible
751         uninitialized local warning. 
753 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
755         * class.c (mono_class_init): Postpone coreclr inheritance check
756         until the end of the initialization (so we can check up the 
757         default ctor manually for the core-clr inheritance rules).
758         * security-core-clr.c: Add the missing (undocumented) checks on
759         default constructors when verifying inheritance rules.
761 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
763         * domain-internals.h (MonoJitExceptionInfo): Add new field
764         handler_end to the data union. To be used to point the end
765         of a finally block.
767 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
769         * reflection.c: Add support for new v4 type
770         System.Reflection.MonoModule that is the concrete version
771         of Module which is abstract unver v4.
773 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
775         * class.c (mono_class_init): Don't set class failure after
776         inited = 1 is set. It must be done before.
778 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
780         * mono-config.c: Add support for OS "haiku"
781         * ChangeLog: Fix UTF-8 encoding
783         Code is contributed under MIT/X11 license.
785 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
787         * console-unix.c: fixed include logic for sys/ioctl.h.
789 2010-03-30  Mark Probst  <mark.probst@gmail.com>
791         * threads.c: Fix bitmap generation for TLS marking on 64 bit
792         systems.
794 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
796         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
797         unfinished/broken typebuilders.
799 2010-03-29  Mark Probst  <mark.probst@gmail.com>
801         * sgen-gc.c: Use the same heuristic for the LOS target that we use
802         for the minor section allowance.
804 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
806         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
807         "NoOptimization".
809 2010-03-29  Mark Probst  <mark.probst@gmail.com>
811         * sgen-gc.c: Count bytes allocated with heavy statistics.
813 2010-03-29  Mark Probst  <mark.probst@gmail.com>
815         * sgen-gc.c: More detailed time statistics.
817 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
819         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
820         fix the user defined mark interface to pass a pointer
821         to the object location and not the object itself.
823 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
825         * reflection.c (mono_method_body_get_object): Release
826         the method header before the call to CACHE_OBJECT since
827         this is a macro that returns.
829 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
831         * class.c (inflate_generic_type): mono_metadata_type_dup
832         already dupes array information, the g_memdup was just
833         leaking memory.
835 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
837         * verify.c: Add stack_peek function. Fix CEE_DUP
838         to not read from invalid memory if push did expand
839         the stack.
841 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
843         * verify.c: Remove old table verification code that has
844         been superseeded by the new metadata verifier.
846         * verify.h: Remove mono_image_verify_tables from the public
847         API.
849         * pedump.c: Fix for removed bits.
851 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
853         * verify.c: Allocate stack slows lazily to reduce stack usage
854         in case of methods with huge stacks. Reduces memory consumption
855         for mcs yyparse from 459Mb to 1.8Mb.
857 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
859         * threadpool.c: don't try executing items from domains being
860         unloaded. Fixes appdomain-async-invoke test.
862 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
864         * threadpool.c: spin while the threadpool initializes.
865         * mono-wsq.c: if the WSQ has not been initialized or has been shut
866         down, don't do anything.
868 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
870         * threads.c (mono_thread_create_internal): Set the GC type of the
871         threads_starting_up hash table.
873 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
875         * threadpool.c: reset 'state' to avoid returning non-null when the
876         event type is not found.
878 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
880         * sgen-gc.c: make copy_object () take the address of the
881         slot holding the reference. This allows saving memory stores
882         when not needed and it allows keeping track of oldspace->nursery
883         references for the card table code.
885 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
887         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
889         Code is contributed under MIT/X11 license.
891 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
893         * object.c, threads.c, threads-types.h, threads.h: make the
894         managed thread local storage references precisely tracked.
896 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
898         * threadpool.[ch]: reworked the threadpool:
899                 -Threadpool threads use a work-stealing queue. Adding a work
900                 item from a threadpool thread will queue it in the thread
901                 local queue without locking (in most cases).
902                 -epoll events are coalesced before being added to the IO
903                 queue.
904                 -Dynamically change the number of active threads
905                 -Changed the global queue to be more GC friendly
907         * class-internals.h: add 2 new performance counters for the number of
908         threads in the threadpool and the IO threadpool.
910         * object-internals.h: new field in MonoAsyncResult.
911         * icall-def.h: new internal call for queueing work items.
913         * Makefile.am: add 2 new files.
915         * appdomain.c: bump up corlib version.
917         * mono-wsq.[ch]: an implementation of a work-stealing queue.
919         * mono-perfcounters-def.h:
920         * mono-perfcounters.c: added 2 new performance counters.
922 2010-03-26  Mark Probst  <mark.probst@gmail.com>
924         * sgen-gc.c: More FIXME/TODO updates.
926 2010-03-25  Mark Probst  <mark.probst@gmail.com>
928         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
929         function mono_gc_invoke_with_gc_lock() which invokes a function
930         with the guarantee that no collection will occur during its execution.
932 2010-03-25  Mark Probst  <mark.probst@gmail.com>
934         * sgen-gc.c: Update a few comments.
936 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
938         * reflection.c: Add support for new v4 type
939         System.Reflection.MonoAssembly that is the concrete version
940         of Assembly which is abstract unver v4.
942 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
944         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
945         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
947         Expose a few macros that are needed for SR but not SRE to the
948         world (previous inside the SRE ifdef)
950 2010-03-24  Mark Probst  <mark.probst@gmail.com>
952         * sgen-gc.c (gc_register_current_thread): We need
953         stack_start_limit as well in the non-attribute pthread case.
955 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
957         * threads.c: Fix windows build.
959 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
961         * thread-types.h: Add mono_thread_resume_interruption.
963         * threads.c: Add mono_thread_resume_interruption, this
964         function should be called after the last protected handler
965         found at interruption time has finished.
967 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
969         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
970         Check MonoInternalThread's ::state instead of ::abort_exc
971         since the later can be lazily created.
973         This is specially problematic when running a finally block
974         under AbortRequested state. ResetAbort must work, but the
975         abort_exc object has not been created because interruption
976         has not began.
978 2010-03-22  Geoff Norton  <gnorton@novell.com>
980         * locales.c: Its possible for CFStringGetCStringPtr
981         to return null and not convert encodings.  Use
982         CFStringGetCString instead.
984 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
986         * class-internals.h, class.c, object.c: introduce compressed
987         interface bitmaps (for now only under small config): this saves
988         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
989         startups.
991 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
993         * mono-debug.c: don't try to get the method header, it causes a
994         deadlock and it is not used for anything anymore.
996 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
998         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
999         broken by the last change.
1001 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1003         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1004         SOCK_RDM.
1005         
1006         Code is contributed under MIT/X11 license.
1008 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1010         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1011         nursery.
1013         Code is contributed under MIT/X11 license.
1015 2010-03-19  Martin Baulig  <martin@ximian.com>
1017         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1018         dummy field, containing an empty string.
1019         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1022 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1024         * class.c: setup_interface_offsets() refactor to not call
1025         mono_class_get_implemented_interfaces () more times than needed and
1026         to reduce the runtime memory requirements to be O(num_interfaces)
1027         instead of O(max_interface_id).
1029 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1031         * mono-mlist.[ch]: add mono_mlist_set_next ().
1033 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1035         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1036         associated changes to support holes in the protected range of a
1037         try block.
1039         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1040         retrieves the holes table from a given MonoJitInfo.
1042 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1044         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1045         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1046         hide the contents of the MonoString and MonoArray structs from the
1047         public API. Change the accessor macros to accessors functions where
1048         needed. Adjusted the array API to allow for pointer-sized lengths and
1049         starting positions, so 64 bit arrays can be optionally provided in an
1050         API compatible way if needed on 64 bit systems.
1052 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1054         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1055         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1057 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1059         * class-internals.h: remove the method header from MonoMethod since
1060         from now on it will be transient. We have a header pointer for method
1061         wrappers, since in that case we need to keep track of it. For this
1062         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1063         structs now. The same happens with MonoMethodInflated.
1064         * class.c: reset the sre_method flag for inflated method structures:
1065         this makes the code that cares look at the header in the MonoMethodInflated
1066         structure.
1067         * loader.c: lookup the method header in the appropriate field now that
1068         it is removed from MonoMethod.
1069         * metadata-internals.h: add a flag to the method header to know if it
1070         can be freed inside mono_metadata_free_mh ().
1071         * method-builder.c: updates after moving the header field from
1072         MonoMethod to MonoMethodWrapper.
1073         * reflection.c: MonoMethods generated from Reflection.Emit use
1074         MonoMethodWrapper structs if they need a method header now (later take
1075         advantage of this and remove all the current unsafe uses of method_aux_hash).
1076         * metadata.c: make method header parsing not leak when verification
1077         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1078         These changes save a few hundred KB of runtime memory in a mcs
1079         bootstrap or a monodevelop startup.
1081 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1083         * verify.c: Improve error message.
1085 2010-03-12  Jb Evain  <jbevain@novell.com>
1087         * reflection.c (add_exported_type): populate the exported
1088         table with the type's nested type.
1090 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1092         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1093         can't read parentheses.
1095 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1097         * threads.c (thread_cleanup): Add a guard to dereferencing
1098         "thread" to avoid an unlikely race condition.
1100 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1102         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1103         instead of an empty string.
1105 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1107         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1108         convert to a boolean, recent gcc versions compile this differently.
1110 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1112        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1113        inlined.
1115 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1117         * sgen-gc.c (STRING_SIZE): Off by one.
1119 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1121         * sgen-archdep.h: Fix the signal context register access for
1122         AMD64.
1124 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1126         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1128 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1130         * verify.c: Store the initial basic block returned by mono_basic_block_split
1131         so we can release the whole list and not just the first one.
1133 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1135         * verify.c, debug-helpers.c, profiler.c, loader.c,
1136         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1137         MonoMethodHeader a transient entity.
1139 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1141         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1142         uncontrolled growth of the gray stack.
1144         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1145         added items are removed first, improving cache locality. Avoid freeing queue
1146         segments in the fast path, use the list of segments as the free list, truncate
1147         it to its max size at the start of collection.
1149 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1151         * metadata-internals.h: more memory savings, both with small config and without.
1154 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1156         * appdomain.c, domain-internals.h, domain.c, object.c:
1157         make class_vtable_hash into an array to reduce memory usage.
1159 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1161         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1162         object-internals.h, object.c, reflection.c, threadpool.c:
1163         reduce resource usage when the small config is selected.
1164         In particular, up to 64K of methods/fields/properties/events
1165         are allowed and "other" methods in events are ignored.
1167 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1169         * threads.c: reduce resource usage when compiled for a small config.
1171 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1173         * sgen-gc.c: Also collect number of degraded-alloced objects with
1174         heavy statistics.
1176 2010-03-04  Geoff Norton  <gnorton@novell.com>
1178         * assembly.c: Only support OSX bundling if the bundle is 
1179         actually detectable.
1181 2010-03-04  Geoff Norton  <gnorton@novell.com>
1183         * loader.c: The marshal specs are freed at the end of the call
1184         but it explicitly frees the strings as well as the container,
1185         so we need to dup them too to avoid referencing free'd memory.
1187 2010-03-04  Geoff Norton  <gnorton@novell.com>
1189         * icall-def.h:
1190         * icall.c: Add a new private internal icall to construct
1191         an object from its type without running the ctor.
1193 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1195         * profiler.c: allow multiple profiler engines to be loaded
1196         at the same time.
1198 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1200         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1201         profiler event to track object moves.
1203 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1205         * object.c, profiler.c, profiler.h, string-icalls.c:
1206         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1208 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1210         * decimal.c (mono_double2decimal): Add support for reducing the
1211         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1212         expected.
1214 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1216         * icall-def.h:
1217         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1219 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1221         * mono-config.c (mono_config_parse_assembly_bindings): added -
1222         parses assembly binding redirections from appdomain's config
1223         file.
1225         * metadata-internals.h: added definition of a new function -
1226         mono_config_parse_assembly_bindings - to support parsing assembly
1227         binding redirections defined in appdomain's config file.
1229         * domain-internals.h: added two new fields to _MonoDomain - a list
1230         of assembly bindings and a flag to parse the config file only
1231         once.
1233         * assembly.c (assembly_binding_maps_name): empty culture name and
1234         NULL culture name are considered equal.
1235         (mono_assembly_apply_binding): added support for domain specific
1236         assembly binding redirections, read from the appdomain's
1237         configuration file. Fixes bug #580185
1239 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1241         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1242         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1243         support.
1245 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1247         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1248         from this function. The new function receive the parent token instead of a type.
1250         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1251         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1252         typebuilders. This make it possible to properly encode generic type builders since
1253         their unmanaged type don't have generics data while unfinished.
1255         Fixes #583655.
1257 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1259         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1260         writing binary log files (can be enabled by #define'ing
1261         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1262         bugs in longer running programs.
1264 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1266         * metadata.c: added some API documentation.
1268 2010-03-01  Robert Jordan  <robertj@gmx.net>
1270         * filewatcher.h: Include glib.h to fix the MSVC build.
1272 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1274         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1275         a GC handle instead. This is a bit slower to access, but avoids burdening the
1276         GC with 100s of individual roots.
1278         * reflection.c (mono_class_get_ref_info):
1279         (mono_class_set_ref_info):
1280         (mono_class_free_ref_info): New internal helper fuctions.
1282         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1283         of accessing klass->reflection_info directly.
1285         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1286         words.
1288         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1289         the previous array.
1291 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1293         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1294         needs an indirection.
1296 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1298         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1299         so all generic sharing code is in one place.
1301         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1302         we don't call setup_interface_offsets () for unfinished types.
1304 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1306         * class.c (mono_class_generic_sharing_enabled): Move this to
1307         generic-sharing.c.
1309         * image.c: Add an unload hook which is called before an image is unloaded.
1311         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1312         metadata.c having to depend on generic sharing.
1314 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1316         * class.c: reduce size of ridiculously large cache.
1318 2010-02-26  Martin Baulig  <martin@ximian.com>
1320         * mono-debug.h
1321         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1323         * threads.c (mono_thread_internal_reset_abort): New method; resets
1324         the abort, but doesn't throw any exception if no abort was requested.
1326 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1328         * class.c (get_implicit_generic_array_interfaces): Call
1329         mono_class_setup_interface_offsets () before accessing
1330         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1331         some reason.
1333 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1335         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1336         icall internal.
1338 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1340         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1341         direct access to the MonoType fields.
1343 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1345         * threads.h: Move some internal functions which were added to this header by
1346         mistake to threads-types.h.
1348         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1350 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1352         * class-internals.h, class.h, object.h: make MonoRemoteClass
1353         and mono_remote_class() internal.
1355 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1357         * metadata-internals.h, class-internals.h, metadata.h: make the
1358         MonoType guts internal as well.
1360 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1362         * reflection.h: the MonoTypeNameParse guts are internal now.
1363         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1364         are internal now, provide accessors as needed.
1365         * metadata.h, metadata-internals.h: the MonoMethodSignature
1366         guts are internal now.
1367         * Makefile.am: mempool.h is an internal header now.
1368         * *.h, *.c: remove glib.h usage from the public headers.
1370 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1372         * culture-info-table.h : regenerated.
1374 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1376         * metadata.c: Add mono_method_get_header_summary which returns minimal
1377         information about the header of a method. This is the information used
1378         by the inline oracle to reject methods.
1380         This method doesn't decode local variables and doesn't cache it's result,
1381         so it should cause a minimal reduction in memory usage.
1383         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1384         mono_method_get_header_summary.
1386 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1388         * threads.c (mono_thread_exit): Make sure that the main thread is
1389         non-null before dereferencing it.
1391 2010-02-21  Geoff Norton  <gnorton@novell.com>
1393         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1394         locale.
1395         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1396         before falling back to the posix lookup.
1398 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1400         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1401         the DONT_MANAGE flag set.
1403 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1405         * domain.c: Remove old v1 version strings. Let the runtime
1406         default to 2.0 instead of failing because it can't find a
1407         working 1.0 instalation.
1409 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1411         * domain.c: Add v4 RC version string.
1413 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1415         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1416         of overflow checking function.
1418 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1420         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1421         generic methods.
1423         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1424         cases for ParameterInfo.
1426         Fixes #579493.
1428 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1430         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1431         have has_cctor set. Fixes #575946.
1433 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1435         * appdomain.c: display a warning if the parsing the config file
1436         produces any error.
1437         Skip the BOM in UTF-8 files.
1438         Copy the AppDomainSetup before setting the privateBinPath so that the
1439         correct configuration file is read.
1441 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1443         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1444         vtable trampoline per vtable slot index. Not used yet.
1446 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1448         * icall-def.h:
1449         * icall.c: add internal call that returns the system page size.
1451 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1453         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1454         'int' for system classes.
1456 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1458         * icall.c, icall-def.h: new icall to check for sufficient
1459         stack space.
1461 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1463         * reflection.c (ensure_complete_type): Check that reflection_info
1464         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1466 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1468         * attrdefs.h:
1469         * tabledefs.h: Add NoOptimization flag.
1471 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1473         * sgen-gc.c: Don't consider it a missing remset if the target
1474         object is pinned - we might have done the store but not added the
1475         remset yet.
1477 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1479         * sgen-gc.c: When checking for missing remsets, don't assert on
1480         the first one, but print them all and then assert.
1482 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1484         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1486 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1488         * console-unix.c: On OSX Control-Y is assigned to
1489         VDSUSP (non-Posix), the
1490         suspend-program-next-time-it-tries-to-read-input command (this is
1491         different than C-z, which suspends immediately).
1493         Do the same thing that bash does and ignore this setting,
1494         making our repl/getline support pasting.
1496 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1498         * sgen-gc.c: Simple plausibility check for scan_starts.
1500 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1502         * sgen-gc.c: Round up when calculating the number of scan starts.
1504 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1506         * reflection.c: Export mono_get_object_from_blob.
1508         * object-internals.h: Ditto.
1510         * icall.c: New icall property_info_get_default_value to get the default
1511         value of a property. Since using this is not common, no caching is done.
1513         * icall-def.h: Add new icall.
1515 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1517         * class.c: Add mono_class_get_property_default_value.
1519         * class-internal.h: Export mono_class_get_property_default_value.
1521 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1523         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1525 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1527         * sgen-gc.c: introduced critical regions to allow some lockless
1528         operations and increase scalability.
1530 2010-02-10  Geoff Norton  <gnorton@novell.com>
1532         * reflection.c: Support building with DISABLE_REFLECTION
1534 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1536         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1537         Closes bug #566057.
1539         * exception.c: fix typo in comment.
1541 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1543         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1544         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1546         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1548         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1549         the internal API.
1551         Fixes #574434.
1553 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1555         * threads.c: Removed two assertions that were too strict.  Added a
1556         clarifying comment.  Fixes #577090.
1558 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1560         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1561         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1563         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1565         * verify.c (mono_type_get_stack_name): Fix a warning.
1567 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1569         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1570         mono_marshal_wrapper_info_from_wrapper.
1572         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1573         mono_marshal_method_set_wrapper_data, and export.
1575         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1576         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1577         by calling mono_marshal_get_wrapper_info ().
1579         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1580         small objects which does no size checks.
1582 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1584         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1586 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1588         * verify.c (mono_method_verify): Use the new basic block formation pass
1589         to avoid verifying dead basic blocks. This is the same behavior as the
1590         runtime MS verifier.
1592 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1594         * mono-basic-block.c:
1595         * mono-basic-block.h: New implementation of a basic block formation pass.
1596         The formation pass does static liveness analysis as well to detect dead
1597         basic blocks.
1599 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1601         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1602         'this' argument in icalls.
1604 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1606         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1608 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1610         * object.c, domain.c: When using SGen, we must register
1611         vtable->type as a root if it's not a MonoType, because then it
1612         wasn't pin-alloced.
1614 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1616         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1617         at the start of nursery collections, because we might have had
1618         degraded allocations which changed next_data.
1620 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1622         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1623         custom attr so this function works in cross-compiling mode.
1625 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1627         * class.c (make_generic_param_class): Initialize interface offsets since we
1628         set klass->inited. Fixes #574819.
1630 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1632         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1633         calling the JIT domain cleanup hook.
1635 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1637         * pedump.c (main): Properly set the verifier mode when running the metadata
1638         verifier.
1640 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1642         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1643         overlapping fields now that we're called before has_references is set.
1645         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1646         method. Otherwise all sort of weird stuff happens.
1648 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1650         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1651         Fixes #572874.
1653 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1655         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1656         Fixes #573322.
1658 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1660         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1661         pin_staging_area_index is greater than 0.
1663 2010-01-22 Miguel de Icaza (miguel@novell.com)
1665         * loader.c: Since we do nothing with the error returned, pass NULL
1666         to ignore the error.
1668 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1670         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1671         happened before starting to encode the actual fields. This avoid ciclic
1672         dependencies and eventual crashes.
1674         Fixes #572660.
1676 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1678         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1679         atomic and remove the half-constructed hack in SGen.
1681 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1683         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1684         has a recursive reference to itself.
1686         Fixes #571863.
1688 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1690         * loader.c (mono_method_signature): Fix error message.
1692 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1694         * sgen-gc.c: Reuse to-space sections between nursery collections.
1696 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1698         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1699         from the current assembly or mscorlib. Fixes bug #322957.
1701 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1703         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1704         get_wrapper_target_class.
1706 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1708         * sgen-gc.c: Fix warnings.
1710 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1712         * verify.c (store_local): Better error message.
1714 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1716         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1717         arguments.
1719 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1721         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1722         function is generics variance aware.
1724 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1726         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1727         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1729 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1731         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1732           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1734         Code is contributed under MIT/X11 license.
1736 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1738         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1739         on a GTD.
1741 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1743         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1744         return a point to a wrapper specific info structure describing the wrapper.
1745         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1747 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1749         * sgen-gc.c: Make minor collection section allowance adaptive,
1750         depending on the amount of memory reclaimed in the last major
1751         collection.  If more memory was reclaimed (i.e. more garbage
1752         produced), do the next collection earlier.
1754 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1756         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1757         to itself.
1759         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1760         the token as parameter.
1762         * verify-internals.h: Ditto.
1764         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1766         Fixes #571460.
1768 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1770         * sgen-gc.c: Make store_remset_buffer_index long.
1772 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1774         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1776         Fixes #569579.
1778 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1780         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1781         off precise marking if it is available.
1782         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1784 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1786         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1788         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1789         pinned objects.
1791         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1792         to the array allocator.
1794 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1796         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1797         result of mono_compile_method (), it already includes an ftnptr.
1799 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1801         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1803 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1805         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1806         hash value which doesn't depend on glib/eglib versions.
1807         (mono_metadata_type_hash): Use it.
1809         * object.c (mono_method_get_imt_slot): Ditto.
1811 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1813         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1814         independently of the GTD.
1816         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1818         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1819         to the upper limit since instance_size includes this amount.
1821         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1823         Fixes #569544.
1825 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1827         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1828         with static methods.
1830         * object.c (build_imt_slots): Avoid asserting when static methods are
1831         encountered in an interface.
1833 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1835         * sgen-gc.c (to_space_expand): Fix assertion.
1837 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1839         * string-icalls.c: missing declaration fixes.
1840         * sgen-gc.c: portability fixes.
1842 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1844         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1846         * class.c:
1847         * cominterop.c:
1848         * icall.c:
1849         * object.c: 
1850         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1852 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1854         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1855         it can fail loading the type.
1857         * class.c: Add mono_class_inflate_generic_class_checked.
1859         * class.c:
1860         * verify.c:
1861         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1863 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1865         * loader.c (mono_method_signature_checked): New internal function taking an
1866         MonoError argument.
1868         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1869         Fixes build on rh 7.3.
1871 2010-01-10  Aaron Bockover  <abockover@novell.com>
1873         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1874         at runtime in the same way as on Windows, which yields a relocatable
1875         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1876         of the running mono process.
1878         On TARGET_ARM, fallback () will always be executed.
1880 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1882         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1884 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1886         * class.c (mono_class_is_assignable_from_slow): Support variant
1887         generic delegates.
1889         * class.c (mono_class_implement_interface_slow): Support types with
1890         variant generic arguments.
1892 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1894         * verify.c: Remove some code duplication.
1896 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1898         * object.c: Update docs.
1900 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1902         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1904         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1905         fallback trampoline as well.
1907         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1908         out argument that is set to TRUE if the match was direct. 
1910         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1912         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1914 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1916         * class.c: Add mono_class_interface_offset_with_variance function that does same
1917         as mono_class_interface_offset but takes variance into account.
1919         * class-internal.h: Export mono_class_interface_offset_with_variance.
1921         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1923 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1925         * object.c:
1926         * icall.c:
1927         * class.c: Add some FIXME for due to variant generic arguments.
1929         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1930         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1931         the bitfield check fails.
1933 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1935         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1936         to be easier to read and fix bugs in the case a non generic type implements a variant
1937         interface.
1939         * class.c (mono_class_has_variant_generic_params): Make non static.
1941         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1942         the private API.
1944 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1946         * assembly.c: fix MONO_PATH debug output.
1948 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1950         * culture-info-table.h : regenerated.
1952 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1954         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1955         types that are meant to not have a parent.
1957 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1959         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1960         from the image mempool, so it is not leaked.
1962 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1964         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1966 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1968         * verify.c (verify_valuetype_layout_with_target): Fix case
1969         that can lead to infinite recursion. Fix bug #567861
1971 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1973         * pedump.c: Run code verifier even if image verification fails
1974         due to a failed type we. This allows more errors to be shown.
1976 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1978         * class.c (count_virtual_methods): Remove the assert and now
1979         fail properly.
1980         
1981         * class.c (setup_interface_offsets): This can fail now.
1983         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1984         errors. Check setup_interface_offsets errors.
1986         * class.c (setup_interface_offsets): Simplify the return error logic
1987         and remove class_init_ok.
1989         Fixes #560327.
1991 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1993         * class.c (mono_class_init): Do class verification at the beginning. Add
1994         some asserts to avoid tripping into invalid memory.
1996         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1997         g_error and a decent message.
1999         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2001         Fixes #567548.
2003 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2005         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2006         as inline functions instead of defining them in mempool.c.
2008         * metadata-internals.h (MonoImageSet): New structure representing a set of
2009         MonoImages, which own a collection of generic instances.
2011         * metadata.c: Get rid of the global generic caches, instead assign each generic
2012         instance to the image set which consists of all the images referenced by the
2013         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2014         the memory used by generic instances to be allocated from a per image-set mempool
2015         later.
2017 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2019         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2021 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2023         * appdomain.c (zero_static_data): Fix a warning.
2025         * locales.c (construct_culture_from_specific_name): Applied patch from
2026         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2027         not found. Fixes #567900.
2029 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2031         * loader.c (mono_method_get_signature_full): Remove two asserts.
2032         Return NULL instead so that the verifier can handle both cases 
2033         gracefully.
2035 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2037         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2038         so we can properly fail types instead of crashing.
2040         Fixes #567676.
2042 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2044         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2045         generic method.
2047 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2049         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2051 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2053         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2054         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2055         we can't remove it from it since we don't hold the lock.
2056         (mon_new): Free the orphaned events here when a mon structure is added to the
2057         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2058         this down.
2060 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2062         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2063         as max stack might be zero.
2065         Fixes #562320.
2067 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2069         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2071         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2072         instances if the GTD did.
2074         * class.c (mono_class_setup_properties): Ditto.
2076         * class.c (mono_class_setup_events): Ditto.
2078         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2080         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2081         error setting.
2083         * class.c (mono_class_init): Fail if GTD did.
2085         * cominterop.c:
2086         * generic-sharing.c:
2087         * icall.c:
2088         * loader.c:
2089         * object.c:
2090         * verify.c: Properly handle failure of mono_class_setup_methods.
2092 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2094         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2095         mono_class_inflate_generic_method_full internal.
2097         * class.c (inflate_generic_context): Now takes a MonoError argument.
2099         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2100         errors.
2102 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2104         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2105         they cannot be patched. Partly fixes #564408.
2107 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2109         * metadata-internals.h, reflection.c: Use the
2110         MonoDynamicImage.handleref hash table only with unmanaged keys,
2111         and add a managed hash table handleref_managed for managed keys.
2113 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2115         * sgen-gc.c: Unset to-space bumper between collections.  It might
2116         become invalid due to degraded allocations.
2118 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2120         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2121         with the one from the original method.
2123         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2124         compatibility.
2126         * verify-internals.h: Add new function to the internal API.
2128 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2130         * culture-info-tables.h: regenerated it to include the Georgian culture.
2132 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2134         * sgen-gc.c: Include mono/utils/memcheck.h.
2136         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2137         instead of the current domain, since the two might not match if this is called
2138         from the debugger.
2140         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2141         domain which created this assembly.
2143 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2145         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2147 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2149         * sgen-gc.c: Managed implementation of the specialized generic
2150         store write barrier.
2152 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2154         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2155         A private virtual newslot method is used to implement an interface method without exposing
2156         it to users. When querying for public instance methods, such method would hide a public one
2157         on a parent type.
2159         Fixes #564379.
2161 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2163         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2164         conventions.
2166 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2168         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2170 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2172         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2173         as they are no longer used.
2174         
2175          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2177         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2179 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2181         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2182         if the owner class has not been finished before returning reflection_info.      
2184         Fixes #565127.
2186 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2188         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2189         param doesn't have custom attributes. Fixes #565117.
2191         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2192         #565120.
2194 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2196         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2198 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2200         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2201         same amount done by a core-clr enabled runtime.
2203 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2205         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2206         the target files is reset to writable by owner and readable by
2207         everyone else to prevent problems when updating shadow copies of
2208         files whose source is read-only. Fixes bug #556884
2210 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2212         * class.c (mono_generic_class_get_class): Allocate the generic
2213         class via malloc again, so that it can be freed when any one of
2214         the images of its constituent types is closed.
2216         * metadata.c: When closing an image, don't free generic insts and
2217         generic classes right away, but put them into a list for later
2218         freeing.
2220         * image.c, metadata-internals.h: Store the free list and in the
2221         second pass of closing an image, free it.
2223 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2225         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2227         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2228         types in type_hash.
2230         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2232 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2234         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2235         user type.
2237         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2238         is used.
2240 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2242         * verify.c (mono_method_verify): The Unused opcodes produce an
2243         InvalidProgramException on .NET
2245 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2247         * loader.c (mono_method_get_header): Move assert after the verifier
2248         has been called on the method header.
2250 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2252         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2254         * appdomain.c: Bump corlib version.
2256 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2258         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2259         types as well since otherwise generic instances would not return UT as arguments but
2260         their undelying system type.
2262         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2263         to reflect the fact that they can have now multiple different types.
2265         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2267         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2269         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2271         * reflection.c (mono_reflection_register_with_runtime): Init super types
2272         if the image is not dynamic.
2274         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2275         check if the generic type definition is a TypeBuilder.
2277         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2278         doesn't belong to a dynamic image, skip initialization.
2280         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2281         base definition is not a dynamic type.
2283 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2285         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2286         mono_profiler_string_allocation
2288         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2289         if string profiling is enabled, call
2290         mono_profiler_string_allocation
2292         * profiler.h: added two MonoProfileFlags -
2293         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2294         installation functions for the hooks below.
2296         * profiler-private.h, profiler.c: added two hooks:
2297         mono_profiler_string_allocation called whenever a string is
2298         allocated by InternalAllocateStr and mono_profiler_iomap called
2299         whenever IOMAP code performs an adjustement on a file path.
2301 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2303         * boehm-gc.c: fixed race condition while getting the target of a
2304         disappearing link (bug #522233).
2306 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2308         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2309         the error.
2311 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2313         * reflection.c: Add mono_reflection_register_with_runtime icall to
2314         allow a MonoGenericClass to register itself as the managed mirror of
2315         a given generic instance.
2316         This is a temporary workaround until all MGC instantiation happens in
2317         managed code.
2319         * object-internals.h: Ditto.
2321         * icall-def.h: Ditto.
2323 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2325         * sgen-gc.c (find_in_remsets): Also search the generic store
2326         remsets.
2328 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2330         * sgen-gc.c: Don't access class names in debugging code when
2331         unloading a domain, because they might not be valid anymore.
2333 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2335         * domain.c, domain-internals.h: New function mono_domain_unset().
2337         * appdomain.c (unload_thread_main): Detach the thread again at the
2338         end.
2340         * threads.c: When a thread exists or is detached, unset its domain
2341         so that it's NULL when, for example, a pthread destructor runs.
2343         * sgen-gc.c: Assert that there is no domain set after a thread is
2344         done.
2346 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2348         * class.c (mono_generic_class_get_class),
2349         metadata.c (free_generic_class): Allocate generic MonoClass's from
2350         the image mempool, not via malloc.  The problem with malloc is
2351         that when unloading a domain those classes are freed before
2352         clearing the heap and SGen needs the classes.  Rewriting the
2353         unloading code to do the free later would be more work and there's
2354         no point in using malloc anyway.
2356 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2358         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2359         before returning.
2361 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2363         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2364         user string blobs.
2366         * verify-internals.h: Add new function to the internal API.
2368         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2369         check if it's a valid string.
2371         * object.c (mono_ldstr): Ditto.
2373         Fixes #561943.
2375 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2377         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2378         from a method before returning it. This is the expected behavior.
2380 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2382         * reflection.c (inflate_method): Handle the case of a regular system type.
2384 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2386         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2387         gathering code.
2389         * mempool.c, mempool-internals.h: New function
2390         mono_mempool_get_bytes_allocated().
2392         * Makefile.am: sgen-pinning-stats.c added.
2394 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2396         * sgen-gc.c (create_allocator): Only use the fast path if the
2397         object size is within the small object size limit.
2399 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2401         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2402         possibly adding padding to sizeof (GCMemSection).
2404 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2406         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2407         reference is not in the nursery.
2409 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2411         * class.c (mono_class_from_typeref): Bounds check idx against the 
2412         assemblyref table.
2414 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2416         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2417         through the potential roots, then sort the results and find the
2418         pinned objects from there.
2420         * Makefile.am: sgen-pinning.c added.
2422 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2424         * sgen-gc.c: Record generic stores in specialized remset buffers.
2426 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2428         * sgen-gc.c: Make pinned chunks the same size as major heap
2429         sections, and align them as well, so that we can check whether an
2430         object is in a pinned chunk or a major section in constant time.
2432 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2434         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2436 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2438         * sgen-gc.c: Make all major heap sections the same size (currently
2439         128k) and allocate them on aligned addresses.  Small heap sections
2440         give us better granularity with pinned objects - we can free up
2441         much more memory.
2443 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2445         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2446         output removed.
2448 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2450         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2452         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2453         names in addition to the runtime generated one.
2455         * mono/metadata/image.h: Add a function to take the real name of the assembly
2456         image.
2458         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2459         use it instead of the runtime generated one.
2461         Code is contributed under MIT/X11 license.
2463 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2465         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2466         before the other checks to prevent problems if the DateTime class is blittable.
2467         Hopefully fixes #559600.
2469 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2471         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2472         returns the largest string length that will not be put into the
2473         LOS.
2475         * sgen-gc.c, gc-internal.h: New function that returns the largest
2476         object size that will not be put into the LOS.
2478         * appdomain.c: Bump corlib version.
2480 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2482         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2484         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2486 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2488         * reflection.c (inflate_method): Fix signature.
2490         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2491         in managed code.
2493 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2495         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2497 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2499         * sgen-gc.c: Abstract to-space handling.
2501 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2503         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2505         Fixes #559906.
2507 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2509         * sgen-gc.c: Only add references from outside the nursery to
2510         within the nursery to the global remset list.
2512 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2514         * appdomain.c (create_exceptions): Set the domain temporarily if
2515         necessary to avoid cross-domain references.
2517 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2519         * verify.c (get_stack_type): Return that the type is invalid instead of
2520         asserting.
2522         * verify.c (mono_method_verify): Verify that all locals and arguments
2523         have valid stack types.
2525         Fixes #559913.
2527 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2529         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2530         bounds checking overflow aware.
2532         Fixes #559910.
2534 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2536         * verify.c (do_invoke_method): Check for invalid method signatures.
2538         Fixes #553450.
2540 2009-12-02  Jb Evain  <jbevain@novell.com>
2542         * appdomain.c (MONO_CORLIB_VERSION): bump.
2543         * icall-def.h (get_base_definition): renamed to get_base_method
2544         and add a boolean argument indicating we want the original
2545         method definition, or the immediate base method.
2546         * icall.c: apply the get_base_definition to get_base_method change.
2548 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2550         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2552         Fixes #558042.
2554 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2556         * class.c: remove asserts for invalid type token in
2557         mono_class_name_from_token(), mono_assembly_name_from_token() and
2558         mono_class_create_from_typedef () (fixes bug #553318).
2560 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2562         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2563         incorrect assemblies (bug #553322).
2565 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2567         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2569         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2571         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2573         * class.c (inflate_generic_context): Ditto.
2575         * loader.c (method_from_methodspec): Ditto.
2577         Fixes #558230.
2579 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2581         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2583         * class.c (mono_class_create_from_typespec): Ditto.
2585         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2587         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2589         Fixes #558184.
2591 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2593         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2595         * verify.c (verify_delegate_compatibility): Ditto.
2597         * verify.c (do_newobj): Ditto.
2599         Fixes #558046.
2601 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2603         * sgen-gc.c: Use a gray queue instead of requiring that gray
2604         objects are in a contiguous region.
2606         * sgen-gray.c: The gray queue implementation.
2608         * Makefile.am: sgen-gray.c added.
2610 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2612         * appdomain.c: When unloading a domain, zero its static data and
2613         perform a minor collection when using SGen.  That will get rid of
2614         all the remsets pointing into that domain's static data.
2616         * sgen-gc.c: Allow remsets into static data.  By doing this we
2617         need less checks so we're more efficient.
2619 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2621         * verify.c (mono_method_verify): Check for catch clauses with broken
2622         types.
2624         Fixes #558465.
2626 2009-12-01  Jb Evain  <jbevain@novell.com>
2628         * class.c (make_generic_param_class): set the namespace of
2629         the generic parameter class from its owner, if available.
2631 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2633         * verify.c (code_bounds_check): Do proper overflow checking.
2635         * verify.c (mono_method_verify): The number of switch entries is
2636         an unsigned int. Properly bounds check it.
2638         Fixes #558594.
2640 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2642         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2643         mono_metadata_method_has_param_attrs which only checks if a given param
2644         list has a non zero flags entry.
2646         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2647         to inform how many params should we expect to decode.
2649         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2650         as it's faster than mono_metadata_get_param_attrs.
2652         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2653         add mono_metadata_method_has_param_attrs.
2655 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2657         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2658         failures.
2660         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2661         is -1 but its class is broken.
2663         Fixes #558522.
2665 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2667         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2668         for parameter overflow.
2670         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2671         of mono_metadata_get_param_attrs.
2673         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2674         API.
2676         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2678 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2680         * class.c (mono_class_setup_fields): Check for fields with broken types.
2682         Fixes #558741.
2684 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2686         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2687         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2688         its TypeBuilder::CreateType ().
2690         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2691         if not needed.
2693         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2694         to make setup_interface_offsets happy.
2696         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2697         compilation now works.
2699 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2701         * appdomain.c (create_exceptions): New helper function extracted from
2702         mono_runtime_init () to precreate objects used during exception handling.
2703         (mono_runtime_init): Call it.
2704         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2706 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2708         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2709         compilation until the proper one is found.
2711 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2713         * class.c (mono_class_setup_vtable_general): Cache the result of
2714         get_virtual_methods () since it can be slow because of the metadata
2715         optimization.
2717         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2718         from a MonoValueHashTable for now, since the later is based on an earlier
2719         version of hpj's internal probing code and seems to have serious collision
2720         issues.
2722         * loader.c (mono_get_method_full): Update after the change above.
2724 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2726         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2728 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2730         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2731         the GTD instead of the DGC instead of crashing.
2733         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2734         required. Inflate fields if needed.
2736         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2737         finished. Renamed.
2739 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2741         * class.c (check_interface_method_override): Check for NULL signatures and fail
2742         the type.
2744         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2746         Fixes #553428.
2748 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2750         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2751         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2753 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2755         * loader.c (field_from_memberref): Resolve the class first then the field
2756         signature. Remove a lot of duplicated code and make sure we don't pass valid
2757         values to mono_loader_set_error_field_load.
2759         Fixes #553306.
2761 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2763         * class.c (inflate_generic_type): Change code to use new signature of
2764         mono_error_set_bad_image.
2766         Fixes #558124.
2768 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2770         * verify.c (mono_method_verify): Don't free ctx.params items if 
2771         we aborted while inflating the ctx.locals. Complete previous fix
2773 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2775         * verify.c (mono_method_verify): Use the uninflated type name, 
2776         when the inflated is null, to report errors. Also take care when
2777         freeing, not to free everything since, in case of an error, some
2778         stuff would be copies (i.e. not allocated by the function itself)
2779         Fix bug #558145
2781 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2783         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2784         or overflow. The caller must have done this check explicitly. This guard us
2785         from accessing invalid memory.
2787         * verify.c (do_push_static_field): Check for stack overflow.
2789         Fixes #553333.
2791 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2793         * loader.c (find_method_in_class): Don't crash if the signature cannot
2794         be resolved.
2796         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2797         of asserting for the case of invalid params.
2799         Fixes #553304.
2801 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2803         * image.c (mono_image_load_module): Fix crash when a bad assembly
2804         has no module at all (fix bug #553412) and also replace the 
2805         g_assert with a return NULL (documented return value for failure)
2807 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2809         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2811 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2813         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2814         file attribute to managed code and avoid doing the mask/attribute
2815         checks here. 
2817 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2819         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2820         the managed world.
2822         * icall-def.h: New entry points.
2823         
2824 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2826         * process.c: Don't put references to managed objects into a
2827         g_ptr_array.
2829 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2831         * class.c (can_access_internals): Allow CoreCLR to participate in
2832         allowing (or not) [InternalsVisibleTo] between assemblies.
2833         * security-core-clr.c|h: Make sure that only trusted code (a 
2834         superset of platform code) can access the internals of platform
2835         code.
2837 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2839         * reflection.c: use the correct base class to get the virtual method
2840         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2842 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2844         * security-core-clr.c (get_caller_no_reflection_related): 
2845         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2846         it's still reflection and must be filtered correctly.
2848 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2850         * object.c (compute_class_bitmap): Fix for large bitmaps.
2852 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2854         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2856         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2857         koush@koushikdutta.com). Disable GC_no_dls on android.
2859 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2861         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2862         tlab_next points outside the TLAB because the allocator was
2863         interrupted.
2865 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2867         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2869 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2871         * object-internals.h: Change signature for mono_string_to_utf8_image.
2873         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2874         argument.
2876         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2877         exceptions due to mono_string_to_utf8.
2879 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2881         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2883         * object.c (mono_remote_class): Make sure all resources are released before
2884         raising an exception.
2886         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2888 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2890         * mono-perfcounters.c (network_get_impl): Change variable initialization
2891         ordering to fix potential memory leak in case of exceptions.
2893         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2894         encoded strings.
2895         
2896 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2898         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2899         variable initialization ordering to fix potential memory leak in case
2900         of exceptions.
2902 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2904         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2905         needed.
2907 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2909         * appdomain.c: Fix shadow path code to better deal with exceptions.
2911 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2913         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2914         exception in the middle of the runtime code.
2916 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2918         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2919         leak memory with broken envvar value.
2921 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2923         * reflection.c (mono_reflection_setup_internal_class): Because
2924         nested classes are not added to the name cache, we must put them
2925         in the reflection_info_unregister_classes list.
2927 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2929         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2930         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2931         platform (trusted) code. Instead we return a TypeLoadException to
2932         be thrown later. This is the exception thrown by Silverlight 2 if
2933         a type, inside application (user) code is marked with [ComImport]
2935 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2937         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2938         mono_is_debugger_attached () too.
2940         * mono-debug.c (mono_is_debugger_attached): New helper function.
2941         (mono_set_is_debugger_attached): Ditto.
2943 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2945         * object-internals.h: Add mono_string_to_utf8_checked.
2947         * object.c: Implement mono_string_to_utf8_checked.
2949 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2951         * class.c: Add missing check for load errors after every
2952         call to mono_class_setup_fields
2954         Fixes #552282.
2956 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2958         metadata-verify.c (verify_tables_schema): Fix the error message.
2960 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2962         * metadata.c: Change event table schema to use TDOR for event type
2963         as this is what it's meant to be.
2965         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2966         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2967         entry.
2969         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2970         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2971         rows in MONO_TABLE_GENERICPARAM.
2973         Fixes #552289.
2975 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2977         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2978         insertion.
2980         * reflection.c (mono_reflection_setup_internal_class): Avoid
2981         registering a gc root the same MonoClass multiple times.
2982         Don't register nested types on the global scope as they should
2983         not be available there.
2985 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2987         * culture-info-tables.h: regenerated.
2989 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2991         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2993 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2995         * string-icalls.c|h: Remove string internal calls that are not 
2996         used anymore by the class libraries.
2997         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2998         which is not used in the class librairies.
2999         * icall-def.h: Update tables.
3001 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3003         * class.h: Move mono_class_inflate_generic_type_checked...
3005         * class-internals.h: to here and make it internal. We don't want to
3006         further expose MonoGenericContext. 
3008 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3010         * verify.c (mono_method_verify): Improve error message.
3012 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3014         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3015         the token is already properly encoded. Fixs 4.0 build.
3017 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3019         * locales.c (construct_number_format): Check if the number index is
3020         valid before trying to use it, if not, just return.
3021         
3022 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3024         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3025         since that loses the abort state. Fixes #539394.
3027 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3029         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3030         explicit this argument to the call signature.
3031         (mono_marshal_get_icall_wrapper): Ditto.
3033 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3035         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3036         to indicate which assembly to use when resolving a custom-mod.
3038         Fixes handling of volatile fields used across assemblies as reported in #551513.
3040 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3042         * loader.c: Improve error messages.
3044 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3046         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3047         of interfaces. Fixes IKVM.
3049         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3051 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3053         * verify.c (verifier_inflate_type): Return the inflated type on success.
3055 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3057         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3059         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3061         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3063         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3064         flag set.
3066         * profiler.c: Add new profiler callbacks for runtime invoke.
3068         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3070 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3072         * sgen-gc.c: Keep track of the reason for a major collection and
3073         write it to the heap-dump file.
3075 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3077         * threads.c: refactor the code that initializes the
3078         thread_start_args into a reusable function and use this in the two
3079         methods that start up threads.
3081 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3083         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3084         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3086 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3088         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3089         Until now, we only had the per-cpu(core) counters.
3091 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3093         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3094         mono_gc_get_suspend_signal(), which returns the suspend signal
3095         number used by the GC.
3097 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3099         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3101         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3102         signalling start_notify.
3104 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3106         * appdomain.c: do not test the st_mode field for shadow-copies.
3107         Fixes bug #545276.
3109 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3111         * threadpool.[ch]: added hooks for thread start/finish and item
3112         processing begin/end. For monotouch use only.
3114 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3116         * threads.c (mono_thread_get_name): New helper function.
3118         * reflection.c (resolve_object): Set handle_class for strings too.
3119         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3120         a cattr blob into a set of arrays and structures without creating the custom
3121         attributes themselves.
3122         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3124         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3126         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3127         function.
3129 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3131         * verify.c: Replace calls to mono_class_inflate_generic_type with
3132         mono_class_inflate_generic_type_checked. Fixes #480005.
3134 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3136         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3137         object since not all paths lead to callees initing it.
3139 2009-10-23  Alp Toker  <alp@nuanti.com>
3141         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3142         header and should not be shipped:
3144         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3145         which is specific to the mono build. Not going to work.
3147 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3149         * security-manager.c: Report if core-clr is active from
3150         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3151         to allow Moonlight BCL to behave appropriately (both in browser
3152         and outside, e.g. smcs)
3154 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3156         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3157         Fixes bug #549108.
3159 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3161         * class.c: fix typo.
3163 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3165         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3166         a MonoError parameter.
3168         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3169         version that can does proper error handling.
3171         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3173         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3175         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3177 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3179         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3180         NO_UNALIGNED_ACCESS is defined.
3182 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3184         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3185         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3186         Fixes #549173.
3188 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3190         * sgen-gc.c: Shorten sections whenever possible.
3192 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3194         * sgen-gc.c: Use our portable semaphore #defines.
3196 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3198         * sgen-gc.c: A debug option for dumping the heap layout to a file
3199         after each collection.
3201 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3203         * sgen-gc.c: Make managed write barriers atomic via
3204         thread-restarts.
3206 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3208         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3209         methods. Fixes #543021.
3211 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3213         * socket-io.[ch]: fix VS build.
3215 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3217         * icall-def.h:
3218         * socket-io.[ch]: implemented SendFile.
3220 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3222         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3223         before the interfaces to avoid crashes later if class initialization fails.
3224         Fixes #548417.
3226         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3227         Fixes #548276.
3229 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3231         * domain.c: Bump 4.0 version.
3233 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3235         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3236         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3237         check since 'pubkey' can't be NULL at this stage
3238         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3239         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3240         initialization of 'iter'
3242 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3244         * cominterop.c : Search the interface parts of vtable to find 
3245           method matches.  Fixes 547030.
3247         Code is contributed under MIT/X11 license.
3249 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3251         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3252         multiple targets. Fixes bug #574426.
3254 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3256         * profiler.h: Put here the definition of
3257         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3258         (and fix the build...).
3260 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3262         * profiler.c, profiler.h, profiler-private.h:
3263         Added support for different ways of getting call chains in stat mode.
3265 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3267         * object.c, object-internals.h: New function for computing the
3268         size of an array, factored out of mono_array_new_full().  Use
3269         SGen's functions for allocating arrays and vectors.
3271         * sgen-gc.c, gc-internal.h: Special functions for allocating
3272         arrays and vectors without race conditions.  A managed array
3273         allocator method.
3275         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3277 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3279         * object.c, object.h, icall.c: Write barriers do the copying now,
3280         as well, so no need for an additional memcpy.
3282         * sgen-gc.c: Lock when storing remsets.  Do the memory
3283         copying/moving in the write barriers.
3285         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3287         * reflection.c: Added an assert.
3289 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3291         * threads.c, process.c: A few missing write barriers.
3293 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3295         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3296         network performance counters for bytes sent per second, bytes
3297         received per second, and bytes total per second.
3299         Code is contributed under MIT/X11 license.
3301 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3303         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3304         Fix warning.
3306 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3308         * threads.c, object-internals.h, object.c: Move code for
3309         transferring an object to a different domain (via
3310         serialization/remoting) to object.c.
3312         * object.c (call_unhandled_exception_delegate): If the exception
3313         is in a different domain than the delegate, transfer the exception
3314         to that domain.
3316 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3318         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3319         Fixes #322934.
3321 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3323         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3325 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3327         * object.c (mono_method_return_message_restore): Handle the case
3328         where the argument is an instance of a generic type.  Fixes
3329         #544446.
3331 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3333         * object.c (set_value): Write barrier fix - we must pass the
3334         count, not the size.
3336 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3338         * domain.c (mono_init_internal): Print a useful error message when encountering
3339         an old mscorlib, instead of crashing. Fixes #544307.
3341 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3343         * appdomain.c (copy_app_domain_setup): Fix a warning.
3345         * debug-helpers.c (dis_one): Ditto.
3347 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3349         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3350         into the new domain, instead of referencing the original one.
3352         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3353         non-static.
3355         * appdomain.c: Corlib version bump.
3357 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3359         * threadpool.c: one more...
3361 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3363         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3364         threads to die because we're shutting down. delgate5.exe works again.
3366 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3368         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3369           ccw_interface_hash table when a ccw is finalized.
3371         Code is contributed under MIT/X11 license.
3373 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3375         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3376         domain and image unloading into two steps.  We must do this
3377         because clearing the domain in SGen requires the class metadata to
3378         be intact, but we need to free the mono_g_hash_tables in case a
3379         collection occurs during domain unloading and the roots would trip
3380         up the GC.
3382 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3384         * object-internals.h: Remove serialized culture fields from
3385         MonoInternalThread.
3387         * icall-def.h, thread-types.h, threads.c: Remove serialized
3388         culture icalls.
3390         * appdomain.c: Corlib version bump.
3392 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3394         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3395         Fixes #543133.
3397 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3399         * sgen-gc.c: Try to shorten the new section after a major
3400         allocation to avoid ever-growing sections.
3402 2009-10-13  Martin Baulig  <martin@ximian.com>
3404         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3405         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3406         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3407         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3409         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3411 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3413         * threadpool.c: fixed the order in which 'completed' and the wait
3414         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3415         No need to use the wait_handle field of ASyncCall. Make sure the
3416         threadpool is active when adding a job or queueing an idle thread.
3418 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3420         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3422         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3423         when using --compile-all.
3425 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3427         * metadata.c (free_generic_class): Unregister the field_objects
3428         roots if we're using SGen.
3430 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3432         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3433         for GenericParamTableEntry.gparam.
3435 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3437         * marshal.c: don't create the handle when calling. It is created later
3438         if needed.
3440 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3442         * sgen-gc.c: Warning fixes.
3444 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3446         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3447         whole heap for cross-domain references before each collection.
3449         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3450         object.
3452         * threadpool-internals.h, threadpool.c: New function
3453         mono_thread_pool_is_queue_array() for checking whether a given
3454         array is used as a (cross-domain) queue by the thread pool code.
3456 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3458         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3459         searches the whole heap for objects containing a specific
3460         reference.  Only for debugging.
3462 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3464         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3466         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3467         byte arrays between domains.
3469 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3471         * threadpool.c:
3472         * class-internals.h:
3473         * mono-perfcounters-def.h:
3474         * mono-perfcounters.c:
3475         -There is a list of idle threads
3476         -Each of those idle threads wait on their own WaitHandle instead
3477         of all of them using the same semaphore. When a new work item is
3478         added, the job is assigned directly to an idle thread or a newly
3479         created one if possible and then the handle for that thread is
3480         signaled. Compare that to the current approach where all the
3481         threads in the pool compete to dequeue a job from the same
3482         queue.
3483         -New struct ThreadPool that brings together the bunch of static
3484         variable for each threadpool (IO and regular).
3485         -New performance counters: # of items added and its rate per
3486         threadpool. The rate will be used later, perhaps together with
3487         other perf. counters, to decide when idle threads should exit.
3489 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3491         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3492         Fix typo on Windows build.      
3493         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3494         
3495         Code is contributed under MIT/X11 license.
3497 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3499         * object-internals.h: The Thread class is split up into Thread and
3500         InternalThread now.  We have exactly one InternalThread per
3501         thread, and at most one Thread per appdomain per thread.  Most
3502         data is stored in InternalThread.  All InternalThread objects live
3503         in the root domain.
3505         * class-internals.h: Add internal_thread_class to MonoDefaults.
3507         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3508         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3509         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3510         resulting from the split of the Thread class.
3512         * gc-internal.h: Prototype for new function for checking whether a
3513         thread is the finalizer thread.
3515         * appdomain.c: Corlib version bump.
3517 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3519         * appdomain.c|h: Add a mono_domain_try_unload method which is
3520         equivalent to mono_domain_unload, except that it returns an exception
3521         instead of throwing it. Make mono_domain_unload use the
3522         mono_domain_try_unload method to avoid code-duplication.
3524 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3526         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3527         a problem.
3529 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3531         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3532         aborting when a conversion is not implemented.
3534 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3536         * verify.c: when comparing culture strings, use g_ascii_strcmp
3538         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3539         when comparing public key tokens to use memcmp on 16 bytes.   I do
3540         not believe this ever worked as advertised in the past.
3542         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3543         which would have always failed earlier.
3545 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3547         * gc.c: Raise a NullArgumentException if the object passed is
3548         null.
3550 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3552         * image.c (mono_image_close): Atomically decrement the reference count and
3553         remove the image from the hash tables, to prevent another thread from seeing a
3554         dying MonoImage. Fixes #541194.
3556 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3558         * threadpool.c: actually use the minimum number of 'completion ports'
3559         (for us is just a potential worker thread).
3561 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3563         * threadpool.c: remove ares_htable. It does not make sense any more
3564         since the same objects are now stored in GC-tracked arrays while they are
3565         in the queue.
3567 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3569         * threadpool.c: increase the minimum length of the queues to 128.
3570         Remove warning.
3572 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3574         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3575         return the modified signature used by string ctors.
3577 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3579         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3580         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3581         method, to be used by full-aot.
3583 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3585         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3586         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3587         be known to be good.
3589         * class.c (mono_class_init): Fail array types if their element type fails initialization
3590         as well.
3592         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3593         initialization, additionally we request the element_type vtable to be initialized as well.
3595         This is fine and should not increase the working set in any meaningful way since it's reasonable
3596         to assume       that most code will create an array and eventually populate it, which will require the
3597         type's vtable to be initialized.
3599         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3601 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3603         * normalization-tables.h : regenerated.
3605 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3607         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3608         a leb128 encoding can take up to 5 bytes.
3610 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3612         * class.c (verify_class_overrides): Remove useless argument.
3614         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3615         before interface enumeration as this is no longer required.
3617 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3619         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3620         used under mono_class_init context. This functions avoid any code path that
3621         calls mono_class_init, which leads it to be slow as some things like the interface
3622         bitmap are not available.
3624         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3625         of it's own broken version. Fixes the verifier part of #538588.
3627         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3628         API.
3630 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3632         * class.c (mono_class_init): Always set an exception in a class if
3633         vtable setup fails.  Fixes #538577.
3635         * generic-sharing.c: Raise an exception if mono_class_vtable()
3636         returns NULL.
3638 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3640         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3641         methods of vtypes, as they could be incorrectly shared with static methods
3642         taking an IntPtr argument.
3644 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3646         * domain.c:
3647         * object.c:
3648         * class-internals.h: renamed waithandle_class to
3649         manualresetevent_class.
3650         * marshal.c: propagate the exception if a remoting BeginInvoke call
3651         fails.
3653 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3655         * object.c: Properly handle vtable failures.
3657 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3659         * socket-io.c: Assert on vtable failure.
3661         * mono-mlist.c: Assert on vtable failure.
3663 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3665         * marshal.c: Assert on vtable failure.
3667 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3669         * icall.c: Properly handle vtable failures.
3671 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3673         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3675 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3677         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3679         * console-unix.c (do_console_cancel_event): Same.
3681 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3683         * class-internals.h: Add mono_class_vtable_full function that allows control
3684         if an exception should be raised or not.
3686         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3687         to do what its documentation say, that is to return NULL and set exception_type on
3688         failure.
3690         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3691         and change the code to honor it.
3693 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3695         * verify.c: Fix typo in error message.
3697 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3699         * security-core-clr.c: Fix default_platform_check so it can run
3700         the runtime coreclr tests (without an infinite recursion when
3701         throwing an exception).
3703 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3705         object.c (mono_delegate_ctor_with_method): Guard against null method.
3707 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3709         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3710         that should be replaced with error handling later.
3712 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3714         * marshal.c (mono_delegate_end_invoke): Fix warning.
3716 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3718         * loader.c (mono_field_from_token): Properly handle invalid
3719         dynamic tokens.
3721 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3723         * pedump.c (verify_image_file): Skip types that can't be
3724         decoded.
3726 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3728         * verify.c: Look for recursive valuetypes only against the
3729         type been initialized as this is a lot simpler and works.
3731 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3733         * verify.c: Ensure that fields are properly loaded before
3734         checking them.
3736 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3738         * object.c (mono_object_get_virtual_method) : Call 
3739           mono_cominterop_get_invoke if the object is a COM object.
3741         Code is contributed under MIT/X11 license.
3743 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3745         * verify.c: Check for recursive valuetype definitions.
3747 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3749         Use inheritance-aware interface offsets. Inherited types use the same offsets
3750         of their parents. This reduce offset duplication in case more than one type in
3751         the inheritance tree explicitly implements the same interface.
3753         This also removes a source of vtable bubbles found in #532409. An abstract type
3754         isn't required to provide abstract methods to all interfaces it implements, which
3755         resulted in a bubble with the previous scheme as the child would get a non-full
3756         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3757         should be fixed.
3759         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3760         it's expected to not cause any significant increase beyond that.
3762         * class.c (setup_interface_offsets): Compute super class iface offsets
3763         first to force sharing.
3765         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3766         dumping only the relevant ones.
3768         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3769         methods a new slot regardless if they belong to an interface or not. This allows
3770         an inherited type to override the iface method separately from the class one.
3772 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3774         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3775         applications that take less than 2s to execute.
3776         Bug #524984 fixed.
3778 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3780         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3782         * object.c (mono_get_runtime_callbacks): New helper function to return
3783         the runtime callbacks.
3785         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3786         mono_get_runtime_build_info () as the display name.
3787         
3788 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3790         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3791         argument, since NEWARR expects a native int. Fixes #481559.
3793 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3795         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3796         against broken SRE methods.
3798 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3800         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3801         a NULL variable. Abort early on failure.
3803 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3805         * class.c (can_access_type): Fail visibility test for non nested
3806         types with nested visibility.
3808 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3810         * assembly.c (parse_public_key): Avoid allocating (and not 
3811         freeing) the public key array when it's not requested by the 
3812         caller.
3813         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3814         ves_icall_System_Threading_Thread_Thread_internal): Free 
3815         allocated memory on error.
3817 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3819         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3821 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3823         * class.c (mono_class_setup_fields): Remove duplicated local variable
3824         named gklass.
3825         Rename gklass to gtd to reflect the fact that it points to the generic
3826         type definition.
3827         Remove the duplicated call to mono_class_setup_fields on gtd and move
3828         the error check to the beginning.
3830 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3832         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3833         Remove cruft of the previous patch.
3835 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3837         * metadata-verify.c (verify_method_table): Check for abstract + final.
3838         Fixes #534175.
3840 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3842         * verify.c (verify_class_fields): Check for duplicate fields.
3844 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3846         * metadata-verify.c: Verify the typeref table for duplicates.
3848 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3850         This reverts r140936 and properly handles interfaces with static methods. The
3851         right fix is to ensure vtables without bubles which is an easier to verify
3852         constraint. We should avoid such special cases as of the reverted patch as those
3853         only make the runtime more brittle.
3855         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3856         static methods on interfaces.
3858         * class.c (setup_interface_offsets): Use the number of virtual methods when
3859         calculating interface offsets instead of the number of methods. This way we
3860         avoid bubles on the layout.
3862 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3864         * metadata-verify.c (verify_metadata_header): Some very smart
3865         obfuscators like to add extra stream headers. Ignore them.
3867 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3869         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3870         methods correctly.
3872 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3874         * metadata-verify.c: Verify for duplicated types.
3876 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3878         * metadata-verify.c (verify_typedef_table): Verify for nested types
3879         without an entry on the nested class table.
3881 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3883         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3884         <tom_hindle@sil.org>. Add locking around hash table accesses.
3886 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3888         * verify.c (mono_verifier_verify_class): Verify all interface if
3889         really are interfaces. Fixes #534184.
3891 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3893         * pedump.c: Initialize all types during metadata validation so we report
3894         errors only detected as part of class initialization.
3896 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3898         * metadata-verify.c (verify_method_table): PInvoke requires method to
3899         be static. Fixes #534189
3901 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3903         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3904         being NULL.
3906 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3908         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3909         for holes or bad methods. Fixes #525314.
3911 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3913         * class.c (setup_interface_offsets): Don't allocate slot
3914         for the same interface multiple times. This creates bubbles
3915         that waster space and make vtable verification harder.
3917         The same interface get a slot multiple times since we need
3918         to get the closure of all implemented interfaces, which means
3919         the same interface is reported multiple times.
3921 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3923         * verify.c (mono_verifier_verify_class): Don't check the fields
3924         of generic instances since the context on which they got expanded
3925         might lead to false positives.
3927         Such thing happens when a generic type is inflated in the context
3928         of a generic method and the inflated type of a field turns into a
3929         generic method argument, which causes the checking code to think
3930         it's an invalid class when it's not.
3932 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3934         * verify.c (mono_type_is_valid_in_context): Verify if type
3935         is NULL and remove duplicate test.
3937 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3939         * verify.c (mono_verifier_verify_class): Check fields for
3940         invalid generic arguments.
3942 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3944         * class.c (verify_class_overrides): Verify if for static
3945         and non virtual methods.
3947 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3949         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3950         Check for errors after retrieving the vtable.
3952 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3954         * class.c (mono_class_setup_vtable_general): Verify
3955         if method overrides are valid before processing them.
3957 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3959         * marshal.c (mono_array_to_lparray): Fix minimal build with
3960         cominterop disabled.
3962         * marshal.c (mono_free_lparray): Same.
3964 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3966         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3967         the hash function for the ares_htable.
3969 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3971         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3972         bit for assembly flags. MS is ok with it but there is no spec anywhere
3973         on its mean
3975 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3977         * class.c (mono_class_create_from_typedef): Emit profiler events
3978         in all cases.
3980 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3982         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3983         Release memory on failure.
3985 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3987         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3988         to the internal API.
3990         * metadata.c (get_constraints): Use a single-linked table as we don't
3991         traverse it backward. Fail and return FALSE if only of the contraint types
3992         is not found.
3994         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3995         to mono_metadata_load_generic_param_constraints except for having a return value.
3996         This has to be done since the later is part of the public API.
3998         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3999         and fail the type.
4001         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4002         and fail the method.
4004 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4006         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4007         with MS broken behavior of emmitting EH section sizes without the
4008         header size added.
4010 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4012         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4013         memory until we're sure that we'll need it. This avoids leaking for
4014         broken types or duplicated instantiation.
4016 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4018         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4019         mistake.
4021 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4023         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4024         and expected size calculation.
4026 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4028         * class.c (mono_class_get_field_idx): Add fixme for broken
4029         behavior for types with multiple fields with the same name.
4030         I would rather fix it, but have no idea on how to generate
4031         such artifact for testing.
4033 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4035         * verify.c (verifier_load_field): We should allow references to
4036         fields to be made using the generic type definition. It's up to
4037         the loader system to fail invalid ops.
4039         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4040         are invalid.
4042 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4044         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4046         * metadata-internals.h: Fix declaration of 
4047         mono_metadata_interfaces_from_typedef_full.
4049         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4050         heap_alloc_result parameter that controls if the result should be
4051         g_malloc'd.
4053         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4054         array be g_malloc'd and properly document this public API function.
4056 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4058         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4059         remove METHOD_HEADER_TINY_FORMAT1.
4061         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4063         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4065         Both spec and MS uses only 2 bits to enumerate the kind of header.
4066         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4067         is superfluous, only used for tiny headers with odd code lengths.
4069         This change also make sure that mono doesn't wronly interpret bit 2
4070         of fat header flags, which is currently reserved.
4072 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4074         * metadata.c (do_mono_metadata_parse_type): Do error
4075         checking for element types. Don't abort if presented
4076         with a broken type kind.
4078 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4080         * metadata.c (mono_metadata_parse_method_signature_full):
4081         Gracefully fail bad vararg signatures.
4083 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4085         * profiler.c:
4086         * class.c: Fix warnings for uninitialized variables.
4088 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4090         * icall.c: Fix _NSGetEnviron method declaration warning.
4092 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4094         * icall.c:
4095         * reflection.c: Make bitwise checks explicit.
4097 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4099         * debug-helpers.c:
4100         * marshal.c: Fix printf warnings.
4102 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4104         * reflection.c (encode_cattr_value): Fix a warning.
4106 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4108         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4109         of array bounds.
4111 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4113         * loader.c (mono_method_signature): Don't assert on broken
4114         signature. Print a more useful error message.
4116 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4118         * loader.c (mono_method_get_marshal_info): Assert if
4119         signature is invalid. Bounds check stores to the
4120         mspecs array;
4122 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4124         * loader.c (field_from_memberref): Fix warning.
4126 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4128         * loader.c (mono_method_get_param_names): Check if signature
4129         is null. Don't store beyond the size of the name array.
4131 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4133         * loader.c (mono_get_method_constrained): Check if signature
4134         is null.
4136 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4138         * loader.c (mono_loader_set_error_bad_image): Improve
4139         error messages.
4141 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4143         * loader.c (mono_get_method_full): Convert an assertion
4144         into a loader error.
4146 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4148         * class-internals.h, class.c: Better naming and documentation.
4150 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4152         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4153         obj is NULL.
4155 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4157         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4158         parsing fails.
4160 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4162         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4163         errors with no class set.
4165         * loader.c (field_from_memberref): If the field signature is of the wrong
4166         type fail with a MissingFieldException instead of a BadImageException as
4167         this is the behavior observed on MS. 
4169 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4171         * loader.c (field_from_memberref): Don't crash if either the field
4172         signature or the typespec class are invalid.
4174 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4176         * verify.c (verifier_load_field): Don't allow field related
4177         ops to reference fields on generic type definition.
4179 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4181         * metadata-verify.c: Add new warning level for errors specified
4182         by ECMA 335 but that MS ignores.
4184         * metadata-verify.c (verify_method_table): Make compiler controled
4185         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4186         this check is safe because the end result will only be some visibility
4187         exceptions been thrown.
4189 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4191         * verify.c (get_boxable_mono_type): Don't allow the
4192         use of the generic type definition on boxed type positions.
4194         Fixes #531237.
4196 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4198         * threadpool.c: Make sure no cross-domain references remain in
4199         ares_htable or the arrays that are thrown away when resizing.
4201 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4203         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4204         list of classes for which we have to unregister reflection_info
4205         with the GC and which are not in the namespace cache.
4207         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4208         the class to the list.
4210 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4212         * domain.c (mono_domain_free): Unregister the GC roots in
4213         MonoDomain.
4215 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4217         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4219 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4221         * class.c: Add mono_class_get_field_from_name_full which does
4222         the same as mono_class_get_field_from_name but does check field
4223         signature as well.
4225         * class-internals.h: Export mono_class_get_field_from_name_full as
4226         part of the internal API.
4228         * loader.c (field_from_memberref): Search fields by name and signature
4229         as it's valid to have two fields with same name but different types.
4231         Fixes #528055.
4233 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4235         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4237         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4239         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4240         System.Type.
4242 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4244         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4246         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4248 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4250         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4251         to sgen-scan-object.h, which can be included and parameterized via
4252         macros.
4254         * Makefile.am: sgen-scan-object.h added.
4256 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4258         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4260 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4262         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4263         before clearing a domain in the GC.
4265 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4267         * exception.c (mono_exception_from_name_domain): Actually create
4268         the exception in the specified domain.
4270         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4271         OutOfMemoryException a bit later so that the domain is inialized
4272         "enough" that it works.
4274 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4276         * threads.c (thread_cleanup): Clean up the cached_culture_info
4277         array to prevent cross-domain references.
4279 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4281         * metadata.c: more documentation for MonoType accessors.
4283 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4285         Fix incorrect size definitions where the tail array isn't a list
4286         of pointers
4287         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4288         define size.
4289         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4290         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4291         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4293 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4295         * reflection.h:
4296         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4298 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4300         * metadata.c:
4301         * loader.c:
4302         * metadata-internals.h:
4303         * method-builder.c:
4304         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4306 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4308         * cominterop.c:
4309         * metadata.c:
4310         * metadata.h:
4311         * loader.c:
4312         * marshal.c:
4313         * reflection.c: #define for sizeof in MonoType and
4314         MonoMethodSignature.
4316 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4318         * domain.c:
4319         * domain-internals.h: add and use #define's instead of sizeof()
4320         for MonoJitInfo and MonoJitInfoTable.
4322 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4324         * object.c:
4325         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4327 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4329         * metadata.c:
4330         * metadata.h:
4331         * object.c:
4332         * class-internals.h:
4333         * generic-sharing.c:
4334         * marshal.c: use a #define instead of sizeof() for a few
4335         structures that use a zero-length array.
4337 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4339         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4340         to handle inflated generic methods.
4342         * appdomain.c: Bump corlib version.
4344         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4345         instances.
4347         * reflection.c (fixup_method): Same
4349         * reflection.c (resolve_object): Same.
4351         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4352         g_error and a decent message.
4354 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4356         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4357         from the object because it could not yet be available globally
4358         (it happens if the profiler tries to create a gchandle on the
4359         MonoThread object of a thread that is still registering itself
4360         with the runtime).
4362 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4364         * reflection.c (mono_generic_class_get_object): Initialized the
4365         managed type arguments array.
4367         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4369         * appdomain.c: Bump corlib version.
4371 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4373         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4374         #527902.
4376 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4378         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4379         Avoid a crash if synch_cs is not set.
4380         
4381         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4382         Handle the case when the handle is 0.
4384         * appdomain.c: Bump corlib version.
4386 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4388         * reflection.c (mono_type_get_object): Fix a warning.
4390 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4392         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4393         descriptor here.  We assume it's already been computed.
4395         * generic-sharing.c (instantiate_other_info): Compute the GC
4396         descriptor for info type MONO_RGCTX_INFO_KLASS.
4398 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4400         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4401         type, so don't use MONO_OBJECT_SETREF to set a field.
4403 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4405         * gc.c: We were missing one case where invoking a finalizer would
4406         not reset the domain.  Also, in the finalizer thread loop, assert
4407         that we're in the root domain.
4409 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4411         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4412         if the type is not an array.
4414 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4416         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4417         method bound to the declaring type of the method. Raise an exception
4418         if the type is not a generic param.
4420 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4422         * class.c (print_unimplemented_interface_method_info): Print the
4423         full type name.
4425         * class.c (mono_class_setup_vtable_general): When dealing with a
4426         generic instance first check if the generic type definition is
4427         not broken.
4429 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4431         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4433         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4435         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4437         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4439         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4441         Code is contributed under MIT/X11 license
4443 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4445         * verify.c: Fix naming of stelem and ldelem.
4447 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4449         * generic-sharing.c: Replace the templates lock with the loader
4450         lock because of very hard to resolve deadlock issues.
4452 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4454         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4455         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4456         directly. Fixes #525338.
4458         * class.c (mono_class_get_vtable_size): New helper function.
4460         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4461         the field belongs to the type. Fixes #525733.
4463 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4465         * sgen-gc.c: When we stop a thread and its stack top is not within
4466         its allocated stack (because it's in an altstack signal handler),
4467         restart it and stop it again, until it is.
4469 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4471         * sgen-gc.c: Take a thread's stack top and registers from the
4472         sigcontext in the suspend signal handler.
4474         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4475         stuff to sgen-archdep.h.
4477         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4478         caller, because have code in sgen-archdep.h to acquire that data.
4480 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4482         * profiler.c, profiler.h, profiler-private.h:
4483         Added support for keeping track of code chunks and buffers.
4485 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4487         * metadata-verify.c: Fix endianness problems on decoding functions.
4488         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4490 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4492         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4493         schema for vectors and one dimension SZARRAY.
4495 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4497         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4498         schema for vectors and one dimension SZARRAY.
4500 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4502         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4503         Interlocked.(Compare)Exchange with object arguments, which invoke
4504         write barriers.
4506 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4508         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4509         passed invalid arguments.   Fixes another crasher in the
4510         Silverlight test suite.
4512         * class.c (mono_class_array_element_size): Return 0 for the size
4513         of the class;  This fixes the crasher exposed by :
4515         typeof (void).MakeArrayType ();
4517         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4518         if there is no method to dereference.    Put all the code that
4519         depends on this inside the if (method) block.
4521         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4522         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4524         With this change, we pass the test.
4525         
4526         * reflection.c (mono_reflection_sighelper_get_signature_local):
4527         Only dereference the assembly if it has been set.    Fixes a
4528         crasher exposed by #525328
4530 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4532         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4533         don't perform the store in mono_gc_wbarrier_generic_nostore().
4534         Remove the second argument (value), which is not needed.
4536 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4538         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4539         the build.
4541         * boehm-gc.c: Ditto.
4542         
4543 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4545         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4546         not perform the store itself.  Introduce
4547         mono_gc_wbarrier_generic_nostore(), which is the same as
4548         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4549         store.
4551 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4553         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4554         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4555         we still need the memcpy().
4557 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4559         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4560         so that big arrays are handled correctly.  Always use
4561         safe_object_get_size() to calculate array object sizes, which
4562         takes bounds into account.
4564 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4566         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4567         GC descriptor is computed before we use it.
4569 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4571         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4572         write barrier if necessary.
4574 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4576         * icall-def.h, icall.c, thread-types.h: New separate icall for
4577         VolatileWrite(object&,object) that uses a write barrier.
4579         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4580         barriers in icalls which write to "ref" or "out" arguments.
4582 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4584         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4585         handler in a separate icall, to reduce the size of the wrappers.
4587 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4589         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4591 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4593         * metadata-verify.c (parse_field): Allow byref field.
4595         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4597         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4599 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4601         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4602         Fixes #522784.
4604 2009-07-20  Robert Jordan  <robertj@gmx.net>
4606         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4607         Fix invalid IL in valuetype handling (STOBJ must push the
4608         corresponding class). Fixes bug #523149.
4610         Code is contributed under MIT/X11 license.
4612 2009-07-20  Geoff Norton  <gnorton@novell.com>
4614         * gc.c: Use proper semaphores where available on posix and darwin.
4616 2009-07-19  Geoff Norton  <gnorton@novell.com>
4618         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4620 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4622         * refletion.c (is_sre_usertype): Change name to is_usertype and
4623         invert it's result so it returns true if the type is an user type
4624         and not the opposite.
4626         * reflection.c (is_*_type): Change all of those to use new macro
4627         check_corlib_type_cached that cached the type lookup so we don't
4628         need to do string comparisons all the type. Changed the signature
4629         to take a MonoClass instead.
4631         * reflection.c: Change mono_image_create_token and resolve_object
4632         to use is_sre_* functions.
4634 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4636         * sgen-gc.c: Check for writes to the stack in the managed
4637         wbarrier as well.
4639 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4641         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4642         but put them on a list which is processed with the other thread's
4643         remsets.
4645 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4647         * sgen-gc.c: Fix and enable the internal allocator instead of
4648         using malloc/free (which causes deadlocks).
4650 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4652         * refletion.c: Fix builds with SRE disabled by adding a minimal
4653         implementation of mono_reflection_type_get_handle.
4655 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4657         * refletion.c: Make mono_reflection_type_get_handle non static.
4659         * object-internals.h: Export mono_reflection_type_get_handle.
4661         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4662         unmanaged handle using mono_reflection_type_get_handle.
4664 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4666         * refletion.c: Replace all reads of MonoReflectionType::type with
4667         calls to mono_reflection_type_get_handle. Only the functions that
4668         deal with constructing TypeBuilder::type have not been changed
4669         because they have to deal with NULL values.
4671         This is a first step into supporting reflection types that don't
4672         map directly into their unmanaged counterpart.
4674 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4676         * metadata-verify.c (parse_locals_signature): Don't complain
4677         on signature with zero locals since MS generates it and doesn't
4678         bother with.
4680 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4682         * reflection.c (mono_image_get_array_token): Resolve return
4683         type using mono_reflection_type_get_handle.
4685         * reflection.c (mono_image_get_array_token): Resolve array method
4686         parent type using mono_reflection_type_get_handle.
4688 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4690         * reflection.c (mono_image_basic_init): Applied patch from
4691         <Dax@daxxfiles.net>. Set the public key token from the assembly
4692         builder. Fixes #518909.
4694         * appdomain.c: Bump corlib version.
4696 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4698         * class.c (mono_class_needs_cctor_run): Make this return false if
4699         the class has no cctor.
4701 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4703         * sgen-gc.c: When the minor GC needs to allocate a new section,
4704         invoke the major GC afterwards.
4706 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4708         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4709           Applying the window_style field to the SHELLEXECUTEINFO struct.
4711         Code is contributed under MIT/X11 license.
4713 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4715         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4716         locking earlier.  Fix it in the managed allocator by making sure
4717         that no thread is stopped there before the GC runs.  If we do stop
4718         a thread there, we restart it and let it run a but, until it stops
4719         somewhere else.
4721         * gc-internal.h, gc.c: Function for getting the IP from a signal
4722         context via a function registered by mini.
4724 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4726         * object-internals.h (MonoIntPtr): New structure describing a boxed
4727         IntPtr.
4729         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4730         returns. Fixes #519953.
4732         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4734 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4736         * class-internals.h, generic-sharing.c: New RGCTX info type for
4737         getting a remoting invoke with check wrapper.
4739 2009-07-07  Geoff Norton  <gnorton@novell.com>
4741         * icall-def.h: Fix the enable-minimal build.
4743 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4745         * object-internals.h: Add MonoReflectionDerivedType.
4747         * reflection.c: Implement support for PointerType.
4748         Fixed tons of warnings.
4750 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4752         * object-internals.h: Add MonoReflectionByRefType.
4754         * reflection.c: Implement support for ByRefType.
4756 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4758         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4760         * object-internals.h: Add MonoReflectionArrayType and
4761         mono_reflection_create_unmanaged_type.
4763         * reflection.c: Implement support for ArrayType.
4765 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4767         * metadata-verify.c (is_valid_method_header): Parse EH block
4768         flags correctly.
4770 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4772         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4773         processing the disappearing links, and process disappearing links
4774         in a loop until no new objects are copied.
4776 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4778         * object.c (handle_enum): Invoke the write barrier when copying
4779         value type instances.
4781         * sgen-gc.c: Register remsets for unmanaged write barriers only
4782         when the address written to is actually on the heap.  This makes
4783         set_value() in object.c work without requiring that the result be
4784         on the heap.
4786 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4788         The runtime wrappers are all bound to a given type that must
4789         exist in the same image. For regular images we use the <Module>
4790         type, which is required to exist for all images.
4792         The <Module> type can't be used for dynamic images because it
4793         might not exist at the time the wrapper is required, so we create
4794         a synthetic type to use instead.
4796         The current code works because of the 2 stage setup of MonoClass,
4797         but once this is gone it will no longer work.
4799         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4801         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4803         * object-internals.h: Export mono_image_set_wrappers_type icall
4804         as part of the internal API.
4806         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4807         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4809         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4810         image wrappers_type to the provided value.
4812 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4814         * appdomain.c (deregister_reflection_info_roots): No need
4815         to use the image lock here.
4817 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4819         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4821 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4823         * threads.c: Store the thread start argument in a hash table instead of
4824         registering it as a root, as libgc doesn't support unregistering roots
4825         under windows, leading to 'too many root sets' errors when many threads
4826         are created.
4828         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4829         shutdown, they can still be referenced by the other dying objects.
4830         Fixes #514506.
4832 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4834         * socket-io.c: DontLinger does not allow LingerOptions.
4836 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4838         * metadata-verify.c: The spec doesn't mention that it's possible to add
4839         custom attribute to a generic parameter. Fixed.
4841 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4843         * class.c (inflate_generic_type): Don't crash while trying to output a message
4844         on why we're aborting.
4846 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4848         * socket-io.c: DontLinger can take an int or a boolean too.
4850 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4852         * gc.c: check for a null argument to SuppressFinalize () and
4853         ReRegisterForFinalize ().
4855 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4857         * loader.c (method_from_methodspec): Call into the verifier to check
4858         the signature.
4860         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4862         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4863         part of the internal API.
4865 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4867         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4868         the signature.
4870         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4872         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4873         part of the internal API.
4875 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4877         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4878         the signature.
4880         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4881         blob verification.
4883         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4884         part of the internal API.
4886 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4888         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4889         when doing basic verification. 
4891         This check must be done since the runtime peeks into signatures in much
4892         more places than it does decoding so it makes sense to ensure that all
4893         pointers to blob objects are well formed.
4895 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4897         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4898         Use proper overflow dectection. Fix usage of it.
4900 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4902         * loader.c (field_from_memberref): Call into the verifier to check
4903         the signature.
4905         * loader.c (mono_method_get_signature_full): Same.
4907         * loader.c (method_from_memberref): Same.
4909         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4911         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4912         part of the internal API.
4914 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4916         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4917         or unloaded, still return an AsyncResult, but don't add it to the
4918         threadpool.
4920 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4922         * threads.c: fix missing colon when DEBUG is defined.
4924 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4926         * threadpool.c: Don't add new calls to a threadpool if the domain
4927         of the call is unloading or unloaded.  When dequeuing a job, null
4928         the reference in the queue.
4930 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4932         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4933         generation if an object was moved.
4935 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4937         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4938           parameters of type SAFEARRAY[VARIANT].
4940         * reflection.c (encode_marshal_blob): Properly generate element type
4941           (SafeArraySubType marshal attribute option).
4943         Code is contributed under MIT/X11 license.
4945 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4947         * reflection.c: in mono_method_clear_object () really ensure all the
4948         objects are removed.
4950 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4952         * loader.c (mono_method_signature): Call into the verifier to check
4953         the method signature.
4955         * metadata-verify.c (verify_method_table): Move signature verification
4956         to verify_method_table_full.
4958         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4960         * verify-internals.h: Export mono_verifier_verify_method_signature as
4961         part of the internal API.
4963 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4965         * loader.c (mono_method_get_header): Call into the verifier to
4966         check the method header.
4968         * metadata-verify.c: Add mono_verifier_verify_method_header.
4970         * verify-internals.h: Export mono_verifier_verify_method_header as
4971         part of the internal API.
4973 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4975         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4976         check the field signature. Replace an assert with an explicit check.
4978         * class.c (mono_class_setup_fields): Call into the verifier to check
4979         the field signature.
4981         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4983         * verify-internals.h: Export mono_verifier_verify_field_signature as
4984         part of the internal API.
4986 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4988         * class.c (mono_class_find_enum_basetype): Simplify this function
4989         by moving code outside of the loop and not decoding static fields.
4991 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4993         * metadata-verify.c (verify_typedef_table): Check the extends
4994         token here. Move to here a flags check from verify_typedef_table_full.
4996 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4998         * metadata-verify.c (is_valid_method_header): Fix a warning.
5000         * metadata-internals.h (MonoImage): Remove the unused 
5001         static_rgctx_invoke_wrapper_cache.
5003         * image.c marshal.c: Ditto.
5005 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5007         * image.c (do_mono_image_load): Enable table data verification.
5009 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5011         * metadata-verify.c (is_valid_constant): Fix nullref check.
5013 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5015         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5017 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5019         * sgen-gc.c: Managed allocation with pthreads TLS.
5021         * threads.c, threads-types.h: Functions for the JIT to tell the
5022         runtime whether it supports the MONO_TLS opcode.
5024 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5026         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5027         without methods.
5029 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5031         * metadata-verify.c (is_valid_constant): Fix the string length check.
5032         Use safe overflow checking. Add decent error messages.
5034 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5036         * metadata-verify.c: Move remaininh blob checks to the offline
5037         verification path.
5039 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5041         * metadata-verify.c: Move more blob checks to the offline verification
5042         path.
5044 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5046         * object-internals.h : Adding interrupt_on_stop field.
5048         * threads.c (mono_thread_request_interruption) : On Windows exit the
5049           thread if interrupt_on_stop is set.
5051         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5052          Removing old interrupt logic and setting the interrupt_on_stop for the
5053          thread when calling accept.
5055         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5056          setting the interrupt_on_stop for the thread when calling accept.
5058         Contributed under MIT/X11 license.
5060 2009-06-20  Martin Baulig  <martin@ximian.com>
5062         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5064 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5066         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5067         running in no-exec mode.
5069 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5071         * metadata-verify.c (verify_method_table): Move header
5072         checking to verify_method_table_full.
5074         * metata-verify.c (mono_verifier_verify_full_table_data):
5075         Call verify_method_table_full.
5077 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5079         * metadata-verify.c (verify_field_table): Move signature
5080         checking to verify_field_table_full.
5082         * metata-verify.c (mono_verifier_verify_full_table_data):
5083         Call verify_field_table_full.
5085 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5087         * metadata-verify.c (verify_typedef_table): Move remaining
5088         stuff to verify_typedef_table_full.
5090 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5092         * metadata-verify.c: Kill is_corlib from VerifyContext.
5093         It is only used by the offline mode.
5094         So we better remove it from the runtime path.
5096 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5098         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5099         function that perform the offline metadata verification steps.
5101         * metadata-verify.c (verify_typedef_table): Move some checks to
5102         verify_typedef_table_full and make it been called by new function
5103         mono_verifier_verify_full_table_data.
5105         * pedump.c: Call mono_verifier_verify_full_table_data.
5107         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5108         part of the internal API.
5110 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5112         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5113         check.
5115         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5116         flags bits. SupportLastError was confused as bit 7 instead of 6.
5118         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5119         to check against the module ref table instead of module.
5121         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5123         * pedump.c: Call mono_image_load_names.
5125 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5127         * image.c: Extract mono_image_load_names from do_mono_image_load.
5129         * metadata-internals.h: Export mono_image_load_names as part of
5130         the internal API.
5131         
5132 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5134         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5135         first, as it could reference data in the other caches.
5137 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5139         * metadata-verify.c: Finished with method header verification.
5141 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5143         * metadata-verify.c: Added more header verification code.
5144         Now only EH clauses are missing.
5146 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5148         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5149         for return values.
5151 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5153         * metadata-verify.c: Initial method header verification.
5155 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5157         * metadata-verify.c (verify_import_table): The IAT contents
5158         might end been patched by the windows DL when running with
5159         coree enabled.
5161 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5163         * class.c (mono_class_from_typeref): If the enclosing type is not
5164         found return null instead of crashing. Fixes #508487.
5166 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5168         * normalization-tables.h : updated to the latest unicode charcter
5169           data.
5170         * appdomain.c : bump corlib version.
5172 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5174         * class.c (mono_class_from_name): Fix support for assembly references
5175         in the EXPORTEDTYPE table. Fixes #511704.
5177 2009-06-13  Geoff Norton  <gnorton@novell.com>
5179         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5180         assembly in the target domain.
5182 2009-06-12  Robert Jordan  <robertj@gmx.net>
5184         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5185         because "this" of the managed signature has become an
5186         ordinary parameter in the unmanaged signature.
5188 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5190         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5191         field for owner-less generic containers.
5193         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5194         image field of the owner-less generic containers created here.
5196         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5197         contain is ownerless until the caller sets its owner.
5199         * metadata.c (type_in_image): Handle owner-less generic containers
5200         correctly.
5201         
5202 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5204         * image.c (mono_image_close): Support debug_assembly_unload for
5205         dynamic images too.
5207 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5209         * class.c: Fix some typos in comments.
5211 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5213         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5215         * threads.c (mono_thread_execute_interruption): Avoid creating the
5216         abort exception object while holding the synch_cs lock.
5218 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5220         * metadata-verify.c: Verify basic cattr content.
5222 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5224         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5225         nested types.
5226         
5227         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5228         support for nested types. Fixes #511704.
5230 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5232         * metadata-verify.c: Verify methodspec signatures.
5234 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5236         * metadata-verify.c: Verify typespec signatures.
5238 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5240         * metadata.c (free_inflated_method): Call 
5241         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5243 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5245         * mono-config.c: Small change to report the PPC64/ILP32 model.
5247 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5249         * metadata-verify.c (parse_type): Check szarray.
5251 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5253         * metadata-verify.c (parse_type): Check fnptr.
5255 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5257         * metadata-verify.c (parse_type): Check generic instances.
5259 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5261         * metadata-verify.c (parse_type): Check array shape.
5263 2009-06-05  Robert Jordan  <robertj@gmx.net>
5265         * class.c (mono_class_create_from_typedef): Check only for
5266         mscorlib's System.Array.
5268 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5270         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5271         and generic params. 
5273         * metadata-verify.c (parse_field): Check the signature.
5275 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5277         * metadata-verify.c: Implement locals signature check.
5279 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5281         * domain.c: Add .NET 4.0 Beta 1 version.
5283 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5285         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5286           For QueryInterface on CCWs consider the base class
5287           interfaces as well.
5289         Code is contributed under MIT/X11 license.
5291 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5293         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5295         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5296         used.
5298         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5299         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5301         * generic-sharing.c (inflate_other_data): Ditto.
5302         
5303 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5305         * metadata-verify.c: Implement property signature check.
5307 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5309         * sgen-gc.h: Register saving support for PPC.
5311 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5313         * sgen-gc.c: Fixed a pthread TLS screwup.
5315 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5317         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5318         supported.
5320 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5322         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5323         keyword is not supported.
5325 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5327         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5328         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5329         the inflated method is freed. Fixes #508389.
5331         The code is contributed under the MIT/X11 license.
5332         
5333 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5335         * marshal.c (get_wrapper_target_class): New helper function.
5336         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5337         the <Module> class of the image. Fixes #509049.
5339 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5341         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5342         Check if the thread was interrupted and proccess it straight away.
5343         Makes abortion much more responsive.
5345 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5347         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5348         MonoThread::interruption_requested to match it's counterpart.
5350         Fixes a hang in abort-stress-1 on a 2 core x86.
5352         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5353         Fix warning.
5355 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5357         Change MonoImage::name_cache to be protected by the image lock
5358         instead of the loader lock.
5360         * appdomain.c (deregister_reflection_info_roots): Protect access
5361         to name_cache.
5363         * class.c (mono_image_init_name_cache): Change from the loader lock
5364         to the image lock. Check if the cache wasn't already created.
5366         * class.c: Change from the loader to the image lock.
5368         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5369         the code to hold the image lock while iterating over name_cache and
5370         not go into mono_array_new holding it.
5372         * metadata-internals.h: Add a comment about this change.
5374 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5376         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5377         Under the 2.0 profile raise the loader error.
5379         Fixes #508532.
5381 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5383         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5384         of ldind opcode for generic instances so we don't fail for direct wrappers.
5385         This only affect direct calls.
5387 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5389         * reflection.c (create_dynamic_mono_image): Fix warnings.
5391         * generic-sharing.c (other_info_equal): Ditto.
5392         
5393 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5395         * metadata-verify.c: Implement field signature check.
5397 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5399         * metadata-verify.c: Implement standalone signature check.
5401 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5403         * metadata-verify.c: Implement methodref signature check.
5405 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5407         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5408         callbacks supplied by the runtime.
5410         * object.c (mono_install_callbacks): New internal function to install
5411         the callbacks.
5413         * object.c (mono_create_ftnptr): Move the implementation of this to
5414         mini/.
5416         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5418 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5420         * metadata-verify.c (parse_return_type): Proper byref check.
5421         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5422         generic signatures and method params.
5424 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5426         * metadata-verify.c (decode_signature_header): Fix bounds check.
5428         * metadata-verify.c (parse_custom_mods): Check custom mods.
5430         * metadata-verify.c (parse_type): Do initial basic verification
5431         of valid values.
5432         
5433         * metadata-verify.c (is_valid_method_signature): Parse the generic
5434         param count.
5436 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5438         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5439         discarded based on their most specific definition so we set the method_slots
5440         array before checking if the method is acceptable or not.
5442         Fixes #506757.
5444 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5446         * icall.c: Free the old array when resizing a mono_ptr_array.
5448 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5450         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5451         for the hashes whose keys are managed objects.
5453 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5455         * object-internals.h, threads.c: Set the execution context on
5456         thread start here, not in corlib.
5458         * appdomain.c: Bump corlib version.
5460 2009-05-27  Martin Baulig  <martin@ximian.com>
5462         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5463         if `_mono_debug_using_mono_debugger' is set to make things work
5464         properly when embedding Mono.
5466 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5468         * class.c (mono_class_setup_fields): Don't mark simd types as having
5469         16 bytes alignment as the whole runtime doesn't support.
5471 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5473         * metadata-verify.c (safe_read): Use endian safe read macros.
5475 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5477         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5478         it is read-only when using full aot.
5480 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5482         * metadata-verify.c (is_valid_method_signature): Verify parts
5483         of the return type. Provide an error message in case of failure.
5485 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5487         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5489 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5491         * metadata-verify.c: Include the size prefix in the bounds check.
5493 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5495         * icall.c: Remove warnings.
5497         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5498         prevent auto-detection based on GCC defines.
5500         Add PS3
5502         * metadata-verify.c: Do not include signal.h
5504         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5505         messages.  Not sure why the g_assert_not_reached is not enough to
5506         quiet the compiler.
5507         
5509         * appdomain.c: Remove code that is not used when
5510         DISABLE_SHADOW_COPY is set.
5512         * image.c: use g_getenv
5514 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5516         * reflection.c: Remove code that it not used with
5517         DISABLE_REFLECTION_EMIT is defined.
5519 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5521         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5522         invoke wrappers.
5524 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5526         * socket-io.c
5527         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5528         the ifdef here and instead put that on io-layer
5530 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5532         * metadata-verify.c: Verify the generic param constraint table.
5534 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5536         * metadata-verify.c (verify_generic_param_table): Fix
5537         thinko on the valid flags bits for generic params.
5539 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5541         * metadata-verify.c: Verify the methodspec table.
5543 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5545         * metadata-verify.c: Verify the generic param table.
5547 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5549         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5551 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5553         * sgen-gc.c: Use generation enum more consistently and use the
5554         correct generation in mono_gc_register_for_finalization().
5556 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5558         * metadata-verify.c: Verify the nested class table.
5560 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5562         * metadata-verify.c: Verify the manifest resource table.
5564 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5566         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5568 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5570         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5571         wrappers, this is now done in the JIT.
5572         
5573         * class.c (mono_set_generic_sharing_supported): New internal function.
5574         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5576 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5578         * metadata-verify.c: Verify the exported type table.
5580 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5582         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5584 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5586         * metadata-verify.c: Verify the file table.
5588 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5590         * metadata-verify.c (verify_assembly_table): Fix an error message.
5592         * metadata-verify.c: Verify the assemblyref table.
5594 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5596         * metadata-verify.c (verify_assembly_table): Fix the valid
5597         bits mask for flags.
5599 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5601         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5602         generic methods as well.
5604 2009-05-15  Geoff Norton  <gnorton@novell.com>
5606         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5607         use-case and is significantly more performant than the wapi layer.
5609 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5611         * metadata-verify.c: Verify the assembly table.
5613 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5615         * metadata-verify.c: Fix rows limit check.
5617 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5619         * metadata-verify.c: Verify the fieldrva table.
5621 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5623         * sgen.c: Speed up weak links and finalizers by grouping them by
5624         generation.
5626 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5628         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5629         free the old GCHandle (only applies to SGen).
5631 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5633         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5634         mono_metadata_load_generic_params () for non-generic methods.
5636 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5638         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5639         New function for returning a monitor's weak link if it has one.
5641         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5642         one) when clearing a domain.  These can still be around because
5643         the object might not have been collected.
5645 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5647         * gc.c: Fix a warning.
5649 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5651         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5652         prevous wait that resulted in a deadlock on Windows when initializing
5653         the runtime form DllMain. Also results in improved startup time.
5654         (finalizer_thread): Get rid of thread_started_event.
5655         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5656         resulting MonoThread.
5658         Contributed under MIT/X11 license.
5660 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5662         * metadata-verify.c: Verify the implmap table.
5663         Don't require that #US and #Strings be present.
5665 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5667         * security-core-clr.c: Delegate checks are done at creation time,
5668         not a invocation time. Fix exception for Telerik Silverlight demo
5670 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5672         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5673         case for the Thread class.
5675         * threads.c: Do clean-up of abort exception/state in
5676         thread_cleanup() instead of Thread.free_internal().  Also clean up
5677         current_appcontext.  The reason we have to do that is because
5678         those references might point into another domain and if that
5679         domain is unloaded before the thread is finalized, they point to
5680         invalid data.
5682 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5684         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5685         stub signatures.
5686         
5687         Contributed unter MIT/X11 license.
5689 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5691         * verify.c, metadata-verifier.c: Add support for disabling the
5692         verifier in some builds.
5694         [ Sorry, my previous commit accidentally commited some work in
5695         progress ]
5697 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5699         * class.c (mono_class_setup_fields): Set class->field.first for
5700         generic instances.
5702 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5704         * metadata-verify.c: Verify the typespec table.
5706 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5708         * metadata-verify.c: Verify the module table.
5710 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5712         * metadata-verify.c: Verify the methodimpl table.
5714 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5716         * metadata-verify.c: Verify the property table.
5718 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5720         * debug-helpers.c (mono_method_desc_match): Add support for generic
5721         glob patterns.
5723 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5725         * metadata-verify.c: Verify the propertymap table.
5727 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5729         * metadata-verify.c: Verify the event table.
5731         * metadata-verify.c (search_sorted_table): Fix offset
5732         calculation.
5734 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5736         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5738 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5740         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5741         because mono_delegate_free_ftnptr() needs it.
5743 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5745         * metadata-verify.c: Verify the eventmap table.
5747 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5749         * metadata-verify.c: Verify the standalonesig table.
5751 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5753         * metadata-verify.c: Verify the field layout table.
5755 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5757         * class.c (mono_type_get_name_recurse): Don't crash
5758         for ownerless generic params.
5760         * debug-helpers.c (mono_type_get_desc): Correct the format
5761         for ownerless generic params.
5763 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5765         * metadata-verify.c: Verify the class layout table.
5767 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5769         * metadata-verify.c: Verify the decl security table.
5771 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5773         * domain.c (mono_domain_set_internal_with_options): Don't do
5774         anything if the old domain is the same as the old one.  Fixes
5775         #499326.
5777 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5779         * appdomain.c: Deregister the reflection_info roots when unloading
5780         a domain.
5782         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5783         memory allocated by a domain and frees its disappearing links.
5785         * boehm-gc.c, null-gc.c: Empty implementation of
5786         mono_gc_clear_domain().
5788 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5790         * appdomain.c (clear_cached_vtable): Free the static fields memory
5791         block.
5793 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5795         * gc.c: Set the correct domain when invoking finalizers.
5797         * appdomain.c: Set the correct domain when creating threads.
5799 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5801         * sgen-gc.c: Fix skip size for vectors.
5803 2009-05-03  Martin Baulig  <martin@ximian.com>
5805         * mono-debug-debugger.c
5806         (mono_debugger_check_breakpoints): Check class init handlers even
5807         if we don't have any method load handers.
5809 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5811         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5812         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5814 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5816         * metadata-verify.c: Verify the field marshal table.
5818 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5820         * metadata-verify.c: Verify the custom attribute table.
5822 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5824         * metadata-verify.c: Verify the constant table.
5826 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5828         * metadata-verify.c: Verify the memberef table.
5830 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5832         * metadata-verify.c (get_coded_index_token): Remove
5833         dead argument.
5835 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5837         * metadata-verify.c: Verify the interfaceimpl table.
5839 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5841         * verify.c: Improve error message.
5843         * debug-helpers.c (mono_type_get_desc): Harden the code that
5844         deals with VAR and MVAR.
5846 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5848         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5849         part of #498692.
5851 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5853         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5854         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5856 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5858         * security-core-clr.c: Avoid redundant checks for platform code, 
5859         e.g. check for method and for class (very common) and check
5860         for class and outer class (less common)...
5862 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5864         * reflection.c: Avoid returning random cattrs for synthetic methods.
5865         Fixes #498545.
5867 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5869         * assembly.c: assemblies in the GAC should never be shadow-copied.
5871 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5873         * domain.c, domain-internals.h: Disable
5874         track_resurrection_{objects,handles}_hash in MonoDomain if using
5875         SGen.
5877 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5879         * metadata-verify.c: Verify the param table.
5881 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5883         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5884         MethodList.
5886         * metadata-verify.c (verify_method_table): Proper check the ParamList
5887         field.
5889 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5891         * metadata-verify.c (verify_method_table): Check for runtime
5892         implemented functions such as delegate .ctors. Remove spurious
5893         printf.
5894         
5895 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5897         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5899 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5901         Don't allocate MonoGenericInfo for ownerless generic params.
5902         * class-internals.h (MonoGenericParam::info): Move field to ...
5903         (MonoGenericParamFull): ... this.  New struct.
5904         (MonoGenericContainer::type_params): Change type to
5905         MonoGenericParamFull.
5906         (MonoGenericParam, MonoGenericContainer): Update accessors.
5907         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5908         'info' field for ownerless generic param.
5909         (mono_metadata_load_generic_params): Update to changes.
5910         * reflection.c (mono_reflection_create_generic_class): Likewise.
5911         (reflection_methodbuilder_to_mono_method): Likewise.
5912         (mono_reflection_initialize_generic_parameter): Likewise.
5914 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5916         Don't use MonoGenericParamInfo for ownerless generic params.
5917         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5918         use ParamInfo class at all.
5919         (mono_class_from_generic_parameter): Use them.
5920         (make_generic_param_class): Fix a couple of instances where 'pinfo
5921         == NULL' wasn't handle.
5923 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5925         * class.c (make_generic_param_class): Carve out of ...
5926         (mono_class_from_generic_parameter): ... here.
5928 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5930         Simplify mono_class_from_generic_parameter
5931         * class-internals.h (MonoGenericParamInfo::token): New field.
5932         * metadata.c (mono_metadata_load_generic_params): Initialize it
5933         from metadata.
5934         * class.c (mono_class_from_generic_parameter): Use it instead of
5935         searching through metadata.
5937 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5939         * metadata-verify.c: Add verification of the method table.
5941 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5943         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5944         Delegate::Invoke optimization.
5946 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5948         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5949         string returned by get_shadow_assembly_location_base.
5951         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5952         about caller's ownership.
5954 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5956         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5957         reflection memory on domain unload.
5959         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5960         reflection cleanup code do it.
5962         * domain-internals.h: Add mono_reflection_cleanup_domain.
5964         This fixes a memory leak for managed mirrors of reflection objects
5965         on domain unload. 
5967 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5969         * metadata-verify.c: Implement more verification of the field table.
5971 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5973         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5974         doesn't try to parse the input assembly, which can be broken.
5976 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5978         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5979         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5980         by using the lowest bit in the link to store whether the link is
5981         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5983 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5985         * Makefile.am: Split the console support in platform specific code
5986         and put together a framework for making this easy in the future so
5987         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5989 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5991         * pedump.c: Fix a warning.
5993 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5995         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5996         mono_class_from_mono_type to avoid bad interactions with the dual representation
5997         of the generic type definition.
5999 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6001         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6002         get the MonoClass for the call context type as it might be a generic
6003         instance.
6005         Fixes #491483.
6007 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6009         * object-internals.h: The Thread object has no execution_context
6010         member anymore.
6012         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6013         the execution context.
6015         * appdomain.c: Bump corlib version.
6017 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6019         * verify.c (do_newobj): Improve error message.
6021 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6023         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6024         is nested in the filter block.
6026         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6027         block is not fully nested.
6029         Fixes #495656.
6031 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6033         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6034         not MonoType to check for equality of valuetypes as the generic type
6035         definition allows for two different encodings: the generic type definition
6036         class or a generic instance over the GTD arguments.
6038         Fixes #496175.
6040 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6042         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6044         * verify.c (do_initobj): Improve error message.
6046 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6048         * metadata-verify.c: Enable pe verification as the issue with #496453
6049         is that the authenticode data directory have a different unspecified
6050         format. Ignore it for now.
6052         * pedump.c: Run the metadata verifier together with the IL verifier.
6054         Fixes ##496453.
6056 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6058         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6060 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6062         * class.c (can_access_type): Check visibility against
6063         the element type for pointers and arrays.
6065         Fixes #496150.
6067 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6069         * metadata-verify.c: Fix cli and table verification to use information
6070         from the MonoImage. A lot of duplicated code got killed.
6072 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6075         This patch starts to integrate the metadata verifier with the runtime code.
6077         This patch causes major regression in functionality for the metadata verifier
6078         as cli and table verification are disabled since they require to be ported to
6079         use MonoImage information.
6081         * image.c (do_mono_image_load): Split the code in this function
6082         into mono_image_load_pe_data and mono_image_load_cli_data.
6083         Add     care_about_pecoff parameter to not load pecoff data.
6084         Call into the metadata verifier for pecoff and cli verification.
6086         * image.c (mono_image_open_raw): New function that doesn't perform
6087         any parsing of the image contents.
6088         
6089         The reason for the 3 new functions is to give pedump better control
6090         into the interaction with the verifier.
6092         * metadata-internals.h: Add new functions from image.c as part of the
6093         internal mono API.
6095         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6096         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6097         to make those functions work together with the runtime.
6099         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6100         true if the image needs to be verified.
6102         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6104         * pedump.c: Use new metadata verifier API.
6106 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6108         * object.c (mono_install_vtable_trampoline): Make this receive a
6109         trampoline creation function instead of trampoline, allowing the JIT
6110         to use a different trampoline for each vtable.
6112 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6114         * object.c (mono_raise_exception): Don't reset the thread abort
6115         exception state here.
6117 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6119         * icall-def.h: New icall for getting the thread abort exception
6120         state for a thread.
6122         * object.c, thread.c, object-internals.h: A thread's abort
6123         exception state is now a GC handle.  To get the object it stands
6124         for, we must move it into the current app domain, if it's
6125         different than the one where it originated from.
6127         * appdomain.c: Bump corlib version.
6129         * domain.c, domain-internals.h: New function for setting the
6130         domain and migrate the thread abort exception or not.
6132 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6134         * metadata-verify.c: Add initial verification of the
6135         field table.
6137 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6139         * metadata-verify.c: Add a macro to conditionally enable
6140         dumping of verification information. Add  make_coded_token
6141         and search_sorted_table to enable search sorted tables
6142         by a given coded token.
6144 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6146         * metadata-verify.c: Add array mapping from table index
6147         to description offset. Add get_col_offset and get_col_size
6148         functions.
6150 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6152         * metadata-verify.c: Add remaining table descriptions offsets.
6153         Add remaining coded index descriptions.
6155 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6157         * metadata-verify.c: Fixed constant table description.
6158         Fixed calculation of HasCustomAttribute coded index size.
6159         Fixed calculation of size for many table indexes. 
6161 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6163         * pedump.c (dump_metadata): Dump table offset instead
6164         of useless pointer in memory.
6166 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6168         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6170 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6172         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6173         a missing of for interface types.
6175 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6177         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6178         the code is commented.
6180         * metadata-verify.c (verify_resources_table): Remove spurious printf
6181         and don't fail if there are unmanaged resources. Gmcs generates a useless
6182         one     for all assemblies - I bet it's some MS compatibility junk.
6184 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6186         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6188         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6190         * verify-internals.h: Same.
6192         * pedump.c: Fix for mono_image_verify new signature.
6194 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6196         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6197         flags combinations.
6199 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6201         * metadata-verify.c (verify_module_table): Ignore the generation field.
6203 2009-04-15  Martin Baulig  <martin@ximian.com>
6205         * debug-mono-symfile.c
6206         (mono_debug_symfile_lookup_location): Don't print a warning for
6207         unknown extended opcodes if they're within 0x40 and 0x7f.
6209 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6211         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6212         invoke signatures returning an enum. Fixes #494847.
6214 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6216         * metadata-verify.c: Initial code to verify the typedef table.
6218 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6220         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6221         with non empty stack happens before the beginning of a try block.
6223         Fixes #494812.
6225 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6227         * metadata-verify.c: Verify typename and typenamespace fields of
6228         the typeref table.
6230 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6232         * metadata-verify.c: Initial code to verify the typeref table.
6234 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6236         * verify.c (verify_delegate_compatibility): Fix error message.
6238 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6240         * security-core-clr.c: Fix typo
6242 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6244         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6245         a MonoGHashTable to keep its values alive.
6246         (emit_marshal_boolean): Fix a warning.
6248 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6250         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6251         not have any interface configured for IPv4/IPv6.
6253 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6255         * assembly.c: fix typo in error message.
6257 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6259         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6260         allocating the location holding the this argument to prevent
6261         'too many root sets' errors.
6263         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6264         to mark fields as special static.
6265         (mono_field_static_get_value): Handle special static fields.
6266         (mono_field_static_set_value): Ditto.
6268         * class-internals.h (struct _MonoClassField): Document this.
6270 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6272         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6273           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6274           case.  This will handle when managed code returns null to native code.
6276         Code is contributed under MIT/X11 license.
6278 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6280         * object.c (build_imt_slots): Changing a free to a g_free to match
6281           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6283         Code is contributed under MIT/X11 license.
6285 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6287         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6288           the correct TRUE value is passed through the marshaling layer.
6290         Code is contributed under MIT/X11 license.
6292 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6294         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6295         correctly. Fixes #492330.
6296         
6297         * marshal.c: Fix the embedding of object pointers into JITted code in
6298         the native-to-managed wrappers by allocating some GC tracked memory, and
6299         embedding the address of that.
6301 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6303         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6304         pointers into the vtable.
6306 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6308         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6310         * verify.c (verify_ldftn_delegate): Improve error message.
6312 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6314         * reflection.c (my_mono_class_from_mono_type): Remove.
6316 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6318         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6319         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6320         and constraints fields into ...
6321         (MonoGenericParamInfo): ... this.
6322         (mono_generic_param_info, mono_generic_container_get_param_info):
6323         New accessors.
6324         * class.c, debug-helpers.c, icall.c: Update to changes.
6325         * metadata.c, reflection.c, verify.c: Likewise.
6327 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6329         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6331         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6332         
6333         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6334         booleans with sbytes.
6336 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6338         * class.c (can_access_instantiation): Verify accesibility of element types
6339         for arrays and pointers.
6341         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6343         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6345         Fixes #493068.
6347 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6349         * verify.c (do_invoke_method): Improve error messages.
6351 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6353         * verify.c:  Fixing the MSVC build.
6355         Code is contributed under MIT/X11 license.
6357 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6359         * security-core-clr.c: Simplify get_reflection_caller not to call
6360         mono_method_get_last_managed (another stack walk) and adjust the
6361         callers to handle a (should not happen) NULL return value.
6363 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6365         Add accessors to some MonoGenericParam fields
6366         * class-internals.h (mono_generic_param_owner): New accessor.
6367         (mono_generic_param_num): Likewise.
6368         (mono_type_get_generic_param_owner): New helper.
6369         (mono_type_get_generic_param_num): New helper.
6370         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6372 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6374         * class-internals.h (mono_generic_container_get_param): New wrapper.
6375         * class.c, icall.c, metadata.c, verify.c: Use it.
6377 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6379         Fix gtest-252.cs
6380         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6381         the standard case/loop.  In particular, don't complain about
6382         references to generic type definitions.
6384 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6386         * debug-helpers.c (dis_one): Decode string arguments.
6388 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6390         * pedump.c (dump_verify_info): Dump type name correctly.
6392 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6394         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6395         are larger than code size.
6397         This can happen in valid code if the try/catch block is not followed by any instruction
6398         and do a backward branch on the leave instruction.
6400         Fixes #492494.
6402 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6404         * security-core-clr.c: Fix typo while comparing second method names
6405         in can_avoid_corlib_reflection_delegate_optimization
6407 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6409         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6411         Fixes #487738.
6413 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6415         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6416         a MVAR using a class context.
6418         Fixes #490335.
6420 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6422         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6424         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6426         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6427         functions supplied by the JIT for the SGEN GC.
6429         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6430         
6431 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6433         monitor.c (mono_monitor_try_enter_internal):
6434         Added calls to profile monitor contentions.
6435         Also duplicated a small piece of code (the "get the monitor" logic)
6436         from the fast path to the slow path, and changed the relevant goto
6437         statements, so that monitor acquisition events can be emitted from the
6438         slow path (this is by Paolo Molaro).
6440 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6442         * profiler.c, profiler.h, profiler-private.h:
6443         Added support for profiling monitor contentions.
6445 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6447         * metadata-verify.c: Verify the modules table.
6449 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6451         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6452         using the context of the method been verifier and not of the method been called.
6454         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6455         safely inflate generic types. 
6457 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6459         * security-core-clr.c: Change the strategy for checking the 
6460         "reflection using delegates optimization" to avoid unneeded 
6461         attributes in multiple class libraries.
6463 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6465         * sgen-gc.c: Remove object element in the disappearing link struct
6466         by storing the object pointer in the link.
6468 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6470         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6472 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6474         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6476         * verify.c (mono_method_verify): Do proper bounds checking of exception
6477         clause ranges.
6479 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6481         * loader.c (mono_field_from_token): Don't crash if the field parent could
6482         not be decoded.
6484 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6486         * sgen-gc.c: Execute critical finalizers after ordinary
6487         finalizers.
6489         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6490         mono_defaults.
6492 2009-03-31 Jb Evain <jbevain@novell.com>
6494         * verify.c (do_ldstr): don't check if a string is in the user strings
6495         heap if the current image is dynamic.
6497 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6499         * sgen-gc.c: Wait until the last finalizer has executed when
6500         returning from WaitForPendingFinalizers.
6502 2009-03-31  Martin Baulig  <martin@ximian.com>
6504         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6505         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6506         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6507         (mono_debugger_event_create_appdomain): New function.
6508         (mono_debugger_event_unload_appdomain): New function.
6510         * appdomain.c (mono_domain_create_appdomain_internal): Call
6511         mono_debugger_event_create_appdomain().
6513 2009-03-31  Martin Baulig  <martin@ximian.com>
6515         * mono-debug-debugger.c
6516         (mono_debugger_register_class_init_callback): Also register the
6517         class init callback if the class is already initialized to make
6518         things work with shadow copied assemblies.
6520 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6522         * security-core-clr.c
6523         (mono_security_core_clr_ensure_reflection_access_field): Let 
6524         critical code access the field (just like we do for methods). Use
6525         check_field_access helper.
6526         (mono_security_core_clr_ensure_reflection_access_method): Use 
6527         check_field_access helper.
6529 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6531         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6532         call the run-finalize function directly.
6534         * gc.c, gc-internal.h: Make run_finalize() non-static.
6536 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6538         * sgen-gc.c: Use a separate struct for disappearing links.
6540 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6542         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6543         * MaxIOVectorLength enabled, just ignore them.
6544         Fixes bug #349688.
6546 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6548         * metadata-verify.c: Fix eglib build.
6550 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6552         * threads-types.h: Fix the win32 build.
6554 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6556         * class.c: move coreclr inheritance/override checks to 
6557         security-core.clr.c
6558         * security-core.clr.c|h: add code from class.c with additional
6559         documentation. Fix override check when the method is not critical.
6561 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6563         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6564         (match_class): Ditto.
6566 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6568         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6570         * metadata-verify.c: Implement table layout row size calculation. Verify
6571         the total size of the tables.
6573 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6575         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6577 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6579         * appdomain.c:
6580         * console-io.[ch]: added new mono_console_init() to make sure that
6581         file descriptors 0, 1 and 2 are opened.
6582         Bug #489019 fixed.
6584 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6586         * appdomain.h: Export a new callback type and a new function to
6587         set this callback. This allow a mono host to provide it's own
6588         definition for "platform code".
6589         * metadata-internals.h: Add a core_clr_platform_code flag on 
6590         _MonoImage to (cache and) know if it is representing platform 
6591         code.
6592         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6593         on platform code images.
6594         * security-core-clr.c|h 
6595         (mono_security_set_core_clr_platform_callback): Allow the host
6596         to provide it's own platform check definition.
6597         (mono_security_core_clr_determine_platform_image): Detect if an 
6598         image is platform code (using the specified callback).
6599         (mono_security_core_clr_is_platform_image): Return cached value 
6600         for platform code.
6602 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6604         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6605         which has different parameter types for the 'tid' argument in windows and
6606         the io-layer.
6608         * appdomain.c attach.c threads.c: Use the new helper.
6610 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6612         * metadata-verify.c: Verify valid table bits.
6614 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6616         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6618         * metadata-verify.c: Add initial table schema verification.
6620 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6622         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6623         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6624         #488383.
6626         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6628         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6630 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6632         * security-core-clr.c: Add/update documentation
6634 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6636         * marshal.c (emit_marshal_object): Generate code to throw an exception
6637         instead of throwing it. Fixes #488670.
6639 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6641         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6642         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6643         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6644         and add a call to mono_security_core_clr_ensure_delegate_creation
6645         to do the extra checks required by CoreCLR.
6646         * security-core-clr.c|h: Add function to check delegate creation,
6647         both in the binding and accessibility, under CoreCLR.
6649 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6651         * reflection.c (mono_reflection_create_dynamic_method): when 
6652         coreclr is enabled make sure that every resolved object are
6653         checked (e.g. field and method access).
6654         * security-core-clr.c|h: Add function to check objects resolved
6655         when a dynamic method is created.
6657 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6659         * metadata-verify.c: Cache directory rva translations.
6661         * metadata-verify.c: Add cli-header and streams verification.
6663 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6665         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6666         the wrong offset (8 instead of 6).
6668 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6670         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6671         methods, return the native function address itself. Fixes
6672         #487758.
6674 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6676         * console-io.c: some of the values for control characters might not be
6677         present.
6679 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6681         * exception.c|h: Add helpers to create [Field|Method]AccessException
6682         * icall.c: Add required coreclr check calls for field reflection.
6683         Move the existing (method) check logic into security-core-clr.c
6684         * security-core-clr.c: Add functions to check if the access of a
6685         field or method is allowed when reflecting under coreclr. This is
6686         mostly done using a stack walk to find the "real" caller: i.e. the
6687         code that is calling the reflection
6689 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6691         * gc-internal.h: Change location of gc_wrapper.h
6693 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6695         * class.c: Simplification to coreclr checks for overrides that
6696         makes it easier to set breakpoints.
6698 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6700         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6701         mono_security_core_clr_method_level): Avoid potential 
6702         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6703         user/application code) and make it easier to set breakpoints
6705 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6707         * metadata-verify.c: Reject cli header tables that mono don't handle.
6709 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6711         * pedump.c: Fix CLI header dumping.
6713 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6715         * metadata-verify.c: More CLI header verification.
6717 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6719         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6721 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6723         * metadata-verify.c: Initial verification of the CLI header.
6725 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6727         * metadata-verify.c (verify_resources_table): Fix verification of zero
6728         sized resource section and id entries count.
6730 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6732         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6734 2009-03-17  Jb Evain  <jbevain@novell.com>
6736         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6738 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6740         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6741         (mono_gc_make_descr_for_array): Ditto.
6743 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6745         * verify.c (mono_verifier_is_class_full_trust): Add support for
6746         CoreCLR security mode where trusted assemblies are defined as
6747         "platform code".
6749 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6751         * metadata-verify.c: Add minimal PECOFF resource verification.
6753 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6755         * metadata-verify.c: Be less restrictive with some coff fields.
6757 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6759         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6760         params as boxed values on stack. Fixes #485706.
6762 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6764         * console-io.c: the termios values may vary in different flavors of unix.
6766 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6768         * console-io.[ch]: return the entire set of control characters when
6769         initializing the terminal.
6770         * appdomain.c: bump corlib version.
6772 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6774         * mono-perfcounters.c: added support for in-process custom
6775         performance counters.
6777 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6779         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6781 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6783         * metadata-verify.c: Verify the data pointed by the import table. 
6785 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6787         * metadata-verify.c (load_data_directories): Store data
6788         directory contents.
6790         * metadata-verify.c: Verify the import table. 
6792 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6794         * metadata-verify.c: Verify data directories.
6796 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6798         * metadata-verify.c: Check section header flags.
6800 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6802         * appdomain.c: if the assembly name is a shadow-copied file, return
6803         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6804         in mono_make_shadow_copy.
6805         * icall.c: if the assembly name is a shadow-copied file, replace it
6806         with the original assembly path.
6808         Bug #484244 fixed. NUnit tests for corlib can be run without
6809         --noshadow now.
6811 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6813         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6814         entries when the table is reallocated.
6816         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6817         mono_gc_alloc_fixed () since it contains GC refs.
6819 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6821         * reflection.c (ensure_complete_type): New helper function to call
6822         type resolve handlers for unfinished dynamic types.
6823         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6825 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6827         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6828         #483247.
6830 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6832         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6834 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6836         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6837         between GCHandles of type WeakTrackResurrection and the objects they
6838         point to.
6840         * gc.c: Partly implement the sematics of GCHandles of type 
6841         WeakTrackResurrection: these handles should only be cleared after the
6842         finalizer of the object they are pointing to has ran.
6844 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6846         * icall.c: Partially revert r126631 because using the jump
6847         trampolines for generic shared methods makes it superfluous.
6849 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6851         * threads.c (handle_store): Create the 'threads' hash table with the proper
6852         MONO_HASH_VALUE_GC type.
6854 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6856         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6857         FIRST_GC_TRACKED.
6859         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6860         and LAST_GC_TRACKED as a GC root.
6862         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6864         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6865         the static data even if it consists of 1 reference.
6867         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6868         if there is a GC descriptor.
6870         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6871         instead of through the GC since they contain no object references.
6873 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6875         * generic-sharing.c (instantiate_other_info): Always return a jump
6876         trampoline for method code.
6878 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6880         * culture-info-tables.h: generated to include the en-tt culture.
6882 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6884         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6885         capture the thread context.
6887         * object.c (mono_async_result_new): Cache the invoke wrappers to
6888         ExecutionContext::Capture.
6890 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6892         * marshal.h: Add a prototype for what mono_compile_method returns
6893         for invoke wrappers.
6895         * gc.c: Use the new prototype declaration.
6897 2009-03-04  Geoff Norton  <gnorton@novell.com>
6899         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6900         * gc-internal.h:
6901         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6903 2009-03-04  Martin Baulig  <martin@ximian.com>
6905         * mono-debug.h
6906         (mono_debugger_runtime_invoke): Removed.
6908         * mono-debug-debugger.c
6909         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6911 2009-03-02  Martin Baulig  <martin@ximian.com>
6913         * mono-debug.h
6914         (mono_debugger_unhandled_exception): Removed.
6915         (mono_debugger_handle_exception): Removed.
6916         (mono_debugger_throw_exception): Removed.
6918         * mono-debug.c
6919         (mono_debug_debugger_version): Bump to 5.
6921         * mono-debug-debugger.c: Moved the exception handling code to
6922         ../mini/debug-mini.c
6924 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6926         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6927         finalize_objects_hash.
6929         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6930         
6931         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6932         field.
6934         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6935         cache.
6937         * image.c (mono_image_close): Free it.
6938         
6939         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6940         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6941         on the this argument.
6943         * gc.c (run_finalize): Optimize the calling of the finalizers.
6945 2009-03-03  Martin Baulig  <martin@ximian.com>
6947         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6948         of the `MonoGenericInst' changes.
6950 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6952         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6953         mono_array_class_get_cached to reduce locking contention. Extract
6954         a domain var.
6956         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6957         intermediary managed arrays. Use caching version of mono_array_new
6958         to allocate the result array.
6960         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6962         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6964         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6965         to reduce locking contention.
6967 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6968                 
6969         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6970         thunk builder code for the non-interface case.
6972 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6974         * object.c (get_generic_virtual_entries): New helper function to collect
6975         the virtual generic method instances which need to be added to an IMT
6976         thunk.
6977         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6978         Instead of creating a new IMT thunk, reset the vtable slot to the
6979         trampoline, the thunk will be created the next time the trampoline is called.
6980         (build_imt_slots): Add support for virtual generic methods in interfaces by
6981         adding to the IMT thunk all the methods registered using 
6982         mono_method_add_generic_virtual_invocation ().
6984         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6985         (struct _MonoIMTCheckItem): Ditto.
6987         * object.c (mono_method_add_generic_virtual_invocation): Take a
6988         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6989         the IMT thunk to include all items.
6990         
6991         * object.c (mono_class_create_runtime_vtable): Add a missing
6992         mono_loader_unlock ().
6994 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6996         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6998         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7000 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7002         * object-internals.h: Rename _MonoReflectionEvent to
7003         MonoReflectionMonoEvent so it reflects the right managed type.
7004         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7006         * icall.c:
7007         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7008         type.
7010 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7012         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7013         intermediary managed arrays. Use caching version of mono_array_new
7014         to allocate the result array.
7016 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7018         * reflection.c: Use cached version of mono_array_new alongside
7019         the mono_reflection_get_custom_attrs_by_type call path.
7021 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7023         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7024         intermediary managed arrays. Use caching version of mono_array_new
7025         to allocate the result array.
7027         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7029 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7031         * icall.c: Add small implementation of a growable stack bound array.
7033         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7035         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7036         intermediary managed arrays. Use caching version of mono_array_new
7037         to allocate the result array.
7039 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7041         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7042         helps Enum::CompareTo to be implemented without reboxing all enums
7043         to their underlying type.
7044 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7046         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7047         since it acquires a global lock leading to scalability problems.
7049         * profiler.c: Make the stat profiler work with multiple appdomains, this
7050         currently only works when no appdomains are unloaded.
7052 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7054         * appdomain.c: make the check to avoid copying when the assembly is
7055         already shadow copied actually work.
7057 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7059         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7061         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7062         changes to the managed side.
7064 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7066         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7067         classes + a separate lock for it, as it is used frequently at runtime, not
7068         just during metadata loading/JIT compilation.
7070         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7071         for szarrays.
7072         
7073         * object-internals.h (mono_class_from_name_cached): New macro to cache
7074         the results of the lookup locally without having to declare a static
7075         variable to hold it.
7076         (mono_class_get_field_from_name_cached): Ditto.
7077         (mono_array_class_get_cached): Ditto.
7079         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7080         the new macros.
7081         
7082         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7083         slower search in metadata.
7085         * pedump.c: Fix a warning.
7087 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7089         * reflection.c (encode_locals): Add checks for user types.
7090         (method_encode_clauses): Ditto.
7091         (method_encode_code): Ditto.
7092         (mono_image_create_token): Ditto.
7094         * object-internals.h: Change the type of more fields from MonoReflectionType*
7095         to MonoObject*.
7097 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7099         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7100         the a thread does not suspend within 100ms.
7102         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7103         in addition to StopRequested as well.
7105         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7107         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7108         search the method_hash before inserting a new entry, to avoid crashes when
7109         the same method is inserted multiple times, causing the old 
7110         MonoDebugMethodInfo structure to be freed by the value dtor function.
7112 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7114         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7115         SO_EXLUSIVEADDRUSE where available.
7117 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7119         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7120         runtime invoke wrappers, this time it is string ctor wrappers, which
7121         pass a dummy string as 'this' instead of their obj argument. Fixes
7122         #478473.
7124 2009-02-21  Jb Evain  <jbevain@novell.com>
7126         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7127         only get create_culture once.
7129 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7131         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7132         check before the locking.
7133         
7134         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7135         (mono_reflection_create_runtime_class): Ditto.
7136         (mono_reflection_sighelper_get_signature_local): Ditto.
7137         (mono_reflection_sighelper_get_signature_field): Ditto.
7139         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7140         is a System.MonoType object or similar.
7141         (monotype_cast): New helper function to cast a MonoObject to a 
7142         MonoReflectionType object.
7144         * object-internals.h: Change MonoReflectionType* members in structures to
7145         MonoObject* members to force the usage of the monotype_cast () function.
7147         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7148         structures/arrays. This causes us to assert instead of crashing when 
7149         instances of user defined subclasses of System.Type are encountered.
7151 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7153         * cil-coff.h:
7154         * icall-def.h:
7155         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7156         win32 resource loaded from a PE file.
7158         * image.c: fix mono_image_lookup_resource.
7160 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7162         * icall-def.h:
7163         * threads-types.h:
7164         * threads.c: added internal call for WaitHandle.SignalAndWait.
7166 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7168         * cominterop.c : Adding cominterop_type_from_handle and 
7169           registering it as an icall.  Replacing all references
7170           to type_from_handle.
7172         Code is contributed under MIT/X11 license.
7174 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7176         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7178         * appdomain.c: Call the tracer init function.
7180         * domain-internals.h: Enable the tracer for the domain locks.
7182         * image.c: Enable the tracer for image locks.
7184         * loader.c: Enable the trace for the loader lock.
7186         * lock-tracer.h:
7187         * lock-tracer.c: Initial implementation of the lock trace utility.
7188         The tracer requires a compile time define to be enabled and a env var
7189         to be enabled at runtime.
7191 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7193         * domain.c (mono_domain_code_foreach): Improve documentation.
7195 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7197         * appdomain.c:
7198         * generic-sharing.c:
7199         * object.c:
7200         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7201         comes first.
7203 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7205         * domain.c: Add mono_domain_code_* functions that perform locking
7206         around the domain codeman.
7208         * domain-internals.h: Export those functions.
7210         * object.c: Use new functions instead of acquiring the domain lock.
7212 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7214         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7215         delegate. Fixes #477396.
7217 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7219         * reflection.c (create_custom_attr): Get rid of alloca.
7221 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7223         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7224           Adding exception handling for all CCW calls.
7226         Code is contributed under MIT/X11 license.
7228 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7230         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7232         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7233         native->managed marshalling code. Fixes #476247.
7235 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7237         * class.c (mono_class_get_vtable_entry): Move the addition of
7238         static rgctx invoke wrappers for vtable methods here, this simplifies
7239         a lot of code and causes fewer rgctx wrappers to be created.
7241         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7242         name of the statistics to begin with an uppercase.
7244 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7246         * reflection.c: Revert previous change as it breaks the build.
7247         
7248 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7250         * verify.c: Properly handle SZARRAY element type.
7252         Fixes #474271.
7254 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7256         * reflection.c (mono_image_create_method_token): Correctly encode
7257         MethodDef MemberRefParent token.
7259         Fixes #472845.
7261 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7263         * image.c (mono_image_close): Delete the critical section before
7264         freeing the memory holding it.
7266 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7268         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7269         Fixes #476257.
7271 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7273         * pedump.c (main): Call mono_marshal_init so pedump
7274         doesn't crash.
7276 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7278         * loader.c (method_from_memberref): Properly fix #474271 and
7279         don't break the runtime bad.
7281 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7283         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7284         (mono_domain_alloc0): Ditto.
7286 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7288         * loader.c (method_from_memberref): Don't abort if the array
7289         method is not found. A regular loader failure is more informative
7290         and correct.
7292         Fixes #474271.
7294 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7296         *loader.c: Guard MonoImage::method_cache/methodref_cache
7297         using the image lock instead of the loader lock.
7299         * metadata.h: Add comments about which fields are protected by
7300         the image lock.
7302 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7304         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7306         * generic-sharing.c (mono_method_construct_object_context): Remove the
7307         wrapper_type == NONE assert, it is not needed.
7309 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7311         * reflection.c (clear_cached_object): New helper function.
7312         (mono_method_clear_object): New function to clear the cached reflection
7313         objects for a dynamic method.
7315         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7316         Partly fixes # 463323.
7317         
7318 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7320         * class.c:
7321         * loader.c:
7322         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7324 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7326         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7327         take the image lock instead of the loader lock.
7329         * metadata-internals.h: Export new functions.
7331 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7333         * domain.c (app_config_parse): Remove another use of stat that is
7334         not necessary as g_file_get_contents already does the presence
7335         check. 
7337 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7339         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7341         * marshal.c: Move the bstr handling code to cominterop.c.
7343         * marshal.c: Remove some COM interop code missed previously.
7345 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7347         More Paolo patches from the Wii port:
7348         
7349         * security.c: Remove ves_icall_System_Environment_get_UserName
7350         from here.
7352         * icall.c: And put ves_icall_System_Environment_get_UserName
7353         here. 
7355         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7356         redundant call to stat that was only used to test for the file
7357         existence.   Patch from Paolo.
7359         * gc.c (run_finalize): If COM is disabled, do not link in
7360         mono_marshal_free_ccw.
7362         * generic-sharing.c: Use alloca.h here as well.
7364 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7366         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7368 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7370         * cominterop.c cominterop.h: New files.
7372         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7373         function/typedefs which are needed by cominterop.c global.
7375 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7377         * generic-sharing.c: Don't take the loader lock to guard image
7378         mempool allocs.
7380 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7382         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7383         called without the loader lock which is required to guard MonoImage:tokens.
7385 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7387         * class.c:
7388         * metadata.c:
7389         * method-builder.c:
7390         * marshal.c:
7391         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7393 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7395         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7396         Rework the code to use regular mono_image_alloc/0.
7398         * loader.c: Rework the code to use regular mono_image_alloc/0.
7400         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7402 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7404         * object-internals.h : Fixing a typo in the 
7405           MonoReflectionComVisibleAttribute struct.
7407         * marshal.c (cominterop_com_visible): Check the implemented 
7408           interfaces for ComImport.
7410         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7411           assume that bools should be treated as VARIANTBOOLs.
7413         * marshal.c (emit_marshal_boolean): Adding cases for 
7414           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7416         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7417           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7419         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7420           should be treated as VARIANTBOOLs.    
7422         Code is contributed under MIT/X11 license.
7424 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7426         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7427         allocation with the image lock.
7429 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7431         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7432         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7434         * object.c: Add mono_string_to_utf8_image.
7436         * object-internals.h: Export mono_string_to_utf8_image.
7438         * reflection.c: Rework all explicit references to the the image mempool to go thought
7439         the mono_image_alloc set of functions.
7441 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7443         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7444         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7445         and generics-sharing.c.
7447         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7448         as first argument. Note that this function remains broken as it doesn't perform locking around the
7449         mempool allocation.
7451         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7453         * image.c: Add g_slist_append_image.
7455         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7456         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7458         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7459         Fix all related code to do the same.
7461         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7463         * metadata-internals.h: Fix the signatures.
7465 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7467         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7468         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7469         and similar to work using MonoImage.
7471         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7472         MonoMemPool.
7474         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7476         * class.c (mono_metadata_signature_deep_dup): Same.
7478         * class.c (inflate_generic_type): Same.
7480         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7482         * metadata.c (mono_metadata_signature_dup_full): Same.
7484         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7485         mono_metadata_signature_dup_full.
7487         * metadata.c (mono_metadata_type_dup): Same.
7489         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7491         * reflection.c: Same.
7493         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7495         * metadata-internals.h: Fix the signatures.
7497         * class-internals.h: Same.
7499 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7501         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7502         and use mono_image_alloc set of functions instead. 
7504         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7505         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7506         of a MonoMemPool.
7508         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7510         * class.c (g_list_prepend_mempool): Removed.
7512         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7514         * image.c: Add g_list_prepend_image.
7516         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7518         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7521 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7523         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7524         mono_image_unlock.
7526         * image.c (mono_image_init): Init the lock field.
7528         * image.c (mono_image_init): Cleanup the lock field.
7530         * image.c: Add mono_image_(un)lock functions.
7532 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7534         * class.c, class-internals.h: mono_method_get_context_general()
7535         combines the functionality of mono_method_get_context() and
7536         mini_method_get_context().
7538         * generic-sharing.c, domain-internals.h:
7539         mono_method_construct_object_context() and
7540         mono_domain_lookup_shared_generic() moved from mini.
7542         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7543         method doesn't have the correct instantiation because it's shared
7544         generic code.  Fixes #473999.
7546 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7548         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7550         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7551         
7552 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7554         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7556         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7558         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7559         and recheck the cache for dups after it.
7561         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7563         Fixes one of the deadlocks found in #473150.
7565 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7567         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7568           For Win32, add additional break conditions for accept.
7570         Code is contributed under MIT/X11 license.
7572 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7574         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7575         lazily initialize the native wrapper cache.
7576         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7577         cache, since they are different from the normal wrappers.
7579         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7581         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7582         AOT compiled native wrappers.
7584 2009-02-09  Geoff Norton  <gnorton@novell.com>
7586         * appdomain.h:
7587         * security-core-clr.c: Allow enabling core-clr from the embedding
7588         API.
7590 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7592         * socket-io.c: when requesting all the local ips, if there are no
7593         interfaces up and running, MS returns 127.0.0.1.
7595 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7597         * mono-perfcounters-def.h: processor time is an inverse time.
7598         Fixes bug #468625.
7600 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7602         * socket-io.c: an empty host name returns the list of local IPs.
7603         Fixes bug #386637 part 1/2.
7605 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7607         * verify.c (mono_class_interface_implements_interface): Call
7608         mono_class_setup_interfaces ().
7609         (merge_stacks): Ditto.
7611 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7613         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7614         klass->interfaces.
7615         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7616         (mono_generic_class_get_class): Ditto.
7618 2009-02-06  U-QUACK\miguel  <miguel@quack>
7620         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7621         they live in security.c
7623         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7624         another bit from Paolo's code.
7626 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7628         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7629         methods which will be discarded by add_imt_builder_entry ().
7631         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7632         need to be boxed.
7634         * loader.c: Add a statistics for the size of the memberref signature cache.
7635         
7636         * loader.c (find_cached_memberref_sig): New helper function.
7637         (cache_memberref_sig): Ditto.
7639         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7640         they will be parsed again for every generic instantiation, leading to unbounded
7641         memory growth.
7643 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7645         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7646         parameters of generic methods.
7648         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7649         after the original method is copied to the inflated method.
7650         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7652         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7653         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7655         * class.c metadata.c: Update after the changes above.
7657 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7659         * metadata-verify.c: Simplified error handling and added
7660         section table validation.
7662 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7664         * class-internals.h (MonoClassExt): New structure containing rarely used
7665         fields of MonoClass.
7666         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7667         through a new 'ext' field.
7669         * class.c (mono_class_alloc_ext): New helper function to allocate 
7670         class->ext.
7672         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7674 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7676         * object.c (mono_object_get_virtual_method): Properly inflate
7677         generic methods.  Fixes #472692.
7679 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7681         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7682         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7683         for the parent type, the created type must be ready to be used on a generic
7684         instantiation.
7685         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7686         we won't have duplicated entries in generic_inst_cache.
7688         Fixes #469553.
7690 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7692         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7693         replace with plain BSD per the comments on the bug MONO77637.
7695 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7697         * class.c (mono_class_get_generic_class): New accessor function.
7698         (mono_class_get_generic_container): Ditto.
7700         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7701         fields, similar to the ones in MonoMethod.
7703         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7704         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7706         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7707         
7708         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7709         the same information as element_class->byval_arg.
7711         * class.c reflection.c: Remove references to class->byval_arg.
7713         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7714         klass->enum_basetype directly.
7716         * verify.c metadata.c object.c icall.c reflection.c: Use 
7717         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7718         directly.
7720 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7722         * icall-def.h: Remove internal calls for sockets when
7723         DISABLE_SOCKET is defined, file system writing features when the
7724         OS only support reading and not writing data and Policy support if
7725         the Policy is disabled.
7726         
7727         * image.c (do_mono_image_open): Apply Paolo's patches for using
7728         mono_file_map_ APIs here.
7730         * assembly.c: Add support for platforms to avoid prefix
7731         auto-detection. 
7733 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7735         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7736         warning.
7738         * class.c (mono_class_inflate_generic_class): New helper function.
7740         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7741         statistics for inflated methods/classes.
7743         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7745         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7746         the call is made from Delegate.CreateDelegate () for the invoke method of
7747         a delegate.
7749         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7751         * metadata.c (mono_metadata_signature_size): New helper function.
7753         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7754         generic instances.
7756         * metadata.c (inflated_method_in_image): Avoid calling 
7757         mono_method_signature () if the method does not already have a signature.
7759 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7761         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7762         valuetype is compatible with target type, check by inheritance as a
7763         VT is not really compatible with System.ValueType, for example.
7765         * verify.c (do_invoke_method): Improve error message.
7767         * verify.c (do_box_value): If boxing a nullable, use the type argument
7768         on stack instead.
7770         * verify.c (do_newobj): Improve error message.  
7772         Fixes #469549.
7774 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7776         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7778 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7780         * generic-sharing.c: Don't hold domain lock when calling
7781         instantiate_other_info().  Fixes #471958.
7783         * domain-internals.h, loader.c: Describe locking policy of domain
7784         lock vs loader lock.
7786 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7788         * verify.c (mono_delegate_signature_equal): Make it possible to check
7789         first-arg-bound delegates to static method.
7791         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7792         static methods with the first arg bound.
7794         Fixes #469529.
7796 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7798         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7799         errors.
7801         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7802         under strict mode. Any type, when boxed can be seen as a reference type.
7804         Fixes #469528.
7806 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7808         * object.h: The lower bound of an array is a signed integer value.
7809         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7810         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7812         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7813         calculate the upper bound.
7814         
7815         Fixes #471252.
7817 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7819         From Paolo's work, refactored, cleared up:
7820         
7821         * threadpool.c, icall.c: ifdef code that requires a working socket
7822         stack.
7824         * metadata.c (mono_metadata_field_info): Do not attempt to return
7825         a value from a function declared as void.
7827         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7828         from the console stack.
7830         * assembly.c: use strrchr instead of rindex.
7832         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7833         alloca.h on systems that have it.
7835         * environment.c: Avoid code that uses stuff from
7836         HAVE_SYS_UTSNAME_H
7837         
7838         * appdomain.c: Include sys/time.h.
7840         * console-io.c: include sys/ioctl.h if it is available.
7842 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7844         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7846         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7847         the method builder.
7849         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7850         after it was created and cached, as the later is not thread safe.
7851         
7852 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7854         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7855         called while the debugging module is not initialized. Fixes #471669.
7857 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7859         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7861         Fixes #471255.
7863 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7865         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7866         loader lock is not taken while the templates lock is held.  Fixes
7867         #471089.
7869 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7871         * metadata.c (type_in_image): Added a check to fix a monodis
7872         crash.
7874 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7876         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7877         nullable arguments.
7879         * object.c (mono_runtime_invoke_array): Ditto.
7880         
7881         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7882         freeing wrappers of dynamic methods.
7884         * loader.c (mono_free_method): Call it. Fixes #463323.
7885         
7886         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7887         methods taking vtype/byref arguments, to fix yet another bug caused by
7888         the sharing of runtime invoke wrappers. Partly fixes #471259.
7890 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7892         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7893         <first file in file table>:1 when the IL offset does not have an associated
7894         line number.
7896 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7898         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7899         variable info for a method.
7901         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7902         
7903 2009-01-30  Jb Evain  <jbevain@novell.com>
7905         * pedump.c: reuse code from monodis to make sure pedump honors
7906         MONO_PATH, which is needed to verify net_2_1 assemblies.
7908 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7910         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7911         there is no line number info.
7913 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7915         Avoid some MonoType allocations
7916         * reflection.c (mono_reflection_initialize_generic_parameter):
7917         Reuse MonoType from param->pklass rather than allocating one.
7918         (mono_dynamic_image_free): Update to changes.
7920 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7922         Rearrange some code to improve consistency
7923         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7924         (mono_reflection_initialize_generic_parameter): ... here.
7926 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7928         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7929         with type constraints as an experiment.
7931         * boehm-gc.c (on_gc_notification): Update mono_stats.
7933 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7935         Avoid some allocations
7936         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7937         pointer to tail array to avoid extra allocation.
7938         * metadata.c (free_generic_inst): Update to changes.
7939         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7940         on-stack struct.
7942 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7944         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7945         return TRUE if the two type objects are the same.
7947 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7949         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7950         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7951         klass->min_align, since klass->min_align contains the managed alignment,
7952         while the native alignment can be different, like for longs on x86.
7953         Fixes #469135.
7955         * class-internals.h (MonoMarshalType): Add a min_align field.
7957 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7959         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7960         the 1.0 format.
7962 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7964         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7965         some comments about the usage of the used_regs field.
7967         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7968         Fixes #469217.
7970 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7972         * appdomain.c: return NULL instead of throwing FileNotFoundException
7973         when LoadAssembly() fails.
7975 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7977         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7978         image if the owner is NULL.  Fixes the AOT failures.
7980 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7982         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7983         MonoGenericParam structure using memset so the image field is initialized
7984         as well.
7986 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7988         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7989         a plain store.
7991 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7993         * class.c (mono_class_setup_vtable_general): In the generic instance
7994         optimization, set method->slot for abstract virtual methods. Fixes part of
7995         #467834.
7997 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7999         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8000         which signals that the unloading has started but all appdomain services must
8001         remain operational.
8003         * appdomain.c (mono_domain_unload): The initial state for unloading now
8004         is unloading_start and we switch to unloading after the managed call to
8005         AppDomain::DomainUnload has finished.
8007         The new unloading state has to be created because managed code in the
8008         DomainUnload event can depend on things like the threadpool still working.
8009         The domain must remain fully functional while the event executes.
8011         This shown as an issue due to Process::WaitForExit, which waits for
8012         async reads of stdout and stderr to complete. Since those are processed
8013         in the threadpool the code deadlocks because the DomainUnload callback 
8014         waits for the async read finished event, which should have been set by a
8015         threadpool job but has been discarded due to the domain been in unload
8016         state.
8018 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8020         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8021         image must match.
8023 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8025         * reflection.c (resolve_object): For fields, inflate the class and
8026         then get the field in the inflated class.
8028 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8030         * object-internals.h (struct _MonoException): Added a comment
8031         explaining the new use of trace_ips.
8033 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8035         * generic-sharing.c (inflate_other_data): Inflate array methods
8036         correctly.
8038         * loader.c, class-internals.h: Rename search_in_array_class() to
8039         mono_method_search_in_array_class() and make it non-static.
8041 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8043         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8044         Hopefully fixes #458168.
8046 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8048         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8049         as it is performed elsewhere.
8051         Code is contributed under MIT/X11 license
8053 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8055         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8056         requests queued.
8057         * object.c (mono_raise_exception): Increment the exceptions total
8058         counter when an exception is thrown.
8059         * class-internals.h: Add a location for storing the total number of
8060         asp.net requests served.
8061         * mono-perfcounters.c: Implement update support for asp.net counters
8062         from the class libraries. Implement read support for asp.net counters
8063         and exceptions total counter.
8065 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8067         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8068         accessing klass->methods. Fixes #467385.
8070 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8072         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8073         for byval arguments without an [Out] attribute. Fixes #467212.
8075         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8076         Fix compilation under android.
8077         
8078         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8079         processed, scan them directly after they are copied, to achieve better locality
8080         and cache usage.
8082         * socket-io.c: Applied patch from Koushik Dutta
8083         (koush@koushikdutta.com). Disable IPV6 when running under android.
8085 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8087         * icall.c (ves_icall_InternalExecute): Add write barriers.
8089         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8090         the GC code.
8092         * sgen-gc.c: Implement write barriers in IL code.
8094 2009-01-17  Geoff Norton  <gnorton@novell.com>
8096         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8098 2009-01-17  Geoff Norton  <gnorton@novell.com>
8100         * image.c: When unloading the image->references table, there can be gaps
8101         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8102         when unloading an appdomain.
8104 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8106         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8107         speed up ptr-in-nursery checks.
8109         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8110         threads_lock () to prevent deadlocks.
8112         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8113         does not need to be scanned during minor collections, since writes to it
8114         must use write barriers.
8116 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8118         * metadata-verify.c: Add pe nt header verification.
8119         
8120 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8122         * gc.c: Fix a few warnings when using SGEN.
8124 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8126         * metadata-verify.c: Add pe optional header verification.
8128 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8130         * sgen-gc.c: Add support for user defined marker functions, used by
8131         MonoGHashTable to avoid registering a GC root for every hash node.
8133 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8135         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8136         non-pinned roots into separate hashes to avoid having to traverse them
8137         in functions which are only interested in one kind.
8139 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8141         * metadata-verify.c: Add pe header machine field verification.
8142         
8143 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8145         * metadata-verify.c: Add pe header size verification.
8147 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8149         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8150         using the GC, they don't contain references.
8152         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8154 2009-01-13  Geoff Norton  <gnorton@novell.com>
8156         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8157         AppDomains created on the native side can be cleaned up on the native side.
8159 2009-01-13  Geoff Norton  <gnorton@novell.com>
8161         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8162         as well as the managed api.
8164 2009-01-13  Geoff Norton  <gnorton@novell.com>
8166         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8167         with a MonoAppDomain initialized against it.
8169 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8171         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8172         
8173         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8175         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8176         into the wrapper caches. Fixes #465700.
8178         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8179         method builder.
8180         (mono_mb_create_method): Set the clauses from the method builder.
8182 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8184         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8185         Patch from Makoto Kishimoto.
8187 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8189         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8190         encoding them as ROOT_DESC_COMPLEX.
8191         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8193 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8195         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8196         no longer point to the nursery.
8198         * sgen-gc.c: Add a few comments/FIXMEs.
8199         
8200         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8202         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8203         initialization of the various _method variables thread safe. Fixes
8204         #465377.
8206 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8208         * domain.c, domain-internals.h: Remove the shared_generics_hash
8209         and its lookup functions.
8211 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8213         * socket-io.c:  Fixing the MSVC build. 
8215         Code is contributed under MIT/X11 license.
8217 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8219         * metadata-verify.c: Add pe header watermark verification.
8221 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8223         * metadata-verify.c: Add lfanew verification.
8225 2009-01-12  Jb Evain  <jbevain@novell.com>
8227         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8228         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8230 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8232         * socket-io.c: Fix the build.
8234         * environment.c: Fix an #ifdef.
8236 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8238         * threadpool.c (async_invoke_thread): Handle the wait function returning
8239         WAIT_IO_COMPLETION as well.
8240         (async_invoke_io_thread): Ditto.
8242 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8244         * threads.c: Fixing the Windows build.
8246         Code is contributed under MIT/X11 license.
8248 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8250         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8251         interrupt a wait.
8252         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8253         the thread to wait again.
8255 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8257         * metadata-verify.c: Initial skeleton of the metadata verifier.
8259         * pedump.c: Add support for the metadata verifier.
8261         * verify-internal.h: Export the whole assembly metadata verifier function.
8263 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8265         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8267 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8269         * Makefile.am: Upgrade dtrace-prelink.sh location.
8271 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8273         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8274         well. Otherwise the shutdown deadlock that happens on unix will can happen
8275         as well.
8276         If the main thread code finishes too fast it's possible that the finalizer
8277         thread won't have executed yet, won't record itself as the finalizer thread
8278         and the shutdown sequence will wait on it forever.
8280 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8282         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8283         with MSVC.
8285 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8287         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8288         Robert Jordan for pointing this out.
8290 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8292         * icall.c
8293         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8294         ves_icall_System_IO_DriveInfo_GetDriveType.
8296 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8298         * icall.c: Wrap calls to mono_strtod in CriticalSection
8299         invocations when using eglib, to work around #464316.
8301 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8303         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8304         return value of GetCurrentDirectory to never access unitialized memory.
8306 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8308         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8309         return value of GetCurrentDirectory and expand the buffer if needed.
8311         Fixes #459094.
8313 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8315         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8316           Adding a call to mono_init_com_types.
8318         Code is contributed under MIT/X11 license.
8320 2009-01-07  Geoff Norton  <gnorton@novell.com>
8322         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8323         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8324         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8325         be the value of the ip buffer.
8327 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8329         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8330         interfaces_packed here.
8332         Fixes part of #463294.
8334 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8336         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8338         Fixes part of #463294.
8340 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8342         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8343         is a boxed complex as well.
8345         Fixes part of #463294.
8347 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8349         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8350         control if a methodspec should be created for the generic method definition from external assemblies.
8351         Caching of methodspec is done using the handleref hash table.
8353         Fixes #462592.
8355 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8357         * loader.c (find_method): When searching the interfaces of a class
8358         check the transitive closure of implemented interfaces.
8360         Fixes #463303.
8362 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8364         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8365         
8366 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8368         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8369         interfaces calculation to fill_valuetype_array_derived_types.
8371         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8372         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8373         for example.
8375         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8376         interfaces for valuetypes if needed.    
8378         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8379         for their basetype as well. Types are array expanded if rank is > 0.
8381         Fixes #400716.
8383 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8385         * socket-io.h : Changing the signature of
8386           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8387           the blocking state.
8389         * icall-def.h :  Changing the signature of
8390           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8392         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8393           For Windows only.  Avoid blocking when calling accept by
8394           querying for a connection via select.  The loop also queries
8395           the thread state every 1000 micro seconds for the thread
8396           stop state.  This will avoid the process hanging on shutdown
8397           when using a TcpChannel that is never connected to.
8399         Code is contributed under MIT/X11 license.
8401 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8403         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8405 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8407         * class.c (get_implicit_generic_array_interfaces): Extract common
8408         code to a helper function making it a lot easier on the eyes.
8410 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8412         * class.c (get_implicit_generic_array_interfaces): If the internal
8413         enumerator is an interface inflate System.Object instead of itself.
8415         Fixes #461261.
8417 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8419         * object.c (mono_runtime_invoke_array): Don't assert with
8420         byref nullable types.
8422         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8423         byref nullables we unbox the object and store it on the
8424         stack. 
8425         We can't use the boxed object since it is the T of Nullable<T>
8426         and the boxed representation of a nullable it's underlying type
8427         or null.
8428         We could cheat and create a boxed nullable and use the same
8429         machinery of other byref VTs but this feels like a hack and
8430         using the stack has the bonus of reducing heap pressure.
8432         Fixes #461941.
8434 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8436         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8437         return value.
8439         Fixes #461867.
8441 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8443         * icall-def.h : Adding an internal call definition for 
8444           System.Environment.internalBroadcastSettingChange.
8446         * icall.c : Adding a Windows only implementation to broadcast a 
8447           WM_SETTINGCHANGE when an environment variable has changed.
8449         Code is contributed under MIT/X11 license.
8451 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8453         * class.c, class-internals.h: Made
8454         mono_class_has_parent_and_ignore_generics() non-static.
8456 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8458         * image.c: deal with the mmap failing when loading an image.
8460 2008-12-17  Geoff Norton  <gnorton@novell.com>
8462         * threadpool.c: Ensure that the io_queue_lock is initialized
8463         in all circumstances, as we always attempt to cleanup against it.
8465 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8467         * icall.c (ves_icall_System_Environment_get_Platform): For
8468         compatibility reasons for existing client code we will keep
8469         returning 4 for a while.   
8471         For how long will depend on the documentation being updated, and
8472         for us to give client code a chance to be updated.
8474         This reverts the original decison on #433108 since we did not
8475         catch roughly 33 instances of the broken code in our own source
8476         code base, we did not catch failures on the buildbots, and QA did
8477         not bring this as a problem.
8479         Only today I found some customer's code breaking due to our own
8480         class libraries not being fully updated and tracked it down to
8481         this change.  I am reverting it because if we could not even get
8482         our story straight in our own code base, how can we hope that our
8483         end user code be fixed?
8485         As of this morning, our Wiki page that documents how to detect
8486         Unix had not been fixed.    
8488 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8490         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8492         * class.c (mono_class_get_fields): Handle loading errors.
8494 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8496         * 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.
8497         
8498 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8500         * mono-perfcounters.c: avoid warning.
8502 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8504         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8505         make sure all interfaces have MonoClass::interface_id set.
8507         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8508         method table is property set.
8510 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8512         * class.c: New function mono_class_setup_interface_id that setup
8513         MonoClass::interface_id if needed.
8515         * class-internals.h: Export new function.
8517 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8519         * class.c: Add code to sanity check the vtable after setup_vtable_general
8520         has done it's work.
8522 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8524         * icall.c: make Assembly.GetExecutingAssembly work properly when
8525         reflection is used to invoke the method.
8526         Bug #321781 fixed.
8528 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8530         * metadata/generic-sharing.c: Look for constraints in all type
8531         arguments, not just the first one.
8533 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8535         * appdomain.c: return the correct CodeBase for an Assembly instance
8536         that was loaded from the shadow-copy directories.
8537         Bug #458190 fixed.
8539 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8541         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8543         * sgen-gc.c (check_object): New debugging helper function.
8545         * object.c: Fix calls to mono_value_copy_array ().
8547 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8549         * class.c (mono_class_setup_fields): If working on an inflated class
8550         first check if the generic definition did init with success.
8552         Fixes #445361.
8554 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8556         pedump.c (main): Fix a warning.
8558 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8560         * object-internals.h : Adding a definition for 
8561           MonoReflectionComVisibleAttribute.
8563         * marshal.c (cominterop_com_visible) :  Method added to check the 
8564           ComVisible attribute of a class.
8566         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8567           cominterop_raise_hr_exception added to consolidate common code 
8568           to raise hr exceptions.
8570         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8571           if a managed class should support IDispatch.
8573         * marshal.c 
8574           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8575           Added additional checks for managed object when getting 
8576           an IDispatch interface.
8578         Code is contributed under MIT/X11 license.
8580 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8582         pedump.c (main): Handle mono_get_method () returning NULL. 
8584 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8586         * marshal.h: Fix a warning.
8588 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8590         * marshal.c : Adding cominterop_release_all_rcws to release all
8591           runtime callable wrappers held by the runtime.
8593         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8594           
8595         Code is contributed under MIT/X11 license.
8597 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8599         * metadata.c (mono_image_alloc_lock): New helper function.
8600         (mono_image_alloc0_lock): Ditto.
8602         * metadata.c: Use the alloc_lock () helper functions for allocating
8603         memory from the image mempool.
8605 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8607         * class.c (mono_class_from_generic_parameter): Document it's
8608         locking behavior. Fix double checked locking here, we stored in
8609         param->pklass a partially initialized MonoClass and no membar was used.
8611 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8613         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8614         (3) functions are present in the C library use them to do the
8615         job. If they are absent, make sure that the sum of int_part and
8616         dec_part is rounded before returning. This is necessary due to the
8617         division of dec_part by the power of 10 before the final addition
8618         is performed - if the result is not rounded in some cases it will
8619         yield invalid results.
8621 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8623         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8624         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8625         instruction instead of a pointer constant.
8627 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8629         * loader.c (mono_method_get_header): Do most of the work outside the
8630         loader lock, to avoid assembly load hook deadlocks.
8632         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8633         (mono_metadata_parse_type_full): Ditto.
8635 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8637         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8638         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8639         funtions. Finally, use a lock to produce well ordered output.
8641         The lock looks silly, as all calls to the corlib mempool should be guarded
8642         with the loader lock, but for some reason this fact doesn't help. 
8644         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8646 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8648         * socket-io.c: 64 bit big-endian fixes.
8650 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8652         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8653         targets that require strict compatibility between the types.
8655         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8656         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8657         Kill the strict argument and create a new one valuetype_must_be_boxed.
8659         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8660         state that all valuetypes must be boxed.
8662         Fixes #448560.
8664 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8666         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8667         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8669         Contributed under MIT/X11 license.
8671 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8673         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8674         the inflate_generic_type machinery should handle it.
8676         This avoids a crash when the field's flags is zero and it's type is
8677         a primitive.
8678         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8679         is zero and will return one of the cached built-in primitive types. Since
8680         those types live in read-only memory, the code that copies it crashes.  
8682 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8684         * object.c: Don't put function descriptors into generalized IMT
8685         thunks.
8687 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8689         * class.c: Enable generic code sharing on PPC64.
8691 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8693         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8694         from mini/mini.c.
8696         * generic-sharing.c: Allocate the method template slists from the
8697         image mempool so it doesn't leak.
8699 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8701         * class.c (generic_array_methods): Release the linked list.
8703 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8705         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8706         invocation to g_utf16_to_utf8().
8708 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8710         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8711         arguments on big endian archs.
8713 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8715         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8716         the type name (test added in corlib).
8718 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8720         * pedump.c: initialize perf. counters. Fixes a segv.
8722 2008-11-25  Martin Baulig  <martin@ximian.com>
8724         * mono-debug-debugger.c
8725         (mono_debugger_runtime_invoke): Return the exception object if an
8726         exception was thrown.  Visual Studio displays the exception object
8727         in the locals window.
8729 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8731         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8732         ftnptr.
8734 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8736         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8737         MONO_TYPE_U are sizeof (gpointer), too.
8739 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8741         * marshal.c (mono_type_native_stack_size): Fixed size and
8742         alignment for reference types.
8744 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8746         * class.c (mono_class_generic_sharing_enabled): Disable generic
8747         code sharing for PPC64.
8749 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8751         * icall.c (mono_method_get_equivalent_method): Make sure
8752         method->klass->methods is inited before looping over it.
8754 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8756         * object.c: when calling ExecuteAssembly in a newly created domain,
8757         the configuration file and application base are already set up.
8758         Bug #446353 take 2 fixed.
8760 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8762         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8763         Fixes #444715. Fix a warning.
8765 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8767         * appdomain.c: write the full path of the assembly to the .ini file
8768         created when "shadow-copying"
8769         Bug #446353 fixed.
8771 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8773         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8774         if signature==FALSE.
8776 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8778         * marshal.h : Fix the cygwin build.
8779            marshal.c:12442: undefined reference to `_IID_IMarshal'
8780           
8781         Code is contributed under MIT/X11 license.
8783 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8785         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8786           free threaded marshaler when QueryInterface is called on a COM callable
8787           wrapper requesting the IMarshal interface.
8788           
8789         Code is contributed under MIT/X11 license.
8791 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8793         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8795         * reflection.c (mono_type_get_object): Special case the very common
8796         void type.
8798         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8799         hold typeof(void).
8801 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8803         * process.h : Adding method declaration for
8804           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8805           
8806         * process.c : Adding implementation for
8807           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8808           
8809         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8810           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8812         Code is contributed under MIT/X11 license.
8814 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8816         * appdomain.c (unload_thread_main): Clean up threadpool by
8817         calling mono_thread_pool_remove_domain_jobs.
8819         * domain-internals.h (struct _MonoDomain): Add new fields to
8820         help coordinate the cleanup of the threadpool.
8822         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8823         that cleans up the threadpool of all jobs associated with an appdomain.
8824         It does that by cleaning up the queues and making sure all active
8825         threads are accounted.
8827         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8828         unloaded or in the process of. Take this is such way that there is
8829         no race condition between another thread starting the unload and the
8830         current thread acknowledging it.
8832         * threadpool.c (async_invoke_thread): Same.
8834         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8835         firing the new thread.
8837         * threadpool.c (start_tpthread): Same.
8839         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8841         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8843 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8845         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8846         Add support for DuplicateHandle.
8847         
8848         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8849         Add support for DuplicateHandle.
8850         
8851         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8852         Add support for DuplicateHandle.
8854         Code is contributed under MIT/X11 license.
8856 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8858         * class-internals.h: Make min_align into a whole byte.
8860         * class.c: Set min_align for SIMD types to 16.
8862 2008-11-05  Geoff Norton  <gnorton@novell.com>
8864         * attach.c: Default the attacher to enabled for all cases including
8865         embedded.
8867 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8869         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8870         change r117650.
8872 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8874         * monitor.c, monitor.h: New function for querying offsets of
8875         members of MonoThreadsSync.
8877 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8879         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8880         to speed up this function and to avoid the boundless memory growth caused by
8881         the signature_dup () calls.
8883 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8885         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8886         wrapper.
8888         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8889         by 1 bit.
8891         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8893 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8895         * appdomain.c:
8896         * domain-internals.h: made mono_set_private_bin_path_from_config()
8897         "internal".
8898         * object.c: call the above function after setting the configuration
8899         file path for the root domain.
8900         Fixes bug #314478.
8902 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8904         * assembly.c: when the assembly is loaded from an absolute path, end
8905         basedir with a directory separator.
8906         Bug #440781 fixed.
8908 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8910         * monitor.c (mono_monitor_get_fast_enter_method): If
8911         CompareExchange is not available, don't create the fastpath
8912         instead of asserting.  (The method is missing in the 1.1 profile.)
8914 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8916         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8918         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8919         Monitor.Exit IL fastpaths.
8921 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8923         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8925 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8927         * class.c (mono_class_create_from_typedef): Added Vector2l.
8929 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8931         * class.c (mono_class_create_from_typedef): Added Vector2d.
8933 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8935         * appdomain.c: translate \ into / for cache_path.
8936         * domain-internals.h: new mono_is_shadow_copy_enabled().
8937         * icall.c: (fill_reflection_assembly_name) do the same path
8938         manipulations that get_code_base does.
8939         (get_code_base) use mono_is_shadow_copy_enabled.
8941 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8943         * appdomain.c: shadow-copied assemblies go to CachePath +
8944         ApplicationName when both are set. DynamicBase has nothing to do with
8945         shadow copies.
8946         Bug #406877 fixed.
8948 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8950         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8951         STANDALONESIG table.
8953         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8954         standalone signatures.
8956         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8957         comparison code: instead of comparing the signatures using a custom
8958         equals function, transform them to a common signature and compare that. This
8959         works better with AOT.
8961 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8963         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8965         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8966         call for generic instances.
8967         (mono_class_setup_properties): Call setup_properties () before accessing
8968         gklass->properties.
8970         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8971         over the virtual methods of a class using metadata if possible, avoiding the
8972         creation of MonoMethod's for non-virtual methods.
8973         
8974         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8975         get_virtual_methods () to iterate over the virtual methods of classes.
8977 2008-10-25  Martin Baulig  <martin@ximian.com>
8979         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8981 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8983         * class.c (mono_class_create_from_typedef): Added Vector4i.
8985 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8987         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8988         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8989         special-casing applies to eliminate the call completely.
8991 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8993         * class.c (mono_class_create_from_typedef): Added Vector8s.
8995 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8997         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8999 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9001         * icall.c: get rid of annoying warning.
9003 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9005         * threadpool.c: in 1.x, if you change the background status of the
9006         threadpool thread, it's not reset.
9007         Remove unnecessary calls to SetState.
9009 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9011         * threadpool.c: asynchronously create a set of idle threads upon first
9012         use of the threadpool. SetMinThreads will now start the appropriate
9013         number of idle threads if they are not already running. The default is
9014         1 threadpool thread per CPU. Increased the maximum number of threads
9015         per CPU to 10.
9017 2008-10-22  Martin Baulig  <martin@ximian.com>
9019         Revert r116521 from Zoltan, it breaks the debugger:
9021         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9022         over the virtual methods of a class using metadata if possible, avoiding the
9023         creation of MonoMethod's for non-virtual methods.
9024         
9025         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9026         get_virtual_methods () to iterate over the virtual methods of classes.
9028 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9030         * threads.c: when creating a threadpool thread, set its state to
9031         'background'.
9032         * threadpool.c: reset the background state of a threadpool thread
9033         after finishing each work item
9034         Bug #437888 fixed.
9036 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9038         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9039         
9040         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9041         generic instances which works by inflating the methods in the container
9042         class's vtable.
9044         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9045         variant which doesn't make a copy if no inflation was done.
9046         (mono_class_setup_fields): Use it.
9048         * metadata.c (mono_metadata_get_shared_type): New helper function to
9049         return a shared instance of a given MonoType.
9051         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9052         a copy of most non-generic types.
9054 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9056         * threadpool.c: remove one more GetSystemInfo () call.
9058 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9060         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9061         use the code in mono-proclib.h to get processor information.
9063 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9065         * appdomain.c: fixed the logic that determines whether assemblies in a
9066         directory are "shadow-copied" or not. Bug #433483 fixed.
9068 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9070         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9071         warning.
9073 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9075         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9076         returning a vtype.
9078         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9079         reflection.c: Use mono_field_get_name () for accessing a field's name.
9081         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9082         class.c
9084         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9085         field.
9087         * loader.c (find_method_in_class): Reenable the metadata optimization by
9088         not using it for generic instances.
9090         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9091         data/def_type fields from MonoClassField into a separate structure.
9092         (struct MonoClassField): Remove data/def_type fields.
9093         (struct _MonoClass): Add a 'field_def_values' array to store the default
9094         values/RVA for fields.
9096         * class.c reflection.c: Update after the changes.
9097         
9098         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9099         for accessing field->data.
9101         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9103         * loader.c (find_method_in_class): Revert the last change for now as
9104         it breaks Mono.C5 unit tests.
9106         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9107         'field_generic_types' and 'field_objects' which contain the information
9108         previously stored in MonoInflatedField.
9109         (MonoInflatedField): Delete.
9110         (struct _MonoClassField): Delete 'generic_info' field.
9112         * reflection.c: Store the information which was previously in 
9113         field->generic_info in MonoDynamicGenericClass instead.
9115         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9116         MonoClassField changes.
9118 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9120         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9121         store the value inside the data array of the MonoMethodWrapper.
9122         This saves memory, is faster and fixes the lifetime issues (methods
9123         were never removed from the hash previously). May also fix bug#436996.
9125 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9127         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9128         generic instances, compute the type from the generic definition instead of
9129         looking in field->generic_info.
9131         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9132         for inflated fields, the only user was get_fieldref_token () which no
9133         longer needs it.
9135         * class.c (mono_class_init): Revert the last change as it seems to cause
9136         crashes.
9138         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9139         bytes on 64 bit platforms.
9141         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9142         
9143         * object.c (mono_class_create_runtime_vtable): Don't initalize
9144         field->data/field->def_type here, it is done lazily by 
9145         mono_class_get_field_default_value ().
9147         * icall.c (ves_icall_get_enum_info): Call 
9148         mono_class_get_field_default_value () instead of directly accessing
9149         field->data and field->def_type.
9151         * object.c (get_default_field_value): Ditto.
9153         * class.c (mono_field_get_data): Ditto.
9154         
9155         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9156         call for generic instances.
9158         * loader.c (find_method_in_class): If klass != from_class, then inflate
9159         the method with the context of from_class, since the caller assumes this.
9161 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9163         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9164         for accessing method->slot.
9166 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9168         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9170 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9172         * class.c (mono_method_get_vtable_index): Use
9173         mono_method_get_vtable_slot () for accessing method->slot.
9175         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9176         accessing klass->methods.
9178         * class.c (mono_method_get_vtable_slot): New helper function.
9179         (mono_class_get_vtable_entry): Ditto.
9180         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9181         accessing method->slot.
9183         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9184         method to get_inflated_method ().
9186         * class.c (mono_class_get_inflated_method): New helper method to obtain
9187         a method of an inflated class without calling setup_methods ().
9188         (mono_class_get_cctor): Use get_inflated_method.
9190         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9191         
9192         * marshal.c image.c: Lazily create all the marshal caches.
9194         * image.c (mono_image_init): Move initialization of runtime_invoke
9195         caches to marshal.c.
9197         * marshal.c (get_cache): New helper function to lazily initialize a 
9198         wrapper cache.
9199         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9201         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9203 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9205         * loader.c: fixed check for interface type.
9207 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9209         * appdomain.c: check for NULL setup before it's referenced.
9212 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9214         * class.c: remove the unused old vtable setup code.
9216 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9218         * class.c: don't depend on interface order in
9219         setup_interface_offsets (bug #435777).
9220         * reflection.c: sort the InterfaceImpl table (patch from
9221         Jb Evain  <jbevain@novell.com>).
9223 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9225         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9226         the low level assemblies lock.
9228 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9230         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9231         object.c, reflection.c, socket-io.c, threads.c: introduced
9232         mono_framework_version () to return the major framewrok version,
9233         changed the code that was using more complex patterns to use it.
9234         Return the correct value for PlatformID for OSX.
9236 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9238         * icall-def.h, process.h, process.c: added an icall to get info about
9239         processes using mono-proclib.
9241 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9243         * mono-perfcounters.c: use the mono-proclib functions to
9244         access process information.
9246 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9248         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9249         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9250         reflection.c: remove rawbuffer usage: mmap support is more sanely
9251         provided by utils/mono-mmap.
9253 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9255         * gc.c: use posix semaphores when possible so that
9256         mono_gc_finalize_notify() is signal safe.
9258 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9260         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9261         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9262         be #ifdef-ed out, the linker will remove the rest.
9264         * marshal.c: Implement DISABLE_COM.
9266         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9268 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9270         * locales.c (string_invariant_compare_char): Optimization: do not
9271         call g_unichar_type unless we actually need the information.
9273 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9275         * object.c, class-internals.h: Also create remoting trampolines
9276         for generic methods.  Pass the domain to the remoting trampoline
9277         creation function, too.
9279 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9281         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9283 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9285         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9286         Vector4ui.
9288 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9290         * assembly.c:
9291         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9293 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9295         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9296         for the least possible amount of time (extending the fix in r113458).
9298 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9300         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9302 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9304         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9305         as possible simd intrinsic types.
9306         Optimized the test to check for the common prefix first.
9308 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9310         * class.c: back out part of a broken optimization committed on
9311         May 23th (bug #433908).
9313 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9315         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9316         Win32.  Should fix #432388 for most cases until we have the new
9317         profiler on Win32.
9319 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9321         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9322         instead of using inst->id so the hash is stable for AOT.
9324 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9326         * appdomain.c:
9327         * icall.c: create a .ini file for shadow-copied assemblies that
9328         contains the location of the original assembly. Use this to return the
9329         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9330         Also fix the number of '/' for windows when returning the CodeBase.
9331         Fixes bug #430920.
9333 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9335         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9337         Code is contributed under MIT/X11 license.
9339 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9341         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9342           if if the class vtable needs initialized.
9344         Code is contributed under MIT/X11 license.
9346 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9348         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9349           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9350           STRING->BSTR, and CLASS->INTERFACE.
9352         Code is contributed under MIT/X11 license.
9354 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9356         * sysmath.h: changed the declaration of the
9357         ves_icall_System_Math_Round2 icall by adding an extra
9358         away_from_zero parameter.
9360         * sysmath.c (ves_icall_System_Math_Round2): added support for
9361         away from zero rounding. The icall now takes an extra boolean
9362         parameter to signal that away from zero operation is requested.
9364 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9366         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9367         the delegate klass so it can work with full-aot.
9368         (mono_marshal_get_delegate_end_invoke): Ditto.
9369         (mono_marshal_get_delegate_invoke): Ditto.
9371 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9373         * gc.c, attach.h, attach.c: remove a bad pattern:
9374         add_finalizer_callback () is not implemented correctly, it can't
9375         without adding more overhead to the finalizer loop and it's not
9376         even needed, since we know exactly what we need to call, so there is
9377         no need to do so through an expensive function pointer.
9379 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9381         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9382         for the no-gc case.
9383         * attach.c (mono_attach_init): Remove the #ifdef.
9385 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9387         * attach.c (mono_attach_init): Don't use
9388         mono_gc_add_finalizer_thread_callback when compiling without GC.
9389         Fixes #432306.
9390         
9391         Code is contributed under MIT/X11 license.
9393 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9395         * class.c (mono_class_create_from_typedef): Remove the 
9396         #ifndef DISABLE_SIMD stuff.
9398 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9400         * class-internals.h (MonoClass): Added simd_type bit field.
9402         * class.c (mono_class_create_from_typedef): Check if type is a simd
9403         intrinsic.
9405 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9407         * object.c (mono_method_add_generic_virtual_invocation): Only add
9408         instantiations to the thunk whose count is at least as large as
9409         the threshold.
9411 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9413         * icall.c: changed the Type of the exception thrown when trying to
9414         invoke a constructor on an abstract class. Part of the fix for bug
9415         #324185.
9417 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9419         * class.c, class-internals.h (mono_method_get_vtable_index): New
9420         function which returns the index into the vtable and properly
9421         handles inflated virtual generic methods.
9423 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9425         * object.c, domain.c, object-internals.h, domain-internals.h:
9426         Generalize IMT thunk machinery to also handle thunks for virtual
9427         generic method invokes.  When a virtual generic method is invoked
9428         more than a number of times we insert it into the thunk so that it
9429         can be called without lookup in unmanaged code.
9431         * generic-sharing.c, class-internals.h: Fetching a
9432         MonoGenericInst* for a method from an (M)RGCTX.
9434 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9436         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9437         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9438         marshalling. Fixes #431304.
9440 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9442         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9443           handle when ref is specified without In or Out.
9445         Code is contributed under MIT/X11 license.
9447 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9449         * loader.c (mono_get_method_constrained): Don't expand method with
9450         the class's context, because it's already a method of that class.
9452 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9454         * attach.c : should be correct build fix.
9456 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9458         * attach.c: Fix the previous change.
9460 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9462         * attach.c : quick w32 build fix.
9464 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9466         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9467         crashes MonoDevelop: #430455.
9469 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9471         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9472         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9474         * domain.c: Remove initialization/cleanup of the removed fields.
9476 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9478         * class.c (mono_class_generic_sharing_enabled): Enable generic
9479         code sharing for PPC.
9481 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9483         * attach.c : Fixing the Windows builds.
9485         Code is contributed under MIT/X11 license.
9487 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9489         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9490         the default generic sharing mode to 'all'.
9492 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9494         * generic-sharing.c, class-internals.h: New function for checking
9495         whether a method needs a static RGCTX invoke wrapper.  A few
9496         funtions moved from mini/generic-sharing.c.
9498         * icall.c: New function used.
9500 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9502         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9503         Static RGCTX invoke wrapping applies to value type methods, too.
9505         * class.c (mono_class_setup_vtable_general): In generic-shared
9506         value types, wrap methods with a static RGCTX invoke wrapper.
9508 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9510         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9511         osx build.
9513 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9515         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9516         register a callback which is called when the finalizer thread is woken
9517         up.
9518         (finalizer_thread): Call the callback if it exists.
9520         * attach.h attach.c: New files, implementing the attach mechanism.
9522         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9523         
9524         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9525         by the previous change.
9527 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9529         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9530         loader.c, marshal.c, metadata-internals.h, metadata.c,
9531         method-builder.c, object.c, reflection.c: introduced specific functions
9532         to allocate from the domain and image mempools and cleaned up most of
9533         the code to use them (still missing a few in reflection.c).
9534         Keep the loader bytes counter updated.
9536 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9538         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9539         loader-related counters.
9541 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9543         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9544         added more MS-compatible counters.
9546 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9548         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9549         class->blittable. Fixes #428217.
9551 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9553         * reflection.c (mono_image_get_field_on_inst_token): Call 
9554         field_encode_signature () since that handles custom modifiers too.
9555         Fixes #424663.
9557 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9559         * reflection.c (add_custom_modifiers): New helper function to merge custom
9560         modifiers stored in objects to a MonoType.
9561         (fieldref_encode_signature): Encode custom modifiers.
9562         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9563         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9565 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9567         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9568         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9569         64-bit IL only images because imports are not resolved for IL only images.
9570         Special thanks to Bill Holmes for finding this bug and testing the patch.
9571         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9573         Contributed under MIT/X11 license.
9575 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9577         * mono-config.c (dllmap_start): Add support for the bits keyword
9578         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9580 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9582         * reflection.c (inflate_mono_method): When the class the method is
9583         to be inflated for is itself not inflated, just return the method.
9585 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9587         * mono-perfcounters.c: use more user friendly process instance names.
9589 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9591         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9592           handle "[in] ref" and "[in][out] ref" cases.
9594         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9595           to mono_mb_create_method.  This was causing problems calling native to
9596           managed passing Variants by value.
9598         Code is contributed under MIT/X11 license.
9600 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9602         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9603         before accessing the friend_assembly_names field.
9605         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9606         times.
9607         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9608         called lazily when it is needed.
9610         * metadata-internals.h (struct _MonoAssembly): Add 
9611         'friend_assembly_names_inited' flag.
9613 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9615         * mono-perfcounters-def.h: fix the types of a few counters.
9616         * mono-perfcounters.c: implemented the instance names getter
9617         and a few bugfixes.
9619 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9621         * culture-info-table.h : regenerated.
9623 2008-09-17  Robert Jordan  <robertj@gmx.net>
9625         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9626         context bound objects. Fixes #415577.
9628         Code is contributed under MIT/X11 license.
9630 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9632         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9633         implementation (bug #423582).
9635 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9637         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9638         is not set. Fixes #426309.
9640 2008-09-16  Jb Evain  <jbevain@novell.com>
9642         * class.c (mono_class_from_name): fix the exported type look up
9643         when the type is defined in a referenced assembly.
9645 2008-09-16  Jb Evain  <jbevain@novell.com>
9647         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9648         increment the next index counter on each iteration to make that work
9649         for more than one type forwarder. Unmanaged part to fix #422929.
9651 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9653         * object-internals.h: enum ComInterfaceType in
9654         MonoInterfaceTypeAttribute is guint32, not guint16.
9656 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9658         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9659         writing code.
9661 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9663         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9664         not gboolean.
9666 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9668         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9669         Endianness fixes for MonoSymbolFileOffsetTable.
9671 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9673         * process.c (complete_path) : Removing quotes from the 
9674           input path.  The glib file routines do not handle file paths
9675           that have quotes around them.
9677         Code is contributed under MIT/X11 license.
9679 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9681         * socket-io.h : Adding a comment to provide locations where 
9682           changes to MonoSocketAsyncResult need to be synced.
9684         Code is contributed under MIT/X11 license.
9686 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9688         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9689         parameters as well. Fixes #425001.
9691 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9693         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9694         windows build.
9696 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9698         * console-io.c: Add support for tracking the window size if it
9699         changes.
9701         The setup is very simple: the TtySetup function will now return a
9702         pointer to a location in memory that tracks the current console
9703         size.  The managed code checks its current value every time its
9704         queried against the last value set, and updates accordingly.
9706         With this setup we can work with multiple consoles, and we do not
9707         require to poke into managed code from a signal handler.
9709         Additionally, the environment for COLUMNS and LINES is now handled
9710         in unmanaged code.
9712         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9714 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9716         * marshal.c (mono_type_native_stack_size): Treat
9717         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9719 2008-09-04  Jb Evain  <jbevain@novell.com>
9721         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9722         to nullables.
9724 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9726         * verify.c (verify_type_compatibility_full): Revert change
9727         to allow converting a native int to unmanaged pointer be verifiable
9728         under non-strict mode.
9729         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9731         * verify.c: Added some TODOs.
9733 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9735         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9736           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9737           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9739         Code is contributed under MIT/X11 license.
9741 2008-09-02  Jb Evain  <jbevain@novell.com>
9743         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9745 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9747         reflection.c (typebuilder_setup_fields): Handle classes with
9748         explicit size.
9750 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9752         class.c (mono_class_setup_events): Add memory barrier due to
9753         double checked locking.
9754         
9755         class.c (mono_class_setup_properties): Same.
9757 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9759         * class.c (mono_class_is_assignable_from): Fix the build.
9760         
9761         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9762         before accessing klass->interface_bitmap. Fixes #421744.
9764 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9766         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9767         the runtime into no-exec mode, useful when running the AOT compiler.
9769         * appdomain.c gc.c object.c: Avoid executing managed code when running
9770         in no-exec mode.
9771         
9772         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9774         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9775         special case when the mono_assembly_loaded () returns NULL because the 
9776         search hook is not installed.
9778 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9780         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9781         crashes in bstr marshalling on linux.
9783 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9785         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9786         with more than one parameter.
9788 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9790         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9791         start/stop flow control as well when turning off ICANON (allows
9792         C-s and C-q to be read by Console.ReadKey).
9794 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9796         * class.c (mono_class_init): Move the initialization of nested classes
9797         into mono_class_get_nested_types (). Fixes #418433.
9799         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9800         flag.
9802         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9803         iterating tough the nested classes of a class.
9805 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9807         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9808         on arm.
9810 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9812         * console-io.c (sigcont_handler): Support signal chaining for
9813         SIGCONT.
9815         (console_set_signal_handlers): Use best practices with sigaction,
9816         clear the structure before using it. 
9818 2008-08-22  Robert Jordan  <robertj@gmx.net>
9820         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9821         Fix the Windows build.
9823 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9825         * class.c (mono_class_generic_sharing_enabled): Make the default
9826         sharing mode 'corlib'.
9828 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9830         * console-io.c (console_set_signal_handlers): Fix a warning.
9832         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9833         method normally, the JIT will take care of avoiding recursion.
9835 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9837         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9839         Code is contributed under MIT/X11 license.
9841 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9843         * console-io.c (sigcont_handler): We need to restore the entire
9844         termios state, not only the original settings, as things like echo
9845         can be controlled after this (Booish exposes this issue with its
9846         own ReadLine implementation).
9848         Additionally, we need to set the terminal back into keypad_xmit
9849         mode.
9850         
9851         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9852         string as a paramter as well.   Otherwise we get different
9853         keyboard sequences.
9855 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9857         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9858         delegates with byref out parameter passing. Fixes #351520.
9860         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9861         a generic context.
9862         (mono_type_get_desc): Add the type arguments for GENERICINST.
9863         (mono_method_full_name): Stringify the class name using mono_type_full_name
9864         so it picks up generic arguments.
9866 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9868         * console-io.c: Removed debug output.
9870 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9872         reflection.c (mono_reflection_create_runtime_class): Alloc
9873         the nested classes linked list using the dynamic image mempool.
9874         Fixes leak in corlib compilation.
9876 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9878         * console-io.c: Fix incredibly annoying behavior on the console
9879         after resuming execution after control-z.   This affected every
9880         console application.
9882 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9884         * mempool-internals.h: Header for mono private mempool functions. The first
9885         two function are for allocating glib linked lists using pools.
9887         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9889         * Makefile.am: Added mempool-internals.h.
9891 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9893         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9894         (mono_domain_free): Ditto.
9896         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9897         be used by the JIT to store its domain-specific information, instead of putting
9898         it directly into MonoDomain.
9900         * domain.c (mono_install_create_domain_hook): New helper function to install
9901         a hook which initializes domain->runtime_info.
9903         * domain.c (mono_install_free_domain_hook): Ditto.
9904         
9905 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9907         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9908         asserting if the ares parameter is null.
9910         * mono-perfcounters.c: Fix warnings.
9912         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9913         is not needed, don't check for interruptions either.
9914         (mono_marshal_get_delegate_end_invoke): Ditto.
9916 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9918         * mono-perfcounters.c (predef_readonly_counter): added support for
9919         reading the ASP.NET Requests Queued counter from another process.
9921 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9923         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9924         MonoImage to simplify the AOT code.
9926 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9928         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9929         marshalling. Fixes #416078.
9931 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9932         
9933         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9934         it is set, looking up the icall address is deferred to the JIT, since 
9935         in embedded scenarios, the icall might not be registered in the runtime
9936         doing the AOT compilation. Backported from the 2.0 branch.
9938 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9940         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9941         Fixes #415621.
9943 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9945         * Makefile.am: added support for cross-compilation.
9947 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9949         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9951 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9953         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9955 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9957         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9958         mono-perfcounters.c: performance counters implementation.
9960 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9962         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9963         to gpointer, letting the AOT code decide what to store in it.
9965 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9967         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9968           mono_class_setup_methods if the methods are not initialized.
9970         Code is contributed under MIT/X11 license.
9972 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9974         * verify.c: Remove some debug code I commited by accident.
9976         * verify.c (mono_method_is_valid_in_context): Change the return value
9977         to make possible to distinguish between invalid and unverifiable.
9979         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9980         methods.
9982 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9984         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9985         constraints. Fixes regression in gtest-253.
9987 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9989         * verify.c (mono_verifier_verify_class): Don't allow generic types
9990         with explicit layout.
9992         * verify.c (mono_method_verify): Check locals and argument types.
9994 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9996         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9997         wait if the thread is in StopRequested state.
9999         * class.c (mono_class_from_name): Refactor the module searching code into
10000         a separate function so it can be reused in the AOT case too.
10002 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10004         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10005         Check both the type and it's generic type definition for loader errors.
10006         
10007         * verify.c (mono_method_is_valid_in_context): Don't generate another
10008         error when a type errors occur, this leads to the wrong exception been
10009         thrown.
10011 2008-07-28  Dick Porter  <dick@ximian.com>
10013         * icall-def.h
10014         * process.c
10015         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10016         New internal calls to duplicate and close a process handle.
10018 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10020         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10022 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10024         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10026 2008-07-27  Robert Jordan  <robertj@gmx.net>
10028         * class.c (mono_class_init): Don't compute class.has_finalize for
10029         valuetypes. Fixes #412477.
10031 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10033         * verify.c: Implement constraint equivalence checking.
10034         This is required when a generic parameter is used as
10035         argument to a constrained one.
10037         Fixes #410637.
10039 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10041         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10043         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10045         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10046         synch with managed object layout.
10048 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10050         * verify.c (do_branch_op): Handle valuetypes and generic
10051         arguments properly.
10053         * verify.c (do_cmp_op): Same.
10055         Fixes #410383.
10057 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10059         * generic-sharing.c: Fix memory leaks.
10061         * class.c, class-internals.h: Make
10062         mono_class_inflate_generic_type_with_mempool() non-static.
10064 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10066         * pedump.c (dump_verify_info): Dump full class name.
10068 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10070         * generic-sharing.c: Removed some old code that didn't do anything.
10072 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10073         * profiler.c: Added runtime_initialized_event,
10074         mono_profiler_install_runtime_initialized and
10075         mono_profiler_runtime_initialized. This new hook tells the profiler
10076         when the runtime is sufficiently initialized to be able to call
10077         mono_thread_attach on the root appdomain.
10078         * profiler.h, profiler-private.h: Likewise.
10080 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10082         * verify.c (do_cast): Do boxing for generic arguments as well.
10084         * class.c (is_nesting_type): Drop generic instantiations before
10085         checking for nesting.
10087         * class.c (can_access_instantiation): Allow access to generic
10088         arguments.
10090 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10092         * verify.c (verify_class_for_overlapping_reference_fields):
10093         On some cases, the field size might be zero, guard against that.
10094         Fix the explicit layout check to work as expected.
10096 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10098         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10099         mono_thread_resume () during shutdown, since the thread we want to abort
10100         might be suspended.
10102 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10104         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10105         warning.
10107         * debug-mono-symfile.c: Fix a warning.
10109         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10111         * object.c (mono_class_vtable): Check if exception_type is set, and return
10112         NULL as defined by the function comments.
10114 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10116         * mempool.c: Use malloc for every single mempool allocation if the
10117         configure option is set.  This makes it easier to track mempool
10118         allocations with tools like Valgrind.
10120 2008-07-22  Jb Evain  <jbevain@novell.com>
10122         * reflection.c (create_dynamic_mono_image): emit the same
10123         metadata version that SL2 does when creating a SL2 image.
10125 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10127         * icall-def.h:
10128         * icall.c: New icall System.Enum:get_hashcode. This function
10129         avoids the overhead of boxing the enum to the underlying type.
10131 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10133         * reflection.c (mono_method_get_object): Don't let static RGCTX
10134         invoke wrappers get into MonoReflectionMethods.
10136 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10138         * object-internals.h:
10139         * object.c: New mono_runtime_class_init_full function
10140         that makes throwing the exception optinal.
10142         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10143         for the case where the exception object is supplied.
10145 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10147         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10148         old ld versions.
10150         Contributed under MIT/X11 license.
10152 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10154         * string-icalls.c (ves_icall_System_String_InternalSplit):
10155         Optimize array allocation by caching the MonoClass of the
10156         array type.
10158         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10160         * reflection.c (mono_param_get_objects): Same.
10162 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10164         * icall-def.h:
10165         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10166         It inflates the given type using the class context.
10168 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10170         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10171         the vtable if it already exists.
10173         * object-internals.h: Add mono_class_try_get_vtable as part of the
10174         internal API.
10176         * reflection.c (mono_type_get_object): Use the MonoObject from the
10177         vtable when possible. Reduces locking contention on reflection heavy
10178         code.
10180 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10182         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10183         g_bit_nth_msf () since that macro is not implemented in eglib.
10185 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10187         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10188         on platforms which do not support it.
10190 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10192         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10194 2008-07-11  Martin Baulig  <martin@ximian.com>
10196         * mono-debug-debugger.h
10197         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10199         * mono-debug-debugger.c
10200         (_mono_debugger_interruption_request): New global volatile variable.
10201         (mono_debugger_check_interruption): New public function.
10203         * threads.c
10204         (mono_thread_current_check_pending_interrupt): Call
10205         mono_debugger_check_interruption().
10206         (mono_thread_interruption_checkpoint_request): Likewise.
10208 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10210         * verify.c: Add more type checks for loaded types. Verify the result
10211         handle from ldtoken.
10213 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10215         * loader.c (field_from_memberref): Don't crash if the field
10216         wasn't found.
10218 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10220         * verify.c: Verify if type and method instantiations
10221         don't have invalid VAR or MVAR arguments.
10223 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10225         * verify.c: Fix double free of function pointer list.
10227 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10229         * object.c (mono_string_to_utf8): Comment the new code as it
10230         breaks under eglib.
10232 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10234         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10236 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10238         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10239           is not throw too many times.
10241         Code is contributed under MIT/X11 license.
10243 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10245         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10246         debugging is turned off.
10248 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10250         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10252 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10254         * class-internals.h, class.c: Added new generic sharing option:
10255         Share only stuff in System.Collections.Generic, which is now the
10256         default.
10258 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10260         * generic-sharing.c, class-internals.h: New function for getting a
10261         generic method in a generic class given the corresponding method
10262         for a different instantiation of the class.  Partly refactored
10263         from mini-trampolines.c.
10265         * class.c: Make sure generic methods have a class_inst if they are
10266         part of a generic class.
10268         * metadata.c (mono_type_stack_size_internal): Handle type
10269         variables.
10271 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10273         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10274         Signifies whether information on the this/vtable/mrgctx variable
10275         is available.
10277 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10279         * object.c, object-internals.h, icall.c: New function
10280         mono_delegate_ctor_with_method(), which does the same as
10281         mono_delegate_ctor(), but takes an explicit method argument
10282         instead of taking the method from the jit info.
10284         * marshal.c: When creating a delegate with an inflated method take
10285         the "this" argument as the target class for the castclass.
10287 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10289         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10290         mono_jit_info_table_find() to perform very badly in some cases.
10292 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10294         * icall.c (type_from_typename): Handle 'string'.
10296         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10297         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10299 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10301         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10303         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10304         number of available managed allocator types.
10306         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10307         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10309 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10311         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10312         which is a low level lock protecting just the 'jit_code_hash' hash table.
10314         * domain.c: Initialize+cleanup jit_code_hash_lock.
10315         
10316 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10318         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10319         after initialization.
10321         * coree.h: Make MonoFixupExe internal.
10323         Contributed under MIT/X11 license.
10325 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10327         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10328         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10329         as well.
10330         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10331         image being loaded is a CLI image and _CorValidateImage gets called.
10333         * coree.h: Add MonoLoadImage.
10335         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10336         instead of LoadLibrary.
10338         Contributed under MIT/X11 license.
10340 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10342         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10343         for any primitive type.
10345 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10347         * object.c (mono_array_new_specific): Optimize this and the other allocation
10348         functions a bit.
10349         
10350         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10351         domains too if mono_dont_free_domains is set.
10353         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10354         whenever to free appdomain data after it has been unloaded.
10356         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10357         
10358 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10360         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10361         (mono_method_get_equivalent_method): Fix a warning.
10363         * object.c (mono_message_init): Avoid looking up array types for each call.
10365 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10367         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10368         call.
10370         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10371         even more.
10373         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10374         each iteration.
10376         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10377         fields of an enum.
10379 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10381         * object.c (mono_value_box): Fix boxing of nullables.
10383 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10385         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10386         mono_module_handle that is defined by the linker; no initialization required.
10387         * coree.h: Remove mono_module_handle, add __ImageBase, update
10388         mono_image_open_from_module_handle.
10389         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10390         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10391         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10392         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10393         to 4 GB away from image base address. IA64 version is not tested but was very
10394         easy to implement and should work if we ever need it.
10395         * domain.c (mono_init_internal): Avoid system error message boxes.
10396         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10397         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10398         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10399         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10400         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10402         Contributed under MIT/X11 license.
10404 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10406         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10407         as part of the private mono API.
10408         
10409         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10410         Do proper argument checking for methods that belong to generic classes.
10411         Do proper type resolution for GMFH/2.
10412         Fixes #377324.
10413         
10414 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10416         * verify.c (do_switch): Fix a memory corruption bug with
10417         the jump index is out of bound.
10419 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10421         * verify.c: Disable debug code.
10423 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10425         * reflection.c (mono_image_get_methodbuilder_token): Use
10426         mono_image_get_methodspec_token_for_generic_method_definition
10427         instead of mono_image_get_memberref_token. We cache more memberef
10428         entries now.
10430 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10432         * verify.c: Inflate exception clause types.
10433         Fixes #402606.
10434         
10435 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10437         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10438         name.
10440         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10442         * reflection.c (mono_image_create_method_token): Same.
10444 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10446         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10447         It does the same as mono_image_get_methodref_token but works on
10448         MethodBuilder.
10450         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10451         and always generate a methodspec. This follows the old behavior and fixes
10452         the regressions in System.Core. 
10454 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10456         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10457         don't event mono_class_get () succeeds. Fixes #402182.
10459 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10461         * metadata-internals.h: Added MonoDynamicImage::methodspec
10462         hashtable to store methodspec tokens created for MethodBuilders.
10464         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10465         MethodBuilders as open instantiations if a methodspec was requested.
10467         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10469         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10471         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10473         Fixes bug #349190.
10475 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10477         * loader.c (method_from_methodspec): Avoid crashing if the
10478         method lookup fails.
10480 2008-06-20  Dick Porter  <dick@ximian.com>
10482         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10483         classes being in a different assembly.  Fixes bug 399184.
10485 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10487         * loader.c (mono_loader_init): Make this callable multiple times.
10488         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10489         the runtime is initialized. Fixes #401755.
10491 2008-06-19  Dick Porter  <dick@ximian.com>
10493         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10494         Fixes bug 349688.
10496 2008-06-19  Dick Porter  <dick@ximian.com>
10498         * socket-io.c:
10499         * icall-def.h: Implement Socket generic Send() and Receive()
10500         methods.  Fixes bug 395168.
10502 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10504         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10506         Contributed under MIT/X11 license.
10508 2008-06-18  Martin Baulig  <martin@ximian.com>
10510         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10511         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10512         set to 80.0.  The debugger <-> runtime interface is now frozen as
10513         well.   
10515         * mono-debug.c
10516         (mono_debug_debugger_version): Bump to 4.
10518 2008-06-18  Martin Baulig  <martin@ximian.com>
10520         * debug-mono-symfile.c
10521         (load_symfile): Don't check the minor version.
10523         * debug-mono-symfile.h: Bump the version number to 50.0.
10525 2008-06-18  Martin Baulig  <martin@ximian.com>
10527         * debug-mono-symfile.c
10528         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10529         minimum required version.
10531 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10533         * reflection.c (mono_custom_attrs_from_property): Fix support for
10534         retriveving cattrs of dynamic inflated generic types.
10536         * reflection.c (mono_custom_attrs_from_event): Same.
10538         * reflection.c (mono_custom_attrs_from_field): Same;
10540         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10542         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10543         Moved to metadata.c.
10545         * metadata.c: New functions to retrive the equivalent field, event
10546         of property from the generic type definition.
10548         * metadata-internals.h: Added new functions from metadata.c.
10550 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10552         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10553         to cached in a mempool is used.
10555         * metadata.c (free_generic_class): In some situations field generic_info type
10556         is not properly dup'ed and leads to double free'ing.
10558         Fixes #400643.
10560 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10562         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10563         this arguments (will be needed later for generic methods).
10564         Collect stats.
10566 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10568         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10569         Create a static RGCTX invoke wrapper for methods which require it.
10571 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10573         * object.c, class-internals.h: New function for checking whether
10574         an individual field is special static.
10576 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10578         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10579         linear search since the table is sorted.
10581         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10582         Fixes #324180.
10584 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10586         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10587         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10589         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10591         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10592         
10593         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10594         InterlockedCompareExchange to query and modify 
10595         thread->interruption_requested.
10597         * object-internals.h (struct _MonoThread): Change interruption_requested
10598         to a gint32 so it can be modified by atomic operations. Add 
10599         'critical_region_level' from the managed side, change small_id to a guint32,
10600         add new set of 'unused' fields.
10602         * appdomain.c: Bump corlib version.
10604 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10606         * class.c (mono_class_from_name): Search modules as well. Fixes
10607         #322332.
10609 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10611         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10612         templates.  Templates are generalized with an additional type_argc
10613         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10614         have type_argc>0.
10616         * domain-internals.h, domain.c: New hash table for looking up
10617         MRGCTXs.
10619         * metadata.c, metadata-internals.h: Rename hash and equal
10620         functions for MonoGenericInst's and make them public.
10622         * class-internals.h: New data structures for the MRGCTX.  Macros
10623         for distinguishing slots in the RGCTX and the MRGCTX.
10625 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10627         * object.c (mono_method_get_imt_slot): Put the same methods of
10628         different instantiations of the same generic interface in the same
10629         IMT slots, to make generic sharing simpler.
10631 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10633         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10635         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10636         This function works just like mono_metadata_field_info, but
10637         accept a mempool as argument to be used allocating memory.
10639         * marshal.c (mono_marshal_load_type_info): Use new function
10640         to load marshal data into image mempool.
10642 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10644         * class.c (mono_class_inflate_generic_type_with_mempool):
10645         This function allows to inflate a generic type using
10646         a mempool.
10648         * class.c (inflate_generic_type): Take a mempool as argument
10649         and use it to do type dup'ing.
10651         * class.c (mono_class_setup_fields): Field type for generic
10652         generic classes are allocated from the image mempool.
10654         * metadata.c (free_generic_class): Inflated field type is
10655         now allocated in the image mempool.
10657 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10659         * threads.c (thread_cleanup): Free MonoThread::name.
10661 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10663         * appdomain.c (ensure_directory_exists): avoid unnecessary
10664         mkdir(2) calls when the shadow directory already exists.
10665         (mono_make_shadow_copy): copy also satellite assemblies from the
10666         private bin directories.
10668 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10670         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10671         
10672         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10673         a page boundary. Fixes #396219.
10675 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10677         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10678         due to double-checked locking.
10680 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10682         * assembly.c (build_assembly_name): Release memory on failure.
10684         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10686 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10688         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10689         memory on failure.
10691 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10693         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10694         memory on failure.
10696 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10698         * loader.c (field_from_memberref): Check if field signature type is equal
10699         to the non-inflated type of the field. Fixes #398980.
10701 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10703         * assembly.c (mono_assembly_load_from_full): Call 
10704         mono_assembly_load_friends () outside the assemblies lock, since it can
10705         acquire the loader lock. Fixes #323696.
10707         * reflection.c (resolve_object): Inflate the inst with the context for
10708         FieldOnTypeBuilderInst. Fixes #399010.
10710 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10712         * reflection.c (mono_image_get_field_on_inst_token): Don't
10713         inflate the field to encode it's signature. If it's a
10714         VAR or MVAR it should stay that way in the signature.
10715         Fixes #399047.
10717 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10719         * reflection.c (resolve_object): Release memory of inflated types.
10721 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10723         * loader.c (mono_method_get_signature_full): Remove assert about
10724         loading a methodspec to a generic method. We have such methods, such as
10725         System.Threading.Interlocked::CompareExchange<T>.
10726         This assert was removed since it crashes the verifier when it checks
10727         methods calling CompareExchange<T>.
10729 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10731         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10732         of Type array and not MonoType.
10734 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10736         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10737         <lupus@ximian.com>
10739 2008-06-10  Martin Baulig  <martin@ximian.com>
10741         * debug-mono-symfile.h
10742         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10743         changes to the file format, but we were generating incorrect
10744         source file indices in the line number table due to a bug, which
10745         made backtraces report an incorrect source file.
10747 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10749         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10750         mini/debug-mini.c to here.
10752         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10754         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10755         use it to release structs returned by mono_debug_find_method.
10757 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10759         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10760         since it needs to set method->slot for all interface methods.
10762 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10764         * class-internals.h: Forgot to add.
10766 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10768         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10770         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10771         Lookup the custom attributes from property_hash.
10773         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10774         in property_hash. Allocate all data using the image mempool.
10776         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10777         for dynamic_custom_attrs to checks if the image is dynamic.
10779 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10781         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10782         assemblies array.
10783         
10784         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10785         runtime functions while holding the domain assemblies lock.
10787 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10789         * verify.c: Reapplied the last bit of the reverted changes.
10791 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10793         * verify.c: Reapplied more of the reverted changes.
10795 2008-06-09  Martin Baulig  <martin@ximian.com>
10797         * debug-mono-symfile.c (load_symfile): Check the major version
10798         first; if it's wrong, don't print the minor version in the error message.
10800 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10802         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10803         lock instead of the domain lock to avoid deadlocks, since the thread might
10804         already hold the loader lock.
10806         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10807         (mono_thread_attach): Ditto.
10809         * monitor.c: Use a TLS variable for holding the current thread id instead
10810         of calling pthread_self ().
10811         (mono_monitor_init_tls): New internal function to initialize the TLS
10812         variable.
10813         (mono_monitor_try_enter_internal): Put the owner == id check after the
10814         owner == 0 check.
10816         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10817         missed optimizations when using gcc-4.3.
10819 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10821         * reflection.c (mono_dynamic_image_free): Free the memory
10822         used by MonoGenericParam in MonoDynamicImage::gen_param.
10824         * reflection.c (mono_reflection_setup_generic_class): Allocate
10825         container from mempool.
10827         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10828         container from mempool.
10830 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10832         * threads.c (mono_set_pending_exception): New internal function to set the
10833         pending exception of the current thread.
10834         (mono_thread_get_and_clear_pending_exception): Check for 
10835         thread->pending_exception as well.
10837         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10839         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10840         it can trigger a collection.
10842 2008-06-06  Martin Baulig  <martin@ximian.com>
10844         Merged the `debugger-kahalo' branch.
10846         * mono-debug.h
10847         (MONO_DEBUGGER_VERSION): Bumped to 72.
10849         * debug-mono-symfile.h
10850         (MonoSymbolFileMethodIndexEntry): Removed.
10851         (MonoSymbolFileMethodEntry): New public typedef.
10852         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10853         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10854         `data_offset'.
10855         (MonoSymbolFileMethodEntry): Removed.
10856         (MonoSymbolFileLexicalBlockEntry): Removed.
10857         (MonoSymbolFileLineNumberEntry): Removed.
10858         (MonoDebugLexicalBlockEntry): Removed.
10859         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10860         removed `num_il_offsets' and `il_offsets'.
10861         (MonoSymbolFile): Replace `version' with `major_version' and
10862         `minor_version'.
10863         (MONO_SYMBOL_FILE_VERSION): Replace with
10864         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10865         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10867         * debug-mono-symfile.c
10868         (mono_debug_symfile_lookup_location): Add support for the new line
10869         number table format.
10871 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10873         * metadata.c (free_generic_class): Release the inflated
10874         MonoClass of dynamic generic classes if it's not a generic
10875         type definition.
10877 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10879         * verify.c: Reapplied more of the reverted changes.
10881 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10883         * reflection.c (lookup_custom_attr): Clean the cached flag or
10884         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10885         for SRE types.
10887 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10889         * verify.c: Reapplied a small part of the reverted changes.
10891 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10893         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10895         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10896         previously in managed code.
10897         (mono_monitor_exit): Ditto.
10898         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10900         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10901         the managed definition.
10903 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10905         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10907 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10909         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10910         
10911         * monitor.c: Add some micro optimizations.
10913         * icall.c (type_from_typename): Handle 'bool'.
10915 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10917         * verify.c: Implement constructor verification per P III 1.8.1.4.
10918         Fixes #396716.
10920 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10922         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10923         holding the assemblies lock here too.
10925 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10927         * verify.c: Kill stack_top function.
10929 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10931         * verify.c: Kill stack_get function.
10933 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10935         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10937 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10939         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10940         more reliable.
10942         * verify.c (mono_method_verify): Inflate params and locals to avoid
10943         mismatch when checking for compatibility.
10945 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10947         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10948         Length prefix should be size in bytes. Fix bug #339530.
10949         
10950         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10951         Length prefix should be size in bytes. Fix bug #339530.
10953         Code is contributed under MIT/X11 license.
10955 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10957         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10959         Contributed under MIT/X11 license.
10961 2008-06-05  Martin Baulig  <martin@ximian.com>
10963         * mono-debug-debugger.c
10964         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10966 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10968         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10969         while holding the assemblies lock to prevent deadlocks. Handle the case
10970         where the search hook returns NULL but the assembly was still loaded.
10971         Fixes #323696.
10973         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10974         modify domain state.
10976 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10978         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10979         * Makefile.am (pedump_LDADD): Post-process object files and
10980         add dtrace-generated object file, if necessary.
10982         Code is contributed under MIT/X11 license.
10984 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10986         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10988 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10990         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10992 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10994         * threads.c: Try to free everything from the delayed free table
10995         when shutting down threads, and set the variable to NULL after the
10996         table is freed so that calling
10997         mono_thread_hazardous_try_free_all() when shutting down the root
10998         domain doesn't crash.
11000 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11002         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11003         the caller if resulting type was inflated.
11005         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11006         was inflated.
11008         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11011 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11013         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11014         class library tests.
11016         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11017         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11018         #396989.
11020 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11022         * domain.c, domain-internals.h: The JIT infos are now freed by the
11023         JIT info table code.  They are freed immediately if there only a
11024         single JIT info table in circulation.  If there is more, the free
11025         is delayed via a queue.
11027         * threads.c, threads-types.h: New hazard pointer function for
11028         freeing all freeable delayed items in one sitting.
11030 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11032         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11034         * reflection.c (typebuilder_setup_properties): Same.
11036         * reflection.c (typebuilder_setup_events): Same.
11038 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11040         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11041         and use it for allocating memory.
11043         * reflection.c (mono_marshal_spec_from_builder): Same.
11045         * reflection.c: Change code to use new signatures.
11047         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11049 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11051         * decimal.c (rescale128): Put back one line which was accidently commented
11052         out.
11053         
11054         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11055         to cause crashes.
11057 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11059         * reflection.c (mono_reflection_generic_class_initialize): Name must
11060         be always malloc'ed so we can free it later on. Do this for field, property
11061         and event.
11063         * metadata.c (free_generic_class): Free field, property and event names.
11065 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11067         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11068         instead of g_memdup.
11070         * reflection.c (typebuilder_setup_fields): Same.
11072 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11074         * decimal.c (rescale128): Optimize this function a bit more.
11076 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11078         * metadata.c (free_generic_class): Release some memory from
11079         SRE generic classes.
11081 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11083         * reflection.c (mono_image_get_generic_field_token): No reference
11084         to name is kept, free it.
11086         * reflection.c (mono_reflection_generic_class_initialize): Free
11087         more memory of the inflated field.
11089 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11091         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11092         code.
11094 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11096         * reflection.c (mono_dynamic_image_free): Release memory used by
11097         MonoDynamicImage::array_methods elements.
11099         * reflection.c (assembly_add_win32_resources): Release memory after
11100         encoding.
11102 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11104         * decimal.c (log2_32): Use an optimized version for this function too.
11105         
11106         * decimal.c (log2_64): Fix this on 32 bit machines.
11108 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11110         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11112         * class.c (mono_metadata_signature_deep_dup): Same.
11114         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11115         a mempool.
11117         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11119         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11121         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11123         * class-internals.h: Update signatures to take a MonoMemPool.
11125 2008-06-02  Dick Porter  <dick@ximian.com>
11127         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11128         * icall-def.h: Add
11129         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11130         FormatMessage API to get the error text.  Fixes bug 321827.
11132 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11134         * decimal.c: Add some micro optimizations to make decimal operations faster.
11136 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11138         * reflection.c (method_encode_clauses): Take a mempool
11139         as parameter and use it to allocate the clause array.
11141         * reflection.c (mono_image_get_field_on_inst_token): Free
11142         the inflated type after encoding it.
11144         * reflection.c (mono_dynamic_image_free): Free each element
11145         of MonoDynamicImage::gen_params.
11147         * reflection.c (reflection_methodbuilder_to_mono_method):
11148         Allocate the generic param array from the mempool.
11149         Allocate signature params from the mempool.
11151         * reflection.c (mono_reflection_generic_class_initialize):
11152         Free inflated fields after been used.
11154 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11156         * icall.c: Reapply the memory leak fixes as they no
11157         longer make mono crash.
11159 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11161         * reflection.c (mono_type_get_object): Don't store the suplied
11162         MonoType with type_hash. A caller which pass a type that
11163         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11164         might end with a pointer to freed memory.
11165         The solution is to use byval_arg or this_arg from the associated
11166         MonoClass of the supplied type.
11168 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11170         * icall.c: Revert the rest of the last change as it breaks the build too.
11172 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11174         * icall.c: Revert a leak fix as it's breaking the build.
11176 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11178         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11180 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11182         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11184 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11186         * icall.c: Fix some memory leaks.
11188 2008-05-29  Dick Porter  <dick@ximian.com>
11190         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11191         async socket operations from the pending list when a socket
11192         closes.  Leaving it until the threadpool services the event
11193         exposes a race condition when a socket descriptor is reused.
11194         Fixes bug 377589.
11196 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11198         * object.c: Fix negative index check for array alocation.
11200 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11202         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11203         This check is performed by the verifier for IL created delegates
11204         and by Delegate::CreateDelegate for programatically created ones.
11205         Fixes #372406.
11207 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11209         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11210         Fix code to use mono_array_size_t instead of int.
11212         Based on patch by Luis F. Ortiz.
11213         Contributed under X11 license.
11214         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11216 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11218         * icall.c: Added ves_icall_System_Array_GetLongLength and
11219         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11220         arrays.
11222         * icall.h: Export both new functions.
11224         Based on patch by Luis F. Ortiz.
11225         Contributed under X11 license.
11226         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11228 2008-05-28  Martin Baulig  <martin@ximian.com>
11230         The debugger now requires exactly r103463.
11232         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11233         This version is not supported by the debugger, wait for 72.
11235 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11237         * object.h: Changed array related functions to use
11238         mono_array_size_t instead of guint32. Forgot to commit this file.
11240         Patch by Luis F. Ortiz.
11241         Contributed under X11 license.
11242         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11245 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11247         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11248         don't define it. Use the number literal instead.
11250 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11252         * icall.c: Changed array related functions to use
11253         mono_array_size_t instead of guint32.
11255         * icall.c (ves_icall_System_Array_GetLength): Check for length
11256         overflow under MONO_BIG_ARRAYS.
11258         Based on patch by Luis F. Ortiz.
11259         Contributed under X11 license.
11260         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11262 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11264         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11266         Based on patch by Luis F. Ortiz.
11267         Contributed under X11 license.
11268         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11270 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11272         * object.c, object.h: Changed array related functions to use
11273         mono_array_size_t instead of guint32.
11275         Patch by Luis F. Ortiz.
11276         Contributed under X11 license.
11277         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11279 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11281         * object.h: Introduced mono_array_size_t typedef. This must be used
11282         in all places an array length is expected. This is 64bits wide if
11283         MONO_BIG_ARRAYS is enabled.
11285         Patch by Luis F. Ortiz.
11286         Contributed under X11 license.
11287         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11289 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11291         * security-manager.c class.c: Set the class exception info by calling
11292         mono_class_set_failure ().
11294         * class.c (mono_class_get_exception_data): New accessor function.
11295         (mono_class_set_failure): Store exception_data in the property hash.
11297         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11298         the struct as a property.
11300         * loader.c (mono_get_method_full): Store the lookup result for method
11301         tokens in method_cache, the others in methodref_cache to decrease the memory
11302         usage of hash tables.
11304         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11305         (mono_image_init): method_cache is lazy inited now.
11307         * metadata-internals.h (struct _MonoImage): Change method_cache to
11308         a MonoValueHashTable, add a separate methodref_cache.
11310 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11312         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11313           Double.ToString as exposed by Bug #383531.
11315 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11317         * number-formatter.h: Make some tables static.
11319         * class.c (mono_method_set_generic_container): New accessor function.
11320         (mono_method_get_generic_container): Ditto.
11322         * class-internals.h (struct _MonoMethod): Remove rarely used 
11323         'generic_container' field, store it in the property hash instead. Add 
11324         'is_generic' boolean field instead.
11326         * image.c (mono_image_init): Initialize property_hash.
11327         (mono_image_close): Destroy property_hash.
11329         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11330         hold rarely used fields of runtime structures belonging to this image.
11332         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11333         to get/set method->generic_container.
11335         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11336         generic methods.
11338 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11340         * class.c (mono_class_inflate_generic_method_full): Don't increase
11341         mono_stats.inflated_method_count for methods found in the cache.
11343         * threads.c (mono_thread_request_interruption): Add a comment about 
11344         QueueUserAPC ().
11346 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11348         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11349         interface_offsets_packed table.
11350         
11351         * class.c (mono_class_init): Remove some dead code.
11353         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11354         mono_class_setup_vtable () when CAS is active to detect security problems.
11356 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11358         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11360         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11361         parameters as it's irrelevant for delegate checking.
11363 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11365         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11367         * class.c (mono_class_init): Control the creation of a generic vtable using
11368         a global which is true by default, but set to false by the runtime startup code.
11369         
11370         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11371         Disabled for now since it breaks the embedding API.
11372         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11373         (mono_class_setup_methods): Add a memory barrier.
11375         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11376         when mono_class_init () doesn't compute the generic vtable.
11377         
11378 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11379         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11380         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11381         to support call chains (backtrace) in the stat profiler.
11382         * profiler.c, profiler-private.h: Likewise.
11384 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11386         * generic-sharing.c: Init generic class when a method of it is
11387         requested via a runtime generic context.
11389 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11391         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11393         * reflection.c (mono_type_get_object): Add a FIXME.
11395         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11397         * class.c (mono_class_get_method_by_index): New helper function, returning an
11398         entry in the class->methods array.
11400 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11402         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11403         Avoid creating a generic vtable for generic instances as well.
11404         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11405         generic instances.
11407 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11409         * loader.c (mono_get_method_constrained): Inflate the signature
11410         with class context. Fix #325283.
11412 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11414         * object.c (mono_class_create_runtime_vtable): Add a comment.
11416         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11417         where needed.
11418         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11419         (mono_class_setup_vtable_general): Add an assert.
11420         (mono_class_init): Avoid creating a generic vtable for arrays.
11422         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11423         here, let mono_class_init () do that.
11425         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11426         interfaces in mscorlib.
11428         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11429         interfaces. Add some comments.
11430         (mono_class_init): Call mono_class_setup_methods () here since it is no
11431         longer called by mono_class_setup_vtable ().
11433         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11434         not set in class->vtable.
11435         (mono_class_create_runtime_vtable): Reenable the disabled code.
11437         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11438         now as it causes some test failures.
11440         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11441         if using the vtable trampoline. Also remove some strange code which put the
11442         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11443         stuff as it is no longer needed.
11445 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11447         * pedump.c: Give make --verify all option check code as well.
11448         Using --verify code won't check for metadata now.
11450 2008-05-19  Martin Baulig  <martin@ximian.com>
11452         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11454         * mono-debug.c
11455         (_mono_debug_using_mono_debugger): New global variable; it's set
11456         directly by the debugger, so mono_debug_using_mono_debugger() also
11457         works after attaching.
11459 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11461         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11462         as we do double checked locking on MonoClass::runtime_info and
11463         MonoClassRuntimeInfo::domain_vtables.
11465 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11467         * debug-helpers.c (print_field_value): Fix a warning.
11469 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11471         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11472         set in the AOT case.
11474 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11476         * class.c (mono_class_setup_vtable_general): Use memory barriers
11477         as we do double checked locking on MonoClass::vtable.
11479 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11481         * reflection.c (resolve_object): Inflate only if the generic context
11482         is not null. Fixes #389886.
11484 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11486         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11487         instead of g_free.
11489         Code is contributed under MIT/X11 license.
11491 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11493         * class.c: Revert unrelated change.
11495 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11497         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11498         a generic instantiation, use mono_class_from_mono_type instead of playing
11499         with MonoType directly.
11501 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11503         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11504         checks must ignore generic instantiations, so mono_class_has_parent is not
11505         suitable. Fixes #390128.
11507 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11509         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11510         it to avoid registering tokens during metadata generation. Fixes #390023.
11512 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11514         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11515         consistent.
11517         Contributed under MIT/X11 license.
11519 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11521         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11522         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11523         to fixup the EXE image.
11524         (mono_cleanup): Use mono_close_exe_image.
11525         (mono_close_exe_image): New function.
11526         * image.c: Include "marshal.h".
11527         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11528         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11529         counting when the image is loaded outside of mono_image_open_full. Set status
11530         based on GetLastError.
11531         * coree.c: Include required headers. Add init_from_coree.
11532         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11533         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11534         (_CorExeMain): Set init_from_coree.
11535         (CorExitProcess): Only call ExitProcess for now.
11536         (CorBindToRuntimeEx): New stub implementation.
11537         (CorBindToRuntime): New function.
11538         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11539         (MonoFixupExe): ILONLY executables require no fixups.
11540         (mono_set_act_ctx): New function to set activation context.
11541         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11542         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11543         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11544         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11545         as MONO_INTERNAL.
11546         * domain-internals.h: Add mono_close_exe_image.
11548         Contributed under MIT/X11 license.
11550 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11552         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11553         size for generic param and event tables. Fixes #388977.
11555 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11557         * loader.c (mono_method_signature): Use memory barriers because of the double
11558         checked locking pattern.
11560         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11561         aborting or aborted as well. Fixes #376391.
11562         
11563         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11564         existing runtime state in the Suspend handler during shutdown.
11566 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11568         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11570         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11571         which are starting up or shutting down.
11573         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11574         this function never returns if the runtime is already shutting down.
11576         * icall.c (ves_icall_System_Environment_Exit): Update after 
11577         mono_threads_set_shutting_down () signature change.
11578         
11579 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11581         * class.c: Added can_access_instantiation to verify if the instantiation
11582         is visible. Fix access check for nested types as they returned TRUE
11583         before doing type and generic instantiation visibility checks.
11585 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11587         * reflection.c (mono_reflection_create_generic_class): The created type
11588         must have a different container from its TypeBuilder. Otherwise they
11589         will end sharing generic arguments, which is wrong.
11591         Due to the sharing, making a generic instance of the created type using
11592         the TypeBuider generic arguments resulted in the generic type definition
11593         been returned, which is wrong as well.
11595         As a bonus the code was leaking the type_params array. This memory should
11596         be allocated from the image mempool.
11598         This fixes bug #354047.
11600 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11602         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11603         to here         as they are now used in assembly.c new code.
11604         Added a skipverification flag to MonoAssembly.
11605         New internal function mono_assembly_has_skip_verification.
11607         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11608         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11609         part of #387274.
11611 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11613         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11614         needed. Fixes #387034.
11616         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11618 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11620         * assembly.c (mono_assembly_load_reference): Prevent crash while
11621         disassembling Silverlight 2.0 executables while we still do not
11622         have GACed libraries.
11624 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11626         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11628 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11630         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11631         of the dynamic case. Fixes #387404.
11633 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11635         *verify.c (mono_verifier_is_class_full_trust): If under
11636         verify_all and the verifier mode was not set, only
11637         gac and corlib types are fulltrust. This makes --verify-all
11638         usable to detect unverifiable code, which is the expected
11639         use case.
11641 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11643         * verify.h: Ops, commited the header with debug
11644         enabled.
11646 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11648         * verify.c (merge_stack): Use the new value on unverifiable
11649         stack merges.
11651         * verify.c (verify_type_compatibility_full): Comparison
11652         of nullable types can't use mono_class_is_assignable_from.
11654         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11655         that makes all verification errors be reported.
11657         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11658         mono_method_verify.
11660 2008-05-05  Robert Jordan  <robertj@gmx.net>
11662         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11663         support for value types. See #386415.
11665         * object.c: comments.
11667         Code is contributed under MIT/X11 license.
11669 2008-05-05  Martin Baulig  <martin@ximian.com>
11671         * debug-mono-symfile.h
11672         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11673         for old pre-terrania symbol files.
11675 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11677         * mono-config.c: Add ppc64 architecture.
11679         Code is contributed under MIT/X11 license.
11681 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11683         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11684           PPC64 uses function descriptors as well.
11686         Code is contributed under MIT/X11 license.
11688 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11690         * object.c (compute_class_bitmap): Ignore literal static fields.
11692         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11693         var has an invalid format.
11694         (describe_ptr): Add some sanity checks for the vtable.
11695         (add_nursery_frag): Clear unused nursery fragments.
11696         (major_collection): Clear all remaining nursery fragments.
11698 2008-05-03  Robert Jordan  <robertj@gmx.net>
11700         * image.c, metadata-internals.h: add thunk_invoke_cache.
11702         * marshal.c, marshal.h: implement
11703         mono_marshal_get_thunk_invoke_wrapper ().
11705         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11707         Code is contributed under MIT/X11 license.
11709 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11711         * verify.c (do_leave): Empty the stack.
11713 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11715         * class.c (mono_class_is_assignable_from): Variance
11716         doesn't work between reference and value types. For example,
11717         given type C<T+>, C<int32> is not assignable to C<object>.
11718         Break the argument checking loop on first error. 
11720 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11722         * icall.c : base64_to_byte_array() needs some more strict
11723           check for sequence of '=' characters. Patch by Santa
11724           Marta (http://deee.g.hatena.ne.jp/santamarta).
11726           Contributed under MIT/X11 license.
11727           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11729 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11731         * domain.c: Disable LoadLibrary support to fix Win32 build.
11733         Code is contributed under MIT/X11 license.
11735 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11737         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11738         to help with cache behaviour.
11740 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11742         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11743         method. 
11745 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11747         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11749 2008-05-01  Dick Porter  <dick@ximian.com>
11751         * process.c (process_get_fileversion): Only pass 16 bits of
11752         language ID to VerLanguageName.  Fixes bug 381204.
11754 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11756         * verify.c (mono_method_verify): Fix the comparison
11757         operator for code bounds check.
11759 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11761         * verify.c (mono_method_verify): Check the bounds of
11762         all access of the code array.
11764 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11766         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11768 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11770         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11771         not valid.
11773 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11775         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11776         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11777         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11778         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11779         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11780         mono_runtime_load.
11781         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11782         runtime initialization from metadata.
11783         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11784         (mono_set_rootdir): Use mono_get_module_file_name.
11785         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11786         handles.
11787         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11788         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11789         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11790         MonoCLIImageInfo. Add support for module handles.
11791         (load_cli_header): Update mono_cli_rva_image_map signature.
11792         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11793         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11794         (mono_image_rva_map): Add support for module handles.
11795         (mono_image_ensure_section_idx): Add support for module handles.
11796         (mono_image_close): Add support for module handles.
11797         (do_load_header): Add support for module handles.
11798         (mono_image_open_from_module_handle): New function for internal use.
11799         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11800         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11801         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11802         handles.
11803         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11804         * image.h: Add mono_image_fixup_vtable.
11805         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11806         support.
11807         * coree.h: New file.
11808         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11809         unsupported native code.
11810         (mono_marshal_set_callconv_from_modopt): New function splitted from
11811         mono_marshal_get_managed_wrapper.
11812         (mono_marshal_get_managed_wrapper): Use
11813         mono_marshal_set_callconv_from_modopt.
11814         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11815         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11816         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11817         that results in a deadlock when the runtime is loaded in _CorDllMain.
11818         * Makefile.am: Add coree.c and coree.h.
11820         Contributed under MIT/X11 license.
11822 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11824         * generic-sharing.c: Search for type arguments in array element
11825         types as well.
11827 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11829         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11831         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11833         * object.c: Don't setup the RGCTX when the vtable is created,
11834         because we're setting it up lazily now.
11836 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11838         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11839         64 bit support.
11841 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11843         * verify.c (verify_class_for_overlapping_reference_fields): 
11844         If class is under fulltrust allow reference types to overllap
11845         if they have the same RVA.
11847 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11849         * pedump.c: Added new flag valid-only, that makes the verifier
11850         behaves just like --security=validil. It won't fail type load
11851         due to unverifiable restrictions.
11853 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11855         * class-internals.h (struct MonoMethod): Added a verification_success
11856         field to cache verifier executions. Reduced MonoMethod:slot size by
11857         one bit.
11859 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11861         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11862         instead of a 'vt' argument to save an indirection and to allow these to be used
11863         for valuetypes.
11864         (scan_vtype): New helper function to scan an area using a gc descriptor.
11865         (mono_gc_wbarrier_value_copy): Implement this.
11866         (handle_remset): Add support for REMSET_VTYPE.
11867         (find_in_remset_loc): Ditto.
11868         (mono_gc_base_init): Allow some debugging options to be controlled through the
11869         use of the MONO_GC_DEBUG env variable.
11870         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11871         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11873 2008-04-23  Martin Baulig  <martin@ximian.com>
11875         * domain.c (mono_domain_create): Move the call to
11876         mono_debug_domain_create() down, after allocating the domain id.
11878 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11880         verify.c (verify_class_for_overlapping_reference_fields): Skip
11881         static fields while verifying for overlapping fields as they
11882         don't matter at all.
11884 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11886         * domain-internals.h: added a declaration of
11887         mono_make_shadow_copy.
11889         * assembly.c (mono_assembly_open_full): shadow copying of
11890         assemblies moved to here, so that all the assemblies within the
11891         application domain's private binary directories can be
11892         processed. Fixes bug #380546
11894         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11895         mono_make_shadow_copy and made non-static. The decision whether
11896         to shadow-copy an assembly is made based on its location - it's
11897         copied if it's in one of the private application domain binary
11898         directories and its different to the target file in the shadow
11899         directory. Fixes bug #380546
11901 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11903         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11905         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11906         types.
11908         * reflection.c (mono_image_create_token): Handle 
11909         Method/ConstructorOnTypeBuilderInst.
11910         (resolve_object): Ditto.
11911         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11912         so it can be called from resolve_object. Also handle the case when the inflated
11913         class already has its methods setup.
11915 2008-04-21  Martin Baulig  <martin@ximian.com>
11917         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11919 2008-04-20  Geoff Norton  <gnorton@novell.com>
11921         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11922         pointer dereference.
11924 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11926         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11927         portability API to look up the assembly file. Fixes behavior in
11928         situations when the application has a bin/ directory, but the
11929         assembly search patch refers to Bin/ (and thus the requested file
11930         name is Bin/SomeLibrary.dll). Fixes bug #379888
11932 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11934         verify.c (mono_type_is_generic_argument): Extracted this check
11935         from a dozen places to here.
11937         verify.c: Fixed all issues related to boxing generic arguments
11938         and their constraints.
11940 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11942         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11944 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11946         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11947         isn't finished yet. Fixes #363447.
11949 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11951         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11952         Fixes #346419.
11954 2008-04-13  Jb Evain  <jbevain@novell.com>
11956         * domain.c: update the 2.1 profile versions.
11957         Merged from the Moonlight 2 branch.
11959 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11961         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11962         mscorlibs for the non-refonly case as well.
11964         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11965         in mono_assembly_load_from_full (). Fixes #378924.
11967 2008-04-11  Geoff Norton  <gnorton@novell.com>
11969         * icall.c: The global extern environ doesn't exist on Mac.  We
11970         need to call NSGetEnviron instead.
11972 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11974         verify.c: Add generic method constraint verification.
11976 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11978         class.c (mono_class_inflate_generic_method_full): Add a long
11979         explanation to the is_mb_open hack. Remove the FIXME.
11981 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11983         * verify.c (mono_method_verify): Mark all unknown opcodes
11984         as invalid. Mark jmp as unverifiable.
11986 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11988         * verify.c: Add code to do type constraint verification on class instances.
11990         * verify.c (mono_verifier_verify_class): Use the type constraint 
11991         verification code.
11993 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11995         * class.c (mono_class_get_field_default_value): Don't pass cindex
11996         as hint to mono_metadata_get_constant_index. The local is not initialized
11997         and should contain garbage most of the time. This could only work
11998         with a lot of luck.
12000 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12002         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12004 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12006         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12008         * class.c (mono_class_from_generic_parameter): Save the token of the
12009         generic param in MonoClass::sizes.generic_param_token.
12011         * reflection.c (mono_custom_attrs_from_class): If the class type is
12012         VAR or MVAR retrieve the attributes of the generic param.
12014 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12016         * class.c (mono_class_init): Do class verification if the verifier
12017         is enabled.
12019 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12021         * verify-internal.h: Added mono_verifier_verify_class.
12023         * verify.c: Added mono_verifier_verify_class. It checks for
12024         classes with explicit layout that have overlapping reference fields.
12026         * pedump.c: Init the verifier state prior to verification. Fixed
12027         command line arguments.
12029 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12031         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12033 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12035         * verify-internals.h: Fix a warning.
12037 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12039         * verify-internals.h: New header with the verifier configuration
12040         extracted from mini.c.
12042         * verify.c: Implemented the new functions exported by verify-internals.h.
12044 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12046         * verify.c: Add proper verification of ckfinite.
12048 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12050         * verify.c (do_conversion): Improved error message to something
12051         more meanfull.
12053         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12054         with primitive types.
12056 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12058         * verify.c: Added tail prefix checking. Marked icall
12059         as unverifible.
12061 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12063         * verify.c: Fix the detection of branches to the middle
12064         of an instruction.
12066 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12068         * verify.c: Implemented verification of volatile. and
12069         unaligned. prefix. Check if a type is valid after retrieving it.
12071 2008-04-01  Dick Porter  <dick@ximian.com>
12073         * process.c (process_get_fileversion): If there's no string block,
12074         set the file language to en_US.  Fixes the other new part of bug
12075         374600.
12077 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12079         * class.c: New functions mono_method_can_access_field_full and
12080         mono_method_can_access_method_full. They perform type visibility
12081         and type site check.
12083         * class-internal.h: Added exported functions.
12085         * verify.c: Use new functions to implement proper visibility checks.
12087 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12089         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12091 2008-03-28  Dick Porter  <dick@ximian.com>
12093         * process.c (process_get_fileversion): Use the first language ID
12094         we see, rather than insisting on an invariant language.  Fixes bug
12095         374600.
12097 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12099         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12100         the streams to fix reading of invalid memory later.
12102         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12103         to ease debugging.
12105 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12107         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12108         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12110 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12111         * threads.h: Added MonoThreadManageCallback type and
12112         mono_thread_set_manage_callback prototype
12113         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12114         (used to store the mono_thread_manage callback).
12115         * threads.c: Added mono_thread_set_manage_callback, and handle
12116         "MonoThread->manage_callback" in build_wait_tids.
12118 2008-03-26  Dick Porter  <dick@ximian.com>
12120         * process.c (process_get_fileversion): Set FileVersionInfo strings
12121         to Empty when the resource doesn't have the particular info.
12122         Fixes bug 355717.
12124 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12126         * verify.c (mono_method_verify): Proper prefix validation.
12128 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12130         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12131         itself in a separate argument instead of throwing them. Fixes #373448.
12133         * appdomain.c: Bump corlib version.
12135 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12137         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12139 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12141         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12142         version macros.
12144 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12146         * generic-sharing.c, class-internals.h: Code for putting
12147         reflection types into the runtime generic context.
12149 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12151         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12152         Fixes #340662. 
12155 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12157         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12159         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12161         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12163         * verify.c (do_cast): Let the result value keep the boxed status.
12165         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12167 2008-03-17  Jb Evain  <jbevain@novell.com>
12169         * reflection.c: when running on a 2.0 runtime, emit
12170         unconditionally the #~ header version as 2.0, and the
12171         CLI header version as 2.5, for symmetry's sake with csc.
12173 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12175         * class.c: Remove the unused cache_interface_offsets stuff.
12177         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12178         profiler.c: Fix warnings.
12180 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12182         * generic-sharing.c, class-internals.h: Support for putting
12183         methods into the runtime generic context.
12185 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12187         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12188         classes which are generic instances of not-yet finished typebuilders. Fixes
12189         #351172.
12191         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12193 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12195         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12197         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12198         field, replace it with a hash table in MonoDynamicImage.
12200         * reflection.c (inflate_mono_method): Access the generic definition object from
12201         image->generic_def_objects instead of imethod->reflection_info.
12203         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12205         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12206         
12207         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12208         function in reflection.c so it is easier to keep in sync with the dynamic image
12209         creation code.
12211         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12212         mono_image_close ().
12214 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12216         * class.c (mono_class_generic_sharing_enabled): Disable generic
12217         sharing for all architectures except AMD64 and x86 to fix build.
12219 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12221         * verify.c: Use the generic definition MonoGenericContext when available.
12222         Remove code for checking generics instance compatibility in favor of
12223         mono_class_is_assignable_from.
12225 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12227         * marshal.c, marshal.h, metadata-internals.h, image.c,
12228         wrapper-types.h: New wrapper for invoking a shared static method
12229         without having to pass the runtime generic context argument.
12231 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12233         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12235 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12237         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12238         
12239         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12240         create a token from a FieldOnTypeBuilderInst.
12241         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12242         (resolve_object): Ditto.
12244         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12245         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12247 2008-03-14  Martin Baulig  <martin@ximian.com>
12249         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12251         * debug-mono-symfile.h
12252         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12253         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12255 2008-03-10  Martin Baulig  <martin@ximian.com>
12257         * debug-mono-symfile.h
12258         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12259         `lexical_block_table_offset'.
12260         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12261         `lexical_blocks'.
12262         (MonoSymbolFile): Added `version'.
12264         * mono-debug.h
12265         (MonoDebugLexicalBlockEntry): Removed.
12266         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12267         `lexical_blocks'.
12269         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12270         blocks here; the debugger now does this internally.
12272 2008-02-27  Martin Baulig  <martin@ximian.com>
12274         * object.c (mono_runtime_exec_main): Call
12275         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12276         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12278 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12280         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12281         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12283 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12285         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12286         ldftn with a virtual method.
12288 2008-03-13  Geoff Norton  <gnorton@novell.com>
12290         * decimal.c:  Only include memory.h if the platform has it.
12292 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12294         * assembly.c, class.c, metadata-internals.h: make sure public key
12295         tokesns are compared in a case-insensitive way. Also, all
12296         the lookups in the GAC use a lowercase public key token
12297         (gaacutil already does the lowercasing on install). Fixes
12298         bug #369541.
12300 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12302         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12303         and return value.
12305 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12307         * image.c: when someone loads a mscorlib from a file, return the
12308         currently loaded mscorlib (fixes bug #369253).
12310 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12312         * class.c: handle types with no parents by forcing them to have
12313         System.Object as a parent and marking them as broken (this currently
12314         allows the first part of bug #369173 to work as well, likely because
12315         we don't check for typeload exceptions everywhere yet).
12317 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12319         * class.c: more complete check that types belong to corlib
12320         (fixes second part of bug #369173).
12322 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12324         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12325           "inline" to "__inline" before including mono-membar.h.
12326           
12327         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12328           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12329           MSVC builds.
12331         Contributed under MIT/X11 license.
12333 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12335         * verify.c (do_invoke_method): Remove return type validation.
12337         * verify.c (do_ret): Do return type validation at return site instead of
12338         call site.
12340 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12342         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12344         * verify.c: Some todos cleaned and improved a few error messages.
12346 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12348         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12350 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12352         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12353         system types correctly.
12355         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12356         function.
12358 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12360         * assembly.c (build_assembly_name): Fix a warning.
12362 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12364         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12365         the called function takes an object type argument. Fixes storing or
12366         valuetypes across remoting as well as reducing memory usage.
12367         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12368         stfld_remote wrapper caches.
12370 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12372         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12373         is not found.
12375         * reflection.c (mono_image_register_token): New helper function to save
12376         a token->object mapping.        
12378         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12379         managed code.
12381         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12382         one dimension arrays. Fixes #367670.
12383         (mono_reflection_get_type_internal): Ditto.
12385 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12387         * marshal.c: mono_load_remote_field_new() always returns object.
12388         so use the proper signature (fixes bug #366445).
12390 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12391         
12392         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12393         add an 'inline_failure' flag instead.
12395 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12397         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12398         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12399         contains the location of "this", used for exception handling.
12401 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12403         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12404         their size on all platforms for perf reasons.
12406 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12408         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12409         object-internal.h
12411         * object-internal.h: Same.
12413 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12415         * reflection.h: Fix the build I just broke.
12417 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12419         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12420         Test if a token is valid, this remove explicit usage of 
12421         MonoDynamicImage::tokens from the verifier code.
12423         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12425         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12426         instead of direct access to MonoDynamicImage::tokens.
12428 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12430         * verify.c (token_bounds_check): Fix the build I just broke.
12432 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12434         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12436         * verify.c (verifier_load_method): Fixed the errors message.
12438         * verify.c (mono_method_verify): Fixed a debug message.
12440 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12442         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12443         mono-perfcounters.h, class-internals.h: support for predefined
12444         writable counters, query of categories and counters, bugfixes.
12446 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12448         * verify.c (do_refanytype): Verify the refanytype opcode.
12450         * verify.c (mono_method_verify): Use do_refanytype.
12452 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12454         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12456         * verify.c (mono_method_verify): Use do_mkrefany.
12458 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12460         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12461         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12462         implementation.
12464 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12466         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12467         the type load exception.
12469 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12471         * verify.c: Added a few FIXME for method signatures
12473         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12474         of mono_method_get_signature and get vararg call working. Removed unused
12475         checks for return value.
12477         * verify.c (do_refanyval): Verify the refanyval opcode.
12479         * verify.c (mono_method_verify): Implemented verification of arglist and
12480         use do_refanyval.
12482 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12484         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12485         vtypes to marshal.c.
12487         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12488         it works for AOT as well.
12490 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12492         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12493         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12494         the system time is adjusted.
12496 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12498         * icall.c, icall-def.h: use the new time functions (fixes the
12499         non-monotonic behaviour of TickCount).
12501 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12503         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12504         it breaks the build.
12505         
12506         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12507         cattr is not finished yet.
12509 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12511         * verify.c: Proper token validation for field, method and type.
12513 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12515         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12517         * loader.c (method_from_memberref): Generate type load error instead of method missing
12518         if the type is not found.
12520 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12522         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12523         some of the conversions caused the generation of a marshal directive exception.
12525 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12527         verify.c: Report which exception should be thrown by the JIT.
12528         Added a lot of FIXME notes.
12530 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12532         * generic-sharing.c: Runtime generic context slots are not
12533         instantiated on init anymore.  Instead, provide function to do the
12534         instantiating on demand.
12536         * class-internals.h: Added vtable to runtime generic context.
12537         Macros for encoding direct and indirect slot offsets in one
12538         guint32.
12540 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12542         * object.c, generic-sharing.c: Moved some generic sharing code
12543         from object.c to generic-sharing.c.
12545         * generic-sharing.c: Added support for extensible runtime generic
12546         context.
12548         * metadata-internals.h: Two new hash tables in MonoImage for
12549         extensible runtime generic context support.
12551         * domain.c: Unregister generic vtables upon domain unloading.
12553         * image.c: Destroy new hash tables upon image unloading.
12555         * metadata.c: Unregister generic subclasses upon image unloading.
12557         * class-internals.h: New data structure for runtime generic
12558         context template.  New fields in the runtime generic context for
12559         extensible part.
12561         * Makefile.am: Added generic-sharing.c.
12563 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12565         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12566         there is a pending loader exception, raise it.
12568         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12569         same.
12571         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12572         same.
12574         Fixes #363450.
12576 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12578         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12580         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12581         
12582         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12583         ref-only requests for compatibility with MS.
12585 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12587         * reflection.c (mono_custom_attrs_from_method): Don't silently
12588         return an empty list for generic method instances.
12589         (mono_custom_attrs_from_param): Likewise.
12591 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12592             Raja R Harinath  <harinath@hurrynot.org>
12594         Fix #354757
12595         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12596         * class.c (mono_class_inflate_generic_method_full): Initialize it
12597         when a fully-open method is instantiated.
12598         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12599         to new field.
12600         * reflection.c (inflate_mono_method): Don't create a temporary context.
12602 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12604         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12605         Compute correct value, to prepare for imethod->reflection_info going away.
12607 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12609         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12611 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12613         * verify.c: Implement skip visibility flag.
12615 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12617         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12618         which contains an extra field to tell the kind of exception that should be thrown.
12620         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12622 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12624         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12625         'method' is updated.
12627 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12629         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12630         explicit layout as well. Fixes #360375.
12632 2008-02-11  Geoff Norton  <gnorton@novell.com>
12634         * loader.c: Guard and dereference against inflated generic methods
12636 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12638         * class.c: Include Retargetable spec in assembly name.
12639         * assembly.c: Always include PublicKeyToken spec in assembly name
12640         (with value "null" if assembly is not signed), and include
12641         Retargetable spec.
12642         * icall-def.h: Added icall for Assembly.get_fullname.
12643         * icall.c: Added icall returning the fullname of an assembly.
12645 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12647         * class.c (mono_class_setup_vtable_general): Add a missing call to
12648         mono_class_setup_methods () which is needed in the AOT case.
12650 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12652         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12653         stack type of the given MonoType.
12655         * verify.c (verify_type_compatibility_full): Handle the void type.
12657         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12658         way stack merging works.
12660         * verify.c (store_local): Improved verification message.
12662         * verify.c (do_branch_op): If the merging is invalid, the method
12663         is unverifiable and not invalid. Improved error message.
12665         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12666         a reference type diferent than System.Object. Improved error
12667         message.
12669 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12671         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12673         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12674         type of an enum even if the argument is byref.
12676         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12677         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12679         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12681         *verify.c (verify_type_compatibility_full): Make enum types
12682         compatible with their base types.
12684         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12685         types are compatible for the special case of a boxed valuetype and
12686         System.Object.
12688         * verify.c (verify_stack_type_compatibility): The function
12689         is_compatible_boxed_valuetype was extracted from here.
12691         * verify.c (push_arg): Only set ctx->has_this_store if the method
12692         is not static.
12694         * verify.c (do_ldelem): Fixed a typo in an error message and added
12695         strict check for mixing int32 and native int as the array type
12696         and ldelem type.
12698         * verify.c (merge_stacks): Consider boxed valuetypes in the
12699         compatibility checks.
12701 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12702         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12704 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12705         *class.c: use_new_interface_vtable_code: renamed the env var to have
12706         a "MONO_" prefix, and fix the logic to enable it by default.
12708 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12709         *class.c:
12710         mono_class_setup_vtable_general: rewrote the way in which interface
12711         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12712         makes the code more maintainable.
12713         For now the old code is still there, and can be activated setting
12714         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12716 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12718         * verify.c: guarded some debug functions around and #ifdef.
12720         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12722 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12724         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12725         changes for now since they seem to break too many things.
12727 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12729         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12730         mono_marshal_find_nonzero_bit_offset): Added macro and function
12731         for finding the byte- and bit-offset of a bitfield within a
12732         struct.
12734 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12736         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12737         (mono_marshal_get_struct_to_ptr): Ditto.
12739         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12740         cctor_signature.
12742 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12744         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12745         between methods for non-corlib types.
12747 2008-02-02  Geoff Norton  <gnorton@novell.com>
12749         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12750         generic parameters as well. (Fixes #342536)
12752 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12754         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12756         * verify.c (do_invoke_method): Fix for calling with byref structs.
12758         * verify.c (do_cast): push a boxed value type based on the type token and not
12759         the type of stack.
12761 2008-01-31  William Holmes  <billholmes54@gmail.com>
12763         * process.c (process_module_string_read): Check the size returned form 
12764           VerQueryValue to avoid out of memory exception. 
12766 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12768         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12769         Handle properly modules which are not in the moduleref table. Fixes
12770         #356938.
12772 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12774         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12775         the dynamic case which is now in managed code.
12776         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12778         * marshal.c (mono_string_to_bstr): Fix a warning.
12779         (init_com_provider_ms): Ditto.
12781         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12783         * exception.c (mono_get_exception_out_of_memory): New helper function.
12785 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12787         * marshal.c: Add support for BSTR marshalling
12788         using other COM systems.
12790         Code is contributed under MIT/X11 license.
12792 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12794         * object.c (mono_runtime_invoke_array): reverted previous
12795         commit as it breaks the build.
12797 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12799         * object.c (mono_runtime_invoke_array): Verify arguments for
12800         invalid types. Fixes #348522.
12802 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12804         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12805         non-final virtual calls using call. 
12807         * verify.c (do_invoke): fixed some TODOs.
12809         * verify.c (push_arg): set has_this_store for "ldarga 0".
12811 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12813         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12814         which belong to an inflated class. Fixes #356531.
12816 2008-01-26  Robert Jordan  <robertj@gmx.net>
12818         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12819         which resort to FindFirstFile when a certain error condition
12820         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12821         Code is contributed under MIT/X11 license.
12823 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12825         * marshal.c (emit_marshal_string): Fix out string marshalling
12826         to use specified encoding. Fixes #323900.
12828         Code is contributed under MIT/X11 license.
12830 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12832         * class.c (mono_class_inflate_generic_method_full): Don't modify
12833         iresult->context after cache check.
12835 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12837         * class.c (mono_class_inflate_generic_method_full): Change the
12838         struct assignments to memcpy for better visibility and add some comments.
12840 2008-01-23  Dick Porter  <dick@ximian.com>
12842         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12843         procedure, and make it work on windows.
12845 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12847         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12848         a MonoReflectionTypeBuilder since it is always of that type.
12850         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12852         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12854         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12855         
12856         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12858         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12860         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12861         instantiations from the type cache.
12863 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12865         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12867         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12869 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12871         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12873         * verify.c (mono_method_verify): removed old TODO
12875 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12877         * verify.c (do_newobj): add visibility check.
12879 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12881         * verify.c (do_load_function_ptr): add visibility check.
12883 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12884         *class.c:
12885         mono_generic_class_get_class: hook profiler events.
12886         mono_field_get_offset: added to support heap-shot in the new profiler.
12887         *class.h: exported mono_field_get_offset.
12888         * reflection.c:
12889         mono_reflection_setup_internal_class: hook profiler events.
12891 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12893         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12894         argument here too and use it to avoid checking for pending exceptions if 
12895         possible.
12897 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12899         * assembly.c (build_assembly_name): add arg for passing the assembly
12900         flags. Do not consider a PublicKey with value "null" valid.
12901         (mono_assembly_name_parse_full): added boolean argument that will be
12902         set if the assembly name contains a PublicKeyToken spec. Added support
12903         for the Retargetable spec for which only Yes or No are allowed as valid
12904         value. Consider assembly name invalid if Retargetable spec is set, but
12905         either version, culture or public key (token) are not specified.
12906         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12907         with implementation in assembly.c.
12908         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12909         from MonoAssemblyName.
12910         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12911         introduced argument for mono_assembly_name_parse_full to know if the
12912         assembly name has a PublicKeyToken spec, and if it has instruct
12913         fill_reflection_assembly_name to use default value for keyToken (if
12914         PublicKeyToken is null).
12916 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12918         * verify.c (mono_method_verify): fixed ovf ops with
12919         float values. They are unverifiable now.
12921 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12923         * class.c (set_failure_from_loader_error): add BadImageException to the
12924         list of exceptions that can cause a type to fail to load.
12926         * class.c (mono_class_get_exception_for_failure): same.
12928 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12930         * verify.c (in_any_exception_block): added, check if offset
12931         is part of any exception handling clause.
12933         * verify.c (get_stack_type): added VAR and MVAR types.
12935         * verify.c (do_stobj): better error messages.
12937         * verify.c (do_cpobj): added, check cpobj.
12939         * verify.c (do_initobj): added, check initobj.
12941         * verify.c (do_sizeof): added, check sizeof.
12943         * verify.c (do_localloc): added, check localloc.
12945         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12947 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12949         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12950         save_lmf/restore_lmf opcodes.
12952         * threads.c (mono_threads_install_notify_pending_exc): New function to
12953         install a callback notifying the JIT there is a pending exception on a thread.
12954         (mono_thread_request_interruption): Call the new callback.
12955         (mono_thread_get_and_clear_pending_exception): New function to return the
12956         exception pending on a thread.
12958         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12959         to turn off checking for pending exceptions.
12960         (mono_marshal_get_native_wrapper): Ditto.
12962 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12964         * threads-types.h: Get rid of the unnecessary extern declarations.
12966 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12968         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12969         return field from parent class if not private.
12970         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12971         returns fields from parent class if they are not private.
12972         (method_nonpublic): added function to determine if a given method
12973         should be considered non-public. Returns false for private methods
12974         on parent class, and internal methods from parent on the 1.0 profile.
12975         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12976         use method_nonpublic function to determine whether method should be
12977         returned.
12978         (property_accessor_public): use newly introduced method_nonpublic
12979         function to determine whether accessor is non-public. 
12980         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12981         event from parent class if not private. Only return static event if
12982         Static flag is set, and only return static event from parent class if
12983         FlattenHierarchy flag is set.
12984         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12985         include non-private events from parent class.
12987 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12989         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12990         warning.
12992 2008-01-16  Wade Berrier <wberrier@novell.com>
12994         * security.c: Add assembly.h header to appease some warnings
12996 2008-01-16  Dick Porter  <dick@ximian.com>
12998         * process.c (process_module_string_read): Remove trailing null
12999         when saving string.
13001 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13003         * class-internals.h: A new data structure describing the layout of
13004         a runtime generic context (MonoRuntimeGenericContextTemplate).
13006         * metadata-internals.h: Added a hash table to MonoDomain that maps
13007         from open generic classes to their runtime generic context
13008         templates.
13010         * object.c: Building of the runtime generic context, including
13011         proper handling of generic type arguments of superclasses.
13012         Building of the runtime generic context according to the template.
13014 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13016         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13017         Fixes #350856.
13019         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13020         mono_portability_find_file (). Fixes #325466.
13021         (mono_image_get_public_key): Fix a warning.
13023 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13025         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13026         Fixes #353550.
13027         (mono_class_from_name_case): Ditto.
13029 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13031         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13032           common storage for the tables used in the System/NumberFormatter class.
13034 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13036         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13038 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13040         * verify.c (get_boxable_mono_type): check if the token is valid.
13042         * verify.c (set_stack_value): changed to add an error if an
13043         invalid type is set on stack. Changed all callers due to signature change.
13045         * verify.c (do_stobj): implement stobj validation.
13047 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13049         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13050         set container->is_method, it was set earlier.
13052         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13053         generic methods.
13055         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13056         is_method of the generic container to TRUE for methods.
13058 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13060         * metadata.c (type_in_image): Handle type parameters properly.
13062         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13063         memory ownership of this structure.
13065 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13067         * verify.c (get_boxable_mono_type): make typedref types been just
13068         unverifiable. check for void type.
13070         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13072         * verify.c (do_load_function_ptr): accept method spec tokens.
13074 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13076         * marshal.c (mono_class_native_size): Always set *align even if this is called
13077         recursively.
13079 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13081         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13082         out-of-date.
13084 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13086         * verify.c: removed some old unused tables. A huge bunch of small fixes
13087         to things found while testing the verifier with mono basic.
13089         * verify.c (dump_stack_value): dump null literal flag to.
13091         * verify.c (verify_type_compatibility_full): fix comparison
13092         for types that have a generic super type.
13094         * verify.c (verify_stack_type_compatibility): fix compatibility
13095         between null literals and reference types. fix compatibility between
13096         boxed valuetypes and object. fix corner case test for enums.
13098         * verify.c (do_cmp_op): proper verification of cgt.un in case
13099         of reference types.
13101         * verify.c (do_invoke_method): fix error message.
13103         * verify.c (do_store_indirect
13105         * verify.c (check_is_valid_type_for_field_ops): proper verification
13106         of managed pointers to valuetypes and boxed valuetypes. proper verification
13107         of null literals.
13109         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13110         allow token to be a reference type.
13112         * verify.c (do_cast): proper handling of boxes valuetypes.
13114         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13115         in object[].
13117         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13118         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13119         fixed the decoding of unbox_any
13121 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13123         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13125 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13127         * verify.c (do_newobj): do delegate verification.
13129         * verify.c (verify_delegate_compatibility): perform delegate
13130         verification.
13132         * verify.c (verify_ldftn_delegate): perform tests related to
13133         ldftn delegates.
13135         * verify.c (mono_delegate_signature_equal): perform the
13136         slightly diferent signature comparison required by delegates.
13138         * metadata.c (mono_metadata_type_equal_full): added and exported
13139         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13140         allows signature only comparison.
13142         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13143         as MONO_INTERNAL.
13145 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13147         * verify.c: added a bunch of stack_slot_* functions to
13148         make access to stack slot type easier. This is required to
13149         allow optional flags, like null literal, boxed value and
13150         this pointer.
13151         All access paths to IlStackDesc::stype have been changed 
13152         to use these new funcions.
13153         Removed a bunch of unused functions and cleared all warnings.
13154         This patch introduces the usage of the this pointer and 
13155         boxed value flags.
13157 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13159         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13161 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13163         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13164         match managed version.
13166         * appdomain.c: Bump corlib version.
13167         
13168         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13169         argument.
13171 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13173         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13174         Set public key token to zero-length byte array if assembly is not
13175         strongnamed.
13177 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13179         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13180         writing a vtype array elem.
13182 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13184         * assembly.c (build_assembly_name): return FALSE if length of token is
13185         not 16 (if not "null").
13186         (mono_assembly_name_parse_full): return FALSE if value of version,
13187         culture, token or key is 0.
13188         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13189         specify whether public key and public key token must be set to default
13190         value (zero-length byte array) if not available. Set versioncompat to
13191         SameMachine. If public key is available or the default is set, then
13192         set PublicKey flag.
13193         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13194         is available, use empty byte array as default value. On the 2.0
13195         profile, use default value for public key token if not set.
13196         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13197         profile, use default value for public key if not set. On the 2.0
13198         profile, use default value for public key token if not set.
13199         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13200         default values for public key and public key token.
13202 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13204         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13205         field to keep it in synch with the managed object.
13207         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13208         delegates. Fixes #351520.
13210         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13211         contains defined memory.
13212         
13213         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13215         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13216         
13217         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13218         of the GC data structures.
13220         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13222         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13223         
13224         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13225         barrier.
13226         (mono_array_clone_in_domain): Ditto.
13227         (mono_array_clone_in_domain): Ditto.
13229         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13230         (cache_culture): Use a write barrier.
13232         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13233         (ves_icall_get_property_info): Ditto.
13235         * object.h (MONO_STRUCT_SETREF): New macro.
13237         * class-internals.h (MonoStats): Add some GC statistics.
13239         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13241 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13243         * exception.c (mono_exception_from_name_two_strings):
13244         Break from loop after method is found.
13246 2008-01-04  Dick Porter  <dick@ximian.com>
13248         * process.c (process_module_string_read): Rename variable to
13249         reflect correct usage, after fixing bug 345972.
13251 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13253         * verify.c (mono_type_create_fnptr_from_mono_method): 
13254         created a MonoType function pointer instance to be used during
13255         verification. The verifier releases this memory at end.
13257         * verify.c (mono_method_is_constructor): extracted repeated
13258         checks for constructor into a single class.
13260         * verify.c (do_push_field): use new extracted method
13261         for constructor check.
13263         * verify.c (do_newobj): same.
13265         * verify.c (do_ldftn): renamed to do_load_function_ptr
13266         and make it verify ldvirtftn too.
13268         * verify.c (mono_method_verify: proper verification
13269         of ldvirtftn. release created MonoMethod instances.
13271 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13273         * verify.c (token_bounds_check): added.
13275         * verify.c (do_ldftn): added.
13277         * verify.c (mono_method_verify): proper verificartion of ldftn.
13279 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13281         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13282         than the table row count. It's the resposibility of the caller to
13283         make the bounds check and raise the correct error.
13285         * metadata.c (mono_metadata_decode_row_col): Same.
13287         * loader.c (mono_get_method_from_token): perform bounds check
13288         on token for methoddef table.
13290 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13292         * icall.c
13293         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13294         assert into a negative result, the managed code already coped with
13295         that.
13297         Some folks on Windows reported this error. 
13299 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13301         * appdomain.c: Bump corlib version.
13302         * icall.c:
13303         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13304         CultureInfo.CreateCulture to create CultureInfo for name.
13305         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13306         create CultureInfo for name. Fixes bug #347174.
13308 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13310         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13311         flags.
13313         * verify.c (is_valid_branch_instruction): allow branching to the
13314         first instruction of the protected block.
13316         * verify.c (is_valid_cmp_branch_instruction): same.
13318         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13319         avoid double initialization.
13321         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13322         detect which cases the eval stack should just be copied.
13324         * verify.c (mono_method_verify): check if the eval stack
13325         is empty when entering a protected block.
13327 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13329         * verify.c: added is_clause_in_range, is_clause_inside_range,
13330         is_clause_nested and verify_clause_relationship. They perform
13331         the verifications stated in P1 12.4.2.7.
13333         * verify.c (mono_method_verify): remove some unused variables,
13334         add the new exception clause checks, add instruction border
13335         checks for protected block start/end, improved some error 
13336         messages and fixed a bug in the way invalid instruction access
13337         is detected.
13339 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13341         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13342         from GC 7.0 if available.
13344         * object.c: Remove an unused define.
13345         
13346         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13348         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13350         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13352         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13354         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13355         to take the same arguments as the other make_descr functions.
13357         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13359         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13360         directly.
13362         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13363         mini.c.
13365         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13366         call to boehm-gc.c.
13368         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13370         * null-gc.c (mono_gc_register_root): Fix a warning.
13372         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13374         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13375         (mono_gc_base_init): Call GC_init ().
13377         * null-gc.c: Define mono_gc_register_root () as a no-op.
13379         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13381 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13383         * verify.c: add prototype for merge_stacks at top
13385         * verify.c (do_switch): added.
13387         * verify.c (merge_stacks): on some cases the stack merging
13388         was not happening properly. Unequal stack sizes at merge
13389         points should be invalid.
13391         * verify.c (mono_method_verify): added more debug info on stack state.
13392         verify switch properly.
13394 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13396         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13397         marshal.h.
13399         * boehm-gc.c marshal.c: Include method-builder.h.
13401         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13403         * marshal.c: Remove some code which is now in method-builder.c.
13405 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13407         * method-builder.c: New file, extraction of the method builder functionality 
13408         from marshal.c.
13410         * marshal.c: Move the mb functions into method-builder.c.
13412         * marshal.h marshal.c: Export some mono_mb_... functions.
13414         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13416         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13417         the caller.
13419         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13421         * loader.c (mono_field_from_token): Ditto.      
13423         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13424         type as well.
13425         
13426         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13427         Fixes #342565.
13429         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13430         a helper function for setting it.
13432         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13434         
13435         * assembly.c: Significally simplify code now that referenced assemblies are 
13436         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13438         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13439         #349952.
13441 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13443         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13444         instructions that were target of branches or are at protected block boundaries.
13446         * verify.c (in_same_block): handle filter clauses.
13448         * verify.c (is_valid_branch_instruction): added. checks the target of
13449         instructions br or brtrue/false.
13451         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13452         binary branch instructions such as beq and bge.
13454         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13455         and made it pin the instruction as been part of the exception block.
13457         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13458         of in_same_block.
13460         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13461         of in_same_block.
13463         * verify.c (do_ret): ret from a protected block is unverifiable and
13464         not invalid.
13466         * verify.c (do_static_branch): verify br and br.s instructions.
13468         * verify.c (merge_stacks): add extra param to support detection
13469         of branches in the middle of instructions.
13470         
13471         * verify.c (mono_method_verify): verify branches and exception blocks
13472         that target the middle of instructions. Proper verification of br and br.s.
13474 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13476         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13477         skip_visibility field.
13478         (reflection_methodbuilder_from_dynamic_method): Ditto.
13480         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13481         registrations. Fixes #348193.
13483         * threads.h: Move the internal mono_thread_get_pending_exception () to
13484         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13486 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13488         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13489         icall registration. Fixes #348193.
13491         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13492         for corlib classes into object. Fixes #349621.
13494 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13496         * icall.c (property_accessor_nonpublic): new function to determine
13497         whether an accessor allows a property to be considered non-public.
13498         Returns false for private accessor(s) from parent class, and internal
13499         accessor(s) from parent on 2.0 profile (and higher).
13500         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13501         to determine whether property should be included if NonPublic flag
13502         is set. Fixes bug #349078.
13504 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13506         * verify.c (init_stack_with_value): added.
13508         * verify.c (mono_method_verify): extracted common
13509         code for exception initialization into init_stack_with_value.
13511         * verify.c (mono_method_verify): initialize the exception
13512         for handler clauses as well.
13514         * verify.c (mono_method_verify): fix the exception clause
13515         ordering rules, it should use handler end offset and not
13516         start offset.
13518 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13520         * rawbuffer.c: remove useless warning.
13522 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13524         * threads.h, threads-types.h: move functions to the correct header
13525         (fixes bug#349952).
13527 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13529         * verify.c (mono_method_verify): proper verification
13530         of exception handling clauses ranges and fallthru in
13531         and out of protected blocks.
13533 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13535         * verify.c (mono_method_verify): fixed compilation issue.
13537 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13539         * verify.c (mono_method_verify): a printf slipped in, changed
13540         to use verifier debug macro.
13542 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13544         * verify.c (is_correct_leave): check for filter clauses.
13546         * verify.c (do_filter): added.
13548         * verify.c (mono_method_verify): property verification of leave.
13551 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13553         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13554         Win32 build, until we figure out how to do the proper thing on
13555         Win32.
13557 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13559         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13560         by the previous patch.
13561         
13562         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13563         the assembly resolve handler for refonly assemblies.
13565 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13567         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13568         Make sure only one thread is allowed to commence shutdown, and
13569         don't allow new threads to be started once shutdown is in
13570         progress.
13572 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13574         * verify.c (is_correct_endfilter): added.
13576         * verify.c (is_unverifiable_endfilter): added.
13578         * verify.c (do_endfilter): added.
13580         * verify.c (mono_method_verify): property verification of endfilter
13581         and fixed a corner case or endfinally.
13583 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13585         * verify.h: new flags to support fail fast of unverifiable code and
13586         do non-strict verification. Non-strict verification is required to
13587         have MS runtime compatibility. There are a huge amount of unverifiable
13588         code that it accepts as verifiable. The strict mode verifies the code
13589         as the specs says.
13590         Non-strict mode will be required in cases where code needs to be
13591         accepted as verifiable but fails under strict mode.
13593         * pedump.c: added support to fail fast and non-strict verification.
13595         * verify.c: added support for both fail fast and non-strict verification.
13597 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13599         * verify.c (is_correct_endfinally): added.
13601         * verify.c (mono_method_verify): property verification of endfinally.
13603 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13605         * verify.c (in_any_block): check for filter clauses.
13607         * verify.c (is_correct_rethrow): added.
13609         * verify.c (mono_method_verify): property verification of rethrow.
13611         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13613 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13615         * verify.c (do_throw): added.
13617         * verify.c (mono_method_verify): property verification of throw
13619 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13621         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13622         assemblies. Fixes #346425.
13624 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13626         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13627         FieldBuilders.
13629         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13631         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13632         prevent asserts when this is called with a token which might not be valid.
13634         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13635         lookup_dynamic_token_class with valid_token == FALSE.
13637         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13639         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13641         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13642         
13643 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13645         * gc.c: Don't delay threadpool thread finalization unless Mono is
13646         shutting down.
13648 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13650         * threads.c: turn an assert into a non-fatal warning.
13652 2007-12-09  Robert Jordan  <robertj@gmx.net>
13654         * icall.c (GetVirtualMethod): Add missing argument validation.
13656 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13658         * verify.c (do_cast): added.
13660         * verify.c (mono_method_verify): property verification of castclass and isinst.
13663 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13665         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13667         * verify.c (do_stelem): added.
13669         * verify.c (mono_method_verify): property verification of stelem.X.
13671 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13673         * class.c, class-internals.h: Introduce an environment variable
13674         (MONO_GENERIC_SHARING) through which the extent of generic code
13675         sharing can be controlled (share all classes, share only corlib
13676         classes, or share nothing).
13678         * object.c: Only create runtime generic context for classes for
13679         which sharing is enabled.
13681 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13683         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13685         * verify.c (mono_method_verify): property verification of ldelem.any.
13687 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13689         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13690         added ldelem.X opcodes.
13692         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13694         * verify.c: proper verification of ldelem.X 
13696 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13698         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13700 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13702         * verify.c (mono_method_verify): null literal requires special handling,
13703         the value pushed on stack need to be flagged as so.
13705         * verify.c (do_ldelema): Verify ldelema properly.
13707 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13709         * verify.c: Verify ldlen properly.
13711 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13713         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13714         to the target object's type. Fixes #346160.
13716 2007-12-05  Dick Porter  <dick@ximian.com>
13718         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13719         Solaris needs the same workaround as BSD-derived systems.  Fixes
13720         bug 323524, patch by Burkhard Linke
13721         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13723 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13725         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13726         handle to use when error dialog is shown; otherwise, update mask
13727         to show no error dialog when an error occurs.
13729 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13731         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13733         * class.c (mono_class_get_field_default_value): New helper function to initialize
13734         field->def_type and field->data.
13736 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13738         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13739         the general one.
13741         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13743         * marshal.c: Avoid depending on delegate->method_info being set.
13745         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13746         
13747         * object.c (mono_delegate_ctor): Set delegate->method.
13749         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13751         * appdomain.c: Bump corlib version.
13753 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13755         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13756         equality check if we're comparing canonicalized MonoGenericInsts.
13758 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13760         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13761         accessing class->methods.
13763 2007-11-22  Dick Porter  <dick@ximian.com>
13765         * threads.c: Ensure that the synch_cs is set before trying to use
13766         it.
13768 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13770         * profiler.c: r89126 broke the statistial profiler, unbreak.
13772 2007-11-22  Martin Baulig  <martin@ximian.com>
13774         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13776         * mono-debug.c
13777         (mono_debug_debugger_version): Bump to 3.
13778         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13779         -> mono_debugger_class_initialized().
13781         * mono-debug-debugger.c
13782         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13784         * class.c
13785         (mono_debugger_start_class_init_func): Removed.
13786         (mono_debugger_class_loaded_methods_func): Added.
13787         (mono_class_setup_methods): Call it here.
13789 2007-11-22  Martin Baulig  <martin@ximian.com>
13791         * mono-debug.c
13792         (mono_debug_add_delegate_trampoline): New public method.
13793         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13795         * mono-debug.h
13796         (MonoSymbolTable): Added `global_data_table'.
13797         (MonoDebuggerTypeKind): Removed.
13799 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13801         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13802         these methods.
13804         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13805         
13806 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13808         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13810 2007-11-20  Martin Baulig  <martin@ximian.com>
13812         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13814         * mono-debug-debugger.c
13815         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13816         (mono_debugger_remove_breakpoint): Likewise.
13817         (mono_debugger_check_breakpoints): Likewise.
13818         (mono_debugger_register_class_init_callback): New public method.
13819         (mono_debugger_remove_class_init_callback): Likewise.
13820         (mono_debugger_add_type): Likewise.
13822         * mono-debug-debugger.h
13823         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13825 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13827         * class.c: more interface implementations needed for the
13828         array enumerator (fixes bug #341112).
13830 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13832         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13833         fix ParamName of ArgumentNullExceptions.
13835 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13837         * reflection.c (mono_reflection_encode_sighelper): Generate the
13838         modopts and modreqs.   I have a useless test that crashes monodis,
13839         but that shows the code working.
13841 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13843         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13844         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13846 2007-11-15  Dick Porter  <dick@ximian.com>
13848         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13849         When joining a thread, it's the thread that's calling Join that
13850         gets WaitSleepJoin state not the target.  Fixes the standalone
13851         test case in bug 334740, and hopefully the whole bug too.
13853 2007-11-15  Dick Porter  <dick@ximian.com>
13855         * process.c: Read file version info from the files pointed at by
13856         process modules, not the current process.  Fixes bug 315969.
13858         Use windows typedef names in some places to fix warnings on the
13859         windows build.
13861 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13863         * image.c, metadata-internals.h: Added a generic_class_cache hash
13864         to MonoImage for looking up generic classes when sharing generics.
13866 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13868         * sgen-gc.c: warning cleanups.
13870 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13872         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13873         inherited properties.
13875 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13877         * object.c, class-internals.h: Added more information to the
13878         runtime generic context.
13880 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13882         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13883         instead of just the target method. Generalize the abstract method handling to
13884         handle any non-static method.
13886         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13887         mono_marshal_get_delegate_invoke () signature change.
13889 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13891         * class.c, class-internals.h: Made
13892         mono_type_get_basic_type_from_generic () public.  Fixed member
13893         access check for shared generics.
13895         * loader.c: Don't insert field into field cache if it's part of a
13896         non-inflated generic class.
13898         * domain.c, domain-internals.h: The generic sharing context is now
13899         part of the jit info data structure.  Added two accessor
13900         functions.
13902 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13904         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13905         the array Get/Set/Address methods, since the JIT inlines them.
13907         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13909         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13910         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13912         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13913         mono_marshal_get_delegate_invoke signature change.
13915         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13916         an additional argument. Add support for invoking abstract methods.
13918         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13920         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13922 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13924         * class.c: Do field layout for open generic classes as well.
13926 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13928         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13929         other objects, because the threadpool is still around.  Put them
13930         in a list instead and after finalizing all other objects in the
13931         root domain shut down the thread pool and then finalize the
13932         threads.  Fixes bug #337383.
13934         * threads.c, thread-types.h: New mono_thread_create_internal()
13935         function for marking a thread with the threadpool flag before it
13936         started.  Set synch_cs to NULL after freeing it.
13938         * threadpool.c: Mark threadpool threads before they start.
13940 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13942         * reflection.h, reflection.c: don't export random functions
13943         and lazy load dbnull and missing objects.
13945 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13947         * class.c: Initialize COM types if COM interfaces
13948         are present (not just COM classes).
13949         
13950         Code is contributed under MIT/X11 license.
13952 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13953         * reflection.c:
13954         create_dynamic_mono_image: hook module profiler events (dynamic case).
13955         mono_image_basic_init: hook assembly profiler events (dynamic case).
13957 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13958         * profiler.c:
13959         simple_appdomain_unload: completely terminate the profiler
13960         instead of only processing the statistical samples.
13961         simple_shutdown: make sure this is really called exactly once,
13962         even in multithreaded applications, and always listen to
13963         appdomain events.
13964         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13965         here, the "[un]load" functions will do it.
13966         Fixes bugs #333791 and #325261.
13968 2007-11-07  Geoff Norton  <gnorton@novell.com>
13970         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13971         rather than depend on __APPLE__.
13973 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13975         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13977 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13979         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13980         UTF16 MonoString. Fix the crash from bug #335488
13982 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13984         * marshal.c: Correct (for non-Win32 OS) length != size in 
13985         mono_string_from_bstr. Fix #339530.
13987 2007-11-06  Geoff Norton  <gnorton@novell.com>
13989         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13990         to succeed
13992 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13994         * process.c: Added run-time GetProcessId API detection for Windows.
13996 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13998         * reflection.c  (mono_param_get_objects): If a parameter has the
13999         attribute [System.Runtime.InteropServices.Optional] we should
14000         set the DefaultValue of the ParameterInfo to be
14001         System.Reflection.Missing instead of DBNull.
14003         See bug #339013.
14005         (mono_get_reflection_missing_object): New method,
14006         returns the System.Reflection.Missing.Value singleton instance.
14008 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14010         * culture-info-table.h : regenerated.
14012 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14014         * icall.c: Use GetEnvironmentStrings on windows
14015         so we are using the same environment block as 
14016         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14017         #333740.
14018         
14019         Code is contributed under MIT/X11 license.
14021 2007-10-31  Martin Baulig  <martin@ximian.com>
14023         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14025         * mono-debug-debugger.h
14026         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14028 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14030         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14031         classes.
14033 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14035         * culture-info-table.h : regenerated.
14037 2007-10-30  Robert Jordan  <robertj@gmx.net>
14039         * icall-def.h, icall.c:
14040         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14042         Code is contributed under MIT/X11 license.
14044 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14046         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14047         inflated class instead of inflating them again.
14048         
14049         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14050         dynamic case.
14052         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14053         Call setup_supertypes () after klass->parent is set.
14054         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14056         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14057         for inflated instances of not yet created dynamic generic classes.
14058         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14059         times from inflated_method.
14060         (methodbuilder_to_mono_method): Ditto.
14062 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14064         * gc.c: code cleanup and removed old untested option of not creating the
14065         finalizer thread.
14067 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14069         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14070         creating a jump trampoline for dynamic methods.
14072 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14074         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14075         generic TypeBuilders when called from another method of the same type (bug #335131).
14078 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14080         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14081         doesn't seem to work perfectly.
14082         
14083         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14084         called multiple times.
14085         (methodbuilder_to_mono_method): Ditto.
14086         (resolve_object): Inflate FieldBuilder's.
14088 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14090         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14091         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14092         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14094 2007-10-26  Dick Porter  <dick@ximian.com>
14096         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14097         Thread initialisation changes
14099 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14101         * verify.c: fix compatibility check between arrays and System.Array
14103 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14105         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14106         too. Fixes #336999.
14108 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14110         * object.c (mono_value_box): Use typed allocation here.
14112 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14114         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14115         trampoline instead of compiling the method right away.
14117         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14119 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14121         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14122         related fields for dynamic classes. Fixes #334493.
14124 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14126         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14127         
14128         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14130         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14131         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14133         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14135         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14136         if needed.
14137         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14139 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14141         * marshal.c: Use correct key when removing item
14142         from ccw_hash.
14143         
14144         Code is contributed under MIT/X11 license.
14146 2007-10-17  William Holmes  <billholmes54@gmail.com>
14148         *marshal.c: Adding a case to marshal booleans to U1
14150         Code is contributed under MIT/X11 license.
14152 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14154         * class.c (mono_class_from_name): Search the modules compromising dynamic
14155         assemblies. Fixes #331601.
14157 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14159         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14160         exception if the type name contains an assembly component. Fixes #334203.
14162         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14163         modules inside dynamic assemblies. Fixes #334200.
14164         
14165         * reflection.c: Set image->public_key and image->public_key_length;
14167         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14168         fields.
14170         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14171         
14172 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14174         * metadata.c: Implemented correct comparing of generic classes.
14175         An inflated generic class can be equal to a non-inflated one if it
14176         is inflated with generic type variables as type arguments.  Fixes
14177         bug #333798.
14179 2007-10-15  Dick Porter  <dick@ximian.com>
14181         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14182         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14183         81646.
14185         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14186         instead of a monitor lock.  This means that monitor_try_enter and
14187         co can set the thread state safely.
14188         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14189         thread_interrupt_requested, so interrupt actually works.
14191         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14192         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14193         state accessor function
14195 2007-10-15  Martin Baulig  <martin@ximian.com>
14197         * mono-debug.h
14198         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14199         the debugger with the current runtime.
14201 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14203         * object.c, object-internals.h: added the ability to set a single
14204         trampoline for all the slots in a vtable.
14206 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14208         * marshal.c: deal with a possible race condition during multicast
14209         delegate invocation.
14211 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14213         * class.c: ensure value type methods don't have the synchronized
14214         flag set.
14216 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14218         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14219         breaks the build.
14221 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14223         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14224         to take an options parameter so that empty entries can be removed during
14225         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14227 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14229         * marshal.c: make sure we don't store the signature from a dynamic
14230         method into the runtime invoke cache (bug #327189).
14232 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14234         * marshal.c: make sure the wrapper methods are properly initialized.
14236 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14238         * metadata.c, metadata-internals.h: Generalized
14239         mono_type_stack_size() to mono_type_stack_size_internal() which
14240         takes an additional argument specifying whether it allows open
14241         types.
14243 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14245         * verify.c (do_invoke_method): handle typedbyref params
14246         correctly and check for unverifiable return values.
14248         * verify.c (do_newobj): fix a warning.
14250 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14252         * verify.c: don't tread typedbyref as allways unverifable,
14253         so uses, like (ld/st)loc.0 are valid. verify for the cases
14254         that it matters, like boxing related operations.
14256 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14258         * verify.c: add verification of the newobj opcode. verification
14259         of delegate instantation still missing due ldftn and virldftn not
14260         pushing the function type on stack
14262 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14264         * class-internals.h: Runtime generic context data structure
14265         definition.
14267         * object.c: Initialization of runtime generic context at runtime
14268         vtable creation time.
14270 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14271         * class.c (mono_class_create_from_typedef,
14272         mono_class_from_generic_parameter, mono_ptr_class_get,
14273         mono_fnptr_class_get, mono_bounded_array_class_get)
14274         * domain.c (mono_domain_create, mono_domain_free)
14275         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14276         * image.c (do_mono_image_load, mono_image_close):
14277         Hooked up load-unload profiler events.
14279 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14281         * domain.c: track statistics about the actual amount of native code
14282         allocated.
14284 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14286         * class.c: the valuetype enumerators don't have the additional
14287         supertypes interfaces.
14289 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14291         * class.c: need more interfaces setup for the IEnumerator<T>
14292         object created for arrays (tests/ienumerator-interfaces.2.cs).
14294 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14296         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14298 2007-10-05  Alp Toker  <alp@atoker.com>
14300         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14301         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14302         #315863.
14304 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14306         * verify.c (verify_type_compatibility_full): verification of
14307         compatibility improved, validates correctly non-strict checks between
14308         native int and I4 types different than (unsigned)int32.
14310         * verify.c (do_store_indirect): added, do all verification of
14311         ldind.X opcodes. 
14313         * verify.c (get_load_indirect_mono_type): renamed to
14314         get_indirect_op_mono_type, as it now returns the MonoType for 
14315         ldind.X and stind.X opcodes.
14317 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14319         * reflection.c: Fix the encoding of generic type definition for
14320         TypeBuilders.
14322         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14323         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14324         be made. Typespec check is done prior to typeref cache lookup.
14326         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14327         mono_image_typedef_or_ref_full.
14329         * reflection.c (encode_generic_class): encode the generic class
14330         directly instead of calling encode_type.
14332         * reflection.c (encode_type): encode the generic type definition
14333         MonoClass as a generic instantiation.
14335         * reflection.c (create_typespec): cache typespec tokens in
14336         the assembly->typespec cache. Don't create typespec for a generic
14337         instance MonoClass. Create typespec for the generic type defintion.
14339         * reflection.c (create_generic_typespec): encode the generic
14340         class directly instead of calling encode_type.
14342         * reflection.c (mono_image_create_token): encode the generic
14343         type definition not using a typespec for MonoType instances.
14346 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14348         Fix #328812
14349         * class.c (mono_image_init_name_cache): Don't return nested
14350         'protected internal' classes.
14351         (mono_class_from_name_case): Likewise.
14353 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14355         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14356           common function used by both DefaultConfig in System.dll and
14357           InternalConfigurationHost in System.Configuration.dll.
14359 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14361         * class.c: automatically add to vectors only a few essential explicit
14362         generic interfaces. The rest of the interfaces that arrays should
14363         provide are currently implicitly added (but still not lazily, see the
14364         design in the discussion of bug#325495 for the details of what is
14365         needed for that). Additionally, implicit interfaces are assigned the
14366         same vtable slot as the explicit interfaces (as they are compatible):
14367         this enables huge memory savings since we don't need to instantiate
14368         as many memthods and as large vtables anymore. Also, Since
14369         GetEnumerator<T> returns an instance of a type that is required to
14370         support a similarly large set of interfaces as arrays, we add
14371         implicit interfaces and interface offset sharing support to those
14372         types, too. This change adds all the required interfaces so that
14373         the anonarray.cs test case in the bug report works (we don't add
14374         all the interfaces to arrays of arrays 3-level deep and more because
14375         of the memory requirements explained in the bug and since they are much
14376         less common: the lazy-loading support will enabled them to work, too).
14378 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14380         * verify.c (merge_stacks): major clean up, all type compatibility
14381         checks are done by verify_type_compatibility. This fix my earlier lack
14382         of understanding of the CLR type system and merge_stacks no longer looks
14383         scary.
14385         * verify.c: fixed some bad spelling.
14387 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14389         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14390         a given stack slock.
14391         
14392         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14393         verify_type_compatibility_full. This removed a near indentical function and fixed
14394         handling of Int32 and IntPtr across all opcodes.
14396 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14398         * class.c: only vectors have the additional generic interfaces.
14400 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14402         * mono-config.c: Use g_strcasecmp instead of
14403         strcasecmp like everywhere else to fix
14404         compilation with MSVC.
14405         
14406         Code is contributed under MIT/X11 license.
14408 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14410         * object.c, object-internals.h: refactored the IMT code to enable
14411         building a single slot at a time and lazily creating the IMT trampolines
14412         and thunks.
14414 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14416         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14418         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14419         Fixes #328501.
14420         
14421 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14423         * loader.c (method_from_methodspec): Rearrange to avoid
14424         un-necessary exposition.  Don't assert out if the method's
14425         declaring type is a generic type definition.
14427 2007-09-28  Martin Baulig  <martin@ximian.com>
14429         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14431 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14433         * class-internals.h: optimize field layout of MonoClass to
14434         requires less cachelines at runtime and save a few bytes on 64 bit
14435         systems.
14437 2007-09-28  Jb Evain  <jbevain@novell.com>
14439         * reflection.c: when encoding type names in custom attributes,
14440         if the type is a closed generic type, its generic arguments
14441         have to be serialized as AssemblyQualifiedName, so that when
14442         they are deserialized, it's possible to re-create them properly.
14443         Fixes #329450.
14446 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14448         * object.c, class-internals.h: added delegate-creation counter.
14450 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14452         * class.c: cleanup of the code that synthetizes interfaces for
14453         arrays in 2.0: saves quit a bit of corlib mempool memory.
14454         Code to fix bug #325495 ifdeffed out for now until the issues
14455         with memory usage and O(n^2) behaviour are fixed.
14457 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14459         * marshal.c: when possible, do not duplicate the name of the methods
14460         in the method builder and in the generated MonoMethod.
14462 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14463         * verify.c: added support for type checking ldind_* opcodes.
14465 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14467         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14468         which is used to distinguish the fully open instantiation of a TypeBuilder
14469         with the rest. This temporary hack is required to restore the property that
14470         the fully open instantiation is the same type of the generic type definition.
14472         * class-internals.h (mono_generic_class_is_generic_type_definition):
14473         new function as part of the internal API.
14475         * class.c (inflate_generic_type): return NULL when the generic inst is
14476         fully open. The fully open generic type is now the same as the generic type
14477         definition for non TypeBuilder types.
14479         * class.c (mono_generic_class_get_class): removed assert since it is
14480         no longer valid, gklass->cached_class can point to the generic type definition.
14482         * class.c (mono_generic_class_is_generic_type_definition): new.
14484         * metadata.c (mono_generic_class_hash): added is_tb_open field
14485         to the hash calculation.
14487         * metadata.c (free_generic_class): if the generic class is associated
14488         with the generic type definition, its field will come from the mempool and
14489         must not be freed.
14491         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14492         new, this function identifies the corner case of a TypeBuilder fully open
14493         instantiation.
14495         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14496         for lookup. Set gclass->cached_class to be the container class in case of
14497         the fully open instantiation of non TypeBuilder types.
14499         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14500         to compare generic classes.
14502         * reflection.c (method_encode_methodspec): remove assert that
14503         no longer is valid.
14505         * reflection.c (mono_reflection_generic_class_initialize): add
14506         an aditional assert to ensure the proper type is used.
14508 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14510         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14511         to enjoy it.
14513 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14515         * verify.c (push_arg): Fixed support for ldarga
14516         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14517         MonoType used as first arg in case of instance calls.
14519 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14521         * verify.c: Support for verifying VAR and MVAR types, 
14523 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14525         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14526         accessors correctly.
14528 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14530         * threads.c: support OSX and other systems in
14531         mono_thread_get_stack_bounds (bug #328026).
14533 2007-09-25  Martin Baulig  <martin@ximian.com>
14535         * mono-debug.h
14536         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14538 2007-09-24  Martin Baulig  <martin@ximian.com>
14540         * mono-debug.h
14541         (MonoDebugClassEntry): Moved the definition of this struct into
14542         mono-debug.c to make it private.
14544         * mono-debug.c
14545         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14546         type table per symbol file, we don't need to store the symfile id
14547         any longer.
14549 2007-09-24  Martin Baulig  <martin@ximian.com>
14551         Create one type table per symbol file, since a `MonoClass *' gets
14552         invalid when its image is unloaded.
14554         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14555         (MonoDebugHandle): Added `type_table'.
14557 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14559         * mempool.c, mempool.h: added mono_mempool_new_size () API
14560         to be able to specify a smaller initial size for the pool.
14561         Adjusted the code to slowly increase pool size before using
14562         the previous default size.
14563         * image.c: use a small initial size for image mempools.
14565 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14567         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14568         Fixes ##320990.
14570         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14571         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14573 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14575         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14576         free. Fixes #327438.
14578 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14580         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14581         generic instantiations, etc.
14582         <MONO_TYPE_ARRAY>: Likewise.
14584 2007-09-21  Martin Baulig  <martin@ximian.com>
14586         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14587         these structs were never defined.
14588         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14590 2007-09-21  Martin Baulig  <martin@ximian.com>
14592         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14594 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14596         * image.c: removed the guid hash tables: we can get the same info
14597         without the additional memory usage hit (partially fixes also bug #327052).
14599 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14601         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14602         event to handle unloading methods. After the event is called, the
14603         corresponding MonoMethod* must be considered invalid.
14604         * loader.c (mono_free_method): call the new mono_profiler_method_free
14605         event.
14607 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14609         * domain-internals.h: New flag in MonoJitInfo which marks shared
14610         generic methods.  New hash table (shared_generics_hash) in
14611         MonoDomain to keep track of shared generic methods.  Prototypes
14612         for functions to register and lookup shared generic methods.
14614         * domain.c: Support for registering and looking up shared generic
14615         methods via a hash table (shared_generics_hash) in MonoDomain.
14617         * class-internals.h: New exception to signal failure of shared
14618         compilation of a generic method.  New counters for generics
14619         sharing in MonoStats.
14621 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14623         * image.c, metadata-internals.h: don't keep a file descriptor open
14624         for loaded assemblies (bug#325988).
14626 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14628         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14629         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14630         use the corresponding datatypes.
14631         (type_in_image): Update to changes.
14632         (CleanForImageUserData): Simplify.
14633         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14634         Avoid quadratic behaviour in handling the "stolen" list by
14635         separating the filter predicate out, and by prepending the stolen
14636         items rather than appending them.
14637         (steal_ginst_in_image): Likewise.
14638         (mono_metadata_clean_for_image): Update to changes.
14640 2007-09-19  Martin Baulig  <martin@ximian.com>
14642         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14644 2007-09-19  Martin Baulig  <martin@ximian.com>
14646         * mono-debug.c (mono_debug_cleanup): Don't call
14647         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14649 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14651         Fix crash on 'make run-test' in mcs/errors
14652         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14653         Avoid more potential allocations in mono_class_from_mono_type.
14654         (ginst_in_image): Update to changes.
14655         (gclass_in_image): Rearrange slightly.
14657 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14659         * class.c (mono_class_init): Move the code that sets up class->methods to 
14660         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14662         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14663         canonical instance of an inflated generic signature.
14664         (mono_type_create_from_typespec): Remove an invalid free.
14666         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14668 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14670         * domain-internals.h: added a declaration of the
14671         mono_assembly_load_full_nosearch internal function.
14673         * assembly.c (mono_assembly_load_with_partial_name): use
14674         mono_try_assembly_resolve return value properly.
14675         (mono_assembly_load_full_nosearch): copied the function body from
14676         mono_assembly_load_full, without the code to invoke assembly
14677         search hooks.
14678         (mono_assembly_load_full): calls the above new function and if the
14679         assembly is not resolved, invokes the search hooks.
14681         * appdomain.c (mono_runtime_init): restore the global postload
14682         assembly search handlers.
14684 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14686         * class.c (mono_class_init): Make sure class->methods and class->properties
14687         are never NULL in the generics case.
14689         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14691 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14693         * metadata.c (free_generic_class): Disable some code to fix the build.
14695         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14697         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14698         from the image mempool.
14700         * metadata.c (free_generic_class): Free more data from the inflated class.
14702         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14704         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14705         mempool.
14706         (mono_type_create_from_typespec): Ditto.
14708         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14709         MonoImage to the caller.
14710         (mono_init_internal): Save the opened image in a global variable.
14711         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14713         * reflection.c (resolve_object): Fix a leak.
14715         * metadata.c: Fix the freeing of data in the generics caches.
14716         
14717         * metadata.c (free_generic_inst): Comment this out to fix the build.
14718         (free_generic_class): Ditto.
14720         * metadata.c: Free cached generic methods, instantinations and classes when
14721         they are removed from the caches.
14722         (mono_metadata_free_type): Free the type itself.
14724         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14725         places.
14727 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14729         * boehm-gc.c: restrict managed allocs to __thread supporting
14730         architectures.
14732 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14734         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14735         (mono_generic_class_get_class): Fix a leak.
14737         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14738         mono_metadata_free_type ().
14739         (mono_metadata_inflate_generic_inst): Fix a leak.
14741 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14743         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14745         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14746         mempool.
14748         * mono-debug.c (mono_debug_close_image): Fix call to 
14749         g_hash_table_remove ().
14751 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14753         * icall-def.h: redirect all the string ctor to the managed
14754         CreateString () methods.
14755         * string-icalls.c, string-icalls.h: removed dead code for string
14756         ctors and icalls.
14758 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14760         * mono-debug.c: Fix memory leaks.
14762 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14764         * threads-types.h: Implement mono_hazard_pointer_set and 
14765         mono_hazard_pointer_clear macros using do/while(0) to fix
14766         compilation with MSVC.
14767         
14768         Code is contributed under MIT/X11 license.
14770 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14772         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14773         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14775 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14777         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14778         icalls.
14780 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14782         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14783         managed-code allocated as well.
14785 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14787         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14789 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14791         * boehm-gc.c: fixed the build after the AOT changes.
14793 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14795         * wrapper-types.h: Add an ALLOC wrapper type.
14797         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14798         reference managed allocator methods.
14800 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14802         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14803         of Type array and not MonoType, a fix suggested by Hari.
14804         
14805 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14807         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14808         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14809         
14810         Code is contributed under MIT/X11 license.
14812 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14814         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14816 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14818         * image.c (do_mono_image_open): if assembly file fails to open and
14819         MONO_IOMAP is in effect, try to find the path in a
14820         case-insensitive way.
14822         * appdomain.c (mono_runtime_init): do not install postload hooks -
14823         tests show that MS.NET doesn't use anything of that sort to
14824         trigger the AppDomain.AssemblyResolve event.
14825         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14826         made non-static.
14827         (mono_runtime_init): init portability helpers here.
14829         * assembly.c (mono_assembly_load_with_partial_name): if other   
14830         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14831         to resolve the assembly.
14833         * domain-internals.h: added mono_try_assembly_resolve and marked
14834         it as internal.
14836 2007-09-11  Jb Evain  <jbevain@novell.com>
14838         * object-internals.h (MonoReflectionDynamicMethod): add
14839         a `MonoReflectionType *owner` field. The owner is used
14840         * reflection.c:
14841         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14842         method as the class declaring the dynamic method.
14843         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14844         dynamic method to the declaring type of the methodbuilder.
14846 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14848         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14849         rules for calling methods via reflection.
14851 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14853         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14854         Inflate MonoType's.
14856 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14858         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14859         provide a managed method that does fast allocations without needing
14860         a managed->unmanaged transition. Boehm GC implementation currently
14861         enabled for ptrfree objects on sane architectures.
14863 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14865         * marshal.c, marshal.h: exported a couple of useful functions and
14866         added mono_mb_get_label () to easily handle backward branches.
14868 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14870         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14872 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14874         * loader.c (find_method): Fixed the regression introduced while
14875         fixing bug #81466.
14877 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14879         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14880         well.
14881         
14882         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14883         icall.c reflection.c: Pass a MonoGenericContext argument to 
14884         mono_lookup_dynamic_token ().
14886         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14887         #82744.
14888         
14889 2007-09-09  Robert Jordan  <robertj@gmx.net>
14891         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14892         for generic methods.
14894         * object.c (mono_object_get_virtual_method): Handle generic methods.
14895         Fixes bug #78882.
14897         Code is contributed under MIT/X11 license.
14899 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14901         * image.c: fix locking in mono_image_load_file_for_image ().
14903 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14905         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14906         used only as a cache: added an icall to fill it.
14908 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14910         * reflection.h: exposed mono_reflection_free_type_info
14911         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14912         since mono_reflection_bind_generic_parameters makes a copy of it.
14913         * reflection.c (free_type_info): subinfos should be freed.
14914         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14915         made non static.
14916         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14917         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14918         this fixes #82695 and #81726.
14919    
14921 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14923         * process.h, process.c:  added support for user profile/info in
14924           ProcessStartInfo. For now only Windows works.
14926 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14928         * metadata.c: consider the generic arguments when comparing
14929         signatures (bug #82614).
14931 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14933         * cil-coff.h, image.c: updated assembly loader to cope with the
14934         PE32+ 64 bit file format.
14936 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14938         * assembly.c, class.c, domain.c, loader.c: remove useless
14939         inclusion of cil-coff.h.
14941 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14943         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14944         if interface is marked with CoClassAttribute. 
14945    
14946         Code is contributed under MIT/X11 license.
14948 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14950         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14951         if it's seen twice in major collections.
14953 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14955         * sgen-gc.c: big objects are not copied to the gray area, but they
14956         need to be considered for scanning, too, if they are brought alive
14957         by an object ready for finalizations or a survived one.
14959 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14961         * sgen-gc.c: properly account the number of disappearing links when
14962         they are nullified.
14964 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14966         * sgen-gc.c: share the code to scan the registered roots between the
14967         different types of collections.
14969 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14971         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14973 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14975         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14976         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14978 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14980         * security-manager.c (mono_security_manager_get_methods):
14981         LinkDemandSecurityException now has 2 arguments instead of 3.
14983 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14985         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14986         platforms which need it.
14988 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14990         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14991         dtor.
14993 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14995         * threads.c: free the thread static data on thread exit.
14997 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14999         * class.c: walk the hierarchy to find the generic definition for
15000         a class (fixes runtime part of bug #82498).
15002 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15004         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15005         ...
15007         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15009 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15011         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15013 2007-08-24  Robert Jordan  <robertj@gmx.net>
15015         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15017 2007-08-24  Jb Evain  <jbevain@novell.com>
15019         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15020         for byref types.
15022 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15024         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15025         #82286.
15027 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15029         * assembly.c: Fix a warning.
15030         
15031 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15033         * appdomain.c: parse the <runtime> section looking for the probing
15034         element with the 'privatePath' attribute, which sets additional
15035         directories in which the runtime should look for assemblies.
15037 2007-08-23  Robert Jordan  <robertj@gmx.net>
15039         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15040         Fixes #82499.
15042 2007-08-23  Martin Baulig  <martin@ximian.com>
15044         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15045         _mono_debug_init_corlib() and remove it from the header file.
15047 2007-08-23  Martin Baulig  <martin@ximian.com>
15049         * mono-debug-debugger.c
15050         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15051         don't notify the debugger about it.
15053         * mono-debug-debugger.h
15054         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15056 2007-08-23  Robert Jordan  <robertj@gmx.net>
15058         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15059         Code is contributed under MIT/X11 license.
15061 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15063         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15065 2007-08-22  Martin Baulig  <martin@ximian.com>
15067         * mono-debug.c: Store debugging info on a per-domain basis and
15068         free it on domain unload.  Add support for unloading symbol files.
15070         * mono-debug.h
15071         (MonoDebugList): New typedef.
15072         (MonoSymbolTable):
15073         - add `data_tables and `type_table'.
15074         - replace 'symbol_files' and `num_symbol_files' with a
15075           `MonoDebugList *'.
15076         (mono_debug_data_table): Removed.
15077         (mono_debug_list_add): New public function.
15078         (mono_debug_list_remove): New public function.
15079         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15080         (mono_debug_init_2_memory): Renamed into
15081         mono_debug_open_image_from_memory().
15082         (mono_debug_close_image): New public function.
15083         (mono_debug_domain_create): Likewise.
15084         (mono_debug_domain_unload): Likewise.
15085         (MONO_DEBUGGER_VERSION): Bump to 60.
15087         * mono-debug-debugger.h
15088         (MonoDebuggerEvent):
15089         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15090         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15091         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15092         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15093           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15094         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15095           meaning.
15096         (mono_debugger_add_symbol_file): Removed.
15097         (mono_debugger_add_type): Removed.
15098         (mono_debugger_lookup_type): Removed.
15099         (mono_debugger_lookup_assembly): Removed.
15101         * domain.c
15102         (mono_domain_create): Call mono_debug_domain_create().
15103         (mono_init_internal): Call mono_debug_init_corlib().
15105         * assembly.c
15106         (mono_assembly_close): Call mono_debug_close_image().
15108 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15110         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15111         mmap call.
15113 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15115         * sgen-gc.c: ensure section->pin_queue_end is initialized
15116         correctly when non pinning objects in the section have been found.
15118 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15120         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15121         containing a list of directories separated by ':'. MSDN docs say
15122         the directories should be separated with ';'. Part of a bugfix for
15123         bug #81446
15125 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15127         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15128         it should MonoType and not MonoClass.
15130 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15132         * culture-info-table.h : regenerated.
15134 2007-08-20  William Holmes  <billholmes54@gmail.com>
15136         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15137          to call ReplaceFile Kernel32 on windows or in io-layer.
15138         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15139         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15140          as an internal call.
15142         Code is contributed under MIT/X11 license.
15144 2007-08-20  Jb Evain  <jbevain@novell.com>
15146         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15147         and MONO_EXCEPTION_FIELD_ACCESS.
15149         * debug-helpers.[c|h]: new mono_field_full_name function.
15151 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15153         * class.c: Removed class_security_level() and moved it to
15154         security-core-clr.c.
15156         * security-core-clr.c, security-core-clr.h: class_security_level()
15157         is now public and renamed to mono_security_core_clr_class_level().
15158         It also looks for security attributes in the classes a class is
15159         nested in.
15161 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15163         * security-core-clr.c, security-core-clr.h: CoreCLR security
15164         utility functions.
15166         * Makefile.am: Added security-core-clr.[ch].
15168         * security-manager.c, security-manager.h: Functions and enum for
15169         setting and getting the security mode.
15171         * class.c: CoreCLR security checks.
15173 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15175         * icall-def.h, process.c, process.h: implemented icall to get
15176         user/system processor times.
15178 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15180         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15181         reader-lock-free jit_info_table.
15183 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15185         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15187         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15189         * object-internals.h (MonoException): Add missing _data member.
15191 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15193         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15194         checking that only methods with matching qname or fqname are picked
15195         from implemented interfaces.
15197 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15199         * verify.c (do_newarr):added, do type verification of
15200         newarr ops, push the right value on the eval stack.
15201         * verify.c (mono_method_verify): use do_newarr
15204 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15206         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15207         factored the common code into get_boxable_mono_type, which
15208         is now using mono_type_get_full, this fixed byref related tests.
15210 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15212         * class.c: added mono_type_get_full, this function has the same
15213         behavior of mono_class_get_full but the returned MonoType has
15214         all metadata of the associated token in case of a typespec token.
15215         * class.c: added mono_type_retrieve_from_typespec, used by 
15216         mono_type_get_full to retrieve the token type.
15217         * class.c (mono_class_create_from_typespec): changed to use
15218         mono_type_retrieve_from_typespec.
15219         * class.c (mono_ldtoken): changed to use mono_type_get_full
15220         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15221         * class-internals.h: exported mono_type_get_full for internal use.
15223 2007-08-16  Jb Evain  <jbevain@novell.com>
15225         * domain.c (supported_runtimes): add entry for
15226         the 'moonlight' runtime version.
15228 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15230         * verify.c (mono_method_verify): small typo sliped in.  
15232 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15234         * verify.c (do_unbox_value): added, do type verification of
15235         unboxing ops
15236         * verify.c (mono_method_verify): use do_unbox_value
15239 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15241         * verify.c (dump_stack_value): fixed typo, was printing string
15242         instead of object on stack.
15243         * verify.c (do_box_value): moved the byref check up as it leads
15244         to invalid code and should be done earlier.
15245         * verify.c: improved error messages for and ldobj
15247 2007-08-15  William Holmes  <billholmes54@gmail.com>
15249         * marshal.c (emit_marshal_custom): Omit the call to 
15250           marshal_native_to_managed when calling native to managed 
15251           and the argument is specified as an out argument.
15253         Code is contributed under MIT/X11 license.
15255 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15257         * verify.c: fixed the type checks for generics, function pointers and vectors.
15258         Added type verification for ldobj and ldtoken. The verifier
15259         would segfault if header or signature of a method contained references
15260         to non-existant types.
15262 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15264         * marshal.c (cominterop_get_ccw): Patch from
15265         Bill Holmes to no walk up interface hierarchy. 
15266         All parent methods should be present in the interface for COM.
15267    
15268         Code is contributed under MIT/X11 license.
15270 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15272         * marshal.c (emit_marshal_com_interface): Patch from
15273         Bill Holmes to handle COM Interfaces as return values
15274         for native->managed calls.
15275    
15276         Code is contributed under MIT/X11 license.
15278 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15280         * marshal.c (cominterop_get_idispatch_for_object): Implement
15281         for runtime callable wrappers.
15282    
15283         Code is contributed under MIT/X11 license.
15285 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15287         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15288         so 2.0 types are accessible
15291 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15293         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15294         once we load mscorlib.   Due to the order in which we initialize,
15295         the mono_assembly_load_full routine that loads mscorlib did not
15296         load friends.   We now load it once we load the
15297         mono_defaults.internals_visible_class class. 
15299         * assembly.c: Expose the mono_load_friend_assemblies method.
15301 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15303         * verify.c: improved the handling of boxing, better
15304         type checking for unary ops and conversion. Fix bug
15305         regarding managed pointer compatibility checking
15307 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15309         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15311         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15313 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15315         * reflection.c (dup_type): Remove.
15316         * class.c (dup_type): Remove.
15317         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15318         instead of the dodgy 'dup_type'.
15319         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15320         handle the case where 'dup_type' needed the second argument.
15322 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15324         * domain.c: Fix a warning.
15326 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15328         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15329         checking that methods with the same fqname are not overridden
15330         with a method from an ancestor.
15332 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15334         * threads.c (free_thread_static_data_helper): Avoid a crash if
15335         thread->static_data is not yet set.
15337 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15339         * marshal.c: Use correct image when emitting
15340         native wrapper for COM calls.
15341    
15342         Code is contributed under MIT/X11 license.
15344 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15346         * icall-def.h, security.c, security.h :
15347           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15349 2007-08-07  Martin Baulig  <martin@ximian.com>
15351         * mono-debug-debugger.h
15352         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15354         * domain.c (mono_domain_free): Call
15355         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15357 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15359         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15360         * verify.c (in_same_block): code should test if either offset is inside the clauses
15361         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15362         and filter blocks
15364 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15366         * image.c (mono_image_close): Fix a leak.
15368         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15370         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15372 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15374         * domain.c, threads.c, threads-types.h: fix memory retention issue
15375         with thread static variables not being cleared on domain unload.
15376         Reuse thread static slots after domain unload.
15378 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15380         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15381         nullable type.
15383         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15384         now done in mono_runtime_invoke_array.
15386         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15387         receiver is a nullable type.
15389         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15390         generic parameter.
15392 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15394         * marshal.c: Implement COM Objects as return type for 
15395         managed->unmanaged calls. Added Release calls for COM Object
15396         out/return values in managed->unmanaged calls.
15398         Code is contributed under MIT/X11 license.
15400 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15402         * threads.h, threads-type.h: move the hazard pointer declarations
15403         to the private header.
15405 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15407         * file-io.c, appdomain.c: memory leak fixes.
15409 2007-08-02  Dick Porter  <dick@ximian.com>
15411         * socket-io.c
15412         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15413         SO_REUSEADDR setting into io-layer/sockets.c.
15415 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15417         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15418         from Object when called on a generic parameter. Fixes #82211.
15420 2007-08-01  Dick Porter  <dick@ximian.com>
15422         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15423         Fixes bug 79250 yet again.
15425 2007-07-30  Martin Baulig  <martin@ximian.com>
15427         Merged the `debugger-dublin' branch.
15429         * mono-debug.h
15430         (MonoDebugDataTable): New typedef.
15431         (MonoDebugMethodAddressList): New typedef.
15432         (MonoDebugWrapperData): Removed.
15433         (MonoDebugSymbolTable): Removed `current_data_table',
15434         `current_data_table_size', `current_data_table_offset'.
15435         (MonoDebugDataItemType): Moved into mono-debug.c.
15436         (MonoDebugMethodJitInfo): Remove `address'.
15437         (mono_debug_data_table): New global variable.
15438         (mono_debug_lookup_method_addresses): New public function.
15439         (mono_debug_find_method): Take a `MonoMethod *', not a
15440         `MonoDebugMethodInfo *'.
15442         * mono-debug.c: Drop support for the old symbol tables.
15444 2007-06-28  Martin Baulig  <martin@ximian.com>
15446         * mono-debug.c (mono_debug_debugger_version): New public variable.
15448 2007-07-31  William Holmes  <billholmes54@gmail.com>
15450         * metadata.c Changed mono_type_create_from_typespec to not insert
15451           the type into the hash map until after
15452           do_mono_metadata_parse_type has completed.
15453         Fixes Bug #82194
15454         Code is contributed under MIT/X11 license.
15456 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15458         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15459         generic parameter. Fixes #82211.
15461 2007-07-27  Jb Evain  <jbevain@novell.com>
15463         * pedump.c (dump_metadata, dump_metadata_header): dump
15464         versions contained in the metadata header.
15466 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15468         * threads.c: register small_id_table with the GC.
15470 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15472         * threads.c, threads.h, class-internals.h, object-internals.h:
15473         Hazard pointers, to be used by lock-free parallel algorithms.
15475 2007-07-26  Dick Porter  <dick@ximian.com>
15477         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15478         routine on non-windows platforms, as I've not managed to think of
15479         a non-kludgy way of doing this.  Finishes off bug 78739.
15481 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15483         * object.c: properly setup interface_bitmap in proxy vtables.
15485 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15487         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15488         to create unique shadow copy target directories, use the domain's
15489         serial number instead. Each domain gets a unique target directory
15490         that way.
15492         * domain.c (mono_domain_create): added code to increment domain
15493         shadow copy serial number and cache the value in the current
15494         domain structure.
15496         * domain-internals.h (struct _MonoDomain): added a new field -
15497         shadow_serial to hold the serial number used in generation of
15498         shadow-copy directories. This is to make sure that the directory
15499         name is unique for each and every domain created. We avoid a race
15500         condition with overriding assemblies already in use by other app
15501         domains.
15503 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15505         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15506         binding generic parameters.
15508 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15510         * metadata.c (do_mono_metadata_parse_generic_class): Use
15511         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15512         error.
15514 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15516         * loader.c, class-internals.h, reflection.c: removed the per-method
15517         generics hashtable: we use the global one through the call of
15518         mono_class_inflate_generic_method ().
15520 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15522         * class.c, metadata.c, class-internals.h: introduce yet another
15523         generics global cache for inflated methods (fixes 98% of the perf
15524         issue in bug #81806).
15526 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15528         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15529         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15530         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15531         return a MonoGenericInst containing (a copy) of those types.
15532         (mono_metadata_inflate_generic_inst): Update to changes.
15533         (mono_metadata_parse_generic_inst): Likewise.
15534         (mono_get_shared_generic_inst): Likewise.
15535         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15536         (mono_reflection_bind_generic_method_parameters): Likewise.
15537         * metadata-internals.h: Likewise.
15538         * icall.c (free_generic_context): Kill.
15539         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15541         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15542         mono_metadata_type_dup.
15543         * marshal.c (mono_mb_create_method): Likewise.
15545         * metadata.c (mono_metadata_type_dup): Rename from
15546         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15547         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15548         * marshal.c, metadata-internals.h: Update to changes.
15550 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15552         * class.c: fixed a small leak for array classes and removed warning.
15554 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15556         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15557         Return 0x8000000 for return parameters. Fixes #82161.
15559 2007-07-21  Marek Habersack  <grendello@gmail.com>
15561         * appdomain.c (get_shadow_assembly_location): append the current
15562         ticks value to the path. Avoids overwriting the same assemblies by
15563         several threads at the same time.
15565 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15566         and Raja R Harinath  <rharinath@novell.com>
15568         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15569         Simplify slightly.
15570         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15571         property for testing if a method is a generic method definition.
15573 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15575         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15577 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15579         * verify.c: used function from private branch, reverted to the one in class.h 
15581 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15583         * verify.c: a typo slipped in and the code wont compile
15585 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15587         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15588         disabled box instruction as it is doing the wrong thing
15589         improved stack dump messages, now it is easier to debug type related issues
15592 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15594         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15596 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15598         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15599         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15600         grouped with class and valuetype. This change will simply 
15601         the code as it should be handled just like unmanaged pointers.
15603 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15605         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15607 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15609         * verify.c: several stack merge issues fixed, reference comparisons now
15610         check the type size. strict type check now works correctly.
15611         added more uses of IS_MANAGED_POINTER macro.
15612         fixed issues pointed by running the test suite against .net.
15613         
15615 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15617         * class.c, loader.c, class-internals.h: Removed the
15618         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15619         defines.
15621         * icall.c: Better error checking in some internal reflection
15622         methods.
15624 2007-07-18  William Holmes  <billholmes54@gmail.com>
15626         * filewatcher.c : removed unused variable 'filename' in 
15627           ves_icall_System_IO_FSW_SupportsFSW
15629 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15631         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15632         obsolete, removed.
15634 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15636         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15637         
15638         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15640 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15642         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15643         Implement generics support.
15644         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15646         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15647         type_args and method_args arguments.
15648         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15649         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15650         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15652 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15654         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15655           It adds a rootimage parameter to mono_reflection_get_type_internal,
15656           adds new function mono_reflection_get_type_with_rootimage and use
15657           the rootimage to resolve the types instead of the current image
15659 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15661         * culture-info-table.h: Forgot to update after r78304.
15663 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15665         * class.c (mono_class_is_open_constructed_type)
15666         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15668 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15670         * class.c (mono_bounded_array_class_get):  method fails if used with
15671         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15672         avoiding calculating the size for such array as it cannot be instantiated.
15673         Fix bug #82015
15675 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15677         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15678         field.
15679         * metadata.c, reflection.c: Update to changes.
15681 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15683         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15684         mono_class_is_valid_enum, they are used to valide a enum when loading.
15685         * reflection.c: used new functions to throw TypeLoadException when and
15686         invalid enum is build with TypeBuilder. Fixes #82018
15687   
15688 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15690         * object.c: forgot commit of mono_class_setup_methods () to access
15691         iface->methods.
15692         * object-internals.h: added a few more handy fields to
15693         MonoIMTCheckItem.
15695 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15697         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15698         iface->methods.
15700 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15702         * class-internals.h, object-internals.h, object.c: IMT-based
15703         interface invocation core from Massimiliano Mantione
15704         (massi@ximian.com) with a reworked arch-specific interface,
15705         bsearch implementation and a few bugfixes and memory savings by me.
15707 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15709         * class.c (mono_class_create_from_typedef): mono would segfault if 
15710         an enum did not have a __value field. It now throws a TypeLoadException
15711         for such cases. Fix bug #82022
15713 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15715         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15717 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15719         * class.c (mono_class_init): If a class is already inited but has
15720         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15722 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15724         * class.c: Properly handle the case of an unimplemented interface
15725         method.  Fixes: 81673.
15727 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15729         * class-internals.h, object.c: cleanup patch from massi: use
15730         MonoVTable->interface_bitmap since the vtable interfaces offset array
15731         is going away.
15733 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15735         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15736         GetMDStreamVersion icall instead.
15738 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15740         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15741         not use mono_dl_build_path() with a full library name: makes
15742         fallbacks to libgaim and libfam work.
15744 2007-07-06  William Holmes  <billholmes54@gmail.com>
15746         * assembly.c: Added a continue statement in probe_for_partial_name when
15747          parse_assembly_directory_name fails.  Fixes : 82002
15749 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15751         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15752         and added a verification  for TYPEDBYREF.
15753         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15754         make native int interchangeable with int32 and some small cleanup and formating.
15755         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15756         handle byref of byref.
15757         * verify.c (push_local): handle byref of byref.
15758         * verify.c (do_binop): invalid mix of values is unverifiable
15759         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15760         added visibility checks
15761         * verify.c (field related method): added visibility checks
15762         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15764 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15766         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15767         string.
15769 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15771         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15773         * marshal.c (emit_marshal_string): When returning a string from managed code,
15774         allways make a copy even for unicode strings. Fixes #81990.
15776 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15778         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15779         of byref generic inst types (bug #81997).
15781 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15783         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15784         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15786 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15788         * marshal.c (emit_marshal_string): Add support for unicode strings in
15789         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15791 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15793         * verify.c: field load/store are now verified, missing only access checks now
15795 2007-06-28  Martin Baulig  <martin@ximian.com>
15797         * mono-debug.c (mono_debug_debugger_version): New public variable.
15799 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15801         * locales.c: When constructing DateTimeFormat or NumberFormat for
15802         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15803         MonoCultureInfo contructed from the current locale is always
15804         read-only and has UseUserOverride set to true. All MonoCultureInfo
15805         instances returned for GetCultures have both IsReadOnly and
15806         UseUserOverride set to true. Fixes part of bug #81930.
15808 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15810        * icall-def.h: Update System.__ComObject icalls
15811        * marshal.c: Avoid managed transition (and object creation)
15812        when looking up COM interface in RCW.
15813        * marshal.h: Ditto.
15814        
15815        Code is contributed under MIT/X11 license.
15817 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15819         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15820         to avoid crashes during assembly unloading.
15822 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15824         Fix MethodInfo.IsGenericMethodDefinition
15825         * reflection.c (mono_reflection_bind_generic_method_parameters):
15826         Rearrange code to ensure we always uses a generic method definition.
15827         * class.c (mono_class_inflate_generic_method_full): Set
15828         'generic_container' field only for generic method definitions.
15829         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15830         Use presense of 'generic_container' field as indication of being a
15831         generic method definition.
15833 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15835         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15837         * object-internals.h: Reflect changes in the layout of the managed Delegate
15838         class.
15839         
15840         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15841         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15842         runtime memory used by the dynamic method. Fixes #77146.
15844 2007-06-21  Dick Porter  <dick@ximian.com>
15846         * file-io.h: 
15847         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15848         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15849         81767.
15851 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15853         * reflection.c (method_encode_methodspec): Add a tripwire.
15854         * class.c (inflate_generic_type): The fully open generic type is
15855         not the same as the generic type definition.
15857 2007-06-21  Martin Baulig  <martin@ximian.com>
15859         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15861         * mono-debug-debugger.h
15862         (MonoDebuggerBreakpointInfo): Removed.
15863         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15864         (mono_debugger_remove_breakpoint): Likewise.
15865         (mono_debugger_breakpoint_callback): Likewise.
15866         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15868 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15870         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15871         generic type is not the same as the generic type definition.
15872         * class.c (mono_generic_class_get_class): Likewise.
15874 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15876         * icall.c: The second argument to 
15877         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15878         is a MonoType not a MonoClass.
15880 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15882         * verify.c: support for function pointers in the verifier
15884 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15886         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15888 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15890         * assembly.c: removed Mono.Data.SqliteClient from the list of
15891         forward-compatible assemblies as it breaks the ABI (bug #81899).
15893 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15895         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15896         lookup/update with the loader lock.
15897         * reflection.c (mono_class_bind_generic_parameters): No need to
15898         protect mono_metadata_lookup_* with the loader lock.
15899         * class.c (inflate_generic_type): Likewise.
15900         
15901         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15902         on a generic instantiated type.
15904 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15906         *verify.c: produce meanfull error messages on verification error
15907         *verify.c: fixed some cases of verification errors reported as validation errors
15908         *pedump.c: fixed the error name array, now it shows validation errors properly
15909         *verify.h: fixed the contant that should be used for verification errors
15911 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15913         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15914         for bug #77596, 81858 and 80743 (generics data structures on domain
15915         unload).
15917 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15919         Avoid allocating 'MonoGenericContext' on the heap.
15920         * class-internals (_MonoMethodInflated::context): Make field
15921         inline, not a pointer.
15922         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15923         stack.  Use the context embedded within the inflated method as the
15924         hash key, rather than 'new_context'.
15925         * class.c (inflate_generic_context): Simplify.  Return a struct
15926         rather than allocating on the heap.
15927         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15928         doesn't salt away a copy of the context -- simplifying the
15929         lifetime rules of a 'MonoGenericContext *'.
15930         (mono_method_get_context): Return pointer to embedded context.
15931         (setup_generic_array_ifaces): Allocate temporary context on stack.
15932         * reflection.c (inflate_mono_method): Likewise.
15933         (mono_reflection_bind_generic_method_parameters): Likewise.
15934         Use the context embedded within the inflated method as the hash key.
15936         Avoid a source of allocation of 'MonoGenericContext'.
15937         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15938         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15939         * class.c: Update to changes.
15940         (mono_generic_class_get_context): Simplify drastically.  Now just
15941         returns a pointer to the field.
15942         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15943         argument as a const pointer.
15944         (mono_metadata_generic_context_equal): Likewise.
15945         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15946         Update to changes.
15948 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15950         * verify.c improved the handling of brtrue/brfalse, factored out common code
15952 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15954         Kill MonoGenericMethod.
15955         * class-internals.h (MonoGenericContext::method_inst): Rename from
15956         'gmethod' and convert to a MonoGenericInst.
15957         (MonoGenericMethod): Remove.
15958         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15959         * loader.c (method_from_methodspec): Update to changes.  Use a
15960         MonoGenericContext as the key to the hashtable.
15961         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15962         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15963         (mono_metadata_generic_context_hash): Likewise from
15964         'mono_metadata_generic_method_hash'.  Change hash function.
15965         (mono_metadata_load_generic_params): Update to changes.
15966         (mono_get_shared_generic_method): Remove.
15967         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15968         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15969         (inflate_generic_context): Likewise.
15970         (mono_class_inflate_generic_method_full): Likewise.
15971         (setup_generic_array_ifaces): Likewise.
15972         (mono_class_create_from_typespec): Likewise.
15973         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15974         (method_encode_methodspec): Update callsite.
15975         (reflection_methodbuilder_to_mono_method): Update to changes.
15976         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15977         MonoGenericContext as the key to the hashtable.
15978         (inflate_mono_method): Update to changes.
15980         * class-internals.h (MonoGenericMethod::container): Remove.
15981         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15983 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15985         * profiler-private.h, profiler.c, profiler.h: added API to profile
15986         exception events.
15988 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15990         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15992 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15994         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15995         Fixed overflow and underflow not aborting the verification process.
15997 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15999         * class-internals.h (MonoStats): Added stats entries for dynamic
16000         code allocations.
16002 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16004         * loader.c (mono_free_method): Free header->locals and header->clauses.
16006         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16007         dynamic case.
16009         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16011         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16013 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16015         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16016         the tables.
16018 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16020         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16022 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16024         MonoGenericMethod on a diet
16025         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16026         here ...
16027         (_MonoGenericMethod::reflection_info): ... from here.
16028         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16029         Update to changes.
16030         * reflection.c (inflate_mono_method): Likewise.
16031         (mono_reflection_bind_generic_method_parameters): Likewise.
16033 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16035         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16036         *verify.c: factored long ldarg forms to share code with short forms
16038 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16040         *verify.c: fixed code formating factored some duplicate code
16041         into a new function
16043         *verify.h: fixed binary incompatibility introduced earlier
16045         *pedump.c: fixed formating
16047 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16049         Fix assertion when disassembling Mono.C5.dll
16050         * loader.c (method_from_methodspec): Avoid inflating a method
16051         twice with the same context.  If the methodref is inflated, use
16052         the declaring method instead.
16054         * class.c (mono_class_from_generic_parameter): Fix case similar to
16055         bug #81830 handled below, but for method containers.
16057 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16059         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16060         get_shared_generic_class.  Directly inflate the instance.
16061         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16062         (inflate_generic_class): Delete.
16063         (get_shared_generic_class): Delete.  Move setting of
16064         'cached_class' and 'cached_context' ...
16065         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16067         * metadata.c (mono_metadata_lookup_generic_class): Change
16068         signature to take the components of a MonoGenericClass rather than
16069         an allocated MonoGenericClass.  Change semantics to be intern-like.
16070         * reflection.c (mono_class_bind_generic_parameters): Update to
16071         changes.  Make locking region tighter.
16072         * class.c (inflate_generic_class): Update to changes.
16073         (get_shared_generic_class): Likewise.
16074         * metadata-internals.h: Likewise.
16076         * reflection.c (mono_class_bind_generic_parameters): Take and
16077         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16078         (mono_reflection_bind_generic_parameters): Use
16079         'mono_class_bind_generic_parameters' rather than duplicate the code.
16080         * class.c (mono_bounded_array_class_get): Update to changes.
16081         * object-internals.h: Likewise.
16083         * reflection.c (mono_class_bind_generic_parameters): Only support
16084         parameterizing generic type definitions.  Remove support for other
16085         open types.
16087 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16089         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16091         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16092         in the dynamic case.
16094 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16096         * threads.c: When cleaning up thread, reset the Background bit.
16097         Fixes bug #81720.
16099 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16101        * metadata.c: Move variable declarations to top of scope.
16102        * verify.c: Move variable declarations to top of scope.
16104        Code is contributed under MIT/X11 license.
16106 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16108         * reflection.c (mono_class_bind_generic_parameters): Replace
16109         open-coded loop with mono_metadata_inflate_generic_inst.
16111         * class.c (get_shared_generic_class): Don't call
16112         mono_get_shared_generic_inst.  Use the container's own
16113         'class_inst'.
16115         * metadata.c (mono_metadata_load_generic_params): Move
16116         initialization of 'context' field here from ...
16117         * class.c (mono_class_create_from_typedef): ... here, and ...
16118         * loader.c (mono_get_method_from_token): ... here.
16120         * class.c (get_shared_generic_class): Rename from
16121         mono_get_shared_generic_class and make static.
16122         (mono_get_shared_generic_inst): Move to metadata.c.
16123         * loader.c (mono_get_shared_generic_method): Likewise.
16124         * class-internals.h, metadata-internals.h: Update to changes.
16126         Fix #81830
16127         * class.c (mono_class_from_generic_parameter): Don't assume a
16128         generic container owner exists.  Generic containers from monodis
16129         don't have any.
16131 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16133         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16134         * verify.h: new typedefs to returns the non-verifiable status
16135         * verify.c: initial implementation of generics, stack merging and object compatibility check
16137 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16139         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16140         a MonoInternalHashTable again (fixed bug in internal hash table
16141         code).
16143 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16145         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16146         MonoInternalHashTable again (fixed bug in internal hash table
16147         code).
16149 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16151         * class.c, image.c, class-internals.h, domain.c,
16152         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16153         changes.  Have to figure out what makes them break the SWF
16154         regression.
16156 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16158         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16159         a MonoInternalHashTable now.
16161 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16163         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16164         MonoInternalHashTable now.
16166 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16168         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16169         invoke_impl code.
16171         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16173         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16174         dependent trampoline.
16176         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16178         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16180 2007-05-29  Robert Jordan  <robertj@gmx.net>
16182         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16184 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16186         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16188 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16190        * marshal.c: Fix interface lookup loops for
16191        cominterop_get_com_slot_for_method and 
16192        cominterop_get_method_interface. Only need to lookup
16193        if type is a class, else use interface type method is on.
16195        Code is contributed under MIT/X11 license.
16197 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16199         * reflection.c: HasSecurity can be present even if no specially 
16200         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16201         SecurityAttribute). Fix CAS regression tests on buildbot.
16203 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16205        * appdomain.c: Add configure checks for header files.
16206        * image.c: Add configure checks for header files.
16207        * file-io.c: Add configure checks for header files.
16208        * debug-mono-symfile.c: Add configure checks for header files.
16209        * threadpool.c: Add configure checks for header files.
16210        * console-io.c: Add configure checks for header files.
16211        * profiler.c: Add configure checks for header files.
16212        * rawbuffer.c: Add configure checks for header files.
16213        * icall.c: Add configure checks for header files.
16214        * rand.c: Add configure checks for header files.
16215        * socket-io.c: Add configure checks for header files.
16217        Code is contributed under MIT/X11 license.
16219 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16221         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16222         assertion as it breaks the build.
16223         
16224         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16226         * reflection.c (lookup_custom_attr): Make a copy here too.
16228         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16229         dynamic images.
16231         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16232         images.
16234         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16235         info.
16237 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16239         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16240         (load_cattr_value): Ditto.
16242 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16244         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16246 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16248         * threads.c: In "start_wrapper", set apartment_state to MTA if
16249         apartment_state is Unknown and we're running on 2.0 profile or
16250         higher.
16251         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16252         to main method, then set apartment_state to Unknown on 1.0 profile,
16253         and MTA on 2.0 profile.
16255 2007-05-16  Jb Evain  <jb@nurv.fr>
16257         * class-internals.h (MonoDefaults): Add an attribute_class and
16258           customattribute_data_class.
16259         * domain.c (mono_init_internal): Populate them.
16260         * reflection.c: Use them to remove duplicates. Make a vew
16261         MonoClass variables `static'.
16263 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16265         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16266         step in implementing IMT, so that all isinst checks now can go
16267         through the bitmap.
16268         This was needed because vtables for TransparentProxy need to look
16269         like the vtable of the "target" class, so they need to point to
16270         its interface bitmap directly.
16272         * object.c: inside "mono_class_create_runtime_vtable" and
16273         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16275 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16277         * object-internals.h
16278           culture-info.h : added territory field in MonoCulture and
16279           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16280         * locales.c : fill territory field above too.
16281         * culture-info-table.h : regenerated.
16283 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16285         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16286         Fixes #81599.
16288 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16290         * object.c: Always initialize apartment, even if 
16291         there is no custom attributes on entry point.
16292         
16293         Code is contributed under MIT/X11 license.
16295 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16297         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16298         * metadata.c: If no encoding is set, check for unicode
16299         on class.
16300         
16301         Code is contributed under MIT/X11 license.
16303 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16305         * threads.c: Handle if mono_thread_current returns NULL 
16306         
16307         Code is contributed under MIT/X11 license.
16309 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16311         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16312         in start_wrapper. Added mono_thread_init_apartment_state and
16313         mono_thread_cleanup_apartment_state.
16314         * object.c: Initialize thread apartment state on main thread
16315         by checking for STAThreadAttribute on entry point.
16316         * object-internals.h: Add apartment_state field to MonoThread.
16317         * threads-types.h: Add unmanaged definition of 
16318         System.Threading.ApartmentState, MonoThreadApartmentState.
16319         
16320         Code is contributed under MIT/X11 license.
16321         
16322 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16324         * class.c: Fix windows build.
16325         * class-internals.h: Fix windows build.
16326         
16327         Code is contributed under MIT/X11 license.
16329 2007-05-08  Robert Jordan  <robertj@gmx.net>
16331         * process.c (CreateProcess_internal):
16332         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16333         .CreateNoWindow was specified. Fixes #81496.
16335 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16337         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16338         step in implementing IMT, replaced it with two compact arrays
16339         (interfaces_packed and interface_offsets_packed) and a bitmap that
16340         is used for isinst checks (interface_bitmap).
16342         * class.c: (compare_interface_ids): compare function to pass to
16343         bsearch when looking for an interface with a given id.
16344         (mono_class_interface_offset): reimplemented using bsearch on
16345         interfaces_packed, getting the offset from interface_offsets_packed.
16346         (print_implemented_interfaces): utility debugging function.
16347         (setup_interface_offsets): reworked to initialize interfaces_packed,
16348         interface_offsets_packed and interface_bitmap.
16350         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16351         with uses of interfaces_packed and interface_offsets_packed.
16353 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16355         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16356         mono_class_interface_offset prototype to wrap all accesses to
16357         "MonoClass.interface_offsets".
16359         * class.c: Implemented mono_class_interface_offset, and wrapped all
16360         accesses to "MonoClass.interface_offsets".
16362         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16363         "MonoClass.interface_offsets".
16365 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16367         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16368         GetMethodFromHandle overloads (bug #78637).
16370 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16372         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16373         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16375 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16377         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16378         #81498.
16380         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16381         gracefully.
16382         (mono_custom_attrs_from_index): Ditto.
16384         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16385         Fixes #81501.
16387 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16389         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16390         is now allocated from a mempool.
16392 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16394         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16395         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16397 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16399         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16400         mono_loader_clear_error () too late. Fixes #81463.
16402 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16404         * culture-info-table.h : regenerated.
16406 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16408         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16409         is missing.
16411 2007-04-25  Dick Porter  <dick@ximian.com>
16413         * Makefile.am: Put the mingw enforced-optimisation back into the
16414         PLATFORM_WIN32 section.
16416 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16418         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16419         patch.
16421         * image.c (mono_image_load_module): New API function to load a module reference.
16423         * image.c (load_modules): Load modules lazily. Fixes #80812.
16425         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16426         
16427         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16429         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16430         to mono_image_load_module_dynamic.
16432 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16434         * marshal.c: Fix calling convention for CCW on non-windows
16435         platforms. STDCALL on windows, CDECL everywhere else to work 
16436         with XPCOM and MainWin COM.
16437         
16438         Code is contributed under MIT/X11 license.
16440 2007-04-23  Martin Baulig  <martin@ximian.com>
16442         Fix #80969.
16444         * loader.c
16445         (method_from_memberref): Added `gboolean *used_context' argument.
16446         (mono_get_method_from_token): Likewise.
16447         (mono_get_method_full): Don't insert the method in the cache when
16448         `used_context' is true.
16450 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16452         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16454         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16455         create new MonoTypes for returned types.
16456         * class.c (mono_generic_class_get_class): Export mono-internal.
16457         * class-internals.h: Update to changes.
16459 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16461         * threadpool.c, threadpool.h, icall-def.h: patch from
16462         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16464 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16466         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16467         
16468         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16470         * threads.c (mono_thread_get_stack_bounds): New helper function.
16472         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16473         Correctly compute stack bounds when attaching. Fixes #81394.
16475 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16477         * reflection.c: fix handling of doubles in custom attributes
16478         for the arm-fpa format (bug #81368).
16480 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16482         * reflection.c (assembly_add_win32_resources): Mildly relax an
16483         bounds check to let the end pointer point just past the end of the
16484         allocated buffer.  (may fix #81384)
16486 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16488         * culture-info-table.h : regenerated.
16490 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16492         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16493         the thread is aborted early.
16495 2007-04-05  Dick Porter  <dick@ximian.com>
16497         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16498         FindFirstFile()/FindNextFile() to find entries.  This lets the
16499         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16500         81038.
16502         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16503         the parameters of
16504         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16506 2007-04-04  Martin Baulig  <martin@ximian.com>
16508         * debug-helpers.c
16509         (mono_method_desc_full_match): Add support for nested classes.
16511 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16513         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16515 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16517         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16518         waiting for too many threads.
16520 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16522         * environment.c: Fix return value check on uname so we can get the 
16523         executing version on Solaris operating systems.
16525 2007-03-28  Jb Evain  <jbevain@gmail.com>
16527         * class.c (mono_type_get_name_recurse): Complete the
16528         fix for the creation of assembly qualified names for
16529         pointer types. Fixes #81208.
16531 2007-03-27  Dick Porter  <dick@ximian.com>
16533         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16534         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16535         changed.
16537         * threads.c
16538         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16539         the value of ReleaseMutex().
16541 2007-03-27  Dick Porter  <dick@ximian.com>
16543         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16544         in little-endian order, not network endian, so must be converted
16545         to host endian here.  Fixes bug 80593.
16547 2007-03-22  Jb Evain  <jbevain@gmail.com>
16549         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16550         qualified names for pointer types. Fixes #81208.
16552 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16554         * marshal.c: Add support for PreserveSigAttribute. 
16555         
16556         Code is contributed under MIT/X11 license.
16558 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16560         * process.c: Fix endianness issues. Fixes #81126.
16562         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16563         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16565         * image.c (mono_image_lookup_resource): Make this work on big-endian
16566         machines.Change API contract so the caller needs to free the return value.
16567         
16568         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16569         API change.
16570         
16571 2007-03-14  Martin Baulig  <martin@ximian.com>
16573         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16574         mono_type_get_desc() as well.
16576 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16578         * icall.c:  Fix environ access in VS.  
16579         
16580 2007-03-13  Alp Toker  <alp@atoker.com>
16582         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16583         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16584         #63841.
16586 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16588         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16589         circular references among dynamic methods. Fixes #81091.
16591         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16593 2007-03-09  Martin Baulig  <martin@ximian.com>
16595         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16597 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16599         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16600         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16601         
16602         Code is contributed under MIT/X11 license.
16603         
16604 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16606         * loader.c: Reapply patch for bug #79424.
16608 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16610         * metadata.c (mono_type_to_unmanaged): Only convert object to
16611         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16613 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16615         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16616         (and incorrectly set) is_reference field from MonoGenericInst.
16618 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16620         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16621         a little earlier.
16623         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16625         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16627 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16629         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16630         FileOptions.1 value to mean "temporary", map that to
16631         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16633         Fixes 80688
16635 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16637         * appdomain.c: implement MS .Net style shadow copying. Copies of
16638         the assemblies are made in a subdirectory of the dynamic base
16639         directory, the assembly names are preserved.
16640         Copy .mdb and .config files along with the assemblies being shadowed.
16642 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16644         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16645         (emit_marshal_handleref): Ditto.
16647         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16648         on Visual C++. Fixes #80671.
16650 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16652         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16653         for clone operations.
16655 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16657         * marshal.c: Fix warnings.
16659 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16661         * loader.c: allow case-insensitive matching of the dll name
16662         in dllmap handling when prefixed with "i:".
16664 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16666         * threads.c: Fix #ifdef for dummy_apc function for VS.
16668 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16670         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16672 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16673         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16674         giving precedence to the methods with a fully qualified name
16675         (InterfaceName.MethodName) when building the interface sections
16676         of the vtable.
16678 2007-02-16  Dick Porter  <dick@ximian.com>
16680         * threadpool.c (append_job): Fix fast-path array handling, so it's
16681         less likely the array will grow exponentially when the load is
16682         heavy.
16684 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16686         * metadata-internals.h, loader.c: fix dllmap lookup order
16687         for non-function maps, too, and prepare for fallback code.
16689 2007-02-12  Robert Jordan  <robertj@gmx.net>
16691         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16692         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16693         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16694         GlobalFree. Fixes a part of bug #77075.
16696 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16698         * loader.c: implemented typedef parent in field memberref.
16700 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16702         * marshal.c: Fix warnings and remember to call Release on
16703         IUnknown of RCW.
16704         
16705         Code is contributed under MIT/X11 license.
16707 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16709         * class-internals.h: Add MonoHandleRef definition, and
16710         handleref_class to mono_defaults. 
16712         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16713         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16715         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16716         (do nothing on this stage)
16717         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16718         (emit_marshal_handleref): New method, used for argument handling
16719         of HandleRefs. 
16721 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16723         * class.c (mono_class_setup_parent): Lazily init com types.
16724         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16725         init com types.
16726         * object.c (mono_remote_class_vtable): Lazily init com types.
16727         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16728         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16729         * domain-internals.h: Expose mono_init_com_types.
16730         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16731         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16732         Add support for COM Callable Wrapper marshalling.
16733         * marshal.h: Add icall definitions.
16734         * gc.c: Handle freeing of CCWs in finalizer code.
16735         
16736         Code is contributed under MIT/X11 license.
16738 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16740         * reflection.c: changed all the signature encoding code to use
16741         a variable-sized buffer.
16743 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16745         * marshal.c: locking fixes: never take the loader lock
16746         or other runtime locks when holding the marshal lock
16747         (fixes bug#80664).
16749 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16751         * marshal.c: make the delegate function pointer mapping
16752         work for the moving GC.
16754 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16756         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16757         for bug #80618.
16759 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16761         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16762         gmodule.
16764 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16766         * threadpool.c: made the code moving-GC safe.
16768 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16770         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16771         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16772         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16773         warning cleanup.
16774         * reflection.c: warning cleanup, some threading and moving GC fixes.
16776 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16778         * class.c, loader.c: create the needed Set/Get/Address array methods
16779         as well as the .ctors in mono_class_init (), fixes bug #80567.
16781 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16783         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16784         we doesn't decrease its alignment. Should fix the sparc build.
16786 2007-01-24  Dick Porter  <dick@ximian.com>
16788         * socket-io.c
16789         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16790         Create the returned object if we need to ignore an unsupported
16791         socket option.  Fixes a segfault reported by Atsushi.
16793 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16795         * class.c, object.c: restrict GC-tracked fields to
16796         UIntPtr fields used inside corlib, so we provide better
16797         type info to the GC and also allow broken packing as in
16798         bug #80580.
16800 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16802         * sgen-gc.c: removed duplicated function.
16804 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16806         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16807         value that means that the value is not supported, but that we
16808         should not return a failure, but instead report this as a
16809         successful operation.
16811 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16813         Fix tests/bug79956.2.il
16814         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16815         (mono_generic_class_get_class): If the generic definition in an
16816         enum, copy over other fields related to it.
16818 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16820         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16821         genericinst enums (bug #79215).
16823 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16824         * class.c: Fix bug 80307.
16826 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16828         * image.c: if the file table is not present, try to load
16829         all the modules, since we don't have info about them
16830         having or not metadata (bug #80517).
16831         * assembly.c: allow mono_assembly_load_references () to
16832         work for netmodules.
16834 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16836         * image.c, metadata-internals.h, object.c: execute module
16837         cctors when running on the 2 runtime if present (bug #80487).
16839 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16841         * icall.c: optimized InitializeArray() on bigendian.
16843 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16845         * icall.c: fix for the broken ARM FPA double format.
16847 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16849         * icall.c: handle endian issues for r4 and r8 types, too, in
16850         the InitializeArray() icall.
16852 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16854         * loader.c (mono_loader_error_prepare_exception): Clear the error
16855         once we have extracted the information from it, do this before we
16856         call into the JIT's class loading mechanisms.
16858         * object.c (mono_class_create_runtime_vtable): Do not clear the
16859         loader error before calling mono_class_get_exception_for_failure
16860         as the loader error is needed inside
16861         mono_class_get_exception_for_failure to throw the error (thinko).
16863         Fixes #80521
16864         
16865 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16867         * reflection.c: align fields rva data so it's faster to load at
16868         runtime.
16870 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16872         Prepare to simplify GenericMethod handling.
16873         * class-internals.h (mono_method_get_context): New accessor function.
16874         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16875         rather than directly accessing '->context' field.
16877         * class-internals.h (_MonoGenericParam.method): Move ...
16878         (_MonoGenericContainer): ... here.  Add into union with klass field.
16879         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16880         Update to changes.
16882 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16884         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16885         the wrapper type enum and reduce relocations.
16887 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16889         * reflection.c (inflate_mono_method): Reuse method instantiation
16890         from the generic method, if available.
16892 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16894         * marshal.c (emit_marshal_variant): Fix conv_arg
16895         type in last commit, based on whether parameter is byref.
16896         
16897 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16899         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16900         marshalling.
16901         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16902         MONO_TYPE_OBJECT back for VARIANT support.
16904 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16906         * marshal.c, marshal.h, icall-def.h: Implement 
16907         Marshal.ReAllocCoTaskMem.
16909 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16911         * marshal.c: memory retention fixes: use the proper
16912         image cache for runtime_invoke method lookups.
16914 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16916         * mempool.c: added code to help debug mempool allocations.
16918 2007-01-11  Dick Porter  <dick@ximian.com>
16920         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16921         support (experimenting with faking it with IP_MTU_DISCOVER for
16922         systems that don't have IP_DONTFRAGMENT.)
16923         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16924         icall.
16926         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16928         * socket-io.h: Add new fields to MonoSocketAsyncResult
16929         corresponding to the new ones in Socket.cs.
16931 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16933         Fix IronPython regression mentioned in #80249
16934         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16935         'cached_context' field, since it may have been initialized as a
16936         side-effect of metadata parsing.
16938         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16939         (_MonoGenericClass.cached_class): Move here and rename from lone
16940         remaining field of ...
16941         (_MonoInflatedGenericClass): ... this.  Remove.
16942         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16943         to changes.
16945         Fix mcs/tests/test-128.cs regression.
16946         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16947         2007-01-10 change below.
16948         [MONO_TYPE_OBJECT]: Recurse into array case.
16950 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16952         * class-internals.h (mono_get_inflated_generic_class): Remove.
16953         * class.c (mono_get_inflated_generic_class): Remove.
16954         (mono_generic_class_get_class): Rename from
16955         mono_class_create_generic.
16956         (mono_class_from_mono_type) [GENERICINST]: Use it.
16957         * reflection.c, metadata.c: Update to changes.  Use
16958         'mono_class_from_mono_type'.
16960 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16962         * reflection.c: use passed type when encoding an array element
16963         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16965 2007-01-09  Robert Jordan  <robertj@gmx.net>
16967         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16968         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16969         Fixes bug #80392.
16971 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16973         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16975         * object.c (set_value): Avoid aliasing between type->data.klass
16976         and type->data.generic_class.
16978         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16980 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16982         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16983         between type->data.klass and type->data.generic_class.
16985 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16987         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16988         value in out parameters.
16990 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16992         Simplify invariant for MonoGenericClass::klass field.
16993         * class.c (mono_class_create_generic): Verify 'klass' is null.
16994         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16995         initialize 'klass' field.
16997 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16999         Ongoing work to avoid redundant data and simplify invariants.
17000         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17001         'generic_class', and change type to a GenericInst.
17002         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17003         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17005 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17007         * class.c : skip io-layer under PLATFORM_WIN32.
17009 2007-01-03  Tor Lillqvist  <tml@novell.com>
17011         Fix #80305: In a bundled executable, look in the bundled exe
17012         assembly to determine the runtime version. Add the possibility to
17013         bundle also the machine.config file.
17014         
17015         * assembly.c (mono_assembly_open_from_bundle): Make
17016         non-static. Allow being called even if we have no bundled
17017         assemblies, and return NULL right away in that case.
17019         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17020         here.
17022         * domain.c (app_config_parse): Take an assembly exe file name as
17023         parameter instead of a config file name. Check for a bundled
17024         config file for that assembly by calling
17025         mono_config_string_for_assembly_file() (see below) before looking
17026         for one in the file system.
17027         (get_runtimes_from_exe): Corrsponding change to call of
17028         app_config_parse().
17029         (get_runtimes_from_exe): Check for bundled assembly exe file first
17030         by calling mono_assembly_open_from_bundle(). If no bundled
17031         assembly exe file is found, call mono_image_open() as before to
17032         look it up in the file system.
17034         * mono-config.c: Add variable bundled_machinec_onfig.
17035         (mono_config_string_for_assembly_file): New function.
17036         (mono_config_for_assembly): Move code snippet that looks for a
17037         bundled assembly .config file into the above new function. Call
17038         it.
17039         (mono_register_machine_config, mono_get_machine_config): New
17040         functions to set and retrieve
17042         * assembly.h: Declare mono_register_machine_config().
17044         * mono-config.h: Declare mono_get_machine_config() and
17045         mono_config_string_for_assembly_file().
17047         * icall.c: No declaration of environ necessary on Win32. It is
17048         declared (as a macro expanding to a function call) in stdlib.h.
17049         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17050         New internal mono function. Returns the value of
17051         mono_get_machine_config() as a Mono string.
17053         * icall-def.h: Add get_bundled_machine_config().
17055 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17057         Remove redundant field
17058         * class-internals.h (_MonoGenericContext.container): Remove field.
17059         * loader.c (mono_method_get_signature_full): Don't parse a
17060         "container" for a signature parse when the signature is inflated
17061         immediately.
17062         (method_from_methodspec): Likewise, for a generic_inst.
17063         * class.c, metadata.c, reflection.c: Update to changes.
17065 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17067         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17068         'cached_context', and change semantics -- it starts off NULL, and
17069         is initialized on demand.
17070         * class.c (mono_generic_class_get_context): New accessor to
17071         replace 'context' field accesses.
17072         (mono_class_get_context): New helper.
17073         (*): Update to changes.
17074         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17076 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17078         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17079         before the memcpy.   Fixes Marshal2 regression.
17081 2007-01-02  Jb Evain  <jbevain@gmail.com>
17083         * blob.h: add a MONO_TYPE_ENUM definition
17084         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17085         fix the encoding of arrays of enums in custom attributes.
17087         Fixes #79666.
17089 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17091         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17092         string is null terminated, but only cut the string short if it
17093         overflows the buffer.   
17094         
17095         (mono_string_to_byvalstr): Also fix this routine.   The code here
17096         was not properly terminating a string (it was only terminated
17097         because of the previous catch-all memset). 
17099         I left the memset, because I do not know if applications expect
17100         the runtime to clear this region. 
17102         Fixes #79944.
17104         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17105         Clear the error before returning to unmanaged code to prevent the
17106         runtime from being confused later on (fixes  80420).
17107         (ves_icall_type_from_name): Always call mono_loader_clear_error
17108         after parsing a type that could have failed.
17109         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17111         * loader.c (mono_loader_clear_error): Fix indentation.
17113 2006-12-28  Martin Baulig  <martin@ximian.com>
17115         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17117 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17119         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17120         getting a token for an EnumBuilder.
17122 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17124         * reflection.c: be more careful in case resource generation
17125         fails to create the data array.
17127 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17129         * sgen-gc.c: write barrier for clone and fix unregister handles.
17131 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17133         * reflection.c: some fixes needed in the generics code for the moving GC.
17135 2006-12-22  Robert Jordan  <robertj@gmx.net>
17137         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17138         account. Fixes bug #80299.
17140 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17142         Fix WaitHandle usage in delegates.
17143         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17144         * object.c (mono_wait_handle_new): Use the property set method to
17145         initialize the handle.
17146         (mono_wait_handle_get_handle): New.
17147         * threadpool.c (mono_async_invoke): Use it.
17148         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17149         Likewise.
17150         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17152 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17154         * marshal.c (emit_marshal): Call emit_marshal_variant and
17155         emit_marshal_com_interface when applicable.
17156         (emit_marshal_variant, emit_marshal_com_interface): Add
17157         methods for this case and remove if's from emit_marshal_object.
17158         
17159 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17161         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17163 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17165         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17166         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17167         and GlobalFree on Windows. Remove FIXME.
17169 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17171         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17172         implementation for managed objects.
17174 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17176         * object.c: implemented code to be used for checking
17177         that no reference field overlaps with non-references.
17179 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17181         * threadpool.c: fix queue code to be compatible with the
17182         moving GC.
17184 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17186         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17187         in structures by throwing ArgumentNullException.
17189         (emit_marshal_safehandle): Also when they are null parameters.
17191         (emit_marshal_safehandle): Add support for ref
17192         SafeHandles parameters
17194 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17196         * profiler.c: updated to use the mono-dl API instead of
17197         gmodule.
17199 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17201         * profiler.c: updated to use the mono-dl dynamic loading
17202         API instead of gmodule.
17204 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17206         * profiler.c: use readlink, older versions of glib don't have
17207         g_file_read_link ().
17209 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17211         * profiler.c: try to detect the path to mono if libc fails to provide
17212         a useful name (bug #80286).
17214 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17216         Fix #80242
17217         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17218         instance, use the generic type definition instead.
17219         (ves_icall_Type_GetNestedTypes): Likewise.
17220         * class.c (mono_class_create_generic): Always set the
17221         nested_classes of a generic instance to NULL, even if the generic
17222         type definition has nested types.
17224 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17226         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17227         and fix on Linux.
17228         
17229 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17231         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17232         my arguments were in the wrong order.   I also fixed the Windows
17233         version which seems to have had the same issue.
17235         (mono_free_bstr): On Unix, this is g_free.
17236         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17237         conversions (for the tests in corlib to pass).
17239 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17241         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17242         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17243         exception if a ref SafeHandle in a struct has changed).
17244         
17245         (emit_struct_conv): Do not perform layout checks for classes
17246         derived from SafeHandle, as those are specially handled. 
17248         (emit_object_to_ptr_conv): Add support for
17249         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17251         (emit_marshal_safehandle): Implement conversion of return values
17252         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17253         
17254         * threads.c: WaitHandle now is compiled with two different handles
17255         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17256         for 2.0.
17257         
17258         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17259         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17260         these routines to cope with both kinds of fields.
17262 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17264         * metadata.c (mono_type_to_unmanaged): Handle the case where
17265         type->data.klass is a SafeHandle, and in that case, return the
17266         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17267         MONO_MARSHAL_CONV_SAFEHANDLE. 
17269 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17271         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17272         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17273         calling emit_marshal_object.
17275         (emit_marshal_safehandle): Implement marshalling of
17276         SafeHandle parameters (no ref support yet).
17278         (MarshalAction): Document the defines as I implement
17279         them for SafeHandle.
17281         (emit_marshal_object): indentation police.
17283         * class-internals.h: Define MonoSafeHandle.
17284         Add safehandle_class to MonoDefaults type.
17286         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17287         list of classes to check for fields. 
17289         * domain.c (mono_init_internal): Add SafeHandle to the list of
17290         mono_defaults loaded.
17292 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17294         Fix #80253
17295         * reflection.c (mono_reflection_bind_generic_parameters): If the
17296         generic type definition is a type builder, ensure that it is fully
17297         initialized before instantiating it.  Kill some dead code.
17299 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17301         * object.c: clear the loader_error () before loading
17302         more metadata stuff (bug #80258).
17304 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17306         * icall.c, icall-defs.h: type modifiers icalls for
17307         parameters and properties.
17309 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17311         * object.c, icall.c: fixed warnings.
17313 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17315         * marshal.c: fixed a couple of leaks and coding style in a few places.
17317 2006-12-08  Dick Porter  <dick@ximian.com>
17319         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17320         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17321         80173.
17323 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17325         * process.c: ProcessStartInfo may have only filename set and
17326         arguments can be NULL.
17328 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17330         * icall.c: fix leak found by Robert Jordan.
17332 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17334         * marshal.c, marshal.h: generate managed method to access an element
17335         of a multi-dimensional array.
17337 2006-11-30  Paolo Molaro (lupus@ximian.com)
17339         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17341 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17343         * icall.c: back out GetFields () fix until the serialization code is
17344         fixed to not depend on the incorrect behaviour.
17346 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17348         * profiler.c: provide defaults if none are set.
17350 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17352         * Makefile.am, attrdefs.h: new public header file with
17353         constants for attributes for use by embedders.
17355 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17357         * icall.c: GetFields () fix for bug #80064.
17359 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17361         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17362         removed long unused icalls.
17364 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17365   
17366         * marshal.c: 
17367                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17368                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17369                 can be generated without a delegate class.
17370                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17371         
17372         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17374 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17376         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17377         #80069.
17379 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17381         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17382         icall-def.h: added icalls needed by System.GC.
17384 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17386         * loader.c: ensure the class in catch clauses is handled
17387         correctly for generics methods (fixes bug#79980).
17389 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17391         * monitor.h, monitor.c: added mono_locks_dump () function
17392         to help debug deadlocks involving managed locks.
17394 2006-11-13  Dick Porter  <dick@ximian.com>
17396         * file-io.c (get_file_attributes): If the file is a symlink try
17397         and get the stat data for the target, but also add the
17398         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17399         the specs for the windows symlink support, but will probably have
17400         to be reworked when I have test data from a vista machine.  Fixes
17401         bug 79887.
17403 2006-11-13  Dick Porter  <dick@ximian.com>
17405         * gc.c (mono_domain_finalize): 
17406         * marshal.c (mono_delegate_begin_invoke): 
17407         * threadpool.c (socket_io_init, mono_thread_pool_init)
17408         (mono_thread_pool_finish): 
17409         * monitor.c (mono_monitor_try_enter_internal): 
17410         * threads.c (mono_thread_resume, mono_thread_init)
17411         (mono_thread_suspend_all_other_threads)
17412         (mono_thread_execute_interruption): 
17413         * appdomain.c (mono_domain_unload): Check for NULL error returns
17414         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17415         75733.
17417 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17419         * process.c
17420         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17421         Only close the handle if the value of the handle is not
17422         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17423         robust.
17425         Improvement for #75733, so that we do not run into this problem. 
17427         
17428         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17429         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17430         internal variables.  Fixes #79462 
17431         
17433 2006-11-09  Dick Porter  <dick@ximian.com>
17435         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17436         Use poll() not select().  Fixes bug 79397.
17438 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17440         Fix #79872
17441         * assembly.c (mono_assembly_load_from_full): Check that the given
17442         image has an assembly manifest.
17444 2006-11-09  Ankit Jain  <jankit@novell.com>
17446         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17447         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17448         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17450 2006-11-07  Dick Porter  <dick@ximian.com>
17452         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17453         Put the old resolver behaviour back for pre-2.0 profiles.
17455 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17457         * threadpool.c: precise GC and locking fixes.
17459 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17461         * class.c: don't load types that have an explicit unaligned
17462         managed reference. Provide better info in the TypeLoad exception.
17463         Part of the fix for bug #79744.
17464         * object.c: use the correct check for class type load issues.
17466 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17468         * class.c: enforce alignment of fields with managed references
17469         even when Pack=1 is forced by the user (bug #77788).
17471 2006-11-03  Dick Porter  <dick@ximian.com>
17473         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17474         If the address reverse lookup fails, return it as the hostname
17475         anyway.  Fixes bug 79721.
17477 2006-11-03  Dick Porter  <dick@ximian.com>
17479         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17480         Fix build on Windows.
17482 2006-11-02  Dick Porter  <dick@ximian.com>
17484         * icall-def.h: 
17485         * object-internals.h: 
17486         * exception.c (mono_get_exception_thread_interrupted): 
17487         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17488         Fixes bug 74525.
17490         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17491         Check for pending Thread.Interrupt.
17493 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17494         * loader.c: Fixed bug 79684.
17496 2006-10-27  Dick Porter  <dick@ximian.com>
17498         * file-io.c (get_file_attributes): Force symlinks to directories
17499         to be returned as a regular file.  Fixes bug 79733.
17500 2006-10-26  Dick Porter  <dick@ximian.com>
17502         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17503         CreateFile to open a directory then we need to set the
17504         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17506 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17508         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17509         friends.
17511 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17513         * sgengc.c: small cleanup of timer code.
17515 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17517         * sgen-gc.c: fix some warnings and start adding support for
17518         complete object removal on domain unload.
17520 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17522         * assembly.c: build_assembly_name should not consider a version
17523         number without build or revision number invalid. Fixes bug #79715.
17525 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17527         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17528         call kernel32 function OutputDebugString directly.
17529         
17530         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17531         
17532 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17534         * reflection.c: small cleanup, using a function to insert a MonoString
17535         in the string heap.
17537 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17539         * reflection.c: moving GC fixes.
17541 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17543         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17544         all the objects with finalizers belonging to an unloading appdomain.
17546 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17548         * sgen-gc.c: added ability to allocate even when the nursery is fully
17549         pinned and fixed a couple of bugs.
17551 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17553         * threads.h: Revert the last change for now.
17555         * threads.h (mono_thread_get_pending_exception): Rename this to
17556         mono_thread_get_undeniable_exception ().
17558 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17560         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17561         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17562         when fname does not refer to valid assembly. This result in a more
17563         meaningful error message.
17564         * exception.c: added mono_get_exception_bad_image_format2 which 
17565         constructs a BadImageFormatException using the ctor taking a custom
17566         message and the file name. Passing in a NULL msg results in a default
17567         message.
17568         * exception.h: define mono_get_exception_bad_image_format2 function.
17569         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17570         when file name pointed to an invalid IL image. Use 
17571         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17572         as this results in a more meaningful error message.
17574 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17576         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17577         #79465.
17579 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17581         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17582         consistency with the other _size functions.
17583         (mono_type_stack_size): Ditto.
17585         * class.c object.c icall.c: Fix warnings caused by the above change.
17587         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17589         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17591         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17593 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17595         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17596         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17597         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17598         threadpool.h, threads-types.h: mark more internal functions.
17600 2006-10-11  Dick Porter  <dick@ximian.com>
17602         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17603         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17604         reproduce the bug even before applying the fix.)
17606 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17608         * reflection.c: allow retrieving attributes for arguments in generic
17609         methods (bug #79241).
17611 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17613         * debug-mono-symfile.c: properly check fopen () result (found by
17614         coverity).
17616 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17618         * reflection.c: make error message clearer and fixed two
17619         issuelets found by Coverity.
17621 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17623         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17625 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17627         * object-internals.h, gc-internal.h, profiler-private.h:
17628         mark internal functions.
17630 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17632         * reflection.c: put data in the text section.
17633         * icall.c: recognize more types in type_from_typename ().
17634         * process.c, marshal.c: added some GC FIXMEs.
17636 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17638         * loader.c: check for NULL before initializing.
17640 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17642         * gc.c (finalizer_thread): Use a non-alertable wait here.
17644         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17645         until the correct solution is found.
17647 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17649         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17650         modules with no metadata. Fixes #79596.
17652         * image.c (load_metadata_ptrs): Put back the error message when
17653         the #- heap is encountered since the support is not complete yet.
17655 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17657         * gc.c: do not allow the user to SuppressFinalize () a
17658         delegate because it would leak the trampoline if present.
17660 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17662         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17663         PropertyPtr table.
17665 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17667         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17669         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17671         * row-indexes.h: Add definitions for *Ptr tables.
17673         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17675         * metadata.c (mono_metadata_translate_token_index): New helper function to
17676         translate table indexes used in uncompressed metadata.
17677         (mono_metadata_decode_table_row): Ditto.
17678         (mono_metadata_decode_table_row_col): Ditto.
17680         * metadata.c: Add table schema for *Ptr tables.
17682         * class.c loader.c: Use the new helper function to access the affected metadata
17683         tables.
17684         
17685         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17686         #38532.
17687         
17688 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17690         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17691         sequences which can be unbounded in size. Fixes #79583.
17693 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17695         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17696         static initialization.
17698         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17700         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17702         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17704         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17705         ctor fails, i.e. throw the same exception on subsequent accesses.
17706         
17707 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17709         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17710         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17711         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17712         Handle marshalling of interfaces and VARIANTs contained in structs.
17713         
17714         Code is contributed under MIT/X11 license.
17715         
17716 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17718         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17719         
17720         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17721         mempool.
17723 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17725         * console-io.c: ignore previous SIGINT handler.
17727 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17729         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17730         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17731         #79460, #79461, #79485.
17733         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17735         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17736         #79217.
17738 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17740         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17741         could be generated from it.
17743 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17745         * rand.c: fix read loop to correctly handle EINTR.
17747 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17749         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17750         internal calls are defined to keep methods closer to the declaring
17751         type and allow a significant reduction in runtime relocations and
17752         memory usage.
17754 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17756         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17757         exception message to have FileNotFoundException use the default
17758         assembly load error message. Fixes bug #79426.
17759         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17761 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17763         * threadpool.c: (start_thread_or_queue) use the root domain when
17764         creating the thread instead of the async object one.
17766 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17768         * class.c, object.c, class-internals.h, reflection.c:
17769         for arrays, store element_size inside MonoClass (speedup
17770         for array object creation).
17772 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17774         * icall.c: fixed CodeBase to use the file name and not the module
17775         name (bug #79365).
17777 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17779         * mono-debug.c, mono-debug.h: export find_method as
17780         mono_debug_find_method ().
17782 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17784         * debug-helpers.c, class-internals.h: added a few functions useful
17785         when debugging under gdb.
17787 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17789         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17790         characters that need special handling.
17792 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17794         * mono-config.c: make the os/cpu specification more flexible,
17795         allowing lists and negation.
17797 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17799         * marshal.c: COM Interop fixes. Handle case where method->klass.
17800         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17801         calling convention on non-windows platforms. This is for
17802         compatibility with XPCOM and MainWin COM.
17803         
17804         Code is contributed under MIT/X11 license.
17805         
17807 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17809         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17810         correctly. Fixes #79217.
17812         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17814 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17816         * mono-config.c: allow both an os and cpu attribute for dllmap
17817         and dllentry elemnets to enable a single config file to be used
17818         for multiple architectures.
17820 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17822         * loader.c: MonoLoaderError was cleared too soon on load failure.
17823         Fixes bug #79424.
17825 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17827         * icall.c: use the defining class vtable when accessing a
17828         static field, not a pobblibly derived class.
17830 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17832         * icall.c string-icalls.c: Remove references to unicode.h.
17834         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17836         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17838         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17839         indicating the image where custom marshaller types should be looked up.
17840         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17841         custom marshallers, instead of corlib. Fixes #79425.
17843 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17845         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17847 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17849         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17850         Implement Environment.ProcessorCount.
17851         
17852         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17853         Implement Environment.ProcessorCount.
17854         
17855         * icall.c: 
17856         Add Environment.ProcessorCount icall.
17857         
17858         Patch by Jason McFall.
17860 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17862         * assembly.c: don't append .exe/.dll when the filename already contains
17863         one of those extensions.
17865 2006-09-12  Martin Baulig  <martin@ximian.com>
17867         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17868         to array interfaces.
17870 2006-09-11  Martin Baulig  <martin@ximian.com>
17872         * reflection.c (mono_image_build_metadata): Create the
17873         MethodImpl's after emitting all types and methods, so we don't
17874         need another fixup pass for them.
17876 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17878         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17879         change.
17881 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17883         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17884         unload.
17886 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17888         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17889         args is not set. Fixes #78926.
17891 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17893         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17895         * image.c (load_class_names): Move this to class.c, and rename it to 
17896         'mono_image_init_name_cache'.
17897         (load_modules): Fix a warning.
17899         * class.c icall.c image.c: Initialize image->name_cache lazily.
17901         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17902         on its name using information in the AOT file.
17904         * class.c (mono_class_from_name): Use the new hook function.
17906 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17908         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17909         correctly.
17911         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17912         Fixes #79289.
17913         
17914 2006-09-06  Martin Baulig  <martin@ximian.com>
17916         * icall.c (mono_lookup_internal_call): Small fix.
17918 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17920         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17921         double g_free.
17923 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17925         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17926         when --debug is specified.
17928 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17930         * class.c (setup_generic_array_ifaces): Fix a warning.
17932 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17934         * Temporarily remove the patch to assemly.c that checks the
17935         assembly versions as it breaks our gacutil.
17937 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17939         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17941         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17942         a net 1.0 runtime.
17944         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17945         created using the default ctor. Fixes #79152.
17946         (mono_string_builder_to_utf16): Ditto.
17948 2006-09-01  Martin Baulig  <martin@ximian.com>
17950         Fix handling of the generic array interfaces.
17952         * class-internals.h
17953         (MonoDefaults): Removed `generic_array_class' and added
17954         `generic_ilist' class.
17956         * class.c
17957         (mono_bounded_array_class_get): Add the new generic array interfaces.
17958         (setup_generic_array_ifaces): New static method; create vtable
17959         entries for each method in the generic array interfaces.
17961         * metadata.c
17962         (select_container): Allow "parent-less" generic methods.
17964         * marshal.c
17965         (mono_marshal_get_generic_array_helper): New public method.
17967         * icall.c
17968         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17969         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17970         moved the interncall into System.Array.
17972 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17974         A few more cases of avoiding work on types with ->byref set.
17975         Has the real fix for #79238
17976         * icall.c (is_generic_parameter): New helper.
17977         (ves_icall_Type_GetGenericParameterPosition): Use it.
17978         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17979         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17980         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17981         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17982         reference types.
17983         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17984         reference types.
17985         (ves_icall_Type_get_IsGenericInstance): Likewise.
17986         (ves_icall_Type_get_IsGenericType): Likewise.
17988 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17990         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17991         class if possible.
17993         * mempool.h (mono_mempool_get_allocated): New helper function.
17995         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17996         change.
17998         * mempool.c: Fix warnings and the calculation of stats.
18000         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18002         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18004         * loader.c (mono_get_method_from_token): Update method_count stat.
18006         * class-internals.h (MonoStats): Add some stats.
18008 2006-08-31 Robert Jordan  <robertj@gmx.net>
18010         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18011         with managed variants.
18012         All code is contributed under the MIT/X11 license.
18013         
18014 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18016         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18017         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18019         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18021         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18022         with cycles in classes.
18024         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18026         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18027         missing a [MarshalAs] directive. Fixes #79203.
18029         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18030         klass->marshal_info. Fixes #79217.
18032 2006-08-30  Martin Baulig  <martin@ximian.com>
18034         Committing a patch from Joachim Ante <joe@otee.dk>:
18035         Add support for binary data symbol stores.
18037         * debug-mono-symfile.c
18038         (mono_debug_open_mono_symbol_file): Renamed into
18039         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18040         arguments.
18042         * mono-debug.c
18043         (mono_debug_open_image): Added `raw_contents' and `size' args.
18044         (mono_debug_init_2_memory): New public function.
18046 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18048         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18050 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18052         * appdomain.c: implement support for ShadowCopyFiles.
18054 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18056         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18057         when value is NULL (and should remove CID #51).
18059 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18061         * image.c: moved 2 functions to ../utils.
18063 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18065         * gc.c: cope with the target object of a GC handle being NULL
18066         (bug #78877).
18068 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18070         * class.c: recursively check parent's explicit implementations
18071         of interface methods (fixes bug #79125).
18073 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18075         * filewatcher.c: Avoid warnings when building, do not redefine
18076         constants that are defined.
18078         Remove warnings.
18080 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18082         * image.c: don't fail when the link points to an absolute path.
18084 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18086         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18087         Fix CID #3.
18089 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18091         * image.c (full_path): A new method used to obtain the actual path
18092         of an assembly even in the presence of symbolic links.  
18094         This is necessary for the case where we are running a binary that
18095         has been GACed, but we are using the "published" path name
18096         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18097         file in the GAC.
18099         This was the source of the failure for the `xsp' command with the
18100         recent AppDomain changes, as far as the runtime was concerned,
18101         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18102         $prefix/mono/gac/blah/version/blah.exe.
18104         (do_mono_image_open): use full path
18106 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18108         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18110 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18112         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18113         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18115 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18117         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18118         small structures. Fixes #78990.
18120 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18122         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18124         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18126 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18128         * appdomain.c:
18129         * marshal.c: don't load all the assemblies from a domain into newly
18130         created ones. The new domains might have different rules and load
18131         assemblies from different locations. Fixes bug #76757.
18133         Patch by Lluis. Conflicts resolved by Brian Crowell.
18135 2006-08-16  Alp Toker  <alp@atoker.com>
18137         * socket-io.c: First half of the fix for #79084.
18138         Set sa_size to the length of the content, not that of the struct.
18139         Don't add NULL suffix to the content, this should be done in
18140         managed code if needed.
18142 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18144         Fix part of #79012
18145         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18146         mono_metadata_parse_type returns NULL.
18148 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18150         * normalization-tables.h : new file for string normalization data.
18151         * locales.c, locales.h, icall.c :
18152           added load_normalization_resource() for string normalization,
18153           and icall as well.
18154         * Makefile.am : added normalization-tables.h to the sources.
18156 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18158         * marshal.c: Add more helper functions to reduce code duplication and use them
18159         everywhere.
18161 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18163         * marshal.c: Fix non-x86 stdcall warnings.
18164         
18165         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18166         them everywhere.
18168 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18170         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18171         type check on multi-dimensional arrays. Fixes #79000.
18173 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18175         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18176         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18177         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18178         * class-internals.h: add is_com_object to class structure.
18179         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18180         null checks to COM object marshalling. Fix .ctor call on RCW.
18181         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18182         
18183         All code is contributed under the MIT/X11 license.
18185 2006-08-09  Dick Porter  <dick@ximian.com>
18187         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18188         racing mono_monitor_allocator_lock() somewhere, so don't delete
18189         the critical section for now.  Found by running and exiting
18190         monodevelop.
18192 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18194         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18195         (ves_icall_System_ComObject_FindInterface): Ditto.
18196         (ves_icall_System_ComObject_CacheInterface): Ditto.
18198         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18199         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18201 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18203         * threadpool.c: treat pipes from process asynchronous reads as sockets
18204         when reading from them, so we get select/poll or epoll to wait for
18205         data.
18207 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18209         * loader.c: Fix a typo (CID #233) in the null check.
18211 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18213         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18214         Hopefully fixes #78949.
18215         
18216         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18217         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18218         bytes. Fixes #78972.
18220 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18222         * filewatcher.c: we need to set errno here.
18224 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18226         * filewatcher.c: let Win32Exception get the error value.
18228 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18230         * filewatcher.c: translate errno into win32 errors for Win32Exception
18231         to know what happened.
18233 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18235         * threadpool.c: Fix more warnings.
18237         * assembly.c (search_loaded): Fix warnings.
18239         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18240         (mono_async_invoke): Ditto.
18242 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18244         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18245         entries for __ComObject type in addition to ComImport types.
18246         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18247         about hash table.
18248         
18249         All code is contributed under the MIT/X11 license.
18251 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18253         * image.c: avoid tentative loading of modulerefs that contain
18254         no metadata (P/Invoke library names).
18256 2006-07-28  Dick Porter  <dick@ximian.com>
18258         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18259         mono_loader_lock() somewhere, so don't delete the critical section
18260         for now.  Found by running and exiting monodevelop.
18262 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18264         * filewatcher.c: define the inotify syscalls when we're building on
18265         linux and have sys/syscall.h. The build system might not have support
18266         for inotify but the target system might have it.
18268 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18270         * domain.c: Documentation updates.
18272         * loader.c (mono_free_method): Do not release the method
18273         information if we are being profiled, as profilers will use this
18274         information at shut down to present some data to the user.
18276         This is needed so that the profiler does not crash, as the
18277         profiler tends to keep MonoMethods around, and they might become
18278         invalid if we free these.
18280         (mono_get_method_constrained): Return the original CIL stream
18281         method as well, so verification can be performed against it.
18283 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18285         * filewatcher.[ch]: support for inotify file system watcher.
18286         * icall.c: add new internal calls for the inotify file system watcher.
18288 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18290         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18291         #78888.
18293 2006-07-20  Dick Porter  <dick@ximian.com>
18295         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18296         warning.
18298 2006-07-20  Dick Porter  <dick@ximian.com>
18300         * threads.c (start_wrapper): Do the thread cleanup while we still
18301         hold a reference to its object.  Fixes bug 78123.
18303 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18305         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18306         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18307           "managed-to-managed".
18308         * icall.c: Redirect string constructors that take sbyte* to
18309           ves_icall_System_String_ctor_RedirectToCreateString.
18310         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18311           to CreateString () methods with matching signature.
18312         * reflection.c: Use original security informations for
18313           MONO_WRAPPER_MANAGED_TO_MANAGED.
18314         * security-manager.c: Use original security informations for
18315           MONO_WRAPPER_MANAGED_TO_MANAGED.
18316         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18317           that is a placeholder and only its address should be used.
18318         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18319           that is a placeholder and only its address should be used.
18321 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18323         Begin implementing COM Interop.
18324         * appdomain.c: Increment corlib version.
18325         * class.c: Set ComImport classes' parent to __ComObject.
18326         * loader.c: Mark cominterop methods as such.
18327         * domain.c: Add __ComObject class to MonoDefaults structure.
18328         * image.c: Add 2 hashtables to the image for COM Interop related methods
18329         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18330         using the mempool allocator
18331         
18332         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18333         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18334         declaration for mono_metadata_type_dup_mp.
18335         
18336         * debug-helpers.c: Added strings for two additional wrapper types
18337         * object.c: Create proxy objects for ComImport classes
18338         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18339         and added __ComObject class to MonoDefaults structure.
18340         
18341         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18342         MonoComInteropProxy and MonoComObject.
18343         
18344         * marshal.c: Added support for COM Interop
18345         (signature_cominterop): Converts managed signature to corresponding
18346         unmanaged COM signature.
18347         (cominterop_get_function_pointer): gets unmanaged function pointer via
18348         COM object vtable
18349         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18350         (cominterop_get_method_interface): returns interface type that method is defined on
18351         (mono_mb_emit_cominterop_call): emits native call to function pointer
18352         gotten from vtable
18353         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18354         that matches signature of unmanaged function.
18355         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18356         (cominterop_get_invoke): forwards call from proxy to __ComObject
18357         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18358         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18359         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18360         
18361         * marshal.h: Added Marshal icall declarations.
18362         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18363         so we can access them in finalizer
18364         
18365 2006-07-14  Dick Porter  <dick@ximian.com>
18367         * object.c (mono_type_initialization_cleanup): Fix a race
18368         condition by temporarily commenting out the critical section
18369         deletion.
18371 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18373         * reflection.c (create_custom_attr): Fix some warnings.
18374         (create_custom_attr_data): Ditto.
18375         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18376         types. Fixes #78855.
18378 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18380         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18382         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18384 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18386         * reflection.c (resolve_object): Add support for DynamicMethod.
18388         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18389         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18391 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18393         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18394         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18396 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18398         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18399         Fixes #77888.
18401 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18403         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18404         slightly: remove a shadow local variable.
18406 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18408         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18409         definition that introduces the virtual function slot.
18410         Also fix Coverity #105.
18412 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18414         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18415         for dynamic assemblies. Fixes #78724.
18417 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18419         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18420         Fixes #78722.
18422 2006-06-21  Martin Baulig  <martin@ximian.com>
18424         * reflection.c
18425         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18426         fixes #76484.
18428 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18430         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18432 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18434         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18435         nor TYPEREFs.
18436         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18437         Inflate result if necessary.
18438         (mono_class_get_full): Remove old version.  Rename from
18439         'mono_class_get' and add 'context' argument.  Pass it to
18440         ..._create_from_typespec.
18441         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18442         (mono_ldtoken): Revert change below.
18444 2006-06-20  Martin Baulig  <martin@ximian.com>
18446         * class.c (mono_ldtoken): Don't pass the generic context to
18447         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18449 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18451         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18452         and later freeing it. Fixes #78638.
18454 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18456         * icall.c (mono_class_get_throw): Revert over-zealous error
18457         throwing, the caller for mono_class_get_throw will cope with
18458         errors when classes are not properly initialized already.
18460         The code still copes with loader exceptions though.
18462         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18463         
18464 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18466         Fixes the `make run1' version of RuntimeAbort (to be commited,
18467         source is in Bugzilla).
18468         
18469         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18470         FALSE on class loading failure instead of returning true.
18472         * class.c (mono_class_create_from_typedef): It is possible for
18473         mono_metadata_interfaces_from_typedef_full to fail if a class is
18474         not found, cope with this.
18475         
18477 2006-06-14  Dick Porter  <dick@ximian.com>
18479         * socket-io.c: 
18480         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18481         4.1.1
18483 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18485         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18487 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18489         * icall.c: Another fix for building mono in Visual Studio.
18491 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18493         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18494         
18495 2006-06-09  Martin Baulig  <martin@ximian.com>
18497         * debug-mono-symfile.c: Put this back and really fix it this
18498         time. Sorry for all the trouble.
18500 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18502         * icall.c (mono_class_get_throw): Fix a warning.
18503         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18504         ReflectionTypeLoadException if needed. Fixes #78606.
18506         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18507         (mono_class_init): Ditto.
18509         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18510         ref_only exceptions.
18511         (mono_loader_clear_error): Make this work even if there is no error.
18513 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18515         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18516         Marshal.GetComSlotForMethodInfo using internal call.
18518 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18520         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18521         a function for signalling it.
18523         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18524         a referenced assembly is not found.
18526         * loader.c (mono_loader_error_prepare_exception): Add support for 
18527         LOADER_ERROR_ASSEMBLY. Fix formatting.
18529 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18531         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18532         for VARIANT marshalling on windows and increment corlib version
18533         since Variant struct was added.
18535 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18537         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18538         stack trace line information:
18540         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18541         (Martin) when looking up B which is between A and C, return A not C.
18543         Bug is #78573.
18545         Thanks to Alexander Olk for tracking this down.
18547 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18549         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18550         
18551         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18552         avoid clobbering its value.
18553         (mono_string_to_lpstr): Fix a warning on windows.
18555 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18557         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18559         * reflection.c loader.c: Removed references to 'dummy' flag.
18561         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18563         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18564         it gets GC tracking.
18566         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18567         GC tracking.
18568         
18569         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18571         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18573         * appdomain.c: Bump corlib version.
18575 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18577         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18578         CEE_STIND_REF when working with object references.
18580 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18582         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18583         Fixes #78539.
18585 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18587         * loader.c (method_from_memberref): Fix argument value for
18588         mono_loader_set_error_method_load (I was passing the MonoClass
18589         instead of the class name char *).
18591 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18593         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18594         CEE_STIND_REF when working with object references.
18596 2006-05-30  Martin Baulig  <martin@ximian.com>
18598         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18599         mono_method_full_name() change and replace the ':' with a '.'
18600         here.
18602 2006-05-30  Martin Baulig  <martin@ximian.com>
18604         * debug-mono-symfile.c
18605         (mono_debug_symfile_lookup_location): Fix the algorithm:
18606         when looking up B which is between A and C, return A not C.
18608 2006-05-29  Martin Baulig  <martin@ximian.com>
18610         * mono-debug.h
18611         (MonoDebugMethodInfo): Make the typedef public.
18612         (MonoDebugSourceLocation): New public struct.
18614         * mono-debug.c
18615         (mono_debug_source_location_from_address): Removed.
18616         (mono_debug_source_location_from_il_offset): Removed.
18617         (mono_debug_il_offset_from_address): Removed.
18618         (mono_debug_address_from_il_offset): Removed.
18619         (mono_debug_lookup_method): New public function.
18620         (mono_debug_lookup_source_location): New public function; replaces
18621         the old mono_debug_source_location_from_*() functions; see the
18622         inline documentation.
18623         (mono_debug_free_source_location): New public function.
18624         (mono_debug_print_stack_frame): New public function; see the
18625         inline documentation.
18627         * debug-mono-symfile.c
18628         (mono_debug_find_source_location): Renamed into
18629         mono_debug_symfile_lookup_location(); only take a
18630         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18631         documentation.
18632         (mono_debug_find_method): Renamed into
18633         mono_debug_symfile_lookup_method().
18635 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18637         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18638         returned by mono_image_open_full ().
18640         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18641         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18642         #78517.
18644         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18645         #78518.
18647 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18649         * class.c (mono_class_from_typeref): handle missing images
18650         earlier, deals with bug #78418.   Refactor code; 
18652         Fix a warning introduced in my previous commit (some stale code
18653         from before I revisited my patch).
18655         * class.c (mono_class_create_from_typedef): On failure, remove the
18656         class from the MonoImage->class_cache as the class is not
18657         initialized;   Fixes the leak pointed out by Paolo.
18659 2006-05-25  Dick Porter  <dick@ximian.com>
18661         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18662         DeleteCriticalSections until I figure out which one may still be
18663         sometimes locked when mono_thread_cleanup is called.
18665 2006-05-24  Dick Porter  <dick@ximian.com>
18667         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18668         of mono_thread_manage and back into its own function, so it can be
18669         called after the finalizer thread has finished.
18671         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18673 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18675         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18676         Fixes #78495.
18678         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18679         with non-blittable elements.
18680         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18682 2006-05-24  Martin Baulig  <martin@ximian.com>
18684         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18685         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18687         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18688         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18689         `mono_debugger_event_handler' to NULL.
18691 2006-05-24  Martin Baulig  <martin@ximian.com>
18693         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18695 2006-05-24  Martin Baulig  <martin@ximian.com>
18697         * mono-debug-debugger.h
18698         (mono_debugger_create_notification_function): Added
18699         `MonoCodeManager *' argument.
18701 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18703         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18705 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18707         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18708         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18709         implementation.
18711 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18713         * icall.c: precise GC support: objects can't be stored in unmanaged
18714         memory anymore, even if they are kept alive by other references: since
18715         they can move the GC needs to be able to always find them.
18717 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18719         * object.c: precise GC support for static fields. Support
18720         for moving GCs: write barriers and pinned allocation for interned
18721         strings.
18723 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18725         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18726         structure.
18728 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18730         * class.c, gc.c: sgen and precise GC updates.
18732 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18734         * marshal.h, marshal.c: added write barrier wrapper and precise type
18735         fixes.
18737 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18739         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18740         support.
18742 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18744         * reflection.c: precise and sgen GC updates.
18746 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18748         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18750 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18752         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18754 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18756         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18757         MONO_TYPE_OBJECT. Fixes #78462.
18759 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18761         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18762         and blittable types.
18764 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18766         * class.c (mono_class_get_exception_for_failure): Implement parts
18767         of a TODO: if the loader error is set (instead of the class
18768         error), we return a Loader exception that can be properly thrown
18769         elsewhere.
18771         This was exposed by some Winforms 2.0 code that I tried to run
18772         (Atsushi pointed me to it).
18774 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18776         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18777         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18778         
18779         * marshal.c (emit_marshal_vtype): Add limited support for 
18780         UnmanagedType.LPStruct. Fixes #78427.
18782         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18783         Applied a patch from kangaroo to fix #77523.
18785 2006-05-17  Martin Baulig  <martin@ximian.com>
18787         * threads.c
18788         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18789         (debugger_thread_created): Removed.
18790         (debugger_thread_exited): Removed.
18792 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18794         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18796         * object-internals.h (MonoReflectionResource): Sync with managed version.
18798 2006-05-12  Wade Berrier <wberrier@novell.com>
18800         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18802 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18804         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18805         functions try to allocate from the image mempool.
18807 2006-05-12  Dick Porter  <dick@ximian.com>
18809         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18811 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18813         * object.c: The FieldGetter and FieldSetter methods require the full
18814         name of the class, not only the name. Fixes bug #78277.
18816 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18818         * loader.c (method_from_memberref): Do not pass the NULL klass to
18819         mono_loader_set_error_() methods.  Pass the non-NULL value
18820         (class). 
18822 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18824         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18825         (mono_assembly_close): Null out assembly->image->references after freeing it.
18827         * image.c (mono_image_close): Free image->references.
18828         
18829         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18831 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18833         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18834         before checking if it's NULL (g_assert).
18836 2006-05-10  Martin Baulig  <martin@ximian.com>
18838         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18839         I thought I already killed that two months ago, but now it somehow reappeared.
18841 2006-05-10  Martin Baulig  <martin@ximian.com>
18843         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18845 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18847         * reflection.c: Allocate memory for dynamically created methods in the image
18848         mempools.
18850 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18852         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18853         don't use the ad pointer before checking if it's NULL (g_assert).
18855 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18857         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18858         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18860         * marshal.c: Allocate all signatures from mempools.
18862         * marshal.c: Allocate some more signatures from mempools.
18864 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18866         * object.c (mono_load_remote_field): The code used to provide a
18867         temporary variable for returning results if the user did not
18868         provide a result pointer.  But our temporary variable was allocted
18869         on the satck.
18871         Fix calling code to always pass a result area.   Coverity ID 103.
18873 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18875         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18876         value, not the old. Fixes #78312.
18877         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18879         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18880         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18881         per-image cache.
18883         * assembly.c (mono_assembly_close): Free image->references.
18885         * assembly.c (mono_assembly_names_equal): Fix a warning.
18886         (mono_assemblies_cleanup): Cleanup more global data.
18888         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18890         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18891         ptr_cache and image->modules.
18893         * image.c (mono_image_init): Allocate array_cache lazily.
18894         
18895 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18897         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18898         behavior was changed recently and has bad side effects.
18900 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18902         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18903         
18904         * assembly.c (mono_assembly_close): Remove a debug printf.
18906         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18908         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18909         to also allow for temporary references between mono_image_open ()/close ().
18911         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18913 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18915         * marshal.c: Fix support for dynamic methods.
18917         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18919         * marshal.c (mono_marshal_cleanup): New cleanup function.
18921         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18922         image mempools.
18924         * class.c (mono_class_init): Fix leaking class->nested_classes.
18926         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18928         * image.c (mono_image_init): Initialize the new cashes.
18930         * image.c (mono_image_close): Destroy the new cashes.
18932         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18934         * mempool.c (mono_mempool_strdup): New helper function.
18936         * class-internals.h: Add prototype for mono_loader_unlock ().
18938         * domain.c (mono_jit_info_table_find): Fix a warning.
18939         (mono_debugger_check_runtime_version): Ditto.
18941         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18942         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18943         functions to these modules.
18945         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18946         metadata modules.
18947         
18948         * marshal.c (mono_free_bstr): Fix a warning.
18950         * assembly.c (mono_assembly_open_full): Fix another small leak.
18952         * object.c: Fix some unload leaks in the remoting code.
18954         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18955         function.
18957         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18959         * reflection.c: Fix some unload leaks in dynamic assemblies.
18961 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18963         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18964         * marshal.h: Add BSTR support on Win32
18965         * icall.c: Add BSTR icalls
18966         * metadata.h: Add BSTR enums
18968 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18970         Work to catch the crash from #76795 and turn it into an
18971         exception.   As I stubbed out pieces of the VisualBasic support,
18972         I found a number of places where the code was failing and I added
18973         checks to those places. 
18974         
18975         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18976         function return a status code.  If we fail to parse the signature
18977         from mono_metadata_parse_generic_inst, return FALSE.
18979         * loader.c (mono_get_method_from_token): If we fail to load the
18980         method (mono_class_get) return NULL.   
18982         * (method_from_memberref): Return NULL if we are unable to parse
18983         the method signature
18985         (mono_loader_error_prepare_exception): Since we now use the
18986         loader_error flag internally to stop processing, and obtaining
18987         exceptions that might be thrown will walk this code path the
18988         proper way of going from a MonoLoaderError into a
18989         MonoException was convoluted.   This new routine encapsulates the
18990         process of turning the error into an exception and *clearing* the
18991         error afterwards.
18992         
18993 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18995         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18996         with missing assemblies), and to cope with:
18998                 * Missing fieldref from a non-existing assembly.
18999                 * Missing methodref from a non-existing assembly.
19001         The first batch of work to address *some* of the issues from 76661.
19002         
19003         * object.c (mono_class_create_runtime_vtable): If we fail to
19004         initialize the class raise the exception here. 
19006         * metadata.c (mono_class_get_overrides_full): If any methods fail
19007         to load return the failure to the caller.
19009         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19010         flagging assemblies that failed to load.   
19012         Do not crash if we are unable to load the assembly.
19014         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19015         assemblies. 
19017         * loader.c (mono_loader_set_error_type_load): Change the
19018         convention to always pass unallocated strings, so we make our own
19019         copies (I know our own code had duplicated strings before, but
19020         this keeps the normal conventions).
19021         (method_from_memberref): Call mono_loader_set_error_method_load
19022         for all possible failures of loading the class. 
19023         Remove assert, turn into a loader error.
19025         (mono_loader_error_to_exception): Move this routine from mini
19026         (mini_loader_error_to_exception) there was no need to have that in
19027         mini. 
19029         * class.c (mono_class_from_typeref): If we were not able to load
19030         the assembly with mono_assembly_load_reference, call the
19031         mono_loader_set_error_type_load to register the problem.
19033         (mono_class_setup_fields): If we fail to load the type from
19034         mono_metadata_parse_type_full, call mono_class_set_failure and
19035         break from the loop.
19037         If class->exception_type is set, we do not layout the fields as
19038         that might crash the runtime, and instead return (from breaking
19039         from the previous loop).
19041         (mono_class_setup_vtable): This now returns a boolean indicating
19042         whether the table was properly setup.   The decision is driven by
19043         mono_class_get_overrides_full which might run into non-existing
19044         methods. 
19045         
19046         (mono_class_init): Returns TRUE on success or FALSE if there was a
19047         problem in loading the type (incorrect assemblies, missing
19048         assemblies, methods, etc).
19050         When we call mono_class_setup_fields we also check for a potential
19051         error inside this call (either a class exception or a general
19052         loader exception).
19054         (mono_class_create_from_typedef): If the parent fails to load
19055         (calling mono_class_get_full) return NULL.
19056         
19057         ** Important **
19059         calls to mono_metadata_parse_type_full should be checked
19060         everywhere and set the mono_class_set_failure
19061         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19063         The current patch checks the places where my manually constructed
19064         tests show the errors are showing up, but we should do it
19065         everywhere. 
19067         ** Important2 **
19069         mono_class_init return values should be tested everywhere, like
19070         the previous case this is something that we should audit
19071         everywhere and not only on the cases exposed by the tests I
19072         created. 
19074 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19076         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19077         boolean parameter and instead pass the information on `options'
19078         parameter (FileOptions).
19080         * icall.c: Register the new signature for MonoIO.Open.
19082         * debug-helpers.c (dis_one): Trying to understand how coverity
19083         works.  Fix Run 5, item 78.
19085 2006-04-26  Dick Porter  <dick@ximian.com>
19087         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19088         dereference.
19090 2006-04-25  Martin Baulig  <martin@ximian.com>
19092         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19094         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19095         debugger_thread_created().
19096         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19097         special way.
19098         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19099         (mono_debugger_finalize_threads): New function; undo the effects
19100         of mono_debugger_init_threads().
19101         (mono_debugger_create_all_threads): Removed.
19103 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19105         * image.c (mono_image_close): Tidy up trace messages.
19107         * assembly.c (mono_assembly_close): Ditto.
19109         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19110         no longer references an already freed assembly. Fixes #78168.
19112 2006-04-21  Dick Porter  <dick@ximian.com>
19114         * threads.c (mono_thread_detach): Fix reference counting when
19115         detaching threads.
19117 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19119         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19120         #78155.
19122 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19124         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19125         (mono_type_to_stind): Ditto.
19127         * marshal.c: Use the new helper functions to simplify code.
19129         * image.c (mono_image_close): Add some code for help debug assembly unloading
19130         problems.
19132         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19133         image mempool.
19135         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19136         assembly was already loaded in another appdomain. Fixes #78083.
19138 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19140         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19141         referenced assemblies.
19142         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19144         * domain.c (mono_domain_free): Add a trace message.
19146         * appdomain.c (add_assemblies_to_domain): Ditto.        
19148         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19149         field.  
19151 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19153         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19155 2006-04-12  Martin Baulig  <martin@ximian.com>
19157         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19158         `USE_INCLUDED_LIBGC'.   
19160 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19162         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19163         the patch contains ../ and a small directory name later. Hopefully fixes
19164         #78035.
19166 2006-04-10  Martin Baulig  <martin@ximian.com>
19168         Clean up the debugger's thread-handling code.
19170         The debugger's thread-handling code has been moved from
19171         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19172         over the `threads' hash, keep track of exiting threads and also
19173         use proper locking.
19175         We can now debug XSP and XSP based applications with the debugger.
19177         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19179         * threads.h
19180         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19181         (mono_install_thread_callbacks): Likewise.      
19183         * threads.c (mono_thread_callbacks): Removed.
19184         (debugger_thread_created, debugger_thread_exited): New static functions.
19185         (start_wrapper): Call debugger_thread_created().
19186         (thread_cleanup): Call debugger_thread_exited().
19187         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19188         (mono_debugger_init_threads): New public function.
19189         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19190         iterate directly over the `threads' hash and also use proper locking.
19192         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19194         * mono-debug-debugger.h
19195         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19197 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19199         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19200         argument type=array. Fixes #78057.
19202 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19204         * culture-info-table.h : regenerated. Fixed bug #69652.
19206 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19208         * loader.c metadata.c: Reapply a variant r59116.
19209         
19210         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19212         * class.c (mono_class_setup_interface_offsets): New internal function.
19214         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19215         interfaces too. Fixes #77398.
19217         * reflection.c (encode_cattr_value): Add support for 
19218         parameter type=object, argument type=array.
19219         (load_cattr_value): Ditto. Fixes #77916.
19221         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19222         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19224         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19225         a byval char array and CharSet is Ansi.
19227         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19229 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19231         * metadata.c: Add some locking comments.
19232         
19233         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19234         mempool.
19235         (mono_metadata_free_method_signature): Don't free the signature itself.
19237         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19239         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19240         reference the same MonoImage.
19241         (mono_assembly_load_from_full): Add an assert.
19243 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19245         * image.c (mono_image_close): Don't put the image we are about to free into the
19246         loaded_images_guid_hash.
19248         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19249         to reduce code duplication.
19251         * marshal.c: Register the native functions called by this module as icalls, to
19252         somewhat centralize the creation of MonoMethodSignature's.
19254         * loader.c (mono_method_signature): Add a cache for method signatures.
19256         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19257         the parameter attributes of a method.
19258         (mono_metadata_parse_method_signature_full): Refactored the computation of
19259         parameter attributes into a separate function. Also avoid one allocation in
19260         most cases.
19262         * assembly.c (mono_assembly_close): Ditto.
19264         * image.c (mono_image_close): Log trace messages with INFO level.
19266         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19268         * image.c reflection.c: Correct reference counting of image modules.
19269         
19270         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19271         of this function from the image mempool.
19272         
19273         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19274         to allow more cached types to be used.
19276         * mono-debug.c (mono_debug_add_method): Appled patch from
19277         David S. Miller  <davem@sunset.davemloft.net>: Access 
19278         minfo->lexical_blocks[] entry elements using read32().
19280 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19282         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19283         methods as it is allocated from the mempool.
19285         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19286         image mempool.
19288         * metadata-internals.h: Add comments describing the reference counting scheme
19289         used for MonoImage and MonoAssembly.
19291         * image.c assembly.c reflection.c: Rework reference counting of images and 
19292         assemblies so they are freed when the runtime is shut down. Free some 
19293         additional memory structures when an image is unloaded.
19294         
19295 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19297         * class.c loader.c reflection.c: Allocate more data structures in
19298         the image mempool.
19300 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19302         * icall.c
19303         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19304         build on pre glib 2.4 systems.
19306 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19308         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19310         * icall.c: Fix some warnings.
19312 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19314         * culture-info-table.h : regenerated.
19316 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19318         * threads.c, object-internals.h, verify.c: changed the culture caching
19319         code to use a normal MonoArray for storage so the GC can keep track of
19320         them easily. Fixed bits of the cache logic, too and simplified the
19321         code.
19323 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19325         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19326         thread for non-Boehm GCs.
19328 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19330         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19331         needed to keep track of the data for static fields.
19333 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19335         Fix #75172
19336         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19337         for interface classes.  Use 'num_methods' instead.
19338         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19339         before using '->vtable_size' field.
19341 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19343         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19344         doesn't contain managed pointers, so use a normal hashtable.
19346 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19348         * reflection.c, class-internals.h, domain.c: fixed handling of types
19349         used as values for objects in custom attributes (bug #77915):
19351 2006-03-24  Martin Baulig  <martin@ximian.com>
19353         * class.c (mono_class_setup_fields): Added support for generic
19354         instances; fixes #77580.
19356 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19358         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19360 2006-03-24  Dick Porter  <dick@ximian.com>
19362         * file-io.c (get_file_attributes): More stat macro breakage.
19363         Fixes bug 77759.
19365 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19367         * profiler.c: added the file=filename option in the default profiler
19368         to output the profile data to filename.
19370 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19372         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19373         bug #77877.
19375 2006-03-22  Martin Baulig  <martin@ximian.com>
19377         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19378         allocated `MonoClassField *' in `fb->handle'.
19380 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19382         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19383         allocate interface ID to save memory and allow better ID reuse on
19384         appdomain unload. setup_generic_vtable () removal from Martin.
19386 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19388         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19389         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19390         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19391         write barriers for reference stores with managed objects accessed with
19392         C structures in the runtime and in embedding programs.
19394 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19396         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19397         'interface_id' and 'max_interface_id' fields of MonoClasses
19398         representing open generic types.
19400 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19402         * object.h, object.c, icall.c: added functions to deal with
19403         storing valuetypes that contain references in managed objects.
19404         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19405         fixes and comments around uses of mono_array_addr ().
19407 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19409         * object.h, icall.c, monitor.c: object.GetHashCode ()
19410         implementation that supports the moving garbage collector.
19412 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19414         * icall.c, threads-types.h, threads.c: implemented finalizer for
19415         LocalDataStoreSlot.
19417 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19419         * metadata.c (mono_type_size): Add a fixme.
19420         (mono_type_stack_size): Ditto.
19422         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19423         'type_forwarders' field.
19425         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19426         attribute from net 2.0.
19428         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19429         from class.c.
19431         * class.c (mono_class_setup_fields): Fix a warning.
19432         
19433         * class.c (mono_class_from_name): Add support for assemblyref entries
19434         in the EXPORTEDTYPE table.
19436         * reflection.c: Add support for handling type forwarders under net 2.0.
19438         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19439         
19440 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19442         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19443         overwriting entries in ModuleBuild->types, also clean up the code
19444         a little. Fixes #77774.
19446 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19448         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19449         load friend assembly info when present.
19451 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19453         Fix crasher on gtest-158.cs.
19454         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19455         the return value if the MonoClass we want is yet in an
19456         inconsistent state.
19457         * class.c (mono_class_create_from_typedef): Add an comment
19458         explaining an order dependency between mono_class_setup_parent and
19459         mono_class_setup_mono_type.
19461 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19463         * class.c: documentation updates and events bug fix.
19465 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19467         * class.c: some cleanup, locking fixes.
19469 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19471         * class.c: fix the generics code to setup nested
19472         type info to the instantiated type (bug #77770).
19474 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19476         * marshal.c: fixed a few type correctness issues.
19478 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19480         * loader.c: the Set/Get/Addrtess array methods should be public.
19482 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19484         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19485         
19486         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19487         info->wrapper.
19489 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19491         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19493         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19495         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19496         (mono_mempool_alloc0): Ditto.
19498 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19500         * socket-io.c:
19501         (create_object_from_sockaddr): it was allocating 4 extra bytes
19502         for the AF_UNIX data. Fixes bug #77747.
19504 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19506         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19508 2006-03-09  Dick Porter  <dick@ximian.com>
19510         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19511         Fixes bug 76966 again.
19513 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19515         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19516         names from r57532
19517         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19519 2006-03-07  Martin Baulig  <martin@ximian.com>
19521         * object.c
19522         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19524 2006-03-07  Martin Baulig  <martin@ximian.com>
19526         * class.c
19527         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19528         regression introduced in r56970; see gtest-252.cs.
19530         * loader.c (mono_get_method_constrained): Correctly handle generic
19531         methods; see gtest-253.cs.
19533 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19535         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19537 2006-03-04  Martin Baulig  <martin@ximian.com>
19539         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19540         compute the parent type at runtime, just like we're already doing
19541         it for interfaces.
19543         * reflection.c
19544         (mono_reflection_bind_generic_parameters): Don't compute the
19545         parent type anymore.
19547         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19549 2006-03-04  Martin Baulig  <martin@ximian.com>
19551         * mono-debug-debugger.h
19552         (mono_debugger_create_notification_function): Allocate memory at
19553         runtime and return a pointer to it.
19555 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19557         * assembly.c: Fix windows build.
19558         
19559         * assembly.c: Fix build.
19561         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19563         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19564         
19565 2006-03-03  Dick Porter  <dick@ximian.com>
19567         * process.c
19568         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19569         Check parameters before dereferencing them.  Fixes Aaron's part of
19570         bug 77393.
19572 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19574         Fix performance regression.
19575         * loader.c (find_method_in_class): Add 'from_class' argument.
19576         Rename 'klass' argument to 'in_class'.  The signature is compared
19577         against the method in 'in_class', and the corresponding method is
19578         returned from 'from_class'.
19579         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19580         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19581         type definition and generic instantiation in parallel.
19582         (mono_get_method_constrained): Update to changes.
19584 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19586         * threads.c: make sure the domain is correct, too when doing
19587         mono_thread_attach ().
19589 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19591         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19592         windows. Fixes #77683.
19594 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19596         * object.h, *: introduced specific way to set elements of an array
19597         of references to be used as write barrier. Still need to audit the
19598         uses of mono_array_addr.
19600 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19602         * object-internals.h: New field to cache the assmebly name, patch
19603         from Tambet Ingo (tambet@ximian.com)
19605 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19607         * decimal.h, class-internals.h, metadata-internals.h,
19608         file-io.h: mark a few function declarations as internal, to
19609         reduce the number of PLT entries.
19611 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19613         * file-io.c: fix typo in warning message.
19615 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19617         * loader.c: on unix, lookup the "*A" version of a function
19618         if charset is auto as a second option before failing.
19620 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19622         * class.h (mono_class_inflate_generic_method): Revert to two
19623         argument version.
19624         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19625         (mono_class_inflate_generic_method_full): Add.
19626         * class.c (mono_class_inflate_generic_method_full): Rename from
19627         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19628         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19629         * loader.c, reflection.c: Update to changes.
19631 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19633         * icall.c: const fixes and small improvements.
19635 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19637         * threadpool.c: for asynchronous connect(), enable the same workaround
19638         for BSD 6 as for the Mac. Fixes bug #77637.
19640 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19642         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19643         formatted classes. Fixes #77524.
19645 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19647         * class.c (inflate_generic_type): Add a couple more
19648         micro-optimizations.
19649         (inflate_generic_context): Don't use the 'gmethod' from
19650         'inflate_with'.
19651         (mono_class_inflate_generic_method): If the method has generic
19652         parameters, but the passed-in context doesn't have a 'gmethod',
19653         create one.  Use the possibly simplified generic instantiation
19654         from the declaring class instead of the one passed in.
19656 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19658         Make generic method signature and method header handling lazy.
19659         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19660         (inflate_generic_header): Likewise.
19661         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19662         parameter to avoid inflating types.
19663         (mono_get_inflated_method): Empty out.
19664         * class.h (mono_class_inflate_generic_method): Update to changes.
19665         * loader.c (mono_get_method_from_token): Don't parse signature for
19666         generic methods, nor methods of generic classes.
19667         (mono_method_signature): Rename from 'mono_method_signature'.
19668         Inflate signature on demand.
19669         (mono_method_get_header): Inflate method header on demand.
19670         * reflection.c: Update to changes.
19672 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19674         * metadata.c (mono_metadata_inflate_generic_inst): If the
19675         instantiation is closed, don't bother expanding it in the new
19676         context.
19677         * class.c (inflate_generic_class): If the generic instantiation
19678         doesn't change after inflation, return the argument itself.
19679         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19680         Add bounds checks.
19681         (inflate_generic_context): If neither the generic class nor the
19682         generic method instantiations change, return the original context.
19683         * reflection.c (mono_method_get_object): Do
19684         'mono_get_inflated_method' before accessing the ->klass field.
19685         (inflate_mono_method): Don't create a MonoGenericMethod unless
19686         necessary.
19687         (inflate_method): Don't pass a constructed type as the declaring
19688         type of a methodbuilder.
19690 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19692         * object.c: fix memory overwrite.
19694 2006-02-22  Dick Porter  <dick@ximian.com>
19696         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19697         it doesn't work any more.
19698         (mono_threads_request_thread_dump): Fix unused variable warnings.
19700 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19702         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19703         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19704         the public header file.
19706 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19708         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19710 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19712         * class-internals.h, object.c: reduce the size of MonoVTable
19713         and store the interface_offsets array at negative offsets.
19715 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19717         * metadata.c: tweak table descriptors data structures to reduce
19718         size and runtime relocations.
19720 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19722         * marshal.c: fix some types and opcodes to be type-safe
19723         in marshaling wrappers.
19725 2006-02-21  Ankit Jain  <jankit@novell.com>
19727         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19729 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19731         * metadata.c (get_constraints): Relax debugging checks for monodis.
19733 2006-02-21  Ankit Jain  <jankit@novell.com>
19735         * metadata.c (mono_metadata_load_generic_params): Move the code
19736         checking for ambiguous generic params from here to mono/dis/get.c
19737         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19739 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19741         Fix assertion triggered when compiling nemerle.
19742         * class.c (mono_get_shared_generic_inst): Rename from
19743         get_shared_inst and make non-static.
19744         * loader.c (mono_get_shared_generic_method): New.  Used to create
19745         the MonoGenericContext-equivalent of a MonoGenericContainer.
19746         (mono_get_method_from_token): Initialize the 'context' field of
19747         the created MonoGenericContainer.
19748         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19749         * metadata.c (get_constraints): Add sanity check.
19750         * class-internals.h: Add new internal methods.
19752         * reflection.c (verify_safe_for_managed_space): New sanity check.
19753         Currently checks that owner-less generic parameters aren't allowed
19754         in managed space.
19755         (mono_type_get_object): Use it.
19756         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19757         that are now in mono_type_get_object.
19758         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19760 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19762         * metadata.c (mono_type_create_from_typespec): Rename from
19763         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19764         argument and caching of types in the generic container.
19765         (unwrap_arrays, find_generic_param): Remove.
19766         * metadata-internals.h: Update.
19767         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19769 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19771         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19773         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19774         return values. Fixes #77581.
19776         * class.c (mono_fnptr_class_get): Switch name and name_space.
19778         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19779         classes and add support for [In, Out] attributes.
19780         (mono_marshal_free_asany): Ditto. Fixes #77524.
19782 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19784         * class.c (mono_class_from_generic_parameter): Make more robust to
19785         incomplete MonoGenericContainers from monodis.
19787 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19789         * class-internals.h: added some more exception types.
19790         * class.c, metadata.c: added a few checks to handle missing
19791         types.
19793 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19795         Use owner-less generic-params some more.
19796         * class.c (my_mono_class_from_generic_parameter): Remove.
19797         (mono_class_from_generic_parameter): Handle null image,
19798         param->name and param->owner.
19799         (mono_class_from_mono_type): Update.
19800         (mono_class_create_from_typespec): Remove 'container' parameter.
19801         If that parameter is non-null, the result is always inflated by
19802         'mono_class_get_full' anyway.
19803         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19804         parameter.
19805         (mono_class_get_full): Update.
19807         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19808         instance is not open, don't bother inflating.
19809         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19810         parse metadata for inflated classes.
19811         (_mono_class_get): Change GenericContext* parameter to
19812         GenericContainer*.
19813         (mono_class_create_from_typespec): Likewise.  Simplify, and
19814         implement trivially.  All the cases are handled in
19815         mono_class_from_mono_type.  Don't inflate returned class.
19816         (mono_class_get_full): Delegate GENERICINST optimization to
19817         inflate_generic_type.
19818         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19820 2006-02-16  Dick Porter  <dick@ximian.com>
19822         * socket-io.c (create_object_from_sockaddr): Fix typo.
19823         (create_sockaddr_from_object): Check array lengths before
19824         potentially accessing items off the end.
19825         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19826         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19827         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19828         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19829         length checks to avoid wraparound overflows.
19830         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19831         contents of the array of sockets
19832         (hostent_to_IPHostEntry2)
19833         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19834         Check return value of inet_ntop ().
19835         (addrinfo_to_IPHostEntry): Fix typo
19837 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19839         Type metadata parsing doesn't use generic-instantiation information.
19840         * metadata.c (mono_metadata_parse_array_full): Change
19841         MonoGenericContext* parameter to MonoGenericContainer*.
19842         (mono_metadata_parse_type_full): Likewise.
19843         (mono_type_create_from_typespec_full): Likewise.
19844         (mono_metadata_parse_mh_full): Likewise.
19845         (mono_metadata_parse_generic_inst): Likewise.
19846         (do_mono_metadata_parse_generic_class): Likewise.
19847         (do_mono_metadata_parse_type): Likewise.
19848         * metadata-internals.h: Update to changes.
19849         * class.c (mono_class_find_enum_basetype): Likewise.
19850         (mono_class_setup_fields): Likewise.
19851         (mono_class_create_from_typespec): Likewise.
19852         * loader.c (method_from_methodspec): Likewise.
19853         (mono_get_method_from_token): Likewise.
19854         (mono_method_get_header): Likewise.
19856 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19858         * marshal.c: handle additional GENERICINST case (patch from
19859         Thong Nguyen <tum@veridicus.com>).
19860         Fix a few cases where LDIND_I/STIND_I was used for references.
19862 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19864         * reflection.c (mono_reflection_get_token): Remove unused variable.
19866 2006-02-16  Martin Baulig  <martin@ximian.com>
19868         * reflection.c (mono_reflection_get_token): Add support for fields
19869         in instantiated generic types.
19871         * icall.c
19872         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19874 2006-02-15  Martin Baulig  <martin@ximian.com>
19876         * icall.c
19877         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19878         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19879         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19880         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19882 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19884         * class.c, metadata.c, metadata.h, object.c, icall.c,
19885         marshal.c: changed mono_type_get_underlying_type () to do
19886         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19887         Fixed handling of instantiated generic valuetypes (bug #75479).
19889 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19891         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19892         Delegate to mono_metadata_decode_value, and work on the returned value.
19894         * icall.c (ves_icall_MonoType_GetGenericArguments):
19895         Add consistency check here too.
19896         
19897 2006-02-15  Ankit Jain  <jankit@novell.com>
19899         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19900         char/short etc.
19902 2006-02-15  Ankit Jain  <jankit@novell.com>
19904         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19905         signed values, used only for representing lower bounds of arrays.
19906         (mono_metadata_parse_array_full): Use new
19907         mono_metadata_decode_signed_value to decode lower bounds.
19909 2006-02-14  Martin Baulig  <martin@ximian.com>
19911         * reflection.c
19912         (mono_reflection_get_token): Support "MonoGenericMethod" and
19913         "MonoGenericCMethod" and allow generic instances / methods.
19915 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19917         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19918         to obtain the terminal size using an ioctl.
19920         * object.c (mono_nullable_init): Revert this as nullable reference
19921         types are not valid.
19922         (mono_nullable_box): Ditto.
19924 2006-02-09  Dick Porter  <dick@ximian.com>
19926         * threads.c (mono_thread_detach): Drop a reference to the thread
19927         we're detaching.
19929 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19931         * object.c (mono_nullable_init): Handle nullable reference types.
19932         (mono_nullable_box): Ditto. Fixes #77446.
19934 2006-02-07  Martin Baulig  <martin@ximian.com>
19936         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19938 2006-02-07  Ankit Jain  <jankit@novell.com>
19940         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19941         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19942         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19943         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19944         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19945         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19947 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19949         * class.c (mono_class_create_generic): Set type_token as well.
19951         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19952         compatible with MS.
19954 2006-02-02  Martin Baulig  <martin@ximian.com>
19956         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19957         has never been used so far.
19959 2006-02-02  Martin Baulig  <martin@ximian.com>
19961         * mono-debug-debugger.h: Changed comment at the top of this file;
19962         the header is not installed, but it's safe to #include it from
19963         within the JIT.
19965         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19966         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19968 2006-02-02  Martin Baulig  <martin@ximian.com>
19970         * mono-debug.h
19971         (MonoSymbolTable): Removed the `metadata_info' field.
19973         * mono-debug.c
19974         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19976         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19977         (mono_debugger_add_builtin_types): Removed.
19978         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19979         (mono_debugger_create_notification_function): We now operate on a
19980         pre-allocated area; take a `gpointer' and return `void'.
19982         * mono-debug-debugger.c
19983         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19984         (mono_debugger_add_builtin_types): Removed.
19986 2006-02-02  Martin Baulig  <martin@ximian.com>
19988         * threads.c (mono_debugger_create_all_threads): New public method.
19990 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19992         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19993         breaks on several platforms.
19995 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19997         * assembly.c: the VS.NET build doesn't supply default values for
19998         MONO_ASSEMBLIES and MONO_CFG_DIR.
20000 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20002         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20003         helper function.
20005         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20007         * loader.c (method_from_memberref): Fix a warning.
20009         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20011         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20012         with explicit layout. Fixes #77433.
20014 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20016         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20017         max_interface_id is initialized before using it. Fixes #77398.
20018         (ves_icall_Type_GetInterfaces): Ditto.
20020 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20022         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20023         allocate memory for parameter attributes when parsing memberref
20024         signatures.
20025         * loader.c (mono_loader_set_error_method_load): Don't warn.
20026         (method_from_memberref): Ensure MissingMethodException gets thrown
20027         if method is not found.  Make warning more informative.
20029 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20031         Fix #77397
20032         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20033         return true if is byref.
20034         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20035         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20036         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20038 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20040         Fix tests/find-method.2.il
20041         * loader.c (find_method, find_method_in_class): Remove is_inflated
20042         argument.  Revert 2006-01-18 change.
20043         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20044         is generic, search for method in its generic definition.
20045         * class.c (mono_class_setup_vtable_general): Print generic
20046         arguments of generic types in debugging printf.
20048 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20050         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20052         * threads.c (mono_threads_request_thread_dump): New helper function.
20054 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20056         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20058 2006-01-25  Ankit Jain  <jankit@novell.com>
20060         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20061         move definition to ..
20062         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20063         
20064 2006-01-25  Ankit Jain  <jankit@novell.com>
20065             Raja R Harinath  <rharinath@novell.com>
20067         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20068         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20069         as necessary.
20071 2006-01-25  Martin Baulig  <martin@ximian.com>
20073         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20074         `MonoDebuggerThread' into debug-debugger.c.
20076 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20078         * profiler.c: fix printing of data.
20080 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20082         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20083           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20085 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20087         * object.c: fix deadlock related to string interning.
20089 2006-01-23  Martin Baulig  <martin@ximian.com>
20091         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20093         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20095 2006-01-23  Martin Baulig  <martin@ximian.com>
20097         * mono-debug.h: Moved the prototypes of some functions which are
20098         used by the JIT here from mono-debug-debugger.h.
20100 2006-01-21  Martin Baulig  <martin@ximian.com>
20102         * Makefile.am: Don't install mono-debug-debugger.h.
20104 2006-01-21  Martin Baulig  <martin@ximian.com>
20106         * mono-debug-debugger.h: Enforce the private status of this header
20107         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20108         Moved some stuff from mono-debugger-jit-wrapper.h here.
20110 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20112         * class.c (mono_class_from_typeref): Add a sanity test to help
20113         catch lack of assembly load/search hooks.
20115 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20117         * marshal.c (emit_struct_conv): Relax the fields with same offset
20118         check even more. Fixes #77230.
20120 2006-01-18  Martin Baulig  <martin@ximian.com>
20122         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20123         argument; if false, we compare the uninstantiated signatures.
20124         (method_from_memberref): Compare the uninstantiated signatures;
20125         fixes #76417.
20127 2006-01-18  Robert Jordan  <robertj@gmx.net>
20129         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20130         Clear the weak link. Fixes bug #77170.
20132         * gc.c (mono_gchandle_free):
20133         Reflect *-gc.c changes (tiny optimization).
20135 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20137         * metadata.c (mono_metadata_signature_dup): Applied patch from
20138         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20139         Fixes #77288.
20141 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20143         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20144         marshalling from native to managed code. Fixes #77230.
20146 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20148         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20149         connect. Fixes bug #77020.
20151 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20153         * class.c: fixed id assignement for nested interfaces (bug #77275).
20154         Added also better info for --print-vtable debugging.
20156 2006-01-12  Martin Baulig  <martin@ximian.com>
20158         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20159         interfaces on-the-fly; fixes #76625.
20161         * class-internals.h
20162         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20163         don't need that anymore.
20165 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20167         * socket-io.c
20168         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20169         To avoid initing the nested_classes when not needed I turned the
20170         PeerCredData as a toplevel internal class, as it has to be shared
20171         anyways. 
20173         Fixes the CASA issue.
20175 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20177         * domain.c: Accessors for MonoJitInfo
20179         * profiler-private.h: Add jitinfo to the end jit hook
20181         * profiler.[ch]: Define new hooks, called after jitting which give
20182         the MonoJitInfo that was compiled
20184 2006-01-10  Martin Baulig  <martin@ximian.com>
20186         * class.c (mono_class_setup_events): Add support for generic
20187         classes; fixes #76440.
20189 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20191         Fix #77160.
20192         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20193         on passed-in method.
20195 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20197         * object.c (mono_runtime_invoke_array): Add Nullable support.
20199         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20201 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20203         * file-io.c: Don't consider sockets as directory and avoid an endless
20204         loop. Fix bug #76966.
20206 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20208         * object.c (mono_nullable_init): New helper function.
20209         (mono_nullable_box): Ditto.
20211         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20213         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20215         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20216         
20217 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20219         * class.c (mono_class_is_assignable_from): Make T assignable to 
20220         Nullable<T>.
20222 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20224         * appdomain.c: Bump corlib version to 46.
20225         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20226         serialization purpose) and changed ves_icall_System_Reflection_
20227         Assembly_get_code_base signature to accept a boolean (to escape, or 
20228         not, the assembly code base).
20230 2005-12-23  Dick Porter  <dick@ximian.com>
20232         * icall.c: 
20233         * threads-types.h: 
20234         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20235         CreateEvent icall now returns "created" boolean parameter.
20237 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20239         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20240         #76967.
20242         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20243         when attr_klass is an interface. Fixes #77045.
20245 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20247         * marshal.c (emit_struct_conv): Fix previous patch.
20248         
20249         * marshal.c (emit_struct_conv): Add a check for fields with the same
20250         offset.
20252 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20254         Fix regression in Mono.C5.
20255         * class.c (mono_class_create_generic): If 'klass' is an interface
20256         set up the interface offsets.
20257         (mono_class_is_assignable_from): Don't throw away generic arguments.
20259 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20261         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20262         type parameters.
20264 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20266         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20267         dead store.
20268         (do_mono_metadata_parse_generic_class): Don't pass the current
20269         generic context when parsing the type being instantiated: it
20270         cannot use it, anyway.
20272         * loader.c (method_from_memberref): Don't inflate a signature if
20273         it doesn't contain any type parameters.
20275 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20277         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20279 2005-12-14  Martin Baulig  <martin@ximian.com>
20281         * class.c
20282         (mono_type_get_name_recurse): Don't return null for type
20283         parameters and open generic classes.
20284         (mono_class_setup_methods): Don't exclude generic instances.
20285         (mono_get_unique_iid): Use different IDs for different
20286         instantiations of the same generic type.
20287         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20288         open generic instances; create a normal vtable for closed generic
20289         instances.
20290         (mono_class_setup_vtable_general): We're now also called for
20291         closed generic instances.
20293         * reflection.c
20294         (mono_reflection_bind_generic_parameters): Correctly use
20295         mono_metadata_lookup_generic_inst() everywhere.
20297 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20299         * object.c (mono_class_create_runtime_vtable): Call 
20300         mono_class_setup_vtable ().
20302         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20303         function.
20304         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20305         #76959.
20307         * loader.c (mono_loader_set_error_type_load): Print the type load
20308         warnings to the console so they are more visible to the user.
20309         (mono_loader_set_error_method_load): Ditto.
20311         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20312         is still broken.
20313         
20314         * reflection.c (ensure_runtime_vtable): Fix build.
20316         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20317         doesn't work in all cases.
20319 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20321         * object.c (mono_array_new_full): Treat a single dimensional array
20322         with 0 lower bounds as an szarray. Fixes #76973.
20324         * reflection.c (custom_attr_visible): Really fix this.
20326 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20328         * reflection.c (custom_attr_visible): Allow nested public attributes
20329         as well.
20331         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20332         interface check.
20334 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20336         * class.c (set_generic_param_owner): Delete.
20337         (mono_class_create_from_typedef): Don't set ->owner field of
20338         generic parameters to "param containers" of enclosing classes.
20339         * reflection.c (mono_reflection_initialize_generic_parameter):
20340         Likewise.
20342 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20344         * reflection.c (custom_attr_visible): Fix build.
20346 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20348         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20349         private attributes.
20350         
20351         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20352         handling of null parameter defaults.
20354 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20356         * class.c (mono_class_from_generic_parameter): Don't set
20357         klass->generic_container.
20358         (my_mono_class_from_generic_parameter): Likewise.
20360 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20362         * reflection.c (load_public_key): Fix a warning.
20363         (method_encode_code): Fix unaligned accesses.
20365 2005-12-07  Martin Baulig  <martin@ximian.com>
20367         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20369         * reflection.c
20370         (write_generic_param_entry): Encode our custom attrs.
20372         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20374 2005-12-07  Martin Baulig  <martin@ximian.com>
20376         * reflection.c (encode_new_constraint): Removed; we don't use the
20377         `NewConstraintAttribute' anymore.
20379 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20381         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20382         not fire a TypeResolve event when Assembly.GetType () is called.
20384 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20386         Beginning of support for nullable types in the runtime. Parts of
20387         this patch are from Martin.
20389         * appdomain.c (MONO_CORLIB_VERSION): Bump
20391         * domain.c (mono_init_internal): get the nullable type
20393         * class.c (mono_class_is_nullable): New method
20394         (mono_class_get_nullable_param): New mehod
20395         (mono_class_create_generic): In types T? set cast_class to T
20397         * class-internals.h (MonoDefaults): new nullable default class
20398         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20399         new methods.
20401 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20403         * metadata.c (select_container): New.  Refactor code to select the
20404         appropriate GenericContainer given the type of generic parameter
20405         we are looking for.
20406         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20407         not a MonoGenericContext.  Use select_container.  Update parameters.
20408         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20409         and MONO_TYPE_MVAR.
20410         (unwrap_arrays): Remove duplicate tests.
20411         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20412         generic instantiated class to find any arguments that are generic
20413         parameters.
20414         (mono_type_create_from_typespec_full): Use find_generic_param to
20415         avoid evicting some generic instantiations from the typespec
20416         cache.
20418 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20420         * reflection.c: fixed writing of doubles on ARM FPA.
20422 2005-12-02  Robert Jordan  <robertj@gmx.net>
20424         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20426 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20428         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20429         least on SUSE 10 they are not the same (on debian, they are just the
20430         same thing).
20432 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20434         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20435         DeclaringType for VARs and MVARs.
20436         * class.c (set_generic_param_owner): Fix initialization of owner
20437         fields.
20439 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20441         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20443 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20445         * threadpool.c: workaround for a bug that shows up on the Mac:
20446         select()+connect() on a blocking socket is not like it should
20447         be, so we proceed to connect() in that case, wasting the I/O
20448         threadpool thread until connect succeedes. Fixes bug #75436.
20450 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20452         * threadpool.c: fix typo when setting file descriptor states.
20454 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20456         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20457         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20458         create a temporary signature container.
20459         (mono_metadata_parse_generic_param): Update to changes.
20460         (mono_type_create_from_typespec_full): Update to changes.
20461         * loader.c (method_from_memberref): Don't use a
20462         MonoGenericContainer while parsing a memberref signature.
20463         (method_from_methodspec): Remove dead-store of the 'container'
20464         variable.  It's overwritten before use.
20466         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20467         checks tighter.
20468         (mono_metadata_parse_generic_param): Likewise.
20469         * loader.c (find_method_in_class): Does not need a
20470         MonoGenericContainer.  Use 'mono_method_signature' rather than
20471         'mono_method_signature_full'.
20472         (find_method, mono_get_method_constrained, method_from_memberref):
20473         Update to changes.
20475         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20476         owner-less generic-parameters are never evicted from the typespec
20477         cache.
20479         * loader.c (method_from_memberref): Don't use the current context
20480         when parsing signatures.
20481         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20483         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20484         side-effects in g_assert.
20485         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20486         that we don't potentially lose information.
20488 2005-11-26  Dick Porter  <dick@ximian.com>
20490         * icall.c:
20491         * threads.c: icalls to implement basic (ie, not named)
20492         System.Threading.Semaphore.
20494 2005-11-24  Dick Porter  <dick@ximian.com>
20496         * process.c
20497         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20498         Use GetProcessId() if it's available.
20500 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20502         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20504 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20505             Ankit Jain  <jankit@novell.com>
20507         * loader.c (mono_get_method_from_token): Initialize 'method' field
20508         of all generic parameters before parsing the signature.  Remove
20509         code that "fixed"-up MVAR references.
20511 2005-11-23  Ankit Jain  <jankit@novell.com>
20513         * metadata.c (mono_metadata_has_generic_params):
20514         (mono_metadata_load_generic_param_constraints):
20515         (mono_metadata_load_generic_params): Move duplicate code ...
20516         (mono_metadata_get_generic_param_row): ... here. Returns the
20517         first row-id in GenericParam table for a given owner (token).
20518         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20519         prototype.
20521 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20522             Ankit Jain  <jankit@novell.com>
20524         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20525         comparing VARs too.
20526         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20527         type->data.generic_param only if the type is an MVAR.
20528         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20529         leak owner-less VARs and MVARs into managed space.
20531 2005-11-21  Martin Baulig  <martin@ximian.com>
20533         * class-internals.h
20534         (MonoMethod): Moved the `generic_container' here from
20535         `MonoMethodNormal' since we now also need it for
20536         `MonoMethodPInvoke';
20537         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20538         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20539         an union containing both `MonoMethodNormal' and
20540         `MonoMethodPInvoke'.
20542         * loader.c
20543         (mono_get_method_from_token): Allow implementing generic methods
20544         as interncalls.
20546         * threads.c
20547         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20548         icall.
20550 2005-11-17  Dick Porter  <dick@ximian.com>
20552         * icall.c: 
20553         * process.h: 
20554         * process.c: Split the Process Start_internal icall into
20555         ShellExecuteEx_internal and CreateProcess_internal, which are
20556         called depending on whether UseShellExecute is true.  Fixes bug
20557         76670.
20559         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20561 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20563         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20564         'msize' parameters, use the information in 'mspec' instead.
20565         (emit_object_to_ptr_conv): Ditto.
20567         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20568         fields out of order. Fixes #76733.
20570 2005-11-17  Ankit Jain  <jankit@novell.com>
20572         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20574 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20576         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20577           bug #76575.
20579 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20581         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20582         for types with non-auto layout. Fixes #76717.
20584 2005-11-16  Ankit Jain  <jankit@novell.com>
20586         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20587         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20588         if generic_context is null.
20589           (mono_metadata_generic_param_equal): param->owner can be null.
20590           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20591         null.
20593 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20595         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20596         the correct value.
20598 2005-11-15  Martin Baulig  <martin@ximian.com>
20600         * object.c (set_value): Use mono_class_from_mono_type() instead of
20601         the hack for generic instances; fixes #76136.
20603 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20605         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20606         fields.
20608         * image.c (load_metadata_ptrs): Initialize the new fields.
20610         * reflection.c (create_dynamic_mono_image): Ditto.
20612         * reflection.c (build_compressed_metadata): Use the new fields.
20614         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20615         icall.
20617         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20618         icall.
20619         
20620 2005-11-15  Ankit Jain  <jankit@novell.com>
20621             Raja R Harinath  <harinath@gmail.com>
20623         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20624         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20625         new per-generic_container cache if the cached MonoType's context matches
20626         the current context.
20627           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20628         to the expected context.
20629           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20631 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20633         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20634         we changed the signature of an icall.
20635         * icall.c: Modify to mono_double_ParseImpl return true/false 
20636         depending on the success, instead of throwing the exception. This will
20637         help us in Double.TryParse methods.
20638         
20639 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20641         * marshal.c (emit_marshal_object): Throw an exception when
20642         marshalling 'object' instead of crashing. Fixes #76696.
20644 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20646         * class-internals.h: Add prototype for mono_type_get_full_name ().
20648 2005-11-11  Dick Porter  <dick@ximian.com>
20650         * threads.c (mono_thread_manage): Make sure the main thread has
20651         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20653 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20655         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20656         console about the missing type.
20657         (mono_loader_set_error_method_load): Ditto.
20659 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20661         * mono-config.c (mono_get_config_dir): Set the system defaults if
20662         none is specified.
20664         * assembly.c (mono_set_dirs): New API entry point to set the
20665         assembly and the config directory in one call
20667 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20669         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20670         the ftnptr was created from a delegate in a domain other than the
20671         current domain. Fixes #75377.
20673         * exception.h exception.c: Add mono_get_exception_not_supported ().
20675 2005-11-08  Martin Baulig  <martin@ximian.com>
20677         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20679 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20681         * security-manager.h: Added definitions to deal with strongname key 
20682         pairs bigger (and smaller) than 1024 bits.
20683         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20684         adjust wrt the public key length being used.
20686 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20688         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20689           Windows build (r51396-51397).
20691 2005-11-03  Martin Baulig  <martin@ximian.com>
20693         * class.c (mono_class_setup_vtable_general): Also add generic
20694         methods to the vtable; fixes #76581.
20696 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20698         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20699         sure that we lookup GetString method from the System.Text.Encoding
20700         class, not the derived class or we get an empty method.
20702         Fixed class #76612.
20704 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20706         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20707         if it has been previously set (embedders). 
20709         Make mono_set_rootdir available also on Unix.
20711 005-10-24  Robert Jordan  <robertj@gmx.net>
20713         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20715 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20717         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20718         only calls which are made to native code use this flag.
20720         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20722 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20724         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20725         Add support for FieldBuilders.
20727 2005-10-29  Martin Baulig  <martin@ximian.com>
20729         * mono-debug.c
20730         (mono_debug_using_mono_debugger): New public method; returns
20731         whether we're running inside the debugger.
20733 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20735         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20736         for Method/Constructor/FieldBuilders.
20738 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20740         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20741         and fields as well.
20743 2005-10-26  Martin Baulig  <martin@ximian.com>
20745         * mono-debug-debugger.c
20746         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20748 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20750         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20751         integer to isspace.
20753 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20755         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20756         when passing valuetypes byref. Fixes #76502.
20758 2005-10-19  Jackson Harper  <jackson@ximian.com>
20760         * profiler.c: Don't put a . in front of types that are not in a
20761         namespace.
20763 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20765         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20767 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20769         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20770         #76436.
20771         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20773 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20775         * assembly.c metadata-internals.h icall.c: Define an additional
20776         parameter for mono_assembly_name_parse_full, so we can avoid creating
20777         S.R.AssemblyName.Version when no version info wasn't passed.
20778         
20779 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20781         * class.c (mono_type_get_full_name): Reimplement method that was
20782         removed. 
20784         * image.c: Some docs
20786 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20788         * profiler.c (output_newobj_profile): Fix printing of Total memory
20789         on x86.
20791 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20793         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20795 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20797         * threads.c: remove debug output.
20799 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20801         * threads.c (mono_thread_manage): Fix crashes if more than 64
20802         threads need to be aborted. Hopefully fixes #75899.
20804         * assembly.c (mono_stringify_assembly_name): New helper function.
20806         * class.c: Use mono_stringify_assembly_name instead of the similar
20807         static function.
20809         * assembly.h assembly.c: Add support for calling a postload search 
20810         hook if an assembly cannot be loaded.
20812         * appdomain.c: Register new search hooks which call the AssemblyResolve
20813         events in AppDomain. Fixes #75231
20815 2005-10-07  Martin Baulig  <martin@ximian.com>
20817         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20818         methods without debug info.
20820 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20822         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20823         wrappers.
20825 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20827         * file-io.c: now that we return symlinks, use lstat and, when the file
20828         is a symbolic link, stat, to get the file attributes. Also avoid the
20829         conversion to/from utf16/external.
20831 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20833         * class.c (mono_class_layout_fields): Compute klass->has_references
20834         correctly if an embedded valuetype is not yet initialized. Fixes
20835         #76331.
20837 2005-10-04  Martin Baulig  <martin@ximian.com>
20839         * metadata.c
20840         (mono_metadata_load_generic_param_constraints): New public
20841         function; splitted the constraints loading out from
20842         mono_metadata_load_generic_params().
20844         * class.c (mono_class_create_from_typedef): Call
20845         mono_metadata_load_generic_param_constraints() after setting up
20846         the type and creating our parent; fixes #75329.
20848 2005-10-04  Martin Baulig  <martin@ximian.com>
20850         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20851         non-dynamic parent classes.
20853 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20855         * file-io.c : win32 build fix (ETXTBSY seems not found).
20857 2005-10-04  Martin Baulig  <martin@ximian.com>
20859         * reflection.c
20860         (mono_image_get_methodspec_token): Make the cache actually work;
20861         fixes #75974.
20863 2005-10-04  Martin Baulig  <martin@ximian.com>
20865         * class.c (mono_class_name_from_token): Removed the unneccessary
20866         `MonoGenericContext *' argument.
20868 2005-10-04  Martin Baulig  <martin@ximian.com>
20870         * loader.c
20871         (method_from_methodspec): Make the caching work again; fixes the
20872         performance regression from #76262.
20874 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20876         * file-io.c:
20877         * file-io.h:
20878         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20879         GetFileSystemEntries that performs the same work but without going
20880         into io-layer, locking, etc.
20882 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20884         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20885         ThreadState_Stopped as well. Fixes #76047.
20887 2005-09-29  Martin Baulig  <martin@ximian.com>
20889         * class.c
20890         (inflate_generic_context): If the new context has a `gmethod', set
20891         its `container' that that gmethod's `container'.
20893         * metadata.c
20894         (mono_metadata_parse_generic_param): Simplify things;
20895         `generic_container = generic_context->container;' is just fine.
20897         * loader.c (method_from_methodspec): Code cleanups.
20899 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20901         * decimal.c: fix warning (and let gcc generate correct
20902         code on ARM with optimizations).
20904 2005-09-28  Martin Baulig  <martin@ximian.com>
20906         * loader.c
20907         (method_from_memberref): Added `MonoGenericContext *class_context'
20908         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20909         (method_from_methodspec): If we're a memberref, use the enclosing
20910         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20912 2005-09-28  Martin Baulig  <martin@ximian.com>
20914         * object.c (mono_runtime_invoke_array): Added support for
20915         MONO_TYPE_GENERICINST; fixes #75917.
20917 2005-09-27  Martin Baulig  <martin@ximian.com>
20919         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20920         `k->byval_arg.type' to determine the actual type.
20922         * loader.c (method_from_methodspec): Removed some hacks.
20924 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20926         * class-internals.h (mono_field_is_deleted): Do the test for
20927         rtspecialname before we check the actual name of the field. This
20928         prevents us from dereferencing a pointer into the string table,
20929         saving us from accessing a few pages
20931         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20932         macros. This will allow a deadlock debugger to easily be plugged
20933         in.
20935 2005-09-27  Martin Baulig  <martin@ximian.com>
20937         * loader.c (method_from_methodspec): Create a "signature"
20938         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20940 2005-09-27  Martin Baulig  <martin@ximian.com>
20942         * class.c
20943         (inflate_generic_class): Correctly set the new context's
20944         container.
20946         * loader.c
20947         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20948         instead of a `MonoGenericContext *'.
20949         (mono_method_signature_full): Take a `MonoGenericContainer *'
20950         instead of a `MonoGenericContext *'.
20952         * metadata.c
20953         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20954         instead of a `MonoGenericContext *'.
20955         (mono_metadata_parse_method_signature_full): Likewise.
20957 2005-09-26  Martin Baulig  <martin@ximian.com>
20959         * class.c
20960         (mono_class_from_generic_parameter): Set `klass->generic_container'
20961         (mono_class_from_generic_parameter): Likewise.
20962         (mono_bounded_array_class_get): We inherit the generic container
20963         from the element class.
20965         * loader.c
20966         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20967         argument rather than computing it here.
20968         (method_from_memberref): Correctly set the generic context before
20969         parsing the signature.  Fixes #75681.
20971 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20973         * object.c (mono_class_has_special_static_fields): Fix warnings.
20975 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20977         * assembly.c: Add parse_public_key function, to
20978         par the public keys. Also added mono_assembly_name_parse_full,
20979         to define it the parsed key should be freed or not.
20980         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20981         to parse a long format assembly name.
20982         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20983         private, since calling it to preserve the key requires
20984         freeing it manually.
20985         
20986 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20988         * locales.c : removed HAVE_ICU part.
20990 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20992         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20993         field_is_special_static if the klass has no special static fields.
20995         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20996         (MonoCachedClassInfo): Likewise.
20998         * object.c (mono_class_has_special_static_fields): New helper function.
21000 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21002         * class.c (mono_class_create_from_typedef): Don't call 
21003         interfaces_from_typedef_full for enums.
21004         (mono_class_create_from_typedef): Compute the base types of enums directly
21005         without calling mono_class_setup_fields ().
21006         (mono_class_find_enum_basetype): New helper function.
21008         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21009         one place inside the string heap.
21010         
21011 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21013         * class.c: locking fixes, code cleanups, some docs added.
21014         Allocate some data structures in the image mempool.
21016 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21018         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21019         the example code.
21020         
21021 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21023         * class-internals.h, class.c, reflection.c: reduce memory taken by
21024         MonoClass.
21026 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21028         * metadata.c, metadata.h, loader.h: documentation updates, code and
21029         API cleanups.
21031 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21033         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21034         the example code.
21036         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21037         page faults caused by the runtime while reading metadata.
21039 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21041         * socket-io.c: the field names were changed 3 months ago and no one
21042         realized until bug #76077 got filed!
21044 2005-09-20  Martin Baulig  <martin@ximian.com>
21046         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21048 2005-09-20  Martin Baulig  <martin@ximian.com>
21050         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21051         write the rank into the class entry.
21053 2005-09-20  Martin Baulig  <martin@ximian.com>
21055         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21057 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21059         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21061         * icall.c (custom_attrs_defined_internal): New icall.
21063         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21064         function.
21065         (mono_custom_attrs_construct_by_type): New helper function.
21067 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21069         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21070         terminate the resulting string. Fixes #76123.
21072 2005-09-16  Martin Baulig  <martin@ximian.com>
21074         * mono-debug.c
21075         (mono_debug_add_method): Ignore inflated methods for the moment.
21077 2005-09-14  Martin Baulig  <martin@ximian.com>
21079         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21081 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21083         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21084         return a success/failure indication.
21085         (mono_metadata_interfaces_from_typedef_full): Ditto.
21086         (get_constraints): Ditto.
21088 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21090         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21091         
21092         * marshal.c (emit_marshal_array): Add support for returning string
21093         arrays from delegates. Fixes #76063.
21095         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21097 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21099         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21100         icall.
21102 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21104         * reflection.c icall.c: Fix after mono_get_exception_type_load
21105         signature change.
21107         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21108         (mono_assembly_load_reference): Use the new helper.
21110         * class-internals.h (MonoLoaderError): New structure containing 
21111         information about type loading errors.
21113         * class-internals.h loader.c: Add APIs to store per-thread loader
21114         error information.
21116         * loader.c class.c: Set the loader error if needed.
21118         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21120 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21122         * decimal.c: fixed to handle the broken ARM fp format.
21124 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21126         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21127         broken.
21129 2005-09-06  Martin Baulig  <martin@ximian.com>
21131         * domain.c (supported_runtimes): Added v2.0.50727.
21133 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21135         * culture-info.h: reduce the size of some structures.
21137 2005-09-05  Martin Baulig  <martin@ximian.com>
21139         Reflect latest API changes in the August CTP.
21141         * icall.c
21142         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21143         ("MonoType.HasGenericArguments"): Removed.
21144         ("MonoMethod.BindGenericParameters"): Renamed to
21145         "MakeGenericMethod".
21146         ("MethodBuilder.BindGenericParameters"): Renamed to
21147         "MakeGenericMethod".    
21149 2005-09-05  Martin Baulig  <martin@ximian.com>
21151         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21153 2005-09-05  Martin Baulig  <martin@ximian.com>
21155         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21157         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21158         generic_container is non-NULL.
21160 2005-09-05  Martin Baulig  <martin@ximian.com>
21162         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21164         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21166 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21168         * reflection.c (encode_locals,
21169         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21170         for large generic types.
21172 2005-09-05  Martin Baulig  <martin@ximian.com>
21174         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21176         * class.c (mono_dup_array_type): New public method.
21177         (mono_metadata_signature_deep_dup): New public method.
21178         (dup_type): Correctly duplicate array and function types.
21180 2005-09-05  Martin Baulig  <martin@ximian.com>
21182         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21184         * reflection.c (get_default_param_value_blobs): Handle generic types
21185         and generic methods.
21187 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21189         * class.c: Fixed error reporting (method/class were inversed) for 
21190         inheritance demands.
21191         * security-manager.c|h: Added the AppDomain when calling the managed
21192         System.Security.SecurityManager.InheritanceDemand method.
21194 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21196         * reflection.c (encode_marshal_blob): 'marshaltype' and
21197         'marshaltyperef' are alternate sources for the custom marshaler
21198         name.
21200 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21202         * class.c: fix creation of array classes with rank == 1
21203         (patch by Ankit Jain <jankit@novell.com>).
21205 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21207         * object.c: fix check for creating the bound data for arrays vs
21208         szarrays.
21210 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21212         * object.c: configuration file name is now based on the executable name,
21213         not the image name. Fixes bug #75931.
21215 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21217         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21218         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21220 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21222         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21224 2005-08-24  Ankit Jain  <jankit@novell.com>
21225             Raja R Harinath  <rharinath@novell.com>
21227         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21228           called by it recursively.
21229           (mono_class_init): Remove special case in pending_init handling, since it's
21230           superseded by the fix to mono_class_from_typeref.
21232 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21234         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21235         BROKEN_THREAD_START stuff.
21237 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21239         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21240         trampoline.
21242         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21243         
21244         * object.c (mono_delegate_ctor): Replace the original function address with
21245         a delegate trampoline.
21247 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21249         * icall.c: add boolean argument to base64_to_byte_array and 
21250         InternalFromBase64String to control whether a whitespace-only string
21251         is allowed (or should casue a FormatException to be thrown). We need
21252         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21253         to match the MS behaviour in both profiles.
21254         * appdomain.c: Bump corlib version.
21256 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21258         This patch implements a big portion of publisher policy
21259         support, used to bind assembly versions and redirect
21260         one assembly from version A to version B.
21262         * assembly.c:
21263         New GSList loaded_assembly_bindings, for storing the cached
21264         assembly bindings.
21265         (assembly_binding_maps_name): New static function for checking if a 
21266         assembly binding information maps an assembly name.
21267         (mono_assembly_binding_info_free): New function for freeing
21268         assembly binding information resources.
21269         (get_publisher_policy_info): New static function for retrieving 
21270         assembly binding information from a MonoImage.
21271         (compare_versions): New static function for comparing an assembly
21272         binding information data and the version of an assembly name.
21273         (check_policy_versions): New static function for checking if an
21274         assembly binding info mapping an assembly name is valid for it.
21275         (mono_assembly_load_publisher_policy): New static function for
21276         loading the 'policy.major.minor.MyAssembly' image for an assembly
21277         with an assembly name 'aname'.
21278         (mono_assembly_bind_version): New static function for updating
21279         assembly redirection.
21280         (mono_assembly_apply_binding): New static function for applying
21281         assembly binding.
21282         (search_binding_loaded): New static function for searching 
21283         loaded assembly binding infos in the cache domain.
21284         (mono_assembly_load_full): Don't apply assembly binding for
21285         reflection only assemblies.
21287         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21288         which contains information about assembly binding. Also
21289         declare signature for mono_config_parse_publisher_policy ()
21290         function, used to retrieve pub policy info.
21291         
21292         * mono-config.c:
21293         (publisher_policy_start): New static function used to parse publisher 
21294         policy config files.
21295         (publisher_policy_parser): New static MonoParseHandler containing 
21296         the functions used when parsing config files.
21297         (mono_config_parse_publisher_policy): New function for parsing
21298         publisher policy files.
21299         
21300 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21302         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21304         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21306         * object.c (mono_get_addr_from_ftnptr): New helper function.
21308         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21310         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21312 2005-08-19  Dick Porter  <dick@ximian.com>
21314         * threads.c, threads.h, appdomain.c, appdomain.h,
21315         profiler-private.h, monitor.c, object.c, object-internals.h,
21316         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21317         store the thread ID, so it can hold a 64 bit value if needed.
21319 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21321         * reflection.c (mono_reflection_create_dynamic_method): Store the
21322         handle class into the method references as well so ldtoken works in
21323         dynamic methods.
21325         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21326         types.
21328 2005-08-19  Ankit Jain <jankit@novell.com>
21330         Fix #75847.
21331         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21332           here rather than using the method signature of a arbitrary function
21333           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21334           two arguments.
21335           Hack done with Harinath.
21337 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21339         * threadpool.c: disable printing stack traces when we get a exception
21340         in a threadpool thread. I need to do more testing to figure out which
21341         cases actually print this. Fixes bug #75828.
21343 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21345         * icall.c: there might be ignored whitespace after the last '='. This
21346         fixes length computation and bug #75840.
21348 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21350         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21351         well. Fixes #75809.
21353         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21354         #75784.
21355         
21356         * reflection.c (create_custom_attr_data): Ditto.
21358 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21360         * locales.c, culture-info.h : removed RegionLCIDMap.
21361         * culture-info-tables.h : regenerated.
21363 2005-08-16  Martin Baulig  <martin@ximian.com>
21365         * class.c (mono_type_get_name_recurse): Small fix.
21367 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21369         * locales.c : indentation fixie.
21371 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21373         * object-internals.h,
21374           locales.h,
21375           locales.c,
21376           culture-info.h,
21377           icall.c : added RegionInfo table support.
21378         * culture-info-table.h : regenerated for region support.
21380 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21382         * reflection.c (resolve_object): handle all kinds of MonoMethod
21383         including generic ones
21385 2005-08-12  Ankit Jain <jankit@novell.com>
21387         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21388           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21390 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21392         * process.c: Don't close a thread handle when it's NULL. This is a
21393         workaround for bug #75733.
21395 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21397         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21399 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21401         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21403 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21405         * threadpool.c: if a work item in the thread pool has a callback that
21406         catches a exception, don't propagate it after invoking the callback.
21407         Fixes bug #75336.
21409 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21411         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21413         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21415         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21417         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21419 2005-08-03  Ankit Jain  <jankit@novell.com>
21421         Fix #75683.
21422         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21423           PInvoke calling convention is 0.
21425 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21427         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21428         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21430 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21432         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21433         to handle threads not started by the GC (patch by Michael Meeks
21434         <michael.meeks@novell.com>).
21436 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21438         * reflection.c: Make buffer used in emitting types larger for some
21439         big generic types (patch by Michal Moskal).
21441 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21443         * mono-debug.c: Fix some (not all) alignment problems.
21445 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21447         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21448         Invoke mono_image_load_from_data_full passing the refonly
21449         parameter.
21451         * assembly.c
21452         (mono_assembly_open_from_bundle): Add the refonly argument, 
21453         in order to pass it to other methods it calls to.
21454         (do_mono_assembly_open): Add the refonly argument, in order 
21455         to pass it to other methods it calls to.
21456         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21457         the refonly parameter to it.
21459         * image.c: Add loaded_images_refonly_hash and
21460         loaded_images_refonly_guid_hash to cache the reflection
21461         only loaded images.
21462         (mono_images_init): Initialize the hash tables used for
21463         caching the reflection only images.
21464         (load_modules): Invoke mono_image_open_full passing the refonly
21465         parameter to load the modules the correct way.
21466         (build_guid_table): Add the refonly argument, to re-build the 
21467         correct hash table.
21468         (do_mono_image_open): Added the refonly argument, in order to
21469         define it for the loaded image.
21470         (mono_image_loaded_full): New function, which receives an
21471         additional parameter to look for the image in the refonly or
21472         non-refonly section.
21473         (mono_image_loaded): Updated, using mono_image_loaded_full.
21474         (mono_image_loaded_by_guid_full): The same case that happens
21475         with mono_image_loaded_full.
21476         (mono_image_loaded_by_guid): Likewise.
21477         (register_image): Use the ref_only variable inside MonoImage
21478         to decide in which hash table store the current image.
21479         (mono_image_open_from_data_full): Rename
21480         mono_image_open_from_data to mono_image_open_from_data_full,
21481         adding the refonly argument, to define the ref_only variable 
21482         inside MonoImage.
21483         (mono_image_open_from_data): Return 
21484         mono_image_open_from_data_full.
21485         (mono_image_open_full): Rename mono_image_open to
21486         mono_image_open_full, receiving the new refonly argument,
21487         to pass it to inner methods.
21488         (mono_pe_file_open): Update this function, to open
21489         a MonoImage as a non-refonly image.
21490         (mono_image_close): Use the refonly variable inside
21491         MonoImage to remove the image from the correct caches.
21493         * image.h: Add the signatures of mono_image_open_full,
21494         mono_image_open_from_data_full, mono_image_loaded_full,
21495         mono_image_loaded_by_guid_full.
21497         * metadata-internals.h: Add the ref_only field to 
21498         MonoImage.
21499         
21500 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21502         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21503         Fix the last behavior, which used to load the assemblies and
21504         extract MonoReflectionAssemblyName information, instead of
21505         extract it from the metadata tables. Needed for Reflection
21506         Only assemblies.
21507         
21508 2005-07-29  Martin Baulig  <martin@ximian.com>
21510         * mono-debug-debugger.c
21511         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21512         not initialized.
21514         * mono-debug.c
21515         (mono_debug_address_from_il_offset): Check whether we have
21516         debugging support before attempting to take the lock.
21517         (mono_debug_source_location_from_address): Likewise.
21518         (mono_debug_source_location_from_il_offset): Likewise.
21519         (mono_debug_il_offset_from_address): Likewise.
21520         (mono_debug_address_from_il_offset): Likewise.
21522 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21524         * class.c (mono_class_from_name_case): Add support for dynamic images.
21525         Fixes #75650.
21527         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21528         for #75479.
21530 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21531         
21532         * reflection.c (mono_method_get_object): Fix warning.
21534 2005-07-28  Martin Baulig  <martin@ximian.com>
21536         * mono-debug.c
21537         (mono_debug_add_wrapper): Also write the wrapper type.
21539 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21541         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21542         
21543         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21544         data indicates the class has none.
21546 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21548         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21549         loader lock with the debugger lock. Prevents deadlocks for beagle.
21551         Beagle can now run on an smp box for a weekend without any
21552         issues. Woohoo!
21554 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21556         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21557         in a module. Fixes #75629.
21559 2005-07-26  Martin Baulig  <martin@ximian.com>
21561         * mono-debug.c (mono_debug_add_wrapper): New static method.
21562         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21563         interncall or a wrapper.
21565         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21566         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21567         (MONO_DEBUGGER_VERSION): Bump to 51.
21569         * mono-debug-debugger.c
21570         (mono_debugger_add_type): Removed this empty function.
21571         (mono_debugger_add_method): Likewise.
21573 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21575         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21576         before accessing method->slot.
21578 2005-07-21  Jb Evain  <jbevain@gmail.com>
21580         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21581         Fixes #75010.
21583 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21585         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21586         #75587.
21588 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21590         * image.h image.c: Add mono_image_get_guid () API function.
21592 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21594         There were issues when multiple threads tried to load
21595         assemblies. A deadlock was created between assemblies_mutex and
21596         mono_domain_assemblies_lock. This fixes the issue by making the
21597         assembly ref counting be lock free. See bug 75586.
21598         
21599         * image.c (mono_image_close): The add ref function here was using
21600         Interlocked operations while the unref was using a mutex and a
21601         --. I don't think this was ever a bug that would be exposed in a
21602         non-pendantic way (ie, by an embedder doing a ref on one thread
21603         and an unref on another), but for the sake of correctness, this is
21604         now Interlocked.
21606         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21607         (mono_assembly_load_reference): Call mono_assembly_addref rather
21608         than touching the refcount ourselves.
21609         (mono_assembly_close): Use InterlockedDecrement to unref the
21610         assembly. Don't acquire the lock unless it is actually needed.
21612 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21614         * class.c (mono_class_layout_fields): Fix calculation of has_references
21615         for generic types.
21617 2005-07-12  Martin Baulig  <martin@ximian.com>
21619         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21621         * metadata.c
21622         (mono_type_hash): Provide better hashing for generic instances.
21623         (mono_generic_inst_hash): Improve hashing.
21624         (mono_generic_class_hash): Likewise.
21626         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21627         generic instances.
21629 2005-07-12  Martin Baulig  <martin@ximian.com>
21631         * reflection.c (mono_reflection_create_runtime_class): Remove the
21632         hack for generic type definitions and non-`Run' assemblies.
21633         (mono_reflection_bind_generic_parameters): Also use
21634         `klass->wastypebuilder' to check for TypeBuilders.
21636 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21638         * class.c (mono_class_layout_fields): Fix calculation of has_references
21639         for generic types.
21641         * class.c (inflate_generic_class): Fix a leak.
21642         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21643         for generic types.
21645 2005-07-11  Martin Baulig  <martin@ximian.com>
21647         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21648         on error.
21650 2005-07-11  Martin Baulig  <martin@ximian.com>
21652         * loader.c (find_method): Also lookup in
21653         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21655 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21657         * appdomain.c (mono_domain_unload): Don't free the error message
21658         before passing it to mono_get_exception_...
21660         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21661         
21662 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21664         * threads.c: try to better guess an available RT signal (bug #75387).
21666 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21668         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21669         and CACHE_OBJECT.
21671 2005-07-07  Martin Baulig  <martin@ximian.com>
21673         * class.c (mono_type_get_name_full): Return NULL for
21674         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21675         fixes #75408.
21677 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21679         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21680         exit the appdomain as well being aborted.
21682         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21683         change back to the root domain after calling managed code. This enables
21684         appdomains using threadpools to be unloaded.
21686 2005-07-07  Martin Baulig  <martin@ximian.com>
21688         * class-internals.h
21689         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21690         into `MonoDynamicGenericClass' since we only need it for dynamic
21691         types.
21693         * reflection.c (mono_class_bind_generic_parameters): We don't need
21694         to compute the `parent' here.
21696 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21698         * culture-info-table.h : regenerated.
21700 2005-07-06  Martin Baulig  <martin@ximian.com>
21702         * icall.c
21703         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21705         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21707 2005-07-06  Martin Baulig  <martin@ximian.com>
21709         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21710         we're doing a signature-only comparision; fixes #74945.
21712 2005-07-06  Martin Baulig  <martin@ximian.com>
21714         * class-internals.h (MonoGenericClass): Moved some things out into
21715         a new `MonoInflatedGenericClass' type.  
21716         (MonoInflatedGenericClass): New type; the `klass' of a
21717         `MonoGenericClass' is now computed lazyly in
21718         mono_get_inflated_generic_class().      
21720         * class.c (mono_get_inflated_generic_class): New public function.
21721         (mono_class_inflate_generic_method): Removed the unused
21722         `MonoClass *' argument.
21723         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21724         all the methods.
21725         (mono_class_create_generic): Make this static and merge it with
21726         mono_class_create_generic_2(); we're now called automatically from
21727         mono_get_inflated_generic_class().
21729         * loader.c (mono_method_signature): Call
21730         mono_get_inflated_method() here.
21732 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21734         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21735         type of fields with RVA.
21737         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21738         for this pseudo class.
21739         (my_mono_class_from_generic_parameter): Likewise.
21740         (mono_class_init): Allow interfaces to have cctors.
21742 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21744         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21745         lazily for AOT methods.
21747 2005-07-05  Martin Baulig  <martin@ximian.com>
21749         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21750         returns FALSE for a successful match, not TRUE.
21752 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21754         * loader.c (mono_method_get_index): Optimize this a bit.
21756 2005-07-04  Martin Baulig  <martin@ximian.com>
21758         * class.c
21759         (class_compute_field_layout): Move the check for generic type
21760         definitions into mono_class_layout_fields().  Fixes #74684.
21761         (mono_class_from_generic_parameter): Correctly compute
21762         `klass->parent'; fixes #75457.
21764         * reflection.c (register_assembly, register_module): Make sure
21765         `domain->rejobject_hash' is already created.
21767 2005-07-02  Martin Baulig  <martin@ximian.com>
21769         * class-internals.h
21770         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21771         `MonoDynamicGenericClass'.      
21773 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21775         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21776         returned by a field getter is null, since null is a valid value.
21778 2005-07-01  Martin Baulig  <martin@ximian.com>
21780         * reflection.c (mono_reflection_generic_class_initialize): Update
21781         the `dgclass->fields [i].parent' to the correct class.
21782         (mono_image_get_fieldref_token): Use the declaring type, not the
21783         reflected type.
21785 2005-07-01  Martin Baulig  <martin@ximian.com>
21787         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21789 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21791         * threads.c (thread_cleanup): assert that thread != NULL
21792         (wait_for_tids_or_state_change): We were using the wrong variable
21793         when accessing wait->threads. `i' was always out of the bounds of
21794         the array.
21796 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21798         * loader.c: map user32 and kernel32 to libMonoSupportW
21800 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21802         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21804 2005-06-28  Martin Baulig  <martin@ximian.com>
21806         * loader.c (method_from_methodspec): Fix #75334.
21808 2005-06-28  Martin Baulig  <martin@ximian.com>
21810         Fix #74953 - Arrays now implement the generic IList<T> interface
21811         on the 2.0 platform.
21813         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21815         * reflection.c (mono_class_bind_generic_parameters): New public
21816         function; similar to mono_reflection_bind_generic_parameters(),
21817         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21819         * domain.c (mono_init_internal): Try to initialize.
21820         `mono_defaults.generic_array_class' here; this'll only succeed if
21821         we're using the 2.0 corlib.
21823         * icall.c
21824         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21825         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21826         (mono_lookup_internal_call): Added support for nested classes.
21828         * loader.c
21829         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21830         we're an interncall and have generic arguments.
21832         * class.c
21833         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21834         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21835         instance of System.Array.InternalArray<T> for arrays, so they
21836         implement the generic IList<T> interface.
21838 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21840         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21841         (chastamar@yahoo.com). Fixes #75374.    
21843 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21845         * culture-info-table.h: regenerated.
21847 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21849         * icall.c: handle spaces correctly for base64 strings.
21851 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21853         * *.c: Kill some warnings.
21855 2005-06-23  Duncan Mak  <duncan@novell.com>
21857         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21858         that this builds on Solaris 10 (x86).
21860 2005-06-23  Martin Baulig  <martin@ximian.com>
21862         * class.c
21863         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21864         generic type definitions.
21866 2005-06-23  Martin Baulig  <martin@ximian.com>
21868         Fix #75331.
21870         * metadata.c (mono_class_get_overrides): Renamed to
21871         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21872         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21873         pass it to mono_get_method_full().
21875 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21877         * reflection.c (mono_reflection_create_runtime_class): take the
21878         mono_domain_lock in this method. Prevents deadlocks
21880 2005-06-22  Martin Baulig  <martin@ximian.com>
21882         * loader.c (method_from_methodspec): Fix #75330.
21884 2005-06-22  Martin Baulig  <martin@ximian.com>
21886         * reflection.c (type_get_qualified_name): Use
21887         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21888         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21889         argument; use it if we don't have an assembly name.
21891 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21893         * object.c: In mono_message_init, set "copy out" flag for in
21894         parameters with the [Out] flag.
21896 2005-06-21  Martin Baulig  <martin@ximian.com>
21898         * class.c
21899         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21900         and MONO_TYPE_PTR.
21902 2005-06-21  Martin Baulig  <martin@ximian.com>
21904         * class.c (mono_class_init): Don't initialize `class->fields' for
21905         generic instances since they're initialized again in
21906         compute_field_layout(). 
21907         (compute_field_layout): Set the field's `generic_info' here; fix
21908         #75320. 
21910 2005-06-21  Martin Baulig  <martin@ximian.com>
21912         * class-internals.h
21913         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21915         * metadata.c (mono_metadata_generic_method_equal): Also
21916         distinguish the `generic_class'; fixes #75334.
21918 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21920         * domain.c:
21921         * appdomain.c:
21922         * domain-internals.h:
21923         * reflection.c: 'domain_assemblies' field is now protected by its own
21924         lock. Don't call into managed code to run the AssemblyLoad event if we
21925         now there are no registered delegates for it.
21927 2005-06-20  Martin Baulig  <martin@ximian.com>
21929         * class.c (mono_class_is_assignable_from): Use a custom version of
21930         mono_class_has_parent() to make things work for generic instances;
21931         fix #75300.
21933 2005-06-20  Martin Baulig  <martin@ximian.com>
21935         * loader.c (method_from_methodspec): Apply a patch from
21936         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21938 2005-06-20  Martin Baulig  <martin@ximian.com>
21940         * class.c (mono_class_init): Reverted Zoltan's last change; it
21941         breaks generics.
21943 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21945         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21947 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21949         * socket-io.c: fix the index in the socket array for writable/error
21950         sockets. Fixes bug #75306.
21952 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21954         * class.c (mono_class_init): Allow interfaces to have static ctors.
21956 2005-06-17  Martin Baulig  <martin@ximian.com>
21958         * loader.c (method_from_methodspec): Use `context->container' when
21959         parsing the `gmethod->inst'.
21961 2005-06-17  Martin Baulig  <martin@ximian.com>
21963         * class.c (mono_type_get_name_recurse): Don't add the assembly
21964         name for type arguments.
21966 2005-06-15  Martin Baulig  <martin@ximian.com>
21968         * reflection.c (mono_image_get_inflated_method_token): Encode
21969         correct klass; fixes #75260.
21971 2005-06-13 Michal Moskal <malekith@nemerle.org>
21973         * icall.c: Make GetCorrespondingMethod/Constructor take
21974         MonoReflectionMethod method not MonoMethod. Removed
21975         MonoType.GetCorrespondingField, and make
21976         MonoGenericType.GetCorrespondingField take name not
21977         MonoClassField.
21979 2005-06-13  Michal Moskal <malekith@nemerle.org>
21981         * reflection.c (field_encode_signature, encode_locals):
21982          Make sizes of buffers for types larger (for big generic types).
21983          (create_generic_typespec,
21984          mono_reflection_sighelper_get_signature_local,
21985          mono_reflection_sighelper_get_signature_field):
21986          Add asserts for too small buffers.
21988 2005-06-15  Martin Baulig  <martin@ximian.com>
21990         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21991         if our parent is not a dynamic type.
21993 2005-06-15  Martin Baulig  <martin@ximian.com>
21995         * class-internals.h (MonoTypeNameFormat): New enum.
21997         * class.c
21998         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21999         (mono_type_get_full_name): Removed.
22000         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22001         argument instead of the boolean's.
22003         * icall.c (ves_icall_System_MonoType_getFullName):
22004         Added `gboolean assembly_qualified'.    
22006         * reflection.h
22007         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22009         * reflection.c (mono_reflection_parse_type): Parse the new type
22010         name format.
22012 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22014         * icall.c: no need to convert from utf16 to utf8 and then back again
22015         after the call to GetLogicalDrives.
22017 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22019         * icall.c: frombase64. Fix problems exposed by new tests.
22021 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22023         * icall.c: added internal calls for converting char [] and strings in
22024         base64 into byte [].
22026 2005-06-10  Martin Baulig  <martin@ximian.com>
22028         * class.c (mono_class_create_generic_2): Read the nested classes
22029         from the metadata rather than from `gklass->nested_classes' since
22030         `gklass' might not be initialized yet.
22032 2005-06-09  Duncan Mak  <duncan@novell.com>
22034         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22035         all public headers. Fixes #74919.
22037 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22039         * domain.c: The key for proxy_vtable_hash is now a pointer
22040         array. Added new GHashFunc and GCompareFunc functions for this.
22042         * class.h: The list of interfaces in MonoRemoteClass is known in
22043         advance and can't grow (we create a new MonoRemoteClass if needed),
22044         so now the interface array can be allocated together with
22045         MonoRemoteClass.
22046         
22047         * object.c: Added a new method create_remote_class_key.
22048         Fixed mono_remote_class so it does not depend on
22049         mono_upgrade_remote_class.
22050         Removed extend_interface_array.
22051         Added new method clone_remote_class(), which makes a copy of a remote
22052         class and adds a new interface or class to it.
22053         mono_upgrade_remote_class() now creates a new remote class (or gets
22054         it from the cache) if an vtable upgrade is needed. In this way
22055         we make sure that other objects sharing the same remote class
22056         don't get the new vtable with unwanted interfaces.
22057         
22058         * object-internals.h:
22059         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22060         
22061         * marshal.c: Track changes in mono_upgrade_remote_class().
22063 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22064         * icall.c: Add runtime methods for obtaining members of inflated
22065         class, which were created from supplied non-inflated members. It
22066         is used in internal Get{Method,Constructor,Field} methods in
22067         System.Type
22069 2005-06-09  Martin Baulig  <martin@ximian.com>
22071         * reflection.c
22072         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22074 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22075         * reflection.c (mono_image_basic_init): Define
22076         Version in MonoDynamicAssembly. 
22077         
22078 2005-06-08  Martin Baulig  <martin@ximian.com>
22080         Fix #75136.
22082         * loader.c
22083         (mono_method_signature_full): New public method; takes a
22084         `MonoGenericContext *'.
22085         (find_method): Use mono_method_signature_full() and pass the
22086         klass'es context to it.
22088         * class.c (mono_class_is_inflated_method): Use
22089         mono_method_signature_full() and pass the context to it.
22091 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22093         * object.c: add proper locking in mono_remote_class_vtable(),
22094         fixes possible memory corruption.
22096 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22098         * marshal.c (mono_remoting_marshal_init): set
22099         initialized after initialization.
22101 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22103         * locales.c : hush.
22105 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22107         * object.c (extend_interface_array): fix really silly
22108         memory corrupting / comparison bug.
22110 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22112         * reflection.c: Functions added to support the creation
22113         of CustomAttributeData, which includes Attribute data
22114         used by ReflectionOnly methods.
22116         * reflection.h:  mono_reflection_get_custom_attrs_data and
22117          mono_custom_attrs_data_construct added (functions exposed).
22119          * icall.c: Added mono_reflection_get_custom_attrs_data
22120          as icall.
22121         
22122 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22124         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22125         lupus's request.
22127 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22129         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22131         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22132         dynamic DllImportAttribute.
22134         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22135         dynamic DllImportAttribute.
22137         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22138         Fixes #75162.
22140 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22142         * threads.c: avoid segfault when an unstarted thread is aborted.
22144 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22146         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22147         Returns the name and version of the runtime for reporting.
22149 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22151         * appdomain.c: bump corlib version.
22152         * object-internals.h: new field in MonoReflectionAssembly.
22154 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22156         * object-internals.h: Carlos forgot to add this field.
22158 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22160         * icall.c: Added create_version to create instances
22161         of Version of MonoReflectionAssemblyName. This change helps
22162         the AssemblyName tests to keep running fine.
22163         
22164 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22165   
22166         * object.c (mono_method_return_message_restore): A somehow less
22167         intrusive fix for #75138.
22169 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22171         * object.c (mono_method_return_message_restore): Fix computation
22172         of expected number of out args.
22174 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22176         * reflection.c (mono_image_get_method_info): Fix the case when the
22177         charset is empty.
22179 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22181         * object.c: Added missing null check in
22182           mono_method_return_message_restore.
22184 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22186         * reflection.c (mono_image_get_method_info): Handle the case when
22187         dllentry is empty.
22189 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22191         * object.c: When creating the vtable for a proxy, take into account
22192         all inherited interfaces, not only the ones registered in
22193         iclass->interfaces. This fixs bug #74996.
22194         Also, in mono_method_return_message_restore, verify that the array
22195         of out args has the expected lengh.
22197 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22199         * socket-io.c: update the timeout in Poll when the call is interrupte.
22201 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22203         * socket-io.c: support abort/suspend in Select_internal after last
22204         change.
22206 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22208         * threadpool.c: remove warning.
22210 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22212         * icall.c:
22213         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22214         removing the 1024 limit from select(). Runtime part of the fix for
22215         bug #71203.
22217 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22219         * socket-io.c: when resolving the addresses for the same
22220         host returned by gethostname(), get the local IPs from the interface
22221         list. Loopback addresses are discarded if the are interfaces up with
22222         non-loopback ones. Fixes bug #63265.
22224 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22226         * appdomain.c, verify.c, object-internals.h, reflection.c:
22227         bumped corlib number to 36, and added new extra_flags field
22228         to ReflectionMethodBuilder and friends.  Fixes #75060.
22230 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22232         * gc.c: register a new weak link only if the object is non-null
22233         (fixes bug#75047).
22235 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22237         * culture-info.h : short time pattern too.
22239 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22241         * culture-info.h : expand long time pattern string length.
22243 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22245         * culture-info-table.h : update (more French date format; #72788).
22247 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22249         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22250         the method is static. Fixes #75029.
22252 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22254         * reflection.c: Update the table_idx field of method builders after
22255         saving the module, since it can change. This is a workaround for
22256         bug #74914. 
22258 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22260         * culture-info-table.h : update (additional French date format).
22262 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22264         * icall.c (ves_icall_type_Equals): Revert last change.
22265         
22266         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22268         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22270 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22272         * class-internals.h: Added executioncontext_class field to 
22273         MonoDefaults structure.
22274         * domain.c: Cache System.Threading.ExecutionContext class in 
22275         mono_defaults.
22276         * object.c: Capture the ExecutionContext for asynchroneous calls in
22277          mono_async_result_new.
22278         * object-internals.h: Added execution_context and original_context 
22279         fields to MonoAsyncResult. Added execution_context to MonoThread.
22280         * security-manager.c|.h: Added mono_get_context_capture_method to 
22281         return the capture method (if required by the security manager or by
22282         the framework version used).
22283         * threadpool.c: Apply capture (if present) ExecutionContext in 
22284         mono_async_invoke and revert to original context after it completes.
22286 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22288         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22290 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22292         * culture-info-table.h : zh-CHT related workaround.
22294 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22296         * marshal.c (emit_marshal_custom): Add some error checking and call the
22297         methods in the ICustomMarshaler interface. Fixes #74875.
22298         
22299         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22300         native->managed wrappers.
22302 2005-05-12  Martin Baulig  <martin@ximian.com>
22304         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22305         here and use the loader lock.
22307         * mono-debug.c: Properly lock when the debugger is not attached.
22308         (mono_debug_init): Release the initial lock if we're not running
22309         in the debugger.
22311 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22313         * marshal.c (emit_marshal_custom): Pass through NULL values without
22314         calling the custom marshalling routines.
22316         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22317         conversion in structures. Fixes #74882.
22319 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22321         * culture-info-table.h : zh-* cultures were missing.
22323 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22325         * threads.c: Added a new event background_change_event which is signaled
22326         when a thread changes its background mode.
22327         Moved here several checks previously done in managed code. The checks
22328         require the thread lock, and using the thread lock in managed code
22329         can result in deadlocks.
22330         Merged Start_internal and Thread_internal into a single method. Now 
22331         Thread_internal does all work of creating and starting a thread.
22332         Added icalls for setting and getting the state of the object. Moved from
22333         managed code to avoid locking there.
22334         Added wait_for_tids_or_state_change() which is called instad of
22335         wait_for_tids when waiting for non-backround threads to end. This method
22336         will return if one of the threads ends or the background_change_event
22337         is signaled.
22338         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22339         the background mode. This method signals the background_change_event
22340         event.
22341         * icall.c:
22342         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22343         removed Start_internal.
22344         
22345 2005-05-11  Martin Baulig  <martin@ximian.com>
22347         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22348         to order of some fields to get proper alignment on 64-bit machines.
22350 2005-05-11  Martin Baulig  <martin@ximian.com>
22352         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22353         changes as they're broken and completely fuck up the debugger.
22355         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22357 2005-05-10  Martin Baulig  <martin@ximian.com>
22359         * reflection.c (mono_reflection_generic_class_initialize): Don't
22360         call mono_class_setup_parent() here.
22362 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22364         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22365         send/receive timeout use an integer in milliseconds. We were using a
22366         struct timeval.
22368 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22370         * locales.c:
22371         (internal_get_cultures): reserve the first slot of the array for the
22372         InvariantCulture, which will be filled in managed code.
22374 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22376         * reflection.c (mono_image_fill_module_table): Initialize the
22377         GENERATION field as well.
22379 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22381         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22382         Monitor.Enter on the object.
22384 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22386         * threads.c: Enable the wait for running threads when exiting.
22387         * icall.c: Suspend all threads before exiting.
22389 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22391         * assembly.c (mono_assembly_load_reference): Fix warning.
22393 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22395         * threadpool.c: changed the default number of threads per cpu. From now
22396         on, the default will be 20 + (5 * number of cpus) instead of 50.
22398 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22400         * loader.c (mono_method_get_signature_full): Add locking here.
22402 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22404         * appdomain.c: Moved methods for parsing and freeing assembly
22405         names to assembly.c.
22406         * assembly.c, domain-internals.h: Created public methods for parsing
22407         assembly names. Fixed mono_assembly_load_with_partial_name:
22408         it now finds the best match, taking into account the version,
22409         token and culture specified in the partial name. Also return
22410         the latest version if no version information is specified.
22412 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22414         * threadpool.c: replace check for SocketAsyncCall class.
22416 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22418         * threadpool-internals.h:
22419         * Makefile.am: added threadpool-internals.h
22421         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22422         that happen in threadpool threads (tested on MS).
22423         (mono_thread_pool_remove_socket): new function that dispatch any pending
22424         AIO call on a socket that is closing. By now only epoll really needs it,
22425         as select/poll wake up when the socket closes.
22428         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22430 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22432         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22434 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22436         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22438 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22440         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22441         has an abort request, convert it into a suspend request.
22443 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22445         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22446         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22447         is not supported yet.
22449 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22451         * image.c: register assemblies loaded from data (bundles) in the loaded
22452         assemblies hash. Fixes bug #74772.
22454 2005-04-29  Martin Baulig  <martin@ximian.com>
22456         * class.c (mono_type_get_name_recurse): Update to the new naming
22457         schema from the latest .NET 2.x beta2.
22458         (mono_class_setup_vtable_general): If we're a generic instance,
22459         copy the vtable from our generic type definition and inflate all
22460         the methods in it.
22462         * loader.c (find_method): Update to the new naming schema from the
22463         latest .NET 2.x beta2.
22465 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22467         * class.c (mono_class_init): Add a mono_loader_unlock to the
22468         #74734 fix.
22470 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22472         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22473         suspend_all_other_threads () call for the time being, since it can hang.
22475         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22476         the background threads to exit, since it can also hang.
22478         * class.c (mono_class_init): Applied patch from Ankit Jain 
22479         (radical@gmail.com). Avoid pending init errors when a field refers
22480         to a nested class using a typeref. Fixes #74734.
22482         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22483         this for dynamic modules.
22485 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22487         * threads.c: don't wait for threads that are in the process of aborting
22488         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22489         and waiting for background threads to finish. This makes xsp and
22490         mod-mono-server exit without random length delays and/or hangs.
22492 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22494         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22496 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22498         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22499         dynamic types to prevent infinite loops. Fixes #74727.
22501         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22502         ..._is_assignable_to.
22504 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22506         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22508 2005-04-25  Martin Baulig  <martin@ximian.com>
22510         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22512         * domain.c
22513         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22515         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22517         * reflection.c (build_compressed_metadata): Set metadata header
22518         version to 2.0.
22520 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22522         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22523         number into an integral and a decimal part. Fixes #70473.
22525         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22527 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22529         * culture-info-table.h : reflected the latest locale-builder output.
22531 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22533         * threadpool.c: check for SuspendRequested too when deciding if
22534         mono_thread_interruption_checkpoint should be called.
22536 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22538         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22539         * threads.c: remove interruption_mutex and use Interlocked instead. When
22540         suspending all the threads, wait for all the suspended events at once.
22541         If we're shutting down and get an APC that is going to be queued,
22542         call mono_thread_execute_interruption immediately, as the thread might
22543         be sleeping on a pthread condition or mutex.
22545         * icall.c: call mono_runtime_set_shutting_down before suspending the
22546         threads.
22548         Fixes bug #74693. And now xsp is happier when exiting.
22550 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22552         * loader.c (mono_stack_walk): Fix #74690.
22554 2005-04-22  Martin Baulig  <martin@ximian.com>
22556         * mono-debug.h (MonoDebugMethodJitInfo): Added
22557         `MonoDebugMethodJitInfo *jit'.
22559         * mono-debug.c (mono_debug_read_method): Cache the
22560         MonoDebugMethodJitInfo in `address->jit'.
22561         (mono_debug_free_method_jit_info): New public method.
22563 2005-04-22  Martin Baulig  <martin@ximian.com>
22565         * class.c (mono_class_is_assignable_from): Disallow
22566         type parameter -> interface.
22568 2005-04-21  Dick Porter  <dick@ximian.com>
22570         * threads.c (mono_thread_create): Turn an assertion into an error.
22572 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22574         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22575         
22576         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22577         Fix some gcc 4.0 warnings.
22579 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22581         * file-io.c: fix alt dir separator char on unix systems
22582         and cleanup (fixes bug #71214).
22584 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22586         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22587         a call to a remote domain, since the method may be an
22588         interface method in the client domain. This fixes bug #74192.
22590 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22592         * threadpool.c: recv/send are now performed before going back to managed
22593         code to save one transition.
22595 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22597         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22599         * metadata/threadpool.c: removed hack to workaround the bug above.
22601         Fixes bug #74618.
22603 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22605         * reflection.c reflection.h: Fix handling of parameter defaults in
22606         dynamic methods. Also fixes handling of parameter attributes.
22607         Fixes #74609.
22609         * mono-debug.c (mono_debug_close_image): Fix warning.
22611 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22613         * socket-io.h: replaced old unused field with new 'blocking'.
22614         * threadpool.c: restore socket blocking state on windows(tm).
22616 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22618         * icall.c: don't return the codebase in the AssemblyName[] returned by
22619         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22620         * object-internals.h: Removed FIXME (fields were presents) and fixed
22621         versioncompat declaration.
22623 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22625         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22626         not closed, so don't cleanup when it happens.
22628 2005-04-13  Chris Toshok  <toshok@ximian.com>
22630         * mono-debug-debugger.h: change prototype for
22631         mono_debugger_lookup_type.
22633         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22634         this function, although it should probably be named
22635         mono_debugger_init_type.
22637 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22639         * threadpool.c: fix non-AIO case.
22641 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22643         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22644         the built-in profiler to measure just JIT compilation times.
22646 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22648         * threadpool.c: the epollfd might be closed by another thread at
22649         any time, so ignore EBADF at treat it as a "we're closing" sign.
22651 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22653         * threadpool.c: release the semaphores with a count equals to the number
22654         of working threads in both IO and regular pools. Fixed typo that messed
22655         up the count of IO pool threads. Don't initialize the pipe handles if
22656         we're using epoll.
22658 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22660         * threadpool.c: some systems don't like a NULL when deleting the socket
22661         from epoll.
22663 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22665         * threadpool.c: fix semaphore allocation.
22667 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22669         * threadpool.c: added epoll() based implementation for asynchronous IO
22670         that is used instead of the default poll() when available.
22671         It can be disabled by setting MONO_DISABLE_AIO.
22673 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22675         * threadpool.c: windows needs 'closesocket' and instead of returning
22676         0 when the stream is closed while in select, it returns -1. Fixes bug
22677         #74573.
22679 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22681         * class.c (class_compute_field_layout): Fix the regression caused by
22682         the previous try.
22684 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22686         * threadpool.c: separate pool for socket async. IO.
22687         * threadpool.h: mono_max_worker_threads is not a global any more.
22689 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22691         * class.c (class_compute_field_layout): Fix #74549.
22693 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22695         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22696         use 2 connected sockets instead.
22698 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22700         * mono-config.c: Add new entry point for mkbundle
22701         mono_config_parse_memory. 
22703 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22705         * threadpool.c: removed another unused function.
22707 2005-04-08  Ankit Jain  <radical@corewars.org>
22709         * reflection.c (get_default_param_value_blobs): Add 'types'
22710         parameter to get the types encoded in the constant table.
22711         (mono_param_get_objects): Use the type from the constant table,
22712         not the type of the parameter, when creating default values.
22713         Handle null default values correctly.
22715 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22717         * file-io.c:
22718         * file-io.h:
22719         * threadpool.c:
22720         * threadpool.h:
22721         * icall.c:
22722         * socket-io.c: removed dead code for async IO.
22724 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22726         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22728         * threadpool.c: intercept socket async. calls and pass them to a thread
22729         that is polling and dispatching the job items to the threadpool as
22730         socket become ready. Fixes bugs #71217, #71933.
22732         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22733         between char and short/ushort arrays.
22735         * socket-io.c: remove dead code.
22737 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22739         * locales.c,
22740           icall.c : removed InternalToUpper_Comp() and
22741           InternalToLower_Comp().
22743 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22745         * char-conversions.h : The tables were incorrectly generated. Should
22746           be generated against invariant culture.
22748 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22750         * object.c (mono_runtime_invoke_array): Fix return value when 
22751         passing pre-created valuetype objects to ctors.
22753         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22754         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22755         Fixes #74338.
22757 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22759         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22760         only used with --security and hides the wrong corlib version error.
22762 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22764         * class.c: Changed mono_class_name_from_token so that types
22765         outside of a namespace don't have an initial period.  Improved
22766         the g_warning message used in _mono_class_get when loading
22767         fails.
22768         * assembly.c: In mono_assembly_load_reference, when an assembly
22769         can't be found, "No such file or directory" is misleading and
22770         unhelpful because a few paths were checked for the presence of
22771         the assembly.  When that happens (ENOENT), display a nicer
22772         message indicating the directories that were searched.  In all
22773         cases, the warning is made easier to read for non-hackers.
22775 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22777         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22778         project/solution.
22779         * appdomain.h|domain.c: Removed inline from functions.
22780         * appdomain.c: Reduced warnings when compiling on windows.
22781         * icall.c: Fixed output_debug declaration to gunichar2*.
22782         * mono-config.c: Reduced warnings when compiling on windows.
22783         * rand.c: Added missing "windows.h". Added missing return value.
22784         * rawbuffer.c: Added missing winsock2.h for windows.
22785         * sysmath.h: Added mono-compiler.h header to allow/ease 
22786         compilation with non-GCC compilers.
22787         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22788         Removed cast warnings.
22790         Adapted from the work of J Lothian (for VC6).
22792 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22794         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22795         from default_path.
22797 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22799         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22800         the 2.0 profile.
22802 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22804         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22805         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22806         stuff, and it would probably use $(prefix)/share rather than
22807         $(prefix)/lib.
22809 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22811         * console-io.c: added 2 includes that might be missing.
22813 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22815         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22816         profile.
22818         * reflection.c (create_custom_attr): Allocate the params array using
22819         alloca so it gets GC tracking.
22821 2005-03-23  Chris Toshok  <toshok@ximian.com>
22823         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22824         out some spew.
22826 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22828         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22829         changes to pick up any changes in prefix, etc.
22831 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22833         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22834         
22835         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22836         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22838 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22840         * class-internals.h object-internals.h class.c reflection.c: Extend the
22841         mono_lookup_dynamic_token () function to return the class of the
22842         token as well. 
22844         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22845         well. Fixes #73848.
22847 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22849         * security-manager.c: Skip inheritance checks for intra-corlib
22850         class inheritance and method overrides. This skips a lot of checks
22851         and (anyway) permissions cannot work until corlib is loaded.
22853 2005-03-23  Martin Baulig  <martin@ximian.com>
22855         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22856         MONO_TYPE_GENERICINST.  
22858 2005-03-23  Martin Baulig  <martin@ximian.com>
22860         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22862 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22864         * class.c: added locking comments to some functions.
22865         Cache the interface offsets arrays (saves about 20 KB
22866         of runtime memory in a typical app).
22867         Reduce the time overhead in mono_class_setup_supertypes ().
22869 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22871         * icall.c: speedup and fix leaks in GetMethodsByName and
22872         GetPropertiesByName.
22874 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22876         * reflection.c: some locking fixes.
22878 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22880         * metadata.c: added missing break in case statement.
22882 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22884         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22885         typedbyref return values. Fixes #73941.
22887 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22889         * security-manager.c|h: Added demandunmanaged method and 
22890         suppressunmanagedcodesecurity class to MonoSecurityManager.
22891         Renamed aptc class to allowpartiallytrustedcallers.
22893 2005-03-17  Martin Baulig  <martin@ximian.com>
22895         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22897 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22899         * file-io.c: disabled file async. IO using aio_*. It uses the
22900         threadpool now. Workaround for bug #73718.
22902 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22904         * assembly.h, mono-config.c: added code to deal with bundled configs
22905         for bundled assemblies.
22907 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22909         * *.c, private.h: cleanup, removing old private.h header file.
22911 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22913         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22914         and throw_on_unmappable_char attributes.
22916 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22918         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22919         _ProcessName_internal.
22921 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22923         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22924         #73631.
22926         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22927         are no longer used.
22929 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22931         * object.c (compute_class_bitmap): Add support for generics. Fixes
22932         #73527.
22934 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22936         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22938 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22940         * filewatcher.c: commented out the code for windows watcher, as we don't
22941         use it (we use the managed implementation instead).
22943 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22945         * object-internals.h (MonoThread): Remove 'unused1' field.
22947         * appdomain.c: Bump corlib version.
22949         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22951         * reflection.c (mono_reflection_create_runtime_class): Remove the
22952         AssemblyBuilder.Save optimization since it causes too many problems.
22954 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22956         * exception.c|h: Added mono_get_exception_reflection_type_load to
22957         create a ReflectionTypeLoadException object.
22958         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22959         to return NULL is a InheritanceDemand fails during reflection. Updated
22960         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22961         ReflectionTypeLoadException if an InheritanceDemand fails during 
22962         reflection. Added icall mapping for GetLinkDemandSecurity.
22963         * security-manager.c|h: Added ves_icall_System_Security_
22964         SecurityManager_GetLinkDemandSecurity internal call to return the
22965         class and methods permissions set for a LinkDemand. Removed unused
22966         fields in MonoSecurityManager.
22968 2005-03-10  Martin Baulig  <martin@ximian.com>
22970         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22971         it's a generic instance.
22973 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22975         * reflection.c (mono_get_object_from_blob): Applied patch from
22976         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22978         * class.c (mono_class_is_assignable_from): Another try at fixing 
22979         #73469 without breaking anything.
22981 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22983         * class.c: (mono_class_is_assignable_from): Revert the last changes
22984         since they don't work with generics.
22985         
22986         * class.c (mono_class_is_assignable_from): Fix build bustage.
22988         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22989         the managed IsAssignableFrom method. Fixes #73469.
22991         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22992         function.
22994 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22996         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22997         memory when the remoting callback does not sets the out arguments.
22998         Fixes #73007.
23000         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23001         by mistake.
23003         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23005         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23007         * appdomain.c: Bump corlib version.
23009 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23011         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23012         function.
23014         * threads.c (mono_thread_attach): Detect threads which are not started
23015         by the GC pthread wrappers.
23017 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23019         * icall.c: Added new icall for RNG.
23020         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23021         single handle on Linux to access /dev/urandom and fix #73183.
23023 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23025         * object.c: setting the new vtable in a transparent proxy object must
23026         not change the GC descriptor.
23028 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23030         * object.c: fixed compilation without GCJ support.
23031         * reflection.c: for runtime-created types ensure klass->has_references
23032         is correct (bug #73215).
23034 2005-03-02  Martin Baulig  <martin@ximian.com>
23036         * class.c (mono_class_is_assignable_from): Make this work if
23037         `oklass' is a generic instance; fixes #72831.
23039 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23041         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23042         with hasthis set.
23043         
23044         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23046         * marshal.c: Reorganize native->managed marshalling code to also use
23047         the emit_marshal_... functions.
23049 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23051         * object.c: typed allocs have issues with bitmap sizes > 30,
23052         so check for max_set >= 30.
23054 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23056         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23057         managed code. Fixes #73012.
23059         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23061         * metadata.c reflection.c: Load/Emit elem_mult as well.
23062         
23063         * metadata.h (MonoMarshalSpec): Add comment.
23065         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23067         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23068         num_elem to -1 if not given.
23070         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23072         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23073         given values.
23075 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23077         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23079 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23081         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23083         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23085 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23087         * object.c: generalized the reference bitmap creation
23088         and added hooks for the new GC.
23089         * class-internals.c: removed the gc_bitmap field from MonoClass.
23091 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23093         * domain.c: help the compiler to produce better code
23094         in mono_jit_info_table_find ().
23096 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23098         * object.c: make all allocations look typed.
23100 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23102         * socket-io.c: load Mono.Posix if it's not loaded already
23103         (fixes bug#73033).
23105 2005-02-24  Martin Baulig  <martin@ximian.com>
23107         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23108         * reflection.c (dup_type): Likewise.
23110 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23112         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23113         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23115 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23117         * domain.c, threads.c, object-internals.h: make the critical thread
23118         local vars use the fast access mode (even when we're compiled in
23119         a lib). Provide accessors to be used by the jit during codegen.
23121 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23123         * appdomain.c: Changed hook functios behavior to include
23124         support for the reflection only assemblies. Some icalls were changed
23125         to support the mentioned assemblies too. Signatures of static methods
23126         try_assembly_resolve and real_load now have an additional parameter:
23127         refonly.
23129         * assembly.c: General changes to mono_assembly_ methods to support
23130         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23131         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23132         suffix, to support an additional gbool parameter to specify whether
23133         the assembli is reflection only or not. Created some new hook functions 
23134         to add support for reflection only assemblies. Signatures of static 
23135         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23136         have now an additional parameter: refonly.
23138         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23139         indicating whether the assembly is reflection only or not.
23141         * exception.c: Add mono_get_exception_invalid_operation.
23143         * icall.c: Throw an InvalidOperationException when trying to invoke
23144         a property/method/event, or trying to set/get the value of a field.
23145         Also add an icall to retrieve the ref_only flag to the
23146         MonoReflectionAssembly.
23148 2005-02-23  Chris Toshok  <toshok@ximian.com>
23150         Part of fix for #72827.
23151         * mono-debug.c (mono_debug_add_method): add lexical block data to
23152         the info we write.  Kind of a hack at the moment - we copy the
23153         lexical block info from the MonoDebugMethodInfo to the
23154         MonoDebugMethodJitInfo here, before writing it.
23155         (mono_debug_read_method): read the lexical block info.
23157         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23159         * debug-mono-symfile.h: add lexical block support.
23161         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23162         support.
23164 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23166         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23168         * object.c (mono_runtime_free_method): Call mono_free_method () and
23169         put the TODOs there.
23171         * loader.c (mono_free_method): Free up most memory allocated for 
23172         dynamic methods.
23174 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23176         * reflection.c: properly flag a Type argument to a
23177         named custom attr value (bug #72248).
23179 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23181         * reflection.c: reduce code duplication in named custom
23182         attribute encoding.
23184 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23186         * reflection.c: properly encode custom attrs of type object
23187         (bug #72649).
23189 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23191         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23193 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23195         * socket-io.c: load System.dll if it's not loaded already
23196         (bug #72850 and #70477).
23198 2005-02-21  Martin Baulig  <martin@ximian.com>
23200         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23201         generic instances.
23203 2005-02-21  Martin Baulig  <martin@ximian.com>
23205         * reflection.c (mono_image_build_metadata): We also need to
23206         "fixup" the MethodImpl table after we computed the final method
23207         indices.  Call fixup_methodimpl() to do that.
23208         (fixup_methodimpl): New private method.
23210 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23212         * assembly.c: special case mscorlib.dll (bug#72536),
23213         patch from Carlos Alberto Cortez.
23215 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23217         * threads-types.h threads.c: Fix build bustage.
23219         * threads.c: Use a union for long<->double conversions.
23221         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23222         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23224         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23225         containing the checkpoint call with NOT_TAKEN.
23226         
23227         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23228         checkpoint before pushing the arguments, so they won't have to be
23229         spilled to stack.
23231 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23233         * domain.c, assembly.c, domain-internals.h: make some data
23234         const and relocation-free.
23236 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23238         * object.c, appdomain.c, class-internals.h: introduce the
23239         MonoClassRuntimeInfo structure to hold the info needed to
23240         use a class at runtime. Made mono_class_vtable() lock-free
23241         for all the appdomains.
23243 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23245         * metadata-internals.h, image.c: introduce a per-image mempool to
23246         be used for memory that has the same lifetime as the image.
23248 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23250         * domain.c: In mono_init_internal(), instead of selecting the first
23251         runtime version supported by an executable, get a list of all
23252         supported versions and select the one for which an mscorlib exists
23253         (since even if the runtime supports a given version, it doesn't mean
23254         that the framework for that version is installed).
23255         Modified get_runtimes_from_exe to support this behavior.
23256         In supported_runtimes, added information about additional system
23257         assembly versions.
23258         
23259         * assembly.c: Added support for more than one system assembly version
23260         per runtime version. Updated the assembly list.
23261         In mono_assembly_remap_version, removed the initial version check,
23262         since we don't know to which version we need to compare until we
23263         get the version set on which the assembly is based.
23264         Moved the code for loading corlib into the new method
23265         mono_assembly_load_corlib(), so it can be used by the initialization
23266         code.
23267         
23268         * domain-internals.h: Updated data structures and added declaration
23269         for mono_assembly_load_corlib.
23271 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23273         * reflection.c (resolve_object): Fix the creation of the signature in 
23274         the SignatureHelper case.
23276         * assembly.c (mono_assembly_remap_version): Fix binary search.
23277         
23278 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23280         * class.c: Added inheritance check when a method is overloaded (from a
23281         virtual method or when implementing an interface) and when a class is
23282         inherited. Added functions to set a failure for a class and to 
23283         retreive the exception from a failure.
23284         * class-internals.h: Added fields to MonoClass to keep the exception
23285         information status for inheritance (or other exceptions) to be thrown
23286         later (i.e. not at load time).
23287         * object.c: Throw the inheritance SecurityException when a type is to 
23288         be created with either class or method inheritance violations.
23289         * reflection.c|h: Fix when getting declsec from a class. Removed 
23290         unrequired code for class. Improved sanity in parameter naming.
23291         * security-manager.c|h: Added functions to check for class and method
23292         inheritance.
23294 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23296         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23297         and has_finalize in dynamic types as well.
23299 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23301         * culture-info-table.h : fixed currency format for en-GB (and so on).
23303 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23305         * gc.c: ensure the GC handles never have 0 as a value.
23307 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23309         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23310         a pointer to a struct to unmanaged code. Fixes #72625.
23312 2005-02-16  Martin Baulig  <martin@ximian.com>
23314         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23316 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23318         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23320 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23322         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23324         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23325         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23326         etc. Fixes #71471.
23328         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23330         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23332 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23334         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23335         changes to make the current context a field in MonoThread.
23337 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23339         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23340         the last change.
23341         
23342         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23343         extracted from mono_marshal_get_native_wrapper.
23345         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23346         to create wrappers around native functions.
23348         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23349         delegates for arbitrary function pointers. Fixes #71472.
23351 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23353         * threads.c: cleaned up the code a little.
23355 2005-02-15  Martin Baulig  <martin@ximian.com>
23357         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23358         the data table.
23360         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23361         allocate larger chunks if needed.
23363 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23365         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23366         in by mistake.
23368 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23370         * domain.c: keep the domains in an array and ensure the domain ids
23371         are kept small, so they can be used as indexes to domain-specific data
23372         with a small memory overhead.
23374 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23376         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23378 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23380         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23382 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23384         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23386         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23387         values.
23389         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23390         
23391 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23393         * domain-internals.h: add the hashtable here.
23395         * class-internals.h: Remove `info' from MonoMethod
23397         * domain.c: Add a new hashtable, jit_trampoline_hash
23399 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23401         * object.c: don't set the value of static fields
23402         (fixes bug#72494).
23404 2005-02-11  Martin Baulig  <martin@ximian.com>
23406         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23407         (mono_debug_add_method): Silently ignore the method if it's too big.
23408         (mono_debug_add_type): Likewise.
23410 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23412         * threads.c, appdomain.c: remove #ifdefs from the code.
23414 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23416         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23417         common security informations. This allows us to stay in unmanaged code
23418         when doing LinkDemand and it's special cases (except for the first 
23419         time for initialization). The flags a very much used with --security.
23420         * reflection.c|h: Added code to get declarative security attributes 
23421         for LinkDemand and InheritanceDemand. This required to refactor the
23422         existing code for Demand.
23423         * security-manager.c|h: Added new method fields for the special cases
23424         of LinkDemand.
23426 2005-02-10  Martin Baulig  <martin@ximian.com>
23428         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23429         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23431 2005-02-10  Martin Baulig  <martin@ximian.com>
23433         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23434         debugging code; this is almost a complete rewrite.
23436         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23438 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23440         * domain.c, object.h: expose mono_string_equal () and 
23441         mono_string_hash ().
23442         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23443         it's implemented in managed code.
23445 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23447         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23448         lo leak objects between appdomains.
23450 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23452         * assembly.c: old compilers compilation fix from 
23453         robertj@gmx.net (Robert Jordan).
23455 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23457         * class-internals.h: Little reminder for the future.
23459         * debug-helpers.c: Fix up wrapper_type_names
23461 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23463         * image.c, metadata-internals.h: when loading an image from a file,
23464         mmap all of it and use the same codepaths as when using a
23465         in-memory image: the code is simpler and we use less memory
23466         (both writable and readonly).
23468 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23470         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23471         API to alloc runtime data structures that need to be tracked by the
23472         GC and contain pointers.
23473         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23474         make the code more readable and eventually use a different GC.
23476 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23478         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23479         for out arguments.
23480         
23481 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23483         * object.c: In release_type_locks(), don't release the cctor lock
23484         if it has already been released. This fixes a crash in the
23485         thread5 test.
23487 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23489         * gc.c, marshal.c, icall.c: register a delegate for finalization
23490         only when the native function pointer has been allocated for it.
23492 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23494         * object.c: cleaned up some code, allocate objects that are
23495         pointer free with the atomic malloc variant. Allocate memory
23496         for static data from the mempool if it's pointer-free.
23497         Allocate the bounds array at the end of the array data, when needed.
23498         * object-internals.h, object.h: move a private function in a private
23499         header.
23500         * class.c: handle missing case in tracking references in fields.
23502 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23504         * class.c, class-internals.h: keep track if a type has
23505         reference fields in either the instance or static fields.
23507 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23509         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23510         and renamed to MonoRuntimeInfo. Added fields to store the expected
23511         framework assembly version. Changed mono_get_framework_version and
23512         mono_get_runtime_version for a single mono_get_runtime_info method.
23513         
23514         * assembly.c: Added method to remap system assembly versions to the
23515         current executing runtime version. Removed old mapping code.
23516         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23517         
23518         * icall.c, reflection.c: Track api changes.
23520 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23522         * loader.c (method_from_memberref): Improve error reporting,
23523         produce the class name instead of the typeref/typedef index. 
23525 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23527         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23529 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23531         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23532         stdcall and charset name mangling.  Reorganize the code and add
23533         some tracing stuff.
23535 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23537         * monodiet.c: More iters!
23539         * marshal.c: Iter usage.
23541         * icall.c: Iter usage.
23543         * object.c: Use iters.
23545         * debug-helpers.c: More iters
23547 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23549         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23550         under win32.
23552 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23554         * mono-debug-debugger.c: use iters
23556         * class.c, class-internals.h: mono_class_setup_events is static
23557         now
23559         * All callers: use iters
23561 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23563         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23564         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23566 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23568         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23570         * marshal.h: Add prototypes for ldfld/stfld_remote.
23572         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23573         this is called during startup.
23574         
23575 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23577         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23578         MonoThreadsSync struct private in monitor.c. Changed the way
23579         MonoThreadsSync is allocated so it's faster and there is no
23580         need to keep track of it with a finalizer and it uses less memory.
23581         This also finally allows us to allocate mono objects as ptrfree when
23582         there are no reference fields.
23584 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23586         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23587         disappearing link to the GC interface and use them to simplify
23588         the gchandles code.
23590 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23592         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23593         stfld_remote which call mono_load/store_field_new. This allows methods
23594         calling ldfld/stfld wrappers to be AOTed.
23596         * console-io.c: Include sys/filio.h under solaris.
23597         
23598         * console-io.c: Include curses.h if needed correctly.
23600 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23601         
23602         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23603         method->klass as well.
23605         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23607         * class.c (mono_class_init): Switch on lazy initialization of 
23608         methods.
23610         * class.c (mono_class_get_finalizer): Handle the case when the 
23611         finalizer is inherited.
23613 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23615         * console-io.c: <curses.h> is needed by term.h on solaris.
23617 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23619         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23620         mono_class_setup_properties where possible. Remove this ftn from
23621         the header file, and make it static.
23623 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23625         * loader.c: Add missing setup_... call.
23627         * class.c: Add missing setup_... calls.
23629         * class.c (mono_class_init): Switch on lazy initialization of 
23630         the generic vtable.
23631         
23632         * class.c (mono_class_init): Fix generics broken by the recent changes.
23634         * monodiet.c (handle_type): Add missing setup_... calls.
23636         * class.c: Back out garbage in previous patch.
23637         
23638         * class.c: Add missing setup_... calls.
23640         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23641         mono_class_setup_methods () if possible.
23643         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23645         * class-internals.h (MonoCachedClassInfo): New structure.
23647         * class.c: Initialize properties and events fields of MonoClass lazily.
23649         * class.c: Add infrastructure for lazily initializing the methods and
23650         vtable fields of MonoClass. Not yet used.
23652         * class.c (mono_class_get_finalizer): New helper function.
23654         * class.c: Add infrastructure for loading some class related data from
23655         an AOT file.
23657         * object.c: Add infrastructure for initializing the vtable from data
23658         in the AOT file.
23660         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23662         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23663         appropriate initialization function before accessing parts of the
23664         MonoClass structure.
23666         * marshal.c: Fix warnings.
23667         
23668         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23670         * mono-debug-debugger.c (get_exception_message): Use 
23671         mono_class_get_method_from_name_flags ().
23673 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23675         * reflection.c, appdomain.c: Replace a few manual searches that
23676         Zoltan missed. (Paolo approved this part of my initial patch).
23678 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23680         * profiler.c: disable recording statistical events at report time.
23682 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23684         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23685         to byteswap arrays of enum values, too (bug #72080).
23687 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23689         * appdomain.c (set_domain_search_path): Allow this to be called if
23690         domain->setup is not yet set.
23692         * loader.c (mono_method_get_index): New helper function.
23694         * loader.c reflection.c: Use mono_method_get_index ().
23696         * class.c (mono_class_get_method_from_name_flags): New helper method.
23698         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23699         this.
23701         * class.c (mono_class_get_cctor): New helper method.
23703         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23704         mono_class_get_method () to look up methods.
23706 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23708         * console-io.c: Fix the build, this should work on Windows.
23710 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23712         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23713         be set to null to keep things valid
23715 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23717         * icall.c: added Console 2.0 icalls.
23718         * Makefile.am: added console-io.[ch]
23719         * console-io.[ch]: internal calls for Console 2.0 API.
23721 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23723         * class.c: make sure we consider all the interfaces
23724         when calculating max_interface_id (bug found by
23725         Jeroen Frijters running ikvm).
23727 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23729         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23730         valuetype fields to null.
23732         * object.c (set_value): Ditto. Fixes #71669.    
23734 2005-01-31  Martin Baulig  <martin@ximian.com>
23736         * metadata.c (mono_metadata_has_generic_params): New public
23737         function; checks whether something is a generic method.
23739 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23741         * appdomain.c: fix infinite recursion when adding assemblies.
23743 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23745         * object.c: Fix small typo to return all items for Environment.
23746         GetCommandLineArgs.
23748 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23750         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23751         reflection.c: more domain and assembly-unload related fixes
23752         and memory leaks plugs.
23754 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23756         * 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.
23758 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23760         * loader.c (mono_method_signature): Make this method lazy
23761         (mono_get_method_from_token): Don't computate the signature here.
23763         Doing this saves quite a bit of memory. I got 90 kb on starting up
23764         monodoc. It should also save some disk reads on startup.
23766         * *: MonoMethod->signature might be NULL now. You *MUST* use
23767         mono_method_signature.
23769 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23771         * object.c (mono_runtime_get_main_args): Return an array from the
23772         current domain here. Fixes #71938.
23774 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23776         * monitor.c: formatting changes to comply with the
23777         mono coding style and remove #ifdefs from the code.
23779 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23781         * metadata.c, private.h: remove some unneeded data
23782         and use a more compact representation for table schemas.
23784 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23786         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23787         to get a better distribution in hash tables.
23788         * *.c: use mono_aligned_addr_hash() where appropriate.
23789         * assembly.c: make var static.
23791 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23793         * domain-internals.h: Put MonoJitInfo on a diet.
23795         * domain.c: Fix a warning.
23797 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23799         * gc.c: rework the gc handles code to reuse handles
23800         when freed.
23802 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23804         * domain.c: fixed long standing bug in mono_string_equal() which
23805         was brought to light with the ldstr changes.
23807 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23809         * reflection.c: Remove warning by adding missing include for marshal.h
23811 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23813         * domain.c, object.c: change the ldstr_table to hold
23814         MonoString* as keys: makes the runtime isinterned lookup
23815         faster and simplifies memory management.
23817 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23819         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23820         possible to add imperative security checks before calling the icall.
23821         * reflection.c: Return security attributes on the original MonoMethod
23822         (and not the wrapped one). This fix permissions on icalls.
23824 2005-01-25  Dick Porter  <dick@ximian.com>
23826         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23827         the check for mktime() support actually test the mktime() return
23828         value.  "Fixes" bug 71682, though the output is still different to
23829         MS.
23831 2005-01-25  Martin Baulig  <martin@ximian.com>
23833         * class.c (mono_class_is_assignable_from): Make this work for
23834         generic instances.
23836 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23838         * marshal.c (mono_string_utf8_to_builder)
23839         (mono_string_builder_to_utf16): We might not have ownership of the
23840         string. In thise case, we need to create a new buffer.
23842         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23843         be null, in which case, use the default capacity.
23845 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23847         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23848         GC events to the profiler.
23850 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23852         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23853         if you don't want the GC to run.
23855 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23857         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23858         start providing a GC API and keeping different implementations in
23859         their own file.
23860         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23862 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23864         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23865         mmap rather than allocating a huge buffer.
23866         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23867         above.
23869 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23871         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23872         and CheckExecutionRights.
23873         * reflection.c|h: Keep the index of the declarative security to be 
23874         used, instead of the pointer, when AOT compiler is used. Also add 
23875         class initialization when requesting demands.
23876         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23877         CheckExecutionRights. Both properties are now FALSE by default, and
23878         unmodifiable, unless the --security option is used.
23880 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23882         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23883         reflection.c: properly refcount images and assemblies, many leaks fixed.
23885 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23887         * threadpool.c: increase the timeout for threads in the thread pool to
23888         10s.  Fixes bug #67159.
23890 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23892         * class-internals.h: Sun's compiler insists on explicit
23893         signed on bit fields to handle then correctly.
23895 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23897         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23898         Make the size of the array fit only the number of invalid path
23899         chars that we have.
23901         * class.c (_mono_class_get): Improve the error reporting when a
23902         class referenced is not found, to assist debugging. 
23904 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23906         * threads.c: fix off-by-one error.
23907         * domain.c: free data allocated in the domain.
23909 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23911         * reflection.c (mono_method_body_get_object): Fill out exception info
23912         as well.
23914         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23915         structure.
23916         
23917 2005-01-19  Martin Baulig  <martin@ximian.com>
23919         * loader.c (mono_get_method_constrained): Make this work again.
23921 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23923         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23924         guint16 to match the managed side.
23926         * reflection.c (mono_reflection_body_get_object): Fill out local
23927         variables array.
23929         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23930         as well.
23932         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23933         'local_var_sig_token'.
23935 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23937         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23938         System.Drawing.
23940         * reflection.c (mono_method_body_get_object): Handle abstract and
23941         runtime methods.
23943 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23945         * marshal.c, loader.c, class-internals.h, reflection.c:
23946         store the emthod data for a wrapper in an array instead of a list.
23948 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23950         * marshal.c: change the code to allocate memory more
23951         conservatively for method wrappers.
23953 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23955         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23956         fields from MonoClass to the marshal info structure where they belong.
23958 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23960         * class.c, object.c, class-internals.h, marshal.c: rearrange
23961         some fields and tweak some types to lower memory usage.
23963 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23965         * threads.c (signal_thread_state_change): Handle the case when the
23966         target thread is the current thread.
23968         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23970         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23971         emit_ptr_to_object_conv. 
23973         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23974         marshalling. Fixes #71352.
23976 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23978         * metadata.h, blob.h: move table enum to blob.h so it can be included
23979         in any header.
23980         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23981         cut the size of MonoImage/MonoDynamicImage.
23983 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23985         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23987 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23989         * reflection.c, reflection.h, icall.c: add a function to check
23990         if an attribute type is defined for a metadata object.
23992 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23994         * object-internals.h: Added some needed fields from StringBuilder class.
23995         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23997 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23999         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24000         threads before shutting down the runtime.
24002         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24004 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24006         * object-internal.h, threads.c: implement stacksize and 
24007         parameterized thread start functionality (requires
24008         matching corlib). Marked broken code for later removal.
24010 2005-01-12  Martin Baulig  <martin@ximian.com>
24012         * class-internals.h (MonoGenericClass): Moved the `initialized'
24013         flag to MonoDynamicGenericClass, removed `init_pending'.
24014         (MonoGenericInst): Added `is_reference' flag.
24016 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24018         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24019         inside the MSDOS header. Fixes #71201.
24021         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24022         gc thread.
24023         (mono_domain_finalize): Ditto.
24025 2005-01-12  Martin Baulig  <martin@ximian.com>
24027         * class.c (mono_get_shared_generic_class): Use the cache for
24028         non-dynamic generic classes.
24030         * class-internals.h (mono_class_create_generic_2): Removed
24031         function prototype, this function is now static inside class.c.
24033         * class.c (mono_class_create_generic_2): Made this static, only
24034         call it from mono_class_init() and mono_class_setup_parent().
24035         (collect_implemented_interfaces_aux): Call mono_class_init() on
24036         the interfaces we collect.
24037         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24039 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24041         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24042         it a real thread handle.
24044         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24045         MonoJitExceptionInfo, since each catch clause needs its own variable.
24046         
24047 2005-01-11  Dick Porter  <dick@ximian.com>
24049         * image.c (mono_pe_file_open): New variant on mono_image_open()
24050         that does not set up the CLI metadata; used for FileVersionInfo so
24051         it can get the data for windows binaries too.
24052         
24053         * process.c (process_read_string_block): Don't read off the end of
24054         the StringTable block.
24056         These both fix bug 70766.
24058 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24060         * gc.c: set some fields to NULL at GC cleanup time.
24061         * threads.c: if we quit the main thread, call exit ().
24063 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24065         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24067 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24069         * threads.h, threads.c, object.c: added accessor and settor for
24070         main_thread. Handle it specially when exiting from it: wait
24071         for other foreground threads to exit.
24073 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24075         * process.c, verify.c: remove some bloat.
24077 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24079         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24080         the calling convention to cdecl under win32.
24082 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24084         * object.c (mono_object_get_size): New function to get the size of
24085         an object instance.
24087         * profiler.c (simple_allocation): Use above.
24089 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24091         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24092         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24093         get an appdomain by it's id and we can't assume the root's id is 0).
24094         * domain-internals.h: Change the function prototype to match.
24095         * icall.c: Change the icall table for AppDomain.
24097 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24099         * locales.c (string_invariant_compare_char): Only compute
24100         GUnicodeTypes in the case where we need them.  Test for ordinality
24101         first and return if so.
24103         From the commit:
24105                 /*
24106                  * FIXME: here we must use the information from c1type and c2type
24107                  * to find out the proper collation, even on the InvariantCulture, the
24108                  * sorting is not done by computing the unicode values, but their
24109                  * actual sort order.
24110                  */
24112 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24114         * loader.c: for P/Invoke methods, allow the "Internal" shared
24115         library name to refer to the calling process symbol namespace.
24117 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24119         * Makefile.am: Add the security manager to the build.
24120         * security-manager.c|h: New. Initialization of the security manager.
24122 2005-01-07  Dick Porter  <dick@ximian.com>
24124         * threads.c: 
24125         * monitor.c: Update thread state during Monitor and WaitHandle
24126         waits.  Fixes bug 71031.
24128 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24130         * reflection.c (property_encode_signature): Correctly handle when the
24131         property has no methods.
24133 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24135         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24136         
24137         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24138         fields from mb, not rmb. Fixes #71017.
24140         * marshal.c (emit_ptr_to_str_conv): Add support for 
24141         ByValTStr -> string conversion. Fixes #71015.
24143         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24145         * mempool.c (mono_mempool_contains_addr): New helper function.
24147 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24149         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24150         HasSematics encoded fields.
24151         
24152         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24153         invalid string marshalling.
24155         * metadata.c: Fix warnings.
24156         
24157 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24159         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24160         profiler support.
24162 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24164         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24165         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24166         tests.
24168 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24170         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24171         so methods containing these can be AOTed.
24173 2005-01-03  Martin Baulig  <martin@ximian.com>
24175         * loader.c (find_method): Removed the hack for generic instances.
24176         (method_from_memberref): If our parent is a generic instance, pass
24177         its generic type definition to find_method() and then inflate the
24178         method.
24179         (mono_get_method_constrained): Pass the generic type definition to
24180         find_method() and inflate the method later.
24182         * class-internals.h (MonoStats): Added `generic_class_count'.
24184         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24185         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24187         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24188         generic type definitions.
24190 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24192         * loader.c icall.c: Fix warnings.
24194 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24196         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24197         blittable types. Fixes #70864.
24199 2004-12-29  Martin Baulig  <martin@ximian.com>
24201         * icall.c
24202         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24204         * reflection.c (mono_method_get_object): Create a
24205         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24206         call mono_get_inflated_method().
24208         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24210 2004-12-27  Martin Baulig  <martin@ximian.com>
24212         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24213         (MonoMethodInflated): Added `inflated' field.
24215         * class.c (mono_class_inflate_generic_method): Don't really
24216         inflate the method here; just set the `is_inflated' flag in the
24217         MonoMethod.
24218         (mono_class_get_inflated_method): Actually inflate the method here
24219         if it's not already inflated; we use the MonoMethodInflated's new
24220         `inflated' field as a cache.
24222 2004-12-26  Martin Baulig  <martin@ximian.com>
24224         * class.c
24225         (inflate_generic_class): Moved some code out of inflate_generic_type().
24226         (mono_class_inflate_generic_method): If we're already inflated,
24227         inflate the context and use the declaring method; ie. make sure
24228         the declaring method of an inflated method is always the generic
24229         method definition.
24230         (mono_class_create_from_typedef): Create
24231         `class->generic_container->context->gclass'.
24233 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24235         * metadata-internals.h, marshal.c, reflection.c: More
24236         MonoGHashTable->GHashTable.
24238         * domain-internals.h, class.c: Change MonoGHashTable's into
24239         GHashTables for some cases where no gc stuff is used
24241         All users: update apis
24243 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24245         * metadata.c (builtin_types): Make this `const'. Makes this get
24246         put into the shareable section.
24247         (mono_metadata_init): Casts to make gcc happy.
24249 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24251         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24253 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24255         * icall.c: Added an internal call to retrieve the position and length
24256         of assembly-level declarative security attributes (RequestMinimum, 
24257         RequestOptional and RequestRefuse). This is used by the Assembly class
24258         to re-create the corresponding permission sets.
24260 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24262         * marshal.c: fix the stelemref wrapper to be type correct
24263         (and faster).
24265 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24267         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24268         to do key & 0x7fffffff. Hashtable already does this. It just
24269         results in longer code.
24271 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24273         * appdomain.c: Bump corlib version.
24274         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24275         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24276         * reflection.c|h: Add functions to get declarative security infos
24277         (blob position and length) for assemblies, classes and methods.
24279 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24281         * reflection.c: sort the constant table (bug #70693).
24283 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24285         * object-internals.h, threads.c, domain.c: add accessors for
24286         the MonoThread and MonoDomain tls keys.
24288 2004-12-18  Martin Baulig  <martin@ximian.com>
24290         * class.c (inflate_generic_type): If we're inflating a generic
24291         instance, set `ngclass->context->container = context->container';
24292         ie. the container we inflated into.
24294         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24295         inflate_generic_type() changes.
24297 2004-12-17  Martin Baulig  <martin@ximian.com>
24299         * class-internals.h
24300         (MonoGenericClass): Replaced `MonoType *generic_type' with
24301         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24302         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24303         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24305 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24307         * exception.c (mono_exception_from_token): New helper function.
24309 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24311         * assembly.c (mono_assembly_load_with_partial_name): Call 
24312         mono_assembly_loaded before invoking the preload hooks. Fixes
24313         #70564.
24315         * object-internals.h (MonoThread): Change culture_info and 
24316         ui_culture_info into an array.
24318         * threads.c: Cache culture info objects from more than one appdomain.
24320         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24321         current UI culture.
24323 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24325         * threads.h threads.c appdomain.c: Clear the culture_info field of
24326         all threads during unloading if they point to an object in the dying
24327         appdomain.
24329 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24331         * culture-info.h (TextInfoEntry): New struct
24332         * object-internals.h: sync with managed
24333         * locales.c: fill the `text_info_data' field
24334         * culture-info-tables.h: update
24336 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24338         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24339         collector.
24341 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24343         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24344         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24346 2004-12-12  Martin Baulig  <martin@ximian.com>
24348         * mono-debug-debugger.c (write_type): If we're an enum and the
24349         builtin types have already been initialized, call mono_class_init().
24351 2004-12-11  Martin Baulig  <martin@ximian.com>
24353         * metadata.c (mono_metadata_load_generic_params): Added
24354         `MonoGenericContainer *parent_container' argument; automatically
24355         compute `container->is_method'; pass the correct owner to
24356         get_constraints().      
24358         * reflection.c (compare_genericparam): Sort the GenericParam table
24359         according to increasing owners. 
24361 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24363         * profiler.c: allow disabling the default profiler.
24365 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24367         * decimal.c, icall.c: allow disabling System.Decimal support.
24369 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24371         * reflection.c: Add support for null attribute arguments.
24373 2004-12-09  Martin Baulig  <martin@ximian.com>
24375         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24376         names to get rid of compiler warnings.
24378 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24380         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24381         mono_marshal_load_type_info (). Fixes #69625.
24382         (mono_marshal_get_ptr_to_struct): Likewise.
24384 2004-12-08  Martin Baulig  <martin@ximian.com>
24386         * mono-debug.h: Bumped version number to 47.
24388         * mono-debug-debugger.c
24389         (mono_debugger_event_handler, mono_debugger_event): Take two
24390         guint64 arguments insteed of a gpointer and a guint32.  
24392 2004-12-08  Martin Baulig  <martin@ximian.com>
24394         * debug-mono-symfile.h
24395         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24396         `address' to `native_offset'.
24398 2004-12-08  Martin Baulig  <martin@ximian.com>
24400         * class.c (mono_class_create_from_typespec): Only inflate if we
24401         either have `context->gclass' or `context->gmethod'.
24403 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24405         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24407         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24409         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24411         * reflection.c (mono_assembly_get_object): Remove the workaround put
24412         in for the release.
24413         
24414         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24416         * appdomain.c: Bump corlib version.
24418         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24419         be visible in other appdomains.
24421 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24423         * threads.c: Interlocked inc and dec for longs were messed up,
24424         use a KISS based impl for this. Fixes 70234
24426 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24428         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24430 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24432         * icall.c: fix to follow policy not to allow struct
24433         arguments in icalls.
24435 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24437         * process.c: make the patch that handles spaces in file paths work
24438         on mono/windows too.
24440 2004-12-06  Martin Baulig  <martin@ximian.com>
24442         * class.c (mono_class_create_generic): Call
24443         mono_class_setup_supertypes() if we're dynamic.
24444         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24446 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24448         * object-internals.h: Add new fields to MonoThread.
24450         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24452         * icall.c threads-types.h threads.c: Add new icalls.
24454         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24456         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24457         managed side.
24459         * appdomain.c: Bump corlib version.
24461         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24462         internal assemblies. Fixes #69181.
24464 2004-12-05  Martin Baulig  <martin@ximian.com>
24466         * class.c (mono_class_inflate_generic_signature): Make this a
24467         no-op if `context' is NULL or we don't have any type parameters;
24468         also copy `sentinelpos'.        
24470 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24472         * image.c: Add unbox_wrapper_cache.
24474         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24476         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24477         function generator.
24478         
24479         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24480         Fixes #70173.
24482         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24483         
24484 2004-12-04  Martin Baulig  <martin@ximian.com>
24486         * loader.c (mono_method_get_signature_full): New public function;
24487         like mono_method_get_signature(), but with an additional
24488         `MonoGenericContext *' argument.
24490         * class.c (mono_class_inflate_generic_signature): Formerly known
24491         as inflate_generic_signature(); make this public.
24493 2004-12-04  Martin Baulig  <martin@ximian.com>
24495         * metadata.c
24496         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24497         instead of a `MonoGenericContainer *'.  
24498         (mono_metadata_parse_array_full): Likewise.
24499         (mono_metadata_parse_signature_full): Likewise.
24500         (mono_metadata_parse_method_signature_full): Likewise.
24501         (mono_metadata_parse_generic_inst): Likewise.
24502         (mono_metadata_parse_generic_param): Likewise.
24503         (mono_metadata_parse_mh_full): Likewise.
24504         (mono_type_create_from_typespec_full): Likewise.
24506 2004-12-03  Martin Baulig  <martin@ximian.com>
24508         * class-internals.h (MonoGenericContainer): Replaced the
24509         `MonoGenericContext * pointer with a `MonoGenericContext'
24510         structure and made it the first element.
24512 2004-12-03  Martin Baulig  <martin@ximian.com>
24514         * class.c
24515         (inflate_generic_type): Set the `context->container' when creating
24516         a new MonoGenericContext.
24517         (mono_class_inflate_generic_method): Likewise.
24518         (mono_class_create_from_typespec): Just use `context->container'
24519         to get the container.
24521         * loader.c (method_from_methodspec): Set `context->parent' from
24522         `context->container' - and if that's a method container, use its
24523         parent.  Also set the `context->container' when creating a new
24524         MonoGenericContext.
24525         (mono_get_method_from_token): Use just `context->container' to get
24526         the container.
24528         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24529         `gclass->context->container'.
24531         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24532         the `context->container' when creating a new MonoGenericContext.
24534 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24536         * reflection.c (compare_genericparam): Sort params with identical
24537         owner by their number. Fixes gen-111 on sparc.
24539 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24541         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24542         around the domain changes.
24544         * appdomain.c (mono_domain_unload): Handle the case when the thread
24545         calling Unload is itself being aborted during unloading. Fixes #70022.
24547         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24549         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24550         checkpoint_func as an icall so it gets a wrapper.
24551         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24552         in the cross-appdomain wrappers too.
24554         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24556         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24558         * reflection.c: Fix some memory leaks.
24559         
24560 2004-12-02  Martin Baulig  <martin@ximian.com>
24562         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24564         * metadata.c (generic_class_cache): New static hashtable.
24565         (mono_metadata_lookup_generic_class): New public method.
24567 2004-12-02  Martin Baulig  <martin@ximian.com>
24569         * class.c (mono_class_create_from_typedef): Call
24570         mono_class_setup_parent() and mono_class_create_mono_type() before
24571         parsing the interfaces.
24573 2004-12-02  Martin Baulig  <martin@ximian.com>
24575         * metadata.c (generic_inst_cache): New static hashtable.
24576         (mono_metadata_lookup_generic_inst): New public function.
24577         (mono_metadata_inflate_generic_inst): New public function.
24578         (mono_metadata_parse_generic_inst): New public function.
24579         (do_mono_metadata_parse_generic_class): Use the new
24580         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24581         since this'll also use the cache.
24583         * reflection.c (mono_reflection_bind_generic_method_parameters):
24584         Use mono_metadata_lookup_generic_inst() to use the new cache.
24586         * class.c (inflate_mono_type): Use
24587         mono_metadata_inflate_generic_inst() to inflate a generic
24588         instance; this'll also use the new cache.
24590         * loader.c (method_from_methodspec): Use
24591         mono_metadata_parse_generic_inst() and
24592         mono_metadata_inflate_generic_inst() rather than parsing it
24593         manually, so we can use the new cache.
24595 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24597         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24598         the wait times out.
24600 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24602         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24603         iter->args based on whether parameters are passed in registers (i.e.
24604         MONO_ARCH_REGPARMS is defined)
24606 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24608         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24609         the exception message. Fixes #70070.
24610         (method_from_methodspec): Fix warnings.
24612 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24614         * process.c: (complete_path) return the path quoted
24616 2004-12-01  Martin Baulig  <martin@ximian.com>
24618         * class-internals.h (MonoGenericInst): New structure.
24619         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24620         `is_open' with `MonoGenericInst *inst'.
24621         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24622         `is_open' with `MonoGenericInst *inst'.
24624 2004-11-30  Martin Baulig  <martin@ximian.com>
24626         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24628         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24629         to `generic_class_cache'.
24631         * metadata.c
24632         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24633         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24634         (mono_generic_inst_is_valuetype): Renamed to
24635         mono_generic_class_is_valuetype().
24637         * class-internals.h
24638         (MonoGenericInst): Renamed to MonoGenericClass.
24639         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24640         (MonoClass): Renamed `generic_inst' to `generic_class'.
24641         (MonoGenericContext): Renamed `ginst' to `gclass'.
24643         * object-internals.h
24644         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24646         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24647         mono_reflection_generic_class_initialize().
24649         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24650         now known as "System.Reflection.MonoGenericClass".
24651         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24653 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24655         * class-internals.h: Added a flag field to MonoClass to cache the
24656         declarative security attributes actions associated with the class.
24657         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24658         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24659         applicable to the JITted method.
24660         * reflection.c|h: Added functions to extract (as flags) which security
24661         actions are available (declaratively) for a method, class or assembly.
24662         * metadata.c|h: Added functions to search the declarative security
24663         table in the metadata.
24664         
24665 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24667         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24668         EXPORTEDTYPES are already in the class name cache, so there is no
24669         need to add extra code here to look at them. Just removes a bit of
24670         cruft.
24672         (ves_icall_System_Environment_get_TickCount): No need for #if
24673         WINDOWS. We already have the code in io-layer.
24675 2004-11-28  Martin Baulig  <martin@ximian.com>
24677         * loader.c
24678         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24679         Fixes gen-112.cs.
24681 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24683         * assembly.c (do_mono_assembly_open): Instead of having a
24684         conditional WITH_BUNDLE, incorporate support for bundles here, by
24685         having a global `bundles' variable holding a pointer to the actual
24686         bundles. 
24688         (mono_register_bundled_assemblies): New API call used by the
24689         bundle code. 
24691         See mkbundle.1 for details.
24692         
24693 2004-11-27  Martin Baulig  <martin@ximian.com>
24695         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24696         the vtable for generic methods.
24698 2004-11-26  Martin Baulig  <martin@ximian.com>
24700         * metadata.c
24701         (mono_metadata_generic_method_hash): New public function.
24702         (mono_metadata_generic_method_equal): Likewise.
24704         * class-internals.h
24705         (MonoGenericContainer): Added `GHashTable *method_hash'.
24707         * reflection.c (ReflectionMethodBuilder): Added
24708         `MonoGenericContainer *generic_container'.
24709         (reflection_methodbuilder_to_mono_method): Don't create a new
24710         MonoGenericContainer each time we're called.
24711         (mono_reflection_bind_generic_method_parameters): Use
24712         `container->method_hash' to cache the results so we don't create a
24713         different method if we're called several times with the same
24714         arguments.
24716         * loader.c (method_from_methodspec): Use the new
24717         `container->method_hash' here, too.
24719 2004-11-26  Martin Baulig  <martin@ximian.com>
24721         * class.c (inflate_generic_signature): Correctly compute
24722         `res->has_type_parameters'.
24723         (mono_class_vtable): Use the `has_type_parameters' flag to
24724         determine whether we're a generic method.
24726         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24728 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24730         * object.c (mono_runtime_run_main): Fix a small memory leak.
24732 2004-11-25  Martin Baulig  <martin@ximian.com>
24734         * class.c (set_generic_param_owner): Fixed the loop.
24736 2004-11-25  Martin Baulig  <martin@ximian.com>
24738         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24739         generic methods.
24741 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24743         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24744         names. Fixes #69787.
24746 2004-11-24  Martin Baulig  <martin@ximian.com>
24748         * class.c (mono_class_create_generic_2): If we don't have a
24749         `ginst->parent', inflate `gklass->parent' to get our parent.
24751 2004-11-24  Martin Baulig  <martin@ximian.com>
24753         * reflection.c (compare_genericparam): Correctly sort the
24754         GenericParam table; fixes #69779.
24756 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24758         * reflection.c: When writing a PE file, don't create a huge
24759         buffer in memory. Just write the arrays we have to the file.
24760         This reduces memory usage.
24762         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24763         globally.
24765 2004-11-17  Martin Baulig  <martin@ximian.com>
24767         * class.c (mono_class_init): Don't setup `class->parent' for
24768         dynamic instances; moved this to mono_class_generic_2().
24769         (mono_class_create_generic): Also set `klass->inited' for dynamic
24770         generic instances.
24771         (mono_class_create_generic_2): Don't do anything for dynamic
24772         generic instances.  Set `klass->parent' here and also call
24773         mono_class_setup_parent() here. 
24775         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24776         `MonoType *parent' argument; set `ginst->parent' before calling
24777         mono_class_create_generic_2(), so we set the correct parent.
24779 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24781         * reflection.c: allow getting attributes from ModuleBuilder
24782         (used by ikvm).
24784 2004-11-17  Martin Baulig  <martin@ximian.com>
24786         * class.c (mono_class_create_from_typedef): If a type parameter is
24787         inherited from an outer class, set its owner to that class.
24789 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24791         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24792           for (int*) written size. This fixes bug #69592.
24794 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24796         * icall.c: Added IsAuthenticodePresnet internal call.
24797         * image.c|h: New function that check a MonoImage for an Authenticode
24798         signature in the certificate PE data directory.
24799         * security.c|h: New internal call to ask the runtime if an 
24800         Authenticode signature seems referenced in the PE header.
24802 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24804         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24806         * reflection.c (mono_image_create_pefile): Free the assembly streams
24807         after writing out the assembly file.
24809         * object.c (mono_runtime_run_main): Fix small memory leak.
24811         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24812         property access modifiers. Fixes #69389.
24814 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24816         * domain.c, object.c, object-internals.h, domain-internals.h,
24817         object.h, marshal.c: keep dynamic code info per domain.
24819 2004-11-15  Martin Baulig  <martin@ximian.com>
24821         * class.c (mono_type_get_name_recurse): Put type arguments in
24822         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24823         see bug #68387.
24825 2004-11-15  Martin Baulig  <martin@ximian.com>
24827         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24828         (mono_class_setup_vtable): When computing `the_cname' for a
24829         generic instance, don't include the namespace since we'd otherwise
24830         add it twice.
24832 2004-11-15  Martin Baulig  <martin@ximian.com>
24834         * class.c (mono_class_create_generic): Changed return type to void.
24835         (mono_class_create_generic_2): New public function; setup
24836         `class->method', `class->field' and `class->interfaces' here
24837         instead of in mono_class_init().
24839         * class.h (mono_class_create_generic): Moved to class-internals.h.
24841 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24843         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24844         rather than writing to memory, write to this file. Right now,
24845         we are just writting into a buffer, and copying that. However
24846         we can avoid the buffer later.
24848         (mono_dynamic_stream_reset): new function
24850         * icall.c, object-internals.h: update for the above.
24852 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24854         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24855         have been using gc'd memory. First it is slower, unlikely
24856         the comment in the source code said, secondly, it increases
24857         our footprint to do it in the gc.
24859         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24860         the method so that it does not have to copy to managed code.
24862 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24864         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24866 2004-11-12  Martin Baulig  <martin@localhost>
24868         * reflection.c (mono_image_create_token): Allow generic method
24869         definitions here, since they may appear in an `.override'; see
24870         gen-98/gen-99 for an example.
24872 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24874         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24875         #69365.
24877         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24878         descriptive.
24880 2004-11-11  Martin Baulig  <martin@ximian.com>
24882         * class.c (mono_class_setup_vtable): In an explicit interface
24883         implementation, the method name now includes the arity.
24885 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24887         * object.c (mono_array_full_copy): Fix warning.
24889 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24891         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24892         mono_class_get_method_from_name() instead.
24893         
24894         * class-internals.h: Added two new types of wrappers. 
24895         Added MonoRemotingTarget enum. Added new trampoline function type, which
24896         takes an additional MonoRemotingTarget value as parameter, so it is
24897         possible to request a trampoline for a specific target.
24898         
24899         * class.c: Added new mono_class_get_method_from_name() method.
24900         
24901         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24902         general remoting sinks and one specific for cross domain calls.
24903         
24904         * debug-helpers.c: Added new wrapper names.
24905         
24906         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24907         of a remote class.
24908         
24909         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24910         
24911         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24912         with several other methods (mono_marshal_get_xappdomain_dispatch,
24913         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24914         and others) can generate a fast remoting wrapper for cross domain calls.
24915         More information can be found in docs/remoting.
24916         Other changes: Removed mono_find_method_by_name, and used
24917         mono_class_get_method_from_name instead.
24918         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24919         is stored in the remoting invoke hashtable.
24920         
24921         * marshal.h: published the new method for getting the xdomain wrapper,
24922         and also added a method for getting the adequate wrapper for a given
24923         method and target.
24924         
24925         * object-internals.h, object.c: Added a couple of methods for capying and
24926         cloning arrays.
24927         Modified mono_install_remoting_trampoline, which takes the new remoting
24928         trampoline that has a remoting target as parameter.
24929         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24930         will return the most suitable vtable for the target.
24931         Added mono_remote_class_vtable, which returns the vtable of a remote class
24932         (which can be the normal remoting vtable or the xdomain vtable).
24933         
24934         * threads.c: the xdomain invoke and dispatch wrappers must also be
24935         protected against interruptions.
24937 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24939         * icall.c: use memmove in BlockCopyInternal when the source and
24940         destination arrays are the same.
24942 2004-11-09  Martin Baulig  <martin@ximian.com>
24944         * class-internals.h (MonoGenericContainer): Removed `method' and
24945         `signature', replaced them with `is_method' and `is_signature'
24946         flags.  Added `context'.
24948         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24949         instead of a `MonoGenericContainer *'.
24951         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24952         for dynamic type parameters.
24953         (mono_metadata_load_generic_params): Setup `container->context'.
24955         * reflection.c (mono_reflection_setup_generic_class): Setup
24956         `tb->generic_container->context'.
24957         (do_mono_reflection_bind_generic_parameters): Use
24958         mono_class_inflate_generic_type() to correctly inflate types,
24959         rather than using our own hack just for MONO_TYPE_VAR.
24961 2004-11-09  Martin Baulig  <martin@ximian.com>
24963         * class.c (mono_class_inflate_generic_method): Small fix; don't
24964         crash here.
24966         * icall.c
24967         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24968         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24969         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24970         (ves_icall_Type_BindGenericParameters): Likewise.
24971         (ves_icall_Type_get_IsGenericInstance): Likewise.
24972         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24973         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24974         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24975         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24977 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24979         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24980         assembly versions and public key tokens. Fixes #69113.
24982 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24984         * metadata.c: fix bug introduced with the type cache changes
24985         on 2004-11-06.
24987 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24989         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24990         the MonoClass pointer instead of the token in exception clauses.
24991         * reflection.c: updates for the above and make the code not depend
24992         on the structure of MonoExceptionClause.
24994 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24996         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24997         Add support for dynamic assemblies. Fixes #69114.
24999         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25001 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25003         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25004         since most only those methods use it. the code member of
25005         MonoMethodPInvoke was dead, so that can be removed too. Also,
25006         remove inline_count (again, not used), and move slot so that it
25007         can share bits with some other flags. This saves 8 bytes in the
25008         structure and gives us about 50 kb back for mcs helloworld.cs
25010         * *.[ch]: Do naming changes for the above.
25012         * loader.c (mono_method_get_header): Lazily init the header
25013         on first access.
25014         (mono_get_method_from_token): don't init the header here
25015         (mono_free_method): the header may never be allocated
25017         Overall, this saves 150 kb of unmanaged allocations
25018         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25019         memory at runtime.
25020         
25021         * loader.c, loader.h (mono_method_get_header): new accessor.
25023         * *.[ch]: use the above method. Prepares us to lazily load
25024         the header.
25026         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25027         three warnings, which are actual bugs (see 69206).
25029         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25030         unused. Saves a cool 4 bytes / method.
25032 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25034         * metadata.c (builtin_types): Add types for System.Object here.
25035         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25036         for a class or valuetype from klass->this_arg or klass->byval_arg.
25038         On mcs for a hello world, this gets us down from 21836 MonoType's
25039         to 14560.
25041         (mono_metadata_free_type): Account for the above change.
25043 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25045         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25046         exception instead of asserting if name is null.
25047         (ves_icall_System_AppDomain_GetData): Ditto.
25049 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25051         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25052         EnumBuilder.
25054         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25055         Return NULL when the domain does not have entry_assembly set.
25057         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25058         Add a 'resource_modules' argument.
25059         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25061         * reflection.c (mono_reflection_create_runtime_class): Move setting
25062         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25063         for enums too.
25065         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25066         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25067         Throw an ArgumentNullException if 'ptr' is null.
25069         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25070         assemblies here. Fixes #69020.
25072 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25074         * reflection.c (build_compressed_metadata): Fix the previous patch for
25075         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25076         the stack.
25078 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25080         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25081         the cultures is false. Fixes #69090.
25083         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25084         detected by valgrind.
25085         
25086         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25087         TypeResolve multiple times for the same type. Fixes #65577.
25089 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25091         * marshal.c: Avoid using ldftn to call managed functions. It is
25092         much slower than just a call.
25094         * reflection.c (mono_module_get_object): free the basename we
25095         allocate here from glib.
25096         
25097         * reflection.c (ensure_runtime_vtable): make sure to free
25098         overrides.  Also, we were allocating an array of MonoMethod not an
25099         array of MonoMethod*.
25101         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25103         * image.c (mono_image_close): free image->guid here.
25105 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25107         * reflection.c: Fix some spec conformance issues with the PE file
25108         structures so mcs compiled apps run on the Net 2.0 beta.
25110 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25112         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25113         Implement this. Fixes #67264.
25115         * debug-helpers.h debug-helpers.c marshal.c: Move 
25116         mono_find_method_by_name to debug-helpers.c.
25118 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25120         * object.c (mono_release_type_locks): type_initialization_hash is
25121         a GHashTable.
25123         * reflection.c object.c object-internals.h: Fix warnings.
25125         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25126         without accessors. Fixes #61561.
25128         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25129         application base from the root domain if not set. Fixes #65641.
25130         (mono_runtime_init): Fix warning.
25132 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25134         * appdomain.c: call mono_thread_pool_init.
25135         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25136         of worker threads based on the number of CPUs and the environment
25137         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25138         for non-windows (windows) systems.
25140 2004-10-27  Chris Toshok  <toshok@ximian.com>
25142         * mono-debug-debugger.c (write_class): don't call mono_class_init
25143         here, as even with the check for (!klass->init_pending), we get
25144         into a situation where we're hitting cycles in class
25145         initialization.  Fixes #68816.
25147 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25149         * image.c: Avoid overwriting values in the loaded_images_hash when an
25150         assembly is loaded multiple times. Fixes #61152.
25152         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25153         so multiple satellite assemblies for the same name can be loaded.
25154         Fixes #68259.
25156         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25157         not NULL.
25159         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25160         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25162         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25163         pending finalizers are not invoked after the appdomain has been 
25164         unloaded. Fixes #67862.
25166 2004-10-22  Martin Baulig  <martin@ximian.com>
25168         * mono-debug-debugger.c
25169         (mono_debugger_runtime_invoke): Don't box valuetypes.
25171 2004-10-22  Chris Toshok  <toshok@ximian.com>
25173         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25174         don't hide private methods.
25176 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25178         * icall.c: Allows the runtime to "share" (when known) the public key
25179         token of an assembly. This avoid the need to recalculate the token 
25180         (from the public key) in managed code.
25182 2004-10-21  Chris Toshok  <toshok@ximian.com>
25184         * debug-helpers.c (append_class_name): argh, revert last patch.
25185         
25186 2004-10-21  Chris Toshok  <toshok@ximian.com>
25188         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25189         not '/', so that it matches what the debugger uses to look up
25190         methods.
25192 2004-10-21  Martin Baulig  <martin@ximian.com>
25194         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25195         public method; this is called each time an exception is thrown and
25196         allows the debugger to use exception catch points.
25198 2004-10-21  Martin Baulig  <martin@ximian.com>
25200         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25201         the stack pointer and the exception object in some struct and pass
25202         that to the debugger.
25204 2004-10-21  Chris Toshok  <toshok@ximian.com>
25206         * mono-debug-debugger.c (do_write_class): add instance/static
25207         event support.  We don't expose "raise" or "other" yet.
25208         (event_is_static): new method.
25210 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25212         * mono-debug-debugger.c
25213         (mono_debugger_handle_exception): Remove
25214         bogus return value for fussy compilers.
25216 2004-10-20  Martin Baulig  <martin@ximian.com>
25218         * mono-debug-debugger.c
25219         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25220         (mono_debugger_handled_exception): Likewise.
25222 2004-10-20  Martin Baulig  <martin@ximian.com>
25224         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25225         MONO_DEBUGGER_EVENT_EXCEPTION.
25227         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25228         public function to send the debugger a notification for an
25229         exception and inform it about a catch/finally clause.
25231 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25233         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25234         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25235         fix 2.95 build. 
25237         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25239 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25241         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25242         marshalled as [In,Out]. Fixes #58325.
25244 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25246         * reflection.c (mono_method_body_get_object): Implement some fields.
25248 2004-10-12  Martin Baulig  <martin@ximian.com>
25250         * reflection.c (mono_reflection_bind_generic_parameters): Small
25251         fix, correctly retrieve our parent from a generic instance.
25253 2004-10-12  Martin Baulig  <martin@ximian.com>
25255         * metadata.c (mono_metadata_generic_param_equal): We always have
25256         an owner.
25258         * class.c
25259         (mono_class_from_generic_parameter): We need to have an owner.
25260         (my_mono_class_from_generic_parameter): Likewise.
25262         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25263         mono_reflection_create_generic_class() and added a new
25264         mono_reflection_setup_generic_class().  
25265         (mono_reflection_initialize_generic_param): If we're a nested
25266         generic type and inherited from the containing class, set our
25267         owner to the outer class.
25269 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25271         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25273         * reflection.c (mono_method_body_get_object): New function to create
25274         a MethodBody object.
25276         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25278 2004-10-11  Martin Baulig  <martin@ximian.com>
25280         * metadata.c (_mono_metadata_type_equal): Renamed to
25281         do_mono_metadata_type_equal() and made static.
25283 2004-10-11  Martin Baulig  <martin@ximian.com>
25285         * appdomain.c: Bump corlib version number to 28.
25287 2004-10-10  Martin Baulig  <martin@ximian.com>
25289         * class-internals.h
25290         (MonoGenericInst): Added `MonoGenericContainer *container'.
25291         (MonoGenericMethod): Likewise.
25292         (MonoGenericContext): Likewise.
25293         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25295         * metadata.c
25296         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25297         (do_mono_metadata_parse_generic_inst): Likewise.
25298         (mono_metadata_parse_type_full): New public method.  This is the actual
25299         mono_metadata_parse_type() implementation - with an additional
25300         `MonoGenericContainer *' argument.
25301         (mono_metadata_parse_array_full): Likewise.
25302         (mono_metadata_parse_signature_full): Likewise.
25303         (mono_metadata_parse_method_signature_full): Likewise.
25304         (mono_metadata_parse_mh_full): Likewise.
25305         (mono_type_create_from_typespec): Likewise.
25306         (mono_metadata_interfaces_from_typedef_full): New public method;
25307         this is similar to the other _full() methods, but we take a
25308         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25309         (mono_metadata_parse_generic_param): Take an additional
25310         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25311         from that container.
25312         (mono_metadata_generic_param_equal): New static method to compare
25313         two type parameters.
25314         (_mono_metadata_type_equal): New static method; takes an
25315         additional `gboolean signature_only' argument - if true, we don't
25316         compare the owners of generic parameters.
25317         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25318         with a TRUE argument - do a signature-only comparision.
25320         * loader.c: Use the new _full() methods and pass the
25321         MonoGenericContainer to them.
25323         * object-internals.h (MonoReflectionTypeBuilder): Added
25324         `MonoGenericContainer *generic_container' field.
25325         (MonoReflectionMethodBuilder): Likewise.
25327 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25329         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25330         case initial images of dynamic assemblies.
25332         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25334         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25336         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25337         length of event->other array.
25338         (typebuilder_setup_events): Ditto.
25340         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25341         'assembly_by_name' and add an 'assemblies' list.
25343         * assembly.h assembly.c: Add a new search hook for determining whenever
25344         an assembly is already loaded. Use this instead of searching in the
25345         loaded_assemblies list.
25347         * domain.c appdomain.c: Implement the new search hook so loaded 
25348         assemblies are now scoped by appdomain. Fixes #67727.
25350 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25352         * threads.c (mono_thread_attach): Initialize synch_lock field so
25353         mono_thread_detach works again.
25355         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25356         'lib' too. Fixes #63130.
25358 2004-10-06  Jackson Harper  <jackson@ximian.com>
25360         * culture-info-tables.h: regenerated.
25362 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25364         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25365         implemented by other interfaces in the result. Fixes #65764.
25366         
25367         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25368         Handle unloadable modules without crashing.
25370         * image.c (load_modules): Revert the previous patch since modules must
25371         have a fixed index inside the array.
25372         
25373         * image.c (load_modules): Don't include native modules in the modules
25374         array.
25376 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25378         * reflection.h: Add param_defaults field.
25380         * reflection.c: Add support for parameter defaults in dynamic methods.
25381         Fixes #64595.
25383         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25384         an empty string when a type has no namespace. Fixes #64230.
25386 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25388         * tabledefs.h: Added "internal" security actions to support non-CAS
25389         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25390         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25392 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25394         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25395         constructor of abstract class. Fixes #61689.
25397 2004-10-04  Martin Baulig  <martin@ximian.com>
25399         * class-internals.h (MonoGenericContainer): New type.
25400         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25401         `MonoGenericContainer *generic_container'.
25402         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25403         `MonoGenericContainer *generic_container'.
25405         * metadata.c (mono_metadata_load_generic_params): Return a
25406         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25407         removed the `num' argument.
25409 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25411         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25412         for dynamic images.
25414         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25415         machine fields.
25417         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25419         * reflection.c: Save pe_kind and machine values into the generated
25420         image file.
25422         * appdomain.c: Bump corlib version number.
25424         * object-internals.h: Reorganize layout of LocalBuilder.
25426         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25427         New helper function.
25429         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25430         created MonoType for dynamic types. Fixes #66180.
25432 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25434         * threadpool.c: the ares hashtable needs a critical section around it.
25435         this prevents some nasty segfaults
25437 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25439         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25440         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25441         bug 67324).
25442         
25443 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25445         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25446         
25447 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25449         * image.c: Always canonicalize image file names, to avoid loading
25450         the same assembly twice when referenced using a relative path.
25452 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25454         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25456         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25458         * marshal.c: Fix warnings.
25460 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25462         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25463         attempting to marshal the delegate_trampoline as the method_addr.
25464         This patch has a static hashtable of marshalled delegates so that 
25465         we can map delegate_trampoline addresses back to delegates.  This
25466         allows a delegate passed to managed code to be passed back into native
25467         code.  Fixes #67039
25469 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25471         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25473         * reflection.c (method_encode_code): Align method headers properly.
25474         Fixes #66025.
25476 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25478         * marshal.c: In the runtime invoke wrapper, reset the abort
25479         exception if it is cached. This avoids the automatic rethrowal of 
25480         the exception after the catch of the wrapper. Also check for pending
25481         interruptions before calling the managed method. This is done using
25482         the new method emit_thread_force_interrupt_checkpoint, since the
25483         normal checkpoint method is ignored when running the invoke wrapper.
25484         * object.c: If the abort exception is rethrown, set the abort_exc
25485         field of the thread, so it will be rethrown aftere every catch.
25486         * threadpool.c: Only run an interruption checkpoint if what has been
25487         requested is a stop of the thread (aborts will be ignored).
25488         * threads.c: By default, a thread will now never be interrumped while
25489         running the runtime invoke wrapper (this ensures that runtime_invoke
25490         will always return to the caller if an exception pointer is provided).
25491         There is a new special method mono_thread_force_interruption_checkpoint()
25492         to force an interruption checkpoint even if running a protected
25493         wrapper, which is used by the same runtime invoke wrapper to do a check
25494         at a safe point.
25496 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25498         * object.c, object-internals.h: Implemented mono_release_type_locks,
25499         which releases the cctor locks held by a thread.
25500         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25501         by a thread. Added mono_thread_exit() method to be used to safely stop
25502         a thread.
25504 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25506         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25507         Move null check before dereference.  Avoid indexing beyond the end
25508         of the 'modules' array.
25510 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25512         * metadata-internals.h (MonoImage): Add module_count field.
25513         * image.c (load_modules): Set image->module_count.
25514         (mono_image_load_file_for_image): Use image->module_count.
25515         * reflection.c (mono_image_load_module): Append to image->modules array 
25516         of dynamic assembly.
25517         (mono_module_get_object): Fix loop to actually increment index.
25518         Use image->module_count.
25519         * assembly.c (mono_assembly_load_references): Use image->module_count.
25520         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25521         Likewise.
25523 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25525         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25526         Avoid assert on generic types.
25528 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25530         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25532         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25534         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25535         function to convert a MarshalSpec structure to its managed counterpart.
25537         * reflection.c: Fix warnings.
25538         
25539         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25540         field.
25542         * icall.c (mono_create_icall_signature): Fix build.
25544 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25546         * icall.c: Add MakePointType icall.
25548         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25549         warnings.
25551 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25553         * threadpool.c: reuse allocated slots in the queue.
25555 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25557         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25559         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25561         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25562         previous change.
25564         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25565         ThrowOnUnmappableChar.
25567         * icall.c (ves_icall_Type_GetPacking): New icall.
25569 2004-09-24  Martin Baulig  <martin@ximian.com>
25571         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25573 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25575         * appdomain.c:
25576         (mono_domain_set): allow setting a domain that is being unloaded.
25577         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25578         being unloaded.
25580 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25582         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25583         the GetCustomAttributes icall.
25585 2004-09-23  Martin Baulig  <martin@ximian.com>
25587         * object-internals.h (MonoReflectionGenericParam): Replaced
25588         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25589         with `guint32 attrs'.
25591 2004-09-23  Martin Baulig  <martin@ximian.com>
25593         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25595 2004-09-23  Martin Baulig  <martin@ximian.com>
25597         * object-internals.h (GenericParameterAttributes): New enum.
25599 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25601         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25602         
25603         * class.c (init_events): Fill out event->other field.
25605         * class.c: Fix warnings.
25607         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25609 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25611         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25612         walk which doesn't supply the IL offset.
25614 2004-09-22  Martin Baulig  <martin@ximian.com>
25616         * reflection.c (mono_reflection_setup_internal_class): If we're
25617         System.ValueType, System.Object or System.Enum, set
25618         `klass->instance_size' and create the vtable.
25619         (mono_reflection_create_internal_class): If we're an enum type,
25620         get the base class from our current corlib.
25622 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25624         * reflection.h (MonoResolveTokenError): New type.
25626         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25627         icall.
25629         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25631 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25633         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25634         Support also calling constructors, but only for already allocated objects.
25636 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25638         * reflection.c (type_get_qualified_name): If the klass is null
25639         return the typename to avoid a NullRefEx.
25640         (encode_cattr_value): Get the qualified name of the boxed type,
25641         not the underlying enumtype.  Fixes #62984.
25643 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25645         * marshal.c: Fix problems with previous checkin.
25647 2004-09-21    <vargaz@freemail.hu>
25649         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25650         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25652         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25654 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25656         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25657         should only return a type for pointers, arrays, and passbyref types.
25658         Fixes bug #63841.
25660 2004-09-21  Martin Baulig  <martin@ximian.com>
25662         * domain.c (mono_debugger_check_runtime_version): New public
25663         function.
25665         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25667 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25669         * reflection.c: Added missing sort to the declarative security 
25670         attributes table. MS implementation stops seeing the attributes if the
25671         token number regress in the table (as shown by ildasm and permview).
25673 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25675         * object-internals.h (MonoReflectionModule): Add 'token' field.
25676         
25677         * reflection.c (mono_reflection_get_token): Add support for Module
25678         and Assembly.
25679         (mono_module_get_object): Set 'token' field.
25680         (mono_module_file_get_object): Set 'token' field.
25682         * icall.c: Add new Assembly and Module icalls.
25684         * appdomain.c: Bump corlib version.
25686 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25688         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25689         tokens of metadata objects.
25691         * reflection.h reflection.c (mono_reflection_get_token): New function
25692         to obtain the token of a metadata object.
25694         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25696 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25698         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25699         
25700         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25702 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25704         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25705         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25706         AssemblyBuilder to access the permissions set in the class lib.
25707         * reflection.c: Added security attributes encoding step in 
25708         mono_image_build_metadata.
25709         * tabledefs.h: Added new security actions defined in 2.0:
25710         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25712 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25714         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25715         macro parameter.
25717 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25719         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25720           finalized. There where random SIGSEVs at program termination, when
25721           an object being finalized was trying to do a string comparison and
25722           the current culture was already finalized.
25724 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25726         * threads.c: call thread_cleanup before finishing the thread if we get
25727         there.
25729 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25731         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25732         assemblies from the parent. Fixes #65665.
25734 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25736         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25737         modifiers.
25739 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25741         * reflection.h: add prototype for mono_get_dbnull_object
25742         * reflection.c: add prototypes for get_default_param_value_blobs 
25743         and mono_get_object_from_blob for fussier compilers
25745 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25747         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25748         false deadlock checks in class initialization.
25750 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25752         * image.c (mono_image_addref): Fix comment.
25754         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25755         possible.
25757 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25759         * reflection.c (mono_param_get_objects): Modified to return
25760         ParameterInfo.DefaultValue object.
25762         (get_default_param_value_blobs):
25763         (mono_get_object_from_blob):
25764         (mono_get_dbnull_object): New helper routines. 
25766         * object.c (mono_get_constant_value_from_blob): New helper routine
25767         carved out from get_default_field_value ()
25769         * object-internals.h (mono_get_constant_value_from_blob): Added
25770         function declaration.
25772 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25774         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25775         referenced assemblies. Fixes #62135.
25777         * exception.h exception.c (mono_get_exception_file_not_found2): New
25778         helper function.
25780 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25782         * class.h class.c: Add mono_type_get_underlying_type ().
25784 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25786         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25787         Fix GetTypes() to support dynamically created assemblies.
25789 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25791         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25792         
25793         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25794         previous patch.
25796         * reflection.h reflection.c loader.c: Allow dynamic construction of
25797         pinvoke methods. Fixes #65571.
25798         
25799         * reflection.c (mono_reflection_get_type): Revert previous change since
25800         it causes regressions.
25802 2004-09-08  Martin Baulig  <martin@ximian.com>
25804         * class.c (class_compute_field_layout): Don't call
25805         mono_class_layout_fields() for open generic instances.
25807 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25808         * threads.c appdomain.c: fix typo in GC macro
25810 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25812         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25813         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25815 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25817         * image.c (mono_image_close): Applied patch from 
25818         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25819         assembly is loaded multiple times from data.
25820         
25821         * image.c (mono_image_open): Fix warning.
25823 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25825         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25826         once. Fixes #58334.
25827         
25828         * reflection.c (mono_reflection_create_runtime_class): Initialize
25829         klass->nested_classes. Fixes #61224.
25831 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25833         * threads.c: sched_yield() on exit, to allow threads to quit.
25835 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25837         * object.c (mono_unhandled_exception): Remove leftover debug code.
25839 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25841         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25843 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25845         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25846         
25847         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25849 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25851         * marshal.c (emit_marshal_array): Null terminate string arrays.
25852         
25853         * marshal.c (raise_auto_layout_exception): Fix warning.
25855         * reflection.c (mono_param_get_objects): Initialize the default value
25856         with DBNull.Value, not null. Fixes #62123.
25858 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25860         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25861         throw an exception with a cute explanation.
25863 2004-09-06  Dick Porter  <dick@ximian.com>
25865         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25866         Close the new process's thread handle, as we don't use it.  The
25867         handle stays around forever otherwise.
25869 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25871         * object.c (arith_overflow): Fix warning.
25873         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25874         calling conventions in method refs. Fixes #65352.
25876         * reflection.c: Fix warnings.
25878 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25880         * icall.c: Add a new icall for Array.Clear
25882 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25884         * object.c: When allocating an array, we have to throw
25885         an overflow exception if any of the lengths are < 0.
25887 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25889         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25890         properly. Also move implementation of string array marshalling to 
25891         managed code. Fixes #42316.
25893 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25895         * assembly.c: provide more information when loading an assembly fails.
25897 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25899         * filewatcher.c: don't expect the development fam package to be
25900         installed.
25902 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25904         * marshal.c: Make a copy of the signature cookie since it will be
25905         freed by the caller.
25906         
25907         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25909         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25911         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25912         marshal specs.
25914         * marshal.c: More refactoring.
25915         
25916         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25917         smaller functions.
25919 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25921         * object.c: In mono_message_invoke, fill the output parameter array after
25922           calling the managed method (it was done before the call). This fixes
25923           bug #59299.
25925 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25927         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25928         as well.
25930 2004-09-02  Martin Baulig  <martin@ximian.com>
25932         * class.c (mono_class_instance_size): Don't allow generic type
25933         definitions or open generic instances.
25934         (mono_class_array_element_size): If we're a value type, call
25935         mono_class_instance_size() on the original class.
25937         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25938         handle generic instances.
25940         * mono-debug-debugger.c (write_type): Handle generic instances
25941         like classes.
25943 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25945         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25946         the allocation request fails. Fixes #65089.
25948         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25949         
25950         * object.c (mono_runtime_free_method): New function to free a dynamic
25951         method.
25953         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25954         delegate trampoline.
25956         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25957         with hasthis as dynamic,
25959         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25961         * domain.c (mono_jit_info_table_remove): New function to remove an
25962         entry from the jit info table.
25964         * class-internals.h (MonoMethod): Add 'dynamic' field.
25966         * loader.c: Fix warnings.
25968 2004-09-01  Martin Baulig  <martin@ximian.com>
25970         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25971         instead of mono_debugger_lock() because the latter one is a no-op
25972         unless running in the debugger.
25974 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25976         * class.c (class_compute_field_layout): Classes with auto-layout or
25977         reference fields are not blittable.
25978         
25979 2004-09-01  Dick Porter  <dick@ximian.com>
25981         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25982         mono_image_get_filename() to get the assembly location.
25984         * icall.c:
25985         * metadata.h: Fix compile warnings
25987 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25989         * class.c (class_compute_field_layout): System.Object is blittable.
25991         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25992         as in/out. Fixes #59909.
25994 2004-09-01  Martin Baulig  <martin@ximian.com>
25996         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25997         mono_metadata_generic_inst_is_valuetype() if we're a generic
25998         instance to check whether our underlying type is a reference type.
26000 2004-09-01  Martin Baulig  <martin@ximian.com>
26002         * metadata.c (mono_type_size): If we're a generic instance, call
26003         mono_class_value_size() for value types.
26005 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26007         * marshal.c: Implement more custom marshalling functionality. Fixes
26008         #64915.
26010 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26012         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26014 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26016         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26018         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26020         * icall.c: Fix some warnings.
26022         * threads.c (abort_appdomain_thread): Fix unref errors.
26023         (mono_thread_current): Fix THREAD_DEBUG define.
26025 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26027         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26029         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26031 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26033         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26034         string arrays.
26036 2004-08-28  Martin Baulig  <martin@ximian.com>
26038         * metadata.c
26039         (mono_metadata_generic_inst_is_valuetype): New public function.
26041         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26042         mono_metadata_generic_inst_is_valuetype() if we're a generic
26043         instance to check whether our underlying type is a valuetype.
26045 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26047         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26048         #63768.
26050 2004-08-25  Martin Baulig  <martin@ximian.com>
26052         * loader.c (mono_get_method_from_token): Abstract methods can also
26053         be generic and thus have type parameters.
26055         * metadata-internals.h
26056         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26058         * reflection.c (mono_image_get_generic_param_info): Don't create a
26059         metadata row, just add an entry to the `gen_params' array.
26060         (build_compressed_metadata): Sort the `gen_params' array and then
26061         actually create the metadata.
26063 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26065         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26067 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26069         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26071 2004-08-24  Martin Baulig  <martin@ximian.com>
26073         * class.cs (mono_class_is_subclass_of): Like an interface, a
26074         generic instance also derives from System.Object.
26076 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26078         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26079         custom modifiers to be in any order. Fixes #61990.
26081 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26083         * object.c: Register mono_object_new_fast icall.
26084         
26085         * object.c (mono_class_get_allocation_ftn): Return to calling
26086         mono_object_new_fast, since it seems faster to compute the object 
26087         size in unmanaged code than passing it as a parameter.
26089         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26091         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26092         this function with Boehm as the oom handler, so we don't have to check
26093         the result of GC_malloc.
26095         * object.c: Remove checks for oom.
26097         * object.h object.c (mono_class_get_allocation_ftn): New function to
26098         return the icall which can be used to allocate an instance of a given
26099         class. 
26101         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26103         * class-internals.h: Add 'enabled' field.
26105 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26107         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26109 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26110         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26111         value 0x0010.
26113 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26115         * appdomain.c: use the Tls function for appdomain too,
26116         at Zoltan's request. Actually return in mono_context_get
26118         * appdomain.c, profiler.c, threads.c: use __thread
26120 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26122         * appdomain.c threads.c: Call GC_CreateThread on windows.
26124         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26125         multiple libraries since this don't work on windows.
26127 2004-08-18  Martin Baulig  <martin@ximian.com>
26129         * class-internals.h
26130         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26131         MonoMethodHeader.
26133         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26134         MonoMethodNormal since we also need it for abstract and interface
26135         methods.
26137         * reflection.c
26138         (build_compressed_metadata): Sort the GenericParam table.
26139         (mono_image_create_token): Added `gboolean create_methodspec'
26140         argument; this is false when generating a MethodImpl token.
26141         (reflection_methodbuilder_to_mono_method): Abstract and interface
26142         methods may also have generic parameters.
26144 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26146         * appdomain.c: thread local alloc
26148 2004-08-17  Martin Baulig  <martin@ximian.com>
26150         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26152         * icall.c
26153         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26154         argument.
26156         * class.c (mono_type_get_full_name): New public function.
26157         (mono_type_get_name): Don't include the type arguments.
26159 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26161         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26162         for inclusion into the mono executable.
26164 2004-08-16  Martin Baulig  <martin@ximian.com>
26166         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26167         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26169 2004-08-14  Martin Baulig  <martin@ximian.com>
26171         * class.c (dup_type): Also copy the `byref' field.
26173 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26175         * reflection.c (create_dynamic_mono_image): Revert the last change 
26176         since it breaks bootstrap.
26178 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26180         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26182         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26183         not free them with g_free.
26185 2004-08-11  Martin Baulig  <martin@ximian.com>
26187         * reflection.c (mono_reflection_setup_internal_class): Also call
26188         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26190 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26192         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26193         called during default (first) AppDomain creation. Keep track of
26194         Evidence when loading assemblies.
26196 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26198         * opcodes.c, opcodes.h: reduce runtime relocations.
26200 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26202         * culture-info.h, locales.c: fixes and chages to sue the new
26203         optimized format of the locale data.
26204         * culture-info-tables.h: regenerated.
26206 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26207         
26208         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26210 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26212         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26213         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26214         * domain-internals.h: icall declaration.
26215         * icall.c: icall registration.
26216         * object-internals.h: New fields in MonoAssembly for CAS.
26218 2004-08-05  Duncan Mak  <duncan@ximian.com>
26220         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26221         CEE_LDELEM_ANY.
26223 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26225         * reflection.c: fix to deal with object[] arrays in custom ctors
26226         (bug #62550).
26228 2004-08-05  Martin Baulig  <martin@ximian.com>
26230         * class.c (mono_class_array_element_size): Added support for
26231         generic instances and correctly handle "recursive" types.
26233 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26235         * assembly.c: Fix warnings.
26237 2004-08-04  Martin Baulig  <martin@ximian.com>
26239         * class.c
26240         (mono_type_get_name_recurse): Added `gboolean include_arity'
26241         argument specifying whether or not we should include the generic
26242         arity in the type name.
26243         (_mono_type_get_name): New static function.
26244         (mono_class_setup_vtable): If we're a generic instance, don't
26245         include the generic arity in the names of explicit method
26246         implementations.        
26248 2004-08-03  Martin Baulig  <martin@ximian.com>
26250         * class.c (mono_type_get_name_recurse): Enclose the generic type
26251         arguments in `<', '>'.
26253 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26255         * gc.c: make GC warning messages use the trace API, they are just
26256         noise to most of the users.
26258 2004-08-03  Martin Baulig  <martin@ximian.com>
26260         * debug-mono-symfile.c (read_string): Correctly read the string.
26262 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26264         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26265         
26266         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26267         icalls.
26268         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26270 2004-07-30  Martin Baulig  <martin@ximian.com>
26272         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26273         Reflect latest symbol writer changes.   
26275 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26277         * object.c: always create an object if null is passed
26278         to Invoke() where a valuetype is expected.
26280 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26282         * marshal.c (mono_marshal_init): make managed
26283         signatures match native ones better for 64bits.
26285 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26287         * appdomain.c: hack to build correctly the private bin path on windows.
26288         Fixes bug #61991.
26290 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26292         * assembly.c: Load mscorlib from the correct framework directory
26293           (mono/<version>/mscorlib.dll).
26294         * appdomain.h: Added prototypes for new functions.
26295         * internals.h: Added some prototypes.
26296         * domain.c: When initializing the runtime, get from the executable and
26297           the configuration files the runtime version that the app supports.
26298           Added support methods for reading app.exe.config. Added list of versions
26299           supported by the JIT. Added two new methods: mono_init_from_assembly,
26300           which initializes the runtime and determines the required version from
26301           the provided exe file, and mono_init_version, which initializes
26302           the runtime using the provided version.
26303         * icall.c: Get machine.config from version-specific directory.
26304         * reflection.c: When generating an image, embed the version number
26305           of the current runtime.
26307 2004-07-28  Dick Porter  <dick@ximian.com>
26309         * socket-io.c
26310         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26311         returned sockaddr size before creating the remote address object.
26312         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26313         61608.
26315 2004-07-28  Dick Porter  <dick@ximian.com>
26317         * locales.c (string_invariant_compare_char): Fix invariant char
26318         compares between upper and lower cases.  Fixes bug 61458.
26320 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26321         
26322         * marshal.c: actually cache stelem.ref wrappers.
26323         
26324 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26326         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26327         sections and remove the mono_cli_rva_map () function.
26329 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26331         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26332         by Geoff Norton (<gnorton@customerdna.com>).
26334 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26336         * class.c: fix class loads for pointer types (typeof(int) !=
26337         typeof(int*)).
26339 2004-07-27  Martin Baulig  <martin@ximian.com>
26341         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26342         reading the debugging information from an external ".mdb" file.
26344 2004-07-24  Martin Baulig  <martin@ximian.com>
26346         * reflection.c (mono_image_get_type_info): Only write a class
26347         layout entry if we actually have a size or a packing size.
26349 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26351         * reflection.c (type_get_fully_qualified_name): 
26352         insert cast to get type checking of ?: with non-gcc compilers
26354 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26356         * rand.c: use g_getenv for both lookups of
26357         MONO_EGD_SOCKET
26359 2004-07-17  Martin Baulig  <martin@ximian.com>
26361         * reflection.c (mono_reflection_bind_generic_method_parameters):
26362         Set `gmethod->reflection_info'.
26364 2004-07-17  Martin Baulig  <martin@ximian.com>
26366         * class.c (mono_class_create_from_typedef): Insert the newly
26367         created class into the hash table before computing the interfaces
26368         since we could be called recursively.
26370 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26372         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26373         function to implement stelem.ref in managed code
26374         * class-internals.h, debug-helpers.c: a new wrapper type
26375         for the above.
26377 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26379         * gc.c: allow GC handles to work even when no GC is compiled in.
26380         Fix part of bug #61134 (GetAddrOfPinnedObject).
26382 2004-07-13  Peter Williams  <peter@newton.cx>
26384         * process.c (complete_path): Make sure we don't attempt to execute
26385         directories.
26387 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26389         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26390           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26391           and will add/subtract the hour if needed
26393 2004-07-12  Martin Baulig  <martin@ximian.com>
26395         * reflection.c (mono_field_get_object): If we have
26396         `field->generic_info', take the attributes from
26397         `field->generic_info->generic_type'.    
26399 2004-07-12  Martin Baulig  <martin@ximian.com>
26401         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26402         This function must be called before initializing the runtime.
26403         (mono_debug_init_1): New function; call this after initializing
26404         the runtime, but before loading the assembly.  It tells the
26405         debugger to load corlib and the builtin types.
26407         * mono-debug-debugger.c: Did some larger changes in the debugging
26408         code; support recursive class declarations, make sure we actually
26409         add all classes.
26411 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26413         * debug-helpers.c: undo my previous patch and fixed the real issue in
26414         ../mini/exceptions-x86.c
26416 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26418         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26419         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26420         called from other .cctors.
26422 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26424         * loader.c: Removed the mono_loader_wine_init hack now that we are
26425         doing a managed version of Windows.Forms.
26427 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26429         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26430         threadpool.c, threads.c: remove static data from rootset.
26432 2004-07-09  Dick Porter  <dick@ximian.com>
26434         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26435         Don't do any more processing if the matched length was 0.  It was
26436         increasing the size of the string before.  Fixes bug 61167.
26438 2004-07-09  Dick Porter  <dick@ximian.com>
26440         * socket-io.h:
26441         * socket-io.c
26442         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26443         Add support for SO_PEERCRED if its available.
26445 2004-07-09  Peter Bartok <pbartok@novell.com>
26446         * loader.c: winelib.exe.so error message is now only displayed if
26447         MONO_DEBUG is set. To help us avoid questions when people are trying
26448         out the new Managed.Windows.Forms.
26450 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26452         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26453         for isinst and castclass wrappers.
26455         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26456         to libmetadata from the JIT, so they could be used by the marshalling
26457         code and the interpreter.
26459         * marshal.c: Register marshalling related JIT icalls here instead of
26460         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26461         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26463         * metadata.h: Remove unneeded marshalling conversions.
26465         * opcodes.c: Update for new opcodes.
26466         
26467 2004-07-08  Martin Baulig  <martin@ximian.com>
26469         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26470         (mono_debug_get_domain_data): Make this function static.
26472 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26474         * gc.c, object.h: add nice GC handle API for embedders.
26476 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26478         * reflection.c: more changes for the new api
26480         * object.c: When we reflect on a field w/ a constant value, it
26481         will not have a memory location, so we must access metadata. Also,
26482         allow easier reading of strings so that we can read them from
26483         the constant data.
26485         * class.c (mono_class_layout_fields): no need for literal fields here.
26487         * class-internals.h: api changes for const fields
26489         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26491 2004-07-06  Martin Baulig  <martin@ximian.com>
26493         * mono-debug.h: Increment version number to 44.
26495         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26496         now a gpointer, rewrote this whole method.
26498         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26499         function.  Add information about the wrapper in a new "misc table".
26501         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26502         for the new misc table.
26504 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26506         * metadata-internals.h image.c: Add a cache for helper signatures.
26508         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26510 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26512         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26513         delegates from a delegate. Fixes #61033.
26514         
26515         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26516         marshalling of stringbuilder arrays. Fixes #59900.
26518 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26520         * icall.c: Add EnumBuilder:setup_enum_type icall.
26522 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26524         * icall.c: Added a new icall for the property version of
26525         OffsetOfStringData.
26527 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26529         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26530         it has a constant size across platforms.
26532         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26533         stack trace.
26535 2004-06-29  Martin Baulig  <martin@ximian.com>
26537         * mono-debug.c (mono_debug_add_method): Protect the whole function
26538         in mono_debugger_lock(), not just parts of it.
26540 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26542         * reflection.c: make sure padding bytes in heaps are zeroed.
26544 2004-06-24  David Waite  <mass@akuma.org>
26546         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26547         image.c, loader.c, locales.c, marshal.c, metadata.c,
26548         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26549         string-icalls.c, threads.c: change to C90-style comments from C99 /
26550         C++ -style
26552 2004-06-24  Dick Porter  <dick@ximian.com>
26554         * threads.c
26555         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26556         return createdNew.  Fixes bug 60412.
26558         * threads-types.h: 
26559         * icall.c: Add createdNew parameter to CreateMutex icall
26561 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26563         * reflection.c, object-internals.h: save default value in params.
26565 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26567         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26568         no need to build a new path combining that with the application base.
26569         Fixes bug #60442.
26571 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26573         * reflection.c: fixed minor standard compliance issues.
26575 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26577         * reflection.c: fixed issue with encoding some custom attributes
26578         (arrays in properties and fields, bug #60411).
26580 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26582         * reflection.c: fix start address when copying the public key token.
26584 2004-06-23  Martin Baulig  <martin@ximian.com>
26586         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26587         the `exc' object in a static object to put it into the GC's root set.
26589 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26591         * reflection.c: make mono_reflection_setup_internal_class ()
26592         callable a second time to setup a new parent class.
26594 2004-06-23  Dick Porter  <dick@ximian.com>
26596         * threads.c: Check for WAIT_IO_COMPLETION return values.
26598 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26600         * appdomain.c: Removed the g_free on the public key token. Now copy 
26601         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26602         * assembly.c: Added public key token string value when loading 
26603         assemblies. Fix bug #60439.
26604         * icall.c: Added missing informations (like public key) in 
26605         GetReferencedAssemblies. Fix #60519.
26606         * image.h: Changed definition for public key token from const char*
26607         public_tok_value to guchar public_key_token [17];
26608         * reflection.c: Updated for changes to public key token.
26610 2004-06-22  Lluis Sanchez Gual
26612         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26613         for the field in base classes.
26615 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26617         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26618         mark headers as not supported, they are installed only for use by the
26619         debugger.
26621 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26623         * *.c, *.h: avoid namespace pollution in public headers.
26625 2004-06-21  Martin Baulig  <martin@ximian.com>
26627         * exception.c (mono_get_exception_security): It's in
26628         "System.Security", not in "System".
26630         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26631         the exception classes.
26633 2004-06-21  Martin Baulig  <martin@ximian.com>
26635         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26636         Protect the exception object from being finalized.
26638 2004-06-21  Martin Baulig  <martin@ximian.com>
26640         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26641         public function.
26643 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26645         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26646         if it was not loaded before. Fix parts of #60439.
26648 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26650         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26651         code that was broken since Ben's change: wrappers are now
26652         dependent on the method signature only again.
26654 2004-06-21  Martin Baulig  <martin@ximian.com>
26656         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26657         added interface support.
26659 2004-06-21  Martin Baulig  <martin@ximian.com>
26661         * class.c (mono_vtable_get_static_field_data): New public method.
26663 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26665         * filewatcher.c : Windows build fix to be compliant with API changes.
26667 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26669         * class.h, class.c: more accessors.
26670         * metadata.h, metadata.c: prepare for hiding MonoType and
26671         MonoMethodSignature: people should use the accessors from now on
26672         outside of the tree.
26674 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26676         * *.c, *.h: more API cleanups.
26678 2004-06-18  Jackson Harper  <jackson@ximian.com>
26680         * assembly.c: Trace loading assemblies.
26681         * loader.c: Trace loading native libraries.
26682         * mono-config.c: Trace loading config files.
26683         
26684 2004-06-18  Dick Porter  <dick@ximian.com>
26686         * locales.c: Tell ICU the lengths of strings, it can cope with
26687         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26689 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26691         * image.c: swapped name/filename;
26693 2004-06-18  Martin Baulig  <martin@ximian.com>
26695         * mono-debug-debugger.c (write_class): Write the parent class at
26696         the end of the header.
26698 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26700         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26702 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26704         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26705         (bundle_obj): New conditional define.
26706         (BUILT_SOURCES): Remove.
26707         ($(bundle_srcs)): Make parallel-make safe.
26708         (libmonoruntime_la_LIBADD): Make unconditional.
26709         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26710         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26712 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26714         * culture-info-tables.h: It was inconsistent with the latest
26715           supp info files.
26717 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26719         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26720         be loaded.
26722         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26723         with gcc 2.95.
26725 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26727         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26728         cleaned up public header threads.h.
26730 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26732         * Makefile.am, *.c, *.h: more API cleanups.
26734 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26736         * Makefile.am: removed monosn from compilation.
26737         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26738         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26739         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26740         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26741         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26742         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26744 2004-06-15  Jackson Harper  <jackson@ximian.com>
26746         * assembly.c: Make locales lower case when searching the GAC for
26747         assemblies. gacutil will always make locales lowercase when
26748         installing so this effectively makes them case insensitive.
26749         
26750 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26752         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26753         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26754           parameter which allows to choose whether the wait can be interrupted or 
26755           not. Also added the method mono_monitor_enter(), which locks the monitor
26756           using an infinite wait and without allowing interruption.
26757           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26758           interrupted.
26759         * object.h: Added new fields in MonoThread. suspend_event holds the event
26760           used to susped/resume the thread. synch_lock is the lock object to use for
26761           modifying the thread state.
26762         * threads.c: Use the new synch_lock object for locking, instead of "this",
26763           which can generate deadlocks.
26764           Moved thread state change in Thread.Sleep and Thread.Join from managed
26765           to unmanaged code. This avoids a deadlock when the thread was suspended
26766           just after acquiring the thread lock.
26767           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26768           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26769           which is not fully implemented in the io-layer.
26770         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26772 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26774         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26775         threads-types.h: more API cleanups.
26777 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26779         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26780         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26781         threadpool.c, threads.c: first pass at the exported API cleanup.
26783 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26785         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26787 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26789         * icall.c: added internalGetHome.
26791 2004-06-14  Dick Porter  <dick@ximian.com>
26793         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26794         possible to return successfully when '.' or '..' were the only
26795         entries in a directory, but were skipped.  The MonoIOStat was not
26796         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26797         Fixes bug 59574.
26799 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26801         * reflection.c: make binaries run on .Net 1.1 by default.
26803 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26805         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26807 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26809         * marshal.c: keep track of struct size with explicit layout
26810         (bug #59979).
26812 2004-06-12  Martin Baulig  <martin@ximian.com>
26814         * mono-debug-debugger.c: Comment out a debugging g_message().
26816 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26818         * reflection.c, reflection.h: do not free custom attrs that are cached.
26819         * icall.c: use braces to make code clearer.
26821 2004-06-11  Martin Baulig  <martin@ximian.com>
26823         * class.h (MonoInflatedField): New type.
26824         (MonoClassField): Replaced `MonoType *generic_type' with
26825         `MonoInflatedField *generic_info'.
26827         * icall.c
26828         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26830 2004-06-11  Martin Baulig  <martin@ximian.com>
26832         * reflection.c (mono_image_create_method_token): Correctly encode
26833         varargs methods.
26835 2004-06-11  Martin Baulig  <martin@ximian.com>
26837         * metadata.c (mono_metadata_parse_method_signature): When parsing
26838         a MethodDef which has VarArgs, also set sentinelpos if we don't
26839         have any parameters.
26841 2004-06-11  Martin Baulig  <martin@ximian.com>
26843         * verify.c (mono_method_verify): In CEE_CALL, use
26844         mono_method_get_signature() to get the method's signature, unless
26845         we're a PInvoke method.
26847 2004-06-10  Jackson Harper  <jackson@ximian.com>
26849         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26850         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26851         logical name as the supplied path is just a prefix to the gac not
26852         the direct path to it.
26853         
26854 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26856         * reflection.c: make the token for a created method match
26857         the token of the MethodBuilder it was created from
26858         (IKVM requires this behaviour now).
26860 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26862         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26863         reflection.c, socket-io.c: leak fixes.
26865 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26867         * icall.c: handle sentinel pos in vararg methods in position different
26868         from 0.
26870 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26872         * culture-info-tables.h: freshly generated.
26874 2004-06-09  Martin Baulig  <martin@ximian.com>
26876         * loader.c (mono_get_method_constrained): Call `mono_class_init
26877         (constrained_class)'.   
26879 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26881         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26882         any methods. Fixes #59629.
26884 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26886         * culture-info-tables.h: reflecting locale-builder updates.
26888 2004-06-08  Dick Porter  <dick@ximian.com>
26890         * object.h:
26891         * locales.c: Fixed compile warnings, including a real bug in
26892         CompareInfo_internal_compare.
26893         
26894 2004-06-08  Dick Porter  <dick@ximian.com>
26896         * locales.c
26897         (ves_icall_System_Globalization_CompareInfo_internal_index):
26898         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26899         Double-check the resuls of usearches, because ICU currently
26900         ignores most of the collator settings here.  Fixes bug 59720.
26901         
26902 2004-06-08  Dick Porter  <dick@ximian.com>
26904         * locales.c
26905         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26906         Fix memory leak and segfault-causing typo.  No idea how this one
26907         lasted so long without being noticed.
26909 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26911         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26912         any methods. Fixes #59629.
26914 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26916         * assembly.c:
26917         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26918         own the critical section before). Removed dead code (that's done
26919         in the preload hook).
26921         (mono_assembly_load_with_partial_name): call the preload hook.
26923 2004-06-08  Martin Baulig  <martin@ximian.com>
26925         * metadata.c (mono_metadata_signature_alloc): Default
26926         `sentinelpos' to -1.
26928         * reflection.c (mono_image_get_array_token): Likewise.
26930 2004-06-08  Martin Baulig  <martin@ximian.com>
26932         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26934         * metadata.c (mono_metadata_parse_method_signature): When parsing
26935         a MethodDef which has VarArgs, set sentinelpos.
26937         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26938         `gint16' since we're using -1 for non-varargs methods.
26940         * reflection.c
26941         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26942         (method_encode_signature): Added varargs support.
26943         (method_builder_encode_signature): Likewise.
26944         (mono_image_get_varargs_method_token): New static method.
26945         (mono_image_create_method_token): New public method; this is
26946         called via an icall instead of mono_image_create_token() when
26947         calling a varargs method.       
26949 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26951         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26953 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26955         * culture-info-tables.h : Reflecting the latest locale-builder that
26956           fixed empty array representation ({} to {0}).
26958 2004-06-07  Jackson Harper  <jackson@ximian.com>
26960         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26961         looking up extra gac paths. This allows MONO_GAC_PATH to act
26962         exactly like a prefix.
26963         
26964 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26966         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26967         type name before modifying it. Fixes #59405.
26969 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26971         * culture-info.h: added fields for "all datetime patterns".
26972         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26973           _construct_datetime_format ()): fill xxx_patterns fields.
26974         * object.h: added fields for "all datetime patterns" to
26975           MonoDateTimeFormatInfo.
26976         * culture-info-tables.h: reflecting locale-builder updates.
26978 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26980         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26981         the event has no add and remove methods. Fixes #59629.
26983 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26985         * object.c: Fixed possible integer overflow when allocating large
26986         strings.
26988 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26990         * culture-info-tables.h: reflecting locale-builder updates.
26992 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26994         * culture-info-tables.h: reflecting locale-builder updates.
26996 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26998         * culture-info-tables.h: reflecting locale-builder updates.
27000 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27002         * threads.c: Made Thread.Sleep abortable.
27004 2004-06-02  Martin Baulig  <martin@ximian.com>
27006         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27008         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27010 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27012         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27014 2004-05-30  Jackson Harper  <jackson@ximian.com>
27016         * reflection.c: Do not hardcode assembly versions or public key
27017         tokens anymore. All of this except the corlib section was dead
27018         code anyways.
27019         
27020 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27022         * object.c (mono_runtime_invoke_array): Automatically create boxed
27023         objects for byref valuetypes if needed. Fixes #59300.
27024         
27025         * object.c (mono_method_return_message_restore): Handle 
27026         MONO_TYPE_OBJECT as well.
27028 2004-05-28  Jackson Harper  <jackson@ximian.com>
27030         * reflection.c: The modified type encoding was causing build
27031         problems. Reverted for now.
27032         
27033 2004-05-28  Jackson Harper  <jackson@ximian.com>
27035         * reflection.c/h: Take an assembly ref so that we dont create
27036         fully qualified names when encoding types in the same assembly as
27037         the custom attribute being emitted.
27038         * appdomain.c: Increment version number.
27039         
27040 2004-05-26  Duncan Mak  <duncan@ximian.com>
27042         * icall.c
27043         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27044         Set the full version number (major, minor, build, revision).
27046 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27048         * marshal.c (emit_struct_conv): increment src/dst after blit
27049         (mono_marshal_get_managed_wrapper,
27050         mono_marshal_get_native_wrapper): make sure we have marshalling
27051         info before marshalling params (info computation affects
27052         blittable)
27054         * class.c (class_compute_field_layout): correctly deal with
27055         blittable
27056         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27057         value types (as per what windows dows by default)
27058         (mono_class_setup_mono_type): System.ValueType is blittable
27059         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27060         blittable
27062         * marshal.c (mono_marshal_load_type_info): flag types  as
27063         non-blittable if the native layout doesn't match the managed
27064         layout
27066 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27068         * appdomain.c: don't add stuff in the private search path that is
27069         above the application base. If application base is not set, there's
27070         no private search path.
27072 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27074         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27075         byref struct arguments in native->managed marshalling.
27077 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27079         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27080         cache methods using signature (special case for methods
27081         that are value type or string class)
27082         
27083         * image.c (mono_image_close): clean up allocated GSList's
27084         in runtime_invoke_cache.
27086 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27088         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27089         there's no MONO_CFG_DIR environment variable defined.
27091 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27093         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27095 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27097         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27098           is interrumped.
27099         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27100           before waiting for it, and call CloseHandle after the wait to unref it.
27101           This will make sure that handles are not disposed too early.
27103 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27105         * appdomain.c:
27106         * appdomain.h:
27107         * icall.c: removed
27108         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27109         needed now.
27111         * object.c: se the application_base only for the domain that runs
27112         Main. Fixes bug #59216,
27114 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27116         * appdomain.c:
27117         * object.c: only the domain in which Main is run have
27118         SetupInformation.ConfigurationFile set, so moved a few lines from
27119         appdomain.c to object.c.
27121 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27123         * appdomain.c: we tried to load [name].(dll|exe), but according
27124         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27125         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27126         There's a test case attached to bug #58922.
27128 2004-05-27  Dick Porter  <dick@ximian.com>
27130         * icall.c:
27131         * file-io.c: Implemented icalls for locking and unlocking regions
27132         in a file.
27133         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27134         FALSE on error (fixes both compiler warning and real bug.)
27136 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27138         * culture-info-tables.h: reflecting locale-builder updates.
27140           (Added missing ChangeLog entry for 05/26)
27142 2004-05-27  Jackson Harper  <jackson@ximian.com>
27144         * locales.c: Fix some cut and paste errors.
27145         
27146 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27148         * mono-config.c: set the correct path for config. directory on windows.
27150 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27152         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27153           on win32.
27155 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27157         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27158         from pinvoke functions.
27159         
27160         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27162 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27164         * culture-info-tables.h: reflecting locale-builder updates.
27166 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27168         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27169         #59086.
27171 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27173         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27174         * icall.c: Modified icalls for RNG.
27175         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27176         Windows (CryptoAPI).
27178 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27180         * locales.c: Fix build.
27182 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27184         * culture-info-tables.h: reflecting locale-builder updates.
27186 2004-05-25  Jackson Harper  <jackson@ximian.com>
27188         * locales.c: When creating the current culture use the $LANGs
27189         specific culture. So DateTimeFormat and NumberFormat entries are created.
27190         
27191 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27193         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27194         a char array as parameter.
27196 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27198         * image.c: In mono_image_open(), always use an absolute path name to
27199           look for already loaded images.
27201 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27203         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27204         missing in the windows build (like older cygwin include files).
27206 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27208         * icall.c: Fixed check for possible integer overflow in Buffer_
27209         BlockCopy icall. Replaced comments style // by /* */.
27211 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27213         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27214         
27215         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27216         check after MONO_VTADDR. Fixes pinvoke2.exe.
27218         * marshal.h marshal.c metadata.h: Add beginnings of support for
27219         ftnptr -> delegate marshalling.
27221 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27223         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27224         * threads.c: Fix warnings.
27226 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27228         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27229         * icall.c: Registered icalls for Suspend and Resume.
27230         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27231           Thread.Abort.
27232         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27233         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27234         * process.c: Use WaitForSingleObjectEx.
27235         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27236           checkpoints.
27237         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27238           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27239           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27240           background threads. Added basic support for Abort in Windows.
27241           Start new threads using a managed delegate invoke wrapper. This wrapper
27242           has an interruption checkpoint that is needed since an interruption
27243           can be requested before the thread leaves the unmanaged code that starts 
27244           the thread.
27245         * marshal.c: Added interruption checkpoint after every native call, and
27246           also before managed calls for wrappers called from unmanaged code to
27247           go into managed code.
27248         * object.h: Added new field in MonoThread to keep track of interruption
27249           requests.
27251 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27253         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27254         calls.
27256 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27258         * appdomain.c:
27259         * assembly.c:
27260         * gc.c:
27261         * locales.c:
27262         * mono-config.c:
27263         * rand.c: getenv -> g_getenv (windows!)
27265         * process.c: complete_path is also used on non-windows platforms.
27267 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27269         * icall.c: new signature for Process_Start.
27271         * process.[ch]: new signature for Process_Start. If we're on windows
27272         and UseShellExecute is false, we have to search for the program by
27273         ourselves if we don't get a full path.
27275 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27277         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27278         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27280 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27282         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27283         Fixes bug #58373.
27285 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27287         * process.c: use double quotes to quote program name and arguments on
27288         windows. Fixes bug #58575.
27290 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27292         * file-io.c: don't return "." and ".." when using windows Find*File.
27294 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27296         * marshal.c: Don't pass wrappers to message init because method 
27297         addressed used to lookup metadata. part of remoting[2|3] fix.
27299 2004-05-15  Jackson Harper  <jackson@ximian.com>
27301         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27302         path is essentially the same as MONO_PATH except that it points to
27303         GACs instead of lib directories.
27304         * loader.h: The user gac is gone so we dont need function to
27305         enable/disable it.
27306         * mono-config.c: user gac option is now gone.
27307         
27308 2004-05-15  Jackson Harper  <jackson@ximian.com>
27310         * culture-info.h: Make defines more consistent, add calendar data
27311         to the culture info table.
27312         * culture-info-tables.h: Add basic calendar data. Basically
27313         everyone gets default gregorian until all the data is
27314         updated.
27315         * locales.c: Use the new consistent defines. Set calendar data for
27316         culture info objects.
27317         * object.h: add a field for calendar data to CultureInfo
27318         
27319 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27321         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27322         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27323         a signature.
27324         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27325         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27326         an extra param that is the pointer of the method to invoke. The IL for
27327         the invoke method is no longer specific to the method, but to the
27328         signature of the method. Thus, we can share the same code for multiple
27329         methods. This reduces the number of methods that have to be compiled.
27331 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27333         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27335         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27337         * icall.c: Optimize Buffer.BlockCopy.
27339 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27341         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27342         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27343         quote). Changed them to "MMMM yyyy".
27345 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27347         * rand.c
27348         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27350 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27352         * reflection.h: Updated after changes to managed structures.
27354         * appdomain.c: Bump corlib version.
27356 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27358         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27359         windows.
27361 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27363         * Makefile.am: link to ../os/libmonoos.la on windows.
27365         * assembly.c:
27366                 -If MONO_DEBUG, warn about non-existing directories in
27367                 MONO_PATH.
27368                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27369                 compile time variable.
27370                 -Removed init_default_path and call mono_set_rootdir from
27371                 libmonoos.a instead (windows only).
27373         * assembly.h: declare mono_assembly_getrootdir().
27375         * domain.c:
27376         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27378         * loader.c: s/getenv/g_getenv/
27380 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27382         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27384         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27386         * metadata.h: Add new marshalling conversions.
27388         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27389         function.
27391         * reflection.c (mono_reflection_get_type): Lookup the type in all
27392         modules of a multi-module assembly. Fixes #58291.
27394 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27396         * threads.c: Before aborting a background, set the StopRequested
27397         state.  This avoids throwing the Abort exception.
27398         In mono_thread_manage, don't continue with the shutdown until all
27399         aborted threads have actually stopped.
27401 2004-05-10  Jackson Harper  <jackson@ximian.com>
27403         * locales.c: Remove the modifier from culture names.
27404         
27405 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27407         * Makefile.am: monosn is not installed any more. It has been deprecated
27408         in favor of sn.
27410 2004-05-07  Jackson Harper  <jackson@ximian.com>
27412         * locales.c
27413         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27414         Fix array construction, add bailout if the length is 0.
27416 2004-05-07  Dick Porter  <dick@ximian.com>
27418         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27419         machine doesn't have a DNS entry.  Patch by Urs Muff
27420         (umuff@quark.com), fixes bug 57928.
27422 2004-05-06  Jackson Harper  <jackson@ximian.com>
27424         * reflection.c: Handle null PublicTokens properly. alloc mem for
27425         assembly names culture so we dont crash when freeing it.
27426         
27427 2004-05-06  Jackson Harper  <jackson@ximian.com>
27429         * assembly.c: Check the usergac when loading with partial names.
27430         
27431 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27433         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27434         does nothing for now (not required for Linux/Windows) but the class
27435         library can call it (and a newer or modified runtime could need it).
27436         * icall.c: Registred icall.
27438 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27440         * loader.c: prints a message on module loading error we set MONO_DEBUG
27441         environment variable.
27443 2004-05-05  Jackson Harper  <jackson@ximian.com>
27445         * appdomain.c: Handle PublicKeyToken=null properly.
27446         
27447 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27449         * environment.c|h: Added icall ves_icall_System_Environment_
27450         GetOSVersionString to get the current OS version as a string.
27451         * icall.c: Registred icall.
27453 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27455         * object.c: in mono_object_get_virtual_method(), take into account that
27456         non-virtual methods don't have a slot in the vtable. Check needed when
27457         the object is a proxy.
27459 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27461         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27462         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27464         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27466         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27467         passed when a valuetype is expected.
27469         * object.c (mono_unhandled_exception): Only set the exit code if the
27470         exception happens in the main thread. Fixes thread5.exe.
27472         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27473         invalid names. Fixes #58047.
27475 2004-05-03  Jackson Harper  <jackson@ximian.com>
27477         * assembly.c: This line was committed accidently and is unneeded.
27478         
27479 2004-05-03  Jackson Harper  <jackson@ximian.com>
27481         * icall.c: Add new icall for Assembly::LoadWithPartialName
27482         * assembly.c/.h: new function that probes the GAC to load partial
27483         assembly names by Paolo Molaro.
27484         
27485 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27487         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27488         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27489         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27490         full type name.
27492 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27494         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27495         * reflection.c: fix bug when parsing a full type name and Version is not
27496         the last thing in the string.
27498 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27500         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27501         crashes when it is freed.
27503 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27505         * assembly.c: print the compat warning to stderr.
27507 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27509         * assembly.c (mono_assembly_load_references): Add a compatibility
27510         hack to run old applications that might be still referencing the
27511         3300-based assemblies, only do this for System.xxx.
27513 2004-05-01  Jackson Harper  <jackson@ximian.com>
27515         * appdomain.c: If the culture is neutral we set it to "".
27516         
27517 2004-04-29  Jackson Harper  <jackson@ximian.com>
27519         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27521 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27523         * string-icalls.c: added low overhead function for copying chars
27524         * icall.c: added needed icall for the above function
27526 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27528         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27529         Environment.GetLogicalDrives.
27531 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27533         * rand.c: try and talk to egd or prngd
27534         for random bytes if opening devices fail.
27536 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27538         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27539         alignment for the type using the native alignment of its members 
27540         instead of using klass->min_align.
27542         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27544 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27546         * file-io.c:
27547         * socket-io.c: added check for sys/aio.h.
27549 2004-04-28  Dick Porter  <dick@ximian.com>
27551         * threads.c: Don't abort a thread thats already aborting, when
27552         terminating everything.
27554 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27556         * icall.c: added 2 new async calls for Socket.
27558         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27559         IO on *nix systems.
27561         * threadpool.c: removed unused variable.
27563 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27565         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27567 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27569         * locales.c: put back string_invariant_tolower () and
27570         string_invariant_toupper ().
27572 2004-04-26 David Waite <mass@akuma.org>
27574         * file-io.h:
27575         * socket-io.h:
27576         * threads.h:
27577         * unicode.h: remove comma from end of enumeration declarations
27579 2004-04-26 David Waite <mass@akuma.org>
27581         * debug-mono-symfile.h:
27582         * decimal.c:
27583         * mono_debug.h:
27584         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27587 2004-04-26  Jackson Harper  <jackson@ximian.com>
27589         * appdomain.c: Increment version number.
27590         
27591 2004-04-26  Jackson Harper  <jackson@ximian.com>
27593         * appdomain.c: Set assembly references public token value when
27594         PublicKeyToken is specified, not the hash_value. Free public token
27595         values when free assembly name data. Previously the public key
27596         token was hex decoded, however we are using hex encoded public key
27597         tokens, so this is not neccasary.
27598         * assembly.c: Lookup assemblies in the gac if their public token
27599         value is set. Add function to allow enabling user gac
27600         lookups. Specify whether or not the assembly was loaded from the
27601         GAC. Compare full assembly names when checking the cache for
27602         assemblies (Temporarily disabled see comment in code). Remove
27603         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27604         specifies trace-loader they get extra info to stdout on the
27605         loading of assemblies.
27606         * image.h: Add a field for an assembly references public token
27607         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27608         whether an assembly has been loaded from the GAC.
27609         * image.c: Remove a corlib -> mscorlib name mapping.
27610         * loader.h: Add function to enable/disable the user gac.
27611         * mono-config.c: Check if the usergac is enabled in the config
27612         file.
27613         * icall.c: New icall to determine whether or not an assembly has
27614         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27615         * tabldefs.h: Add constant for assemblyref flag that specifies a
27616         full public key is used instead of a public token.
27617         * reflection.c: Remove mscorlib -> corlib mappings. Set
27618         PublicTokenValue instead of hash value. This value is a hex
27619         string so it does not need to be expanded.
27621 2004-04-26  Martin Baulig  <martin@ximian.com>
27623         * mono-debug-debugger.c (mono_debugger_initialize): Set
27624         `mono_debugger_initialized' before calling mono_debug_lock().
27626 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27628         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27629           InternalToUpper/InternalToLower.
27630         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27631           removed invariant culture shortcut.  This is now done in managed code.
27632         * locales.c: (string_invariant_toupper/tolower) removed.
27634 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27636         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27637         Added Poll internal call.
27639         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27640         call for Poll. Select was too heavy for polling a single socket.
27642         * threadpool.[ch]: added mono_threadpool_cleanup.
27643         * threads.c: use it. Don't use Thread_Abort on windows.
27645 2004-04-23  Martin Baulig  <martin@ximian.com>
27647         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27649 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27651         * icall.c: Registred new icalls for key pair protection and added an
27652         icall for Environment.GetFolderPath on Windows.
27653         * security.c|h: Added new icalls for key pair protection.
27655 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27657         * socket-io.c: don't display the non-supported family warning for known
27658         families. Now this is not displayed on windows when checking support
27659         for IPv4/IPv6.
27661 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27663         * class.c: don't display the layout warning for static fields.
27665 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27667         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27668         * locales.c, locales.h: Added new icalls for culture-specific
27669         Char.ToLower and Char.ToUpper.
27671 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27673         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27674         by David Waite.
27676 2004-04-20  Martin Baulig  <martin@ximian.com>
27678         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27679         of the type name before passing it to mono_reflection_type_from_name().
27681 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27683         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27684         encodings here. Fixes #56965.
27686 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27688         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27689         fix test on strstr result not that I can see anything that
27690         relies on the result.
27692 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27694         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27695         Fixes #57081.
27697         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27699         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27700         function to determine which marshalling to use for strings. Fixes
27701         #56965.
27703         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27705         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27707 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27709         * icall.c: #include mono-config.h
27711 2004-04-15  Jackson Harper  <jackson@ximian.com>
27713         * culture-info-tables.h: Fix date formats for en-US culture.
27714         
27715 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27717         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27718         ThreadPool.SetMinThreads.
27719         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27720         ThreadPool.SetMinThreads.
27722 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27724         * mono-config.c: also load the .config file in the directory
27725         where the assembly was found.
27727 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27729         * assembly.c: load per-assembly config files.
27730         * icall.c: decrapified code to get the config dir and moved to
27731         mono-config.c.
27732         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27733         per-assembly config files. When doing a dll map lookup give precedence
27734         to the per-assembly data.
27736 2004-04-14  Martin Baulig  <martin@ximian.com>
27738         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27739         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27740         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27742         * mono-debugger-debugger.c: While the debugger is locked, remember
27743         whether the symbol tables have changes and send one single
27744         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27746 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27748         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27750         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27751         function.
27753         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27754         account when marshalling string arrays. Fixes #56965.
27756 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27758         * icall.c: Add new icalls mapping for security.
27759         * security.c|h: Add internal calls for WindowsIdentity,
27760         WindowsImpersonationContext and WindowsPrincipal.
27762 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27764         * class.c: Added comment to ensure the System.MonoDummy class
27765         is removed when no longer necessary
27767 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27769         * appdomain.c: Pass arguments to the bootstraping exceptions to
27770         minimize JITed methods at boot
27772         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27773         second string to be null.
27775         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27776         Change the protocol to minimize the JIT methods at startup.  Now
27777         it Returns the internal codepage, if the value of "int_code_page"
27778         is 1 at entry, and we can not compute a suitable code page
27779         number, returns the code page as a string.
27781 2004-04-13  Jackson Harper  <jackson@ximian.com>
27783         * culture-info-tables.h: Fix number of decimal digits for all
27784         english locales.
27786 2004-04-13  Jackson Harper  <jackson@ximian.com>
27788         * icall.c: Clairfy out of sync error message. It is not always
27789         your corlib that is out of sync.
27791 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27793         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27794         properties when only the set accessor is overriden. Fixes #55874.
27796 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27798         * assembly.c (mono_assembly_load_references): Make this thread safe.
27799         Fixes #56327.
27801 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27803         * monosn.c: Add missing initialization calls.
27805 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27807         * locales.c:
27808         ves_icall_System_Globalization_CultureInfo_construct_number_format
27809         Fix g_assert so it compiles on fussier compilers re int/ptr
27810         mismatch
27812 2004-04-08  Dick Porter  <dick@ximian.com>
27814         * socket-io.h:
27815         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27816         53992.  Also rearrange the code so that the internal calls return
27817         an error value and exceptions are thrown from managed code.
27819         * icall.c: Add type info to the socket icalls.
27821 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27823         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27824         owes me a beer.
27826 2004-04-07  Martin Baulig  <martin@ximian.com>
27828         * class.c (mono_class_from_generic_parameter): Don't default
27829         `klass->parent' to `mono_defaults.object_type'.
27831 2004-04-07  Martin Baulig  <martin@ximian.com>
27833         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27834         `param->pklass->reflection_info'.       
27836 2004-04-07  Jackson Harper  <jackson@ximian.com>
27838         * culture-info-tables.h: Fix date separator symbol.
27839         
27840 2004-04-07  Martin Baulig  <martin@ximian.com>
27842         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27843         from System.Type to System.MonoType.
27845 2004-04-07  Martin Baulig  <martin@ximian.com>
27847         * reflection.h
27848         (MonoReflectionGenericParam): Added `has_reference_type' and
27849         `has_value_type' fields.
27851         * reflection.c (mono_image_get_generic_param_info): Encode the
27852         correct flags if we have the `class' or `struct' constraint.
27854 2004-04-07  Martin Baulig  <martin@ximian.com>
27856         * reflection.h
27857         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27859 2004-04-07  Jackson Harper  <jackson@ximian.com>
27861         * appdomain.c: Revert extra patches, just wanted to bump the
27862         version number.
27863         
27864 2004-04-07  Jackson Harper  <jackson@ximian.com>
27866         * Makefile.am: Add culture-info private headers.
27867         * icall.c: Add new icalls for contructing locales.
27868         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27869         * locales.h: Declare new culture info construction methods.
27870         * object.h: Add new fields used to avoid the CultureMap to
27871         MonoCultureInfo.
27872         * culture-info.h: Definition of structs used in the culture info
27873         tables.
27874         * culture-info-tables.h: Autogenerated tables that contain culture
27875         info data. This file was generated with the locale-builder tool.
27876         * appdomain.c: Incement corlib version number.
27877         
27878 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27880         * appdomain.c: (mono_runtime_init) move mono_thread_init
27881         to before mono_object_new calls so critical sections
27882         are initialized before use.
27884 2004-04-07  Martin Baulig  <martin@ximian.com>
27886         * icall.c
27887         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27888         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27889         (ves_icall_MonoGenericParam_initialize): Removed.
27890         (monogenericparam_icalls): Removed.
27891         (generictypeparambuilder_icalls): Added new table for
27892         System.Reflection.Emit.GenericTypeParameterBuilder.
27894         * reflection.c
27895         (mono_reflection_define_generic_parameter): Removed.
27896         (mono_reflection_initialize_generic_parameter): This is now called
27897         from GenericTypeParameterBuilder's .ctor.
27899 2004-04-06  Martin Baulig  <martin@ximian.com>
27901         * class.c (mono_class_init): Don't inflate nested classes in a
27902         generic instance.
27903         (mono_type_get_name_recurse): Include the generic arguments for
27904         generic instances and generic type declarations.
27905         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27906         (_mono_class_get_instantiation_name): Removed.
27907         (mono_class_create_generic): Always use `gklass->name' as our name.
27909         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27911         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27912         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27913         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27914         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27915         closed generic methods here.
27917         * reflection.c
27918         (mono_reflection_generic_inst_get_nested_types): Removed.
27919         (inflate_mono_method): Copy the generic parameters from the
27920         MonoMethodHeader into out MonoGenericMethod.
27922 2004-04-06  Martin Baulig  <martin@ximian.com>
27924         * row-indexes.h
27925         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27927         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27929         * reflection.c (build_compressed_metadata): If we have any entries
27930         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27931         set the header version to 1.1.
27933 2004-04-06  Martin Baulig  <martin@ximian.com>
27935         * class.c (mono_class_init): If we're a generic instance,
27936         initialize our nested classes, too.
27937         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27938         suffix. 
27940 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27942         * process.c: quote the argument passed to the shell on windows.
27944 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27946         * threads.c (mono_alloc_special_static_data): Allow this to be
27947         called during startup.
27949 2004-04-02  Martin Baulig  <martin@ximian.com>
27951         * icall.c
27952         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27954 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27956         * icall.c: Fix build.
27958 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27960         * Makefile.am: Added security.c|h.
27961         * icall.c: Added icall for get_UserName;
27962         * security.c: New file for security related icalls. Added function
27963         get_UserName for System.Environment (fix #56144).
27964         * security.h: New. Header file for security.c
27966 2004-04-02  Dick Porter  <dick@ximian.com>
27968         * icall.c: Deleted the icalls that were obsoleted some time ago
27969         by the ICU string code, and which were mixed into the icall
27970         rearranging.  Fixes bug 55969.
27972         * string-icalls.h: 
27973         * string-icalls.c: Deleted the code that those icalls reference.
27975 2004-04-01  Martin Baulig  <martin@ximian.com>
27977         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27979         * class.c (mono_class_from_generic_parameter): Don't set 
27980         TYPE_ATTRIBUTE_INTERFACE.
27981         (my_mono_class_from_generic_parameter): Likewise.
27983 2004-04-01  Martin Baulig  <martin@ximian.com>
27985         * loader.c (find_method): Added an optional `MonoClass *ic'
27986         argument to search in a specific interface.
27987         (mono_get_method_constrained): New public function.
27989 2004-04-01  Martin Baulig  <martin@ximian.com>
27991         * reflection.c (mono_image_get_generic_field_token): Use the
27992         `handleref' cache here.
27994 2004-04-01  Martin Baulig  <martin@ximian.com>
27996         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27998         * reflection.c (create_generic_typespec): Use the `typespec' hash
27999         here, not the `typeref' one.    
28001 2004-04-01  Martin Baulig  <martin@ximian.com>
28003         * class.c (mono_class_inflate_generic_type): Moved the
28004         functionality into a new static inflate_generic_type() which
28005         returns NULL if it didn't do anything.  Only increment the
28006         `mono_stats.inflated_type_count' if we actually inflated
28007         something.
28008         (mono_class_get_full): Check the classes type to see whether we
28009         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28011 2004-04-01  Jackson Harper  <jackson@ximian.com>
28013         * reflection.c: Set culture for assembly references.
28014         
28015 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28017         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28019 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28021         * assembly.c:
28022         (do_mono_assembly_open): the critical section also covers
28023         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28025 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28027         * threads.c:
28028         (mono_manage_threads): abort the background threads when finishing.
28029         Fixes bug #47232.
28031 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28033         * gc.c: only close the done_event handle if there was no timeout.
28034         C-ified comments.
28036 2004-03-30  Martin Baulig  <martin@ximian.com>
28038         * icall.c (icall_entries): It's called "System.Activator", not
28039         "System.Activation".    
28041 2004-03-30  Martin Baulig  <martin@ximian.com>
28043         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28044         (mono_class_create_from_typespec): Likewise.
28046 2004-03-30  Martin Baulig  <martin@ximian.com>
28048         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28049         `has_ctor_constraint' and `initialized'.
28051 2004-03-30  Martin Baulig  <martin@ximian.com>
28053         * reflection.c (encode_new_constraint): New static function to add
28054         the constructor constraint attribute to a type parameter.
28055         (encode_constraints): Call encode_new_constraint() if necessary.
28057         * reflection.h
28058         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28060         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28061         
28062 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28064         * reflection.c, icall.c: add support for pinning variables. 
28066 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28068         * marshal.c (mono_marshal_get_managed_wrapper):
28069         init bool local with zero rather than null.
28071 2004-03-29  Martin Baulig  <martin@ximian.com>
28073         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28074         the "official" behavior here.
28075         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28077 2004-03-29  Martin Baulig  <martin@ximian.com>
28079         * icall.c: Reflect latest API changes.
28081 2004-03-29  Martin Baulig  <martin@ximian.com>
28083         * loader.c (mono_get_method_from_token): Also call
28084         mono_metadata_load_generic_params () for abstract and interface
28085         methods; replace the type arguments in the method signature with
28086         the ones which are loaded from the metadata.
28088 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28090         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28091         of the lock is not the current thread. MS.NET don't do it, in spite of
28092         what the documentation says. See bug #56157.
28094 2004-03-28  Martin Baulig  <martin@ximian.com>
28096         * class.c (mono_class_init): Don't call init_properties() and
28097         init_events() for generic instances; set `prop->parent' when
28098         inflating properties.
28100         * reflection.c (mono_generic_inst_get_object): Call
28101         `mono_class_init (ginst->klass)'.
28102         (mono_type_get_object): Only create a MonoGenericInst if your
28103         generic type is a TypeBuilder.
28104         (do_mono_reflection_bind_generic_parameters): Only set
28105         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28107 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28109         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28110         Fixes #56091.
28112 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28114         * icall.c: added Kill_internal icall.
28115         * process.[ch]: added Kill_internal icall.
28117 2004-03-25  Martin Baulig  <martin@ximian.com>
28119         * class.h (MonoStats): Added `generic_instance_count',
28120         `inflated_method_count', `inflated_type_count' and
28121         `generics_metadata_size'.       
28123 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28125         * reflection.c: no warnings now.
28127 2004-03-25  Martin Baulig  <martin@ximian.com>
28129         * class.c (mono_class_get_full): New public function; does a
28130         mono_class_get(), but also takes a `MonoGenericContext *'.
28132         * loader.c (mono_field_from_memberref): Renamed to
28133         `field_from_memberref', made static and added `MonoGenericContext *'
28134         argument.
28135         (mono_field_from_token): Added `MonoGenericInst *' argument.
28136         (method_from_memberef): Likewise.
28137         (mono_get_method_from_token): Likewise.
28138         (mono_get_method_full): New public function; does a
28139         mono_get_method(), but also takes a `MonoGenericContext *'.
28141         * verify.c (mono_method_verify): Get the method's generic context
28142         and pass it to mono_field_from_token(), mono_get_method_full() and
28143         mono_class_get_full().
28145 2004-03-25  Martin Baulig  <martin@ximian.com>
28147         * class.c (mono_class_inflate_generic_type): Take a
28148         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28149         `MonoGenericMethod *'.
28151 2004-03-25  Martin Baulig  <martin@ximian.com>
28153         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28154         instead of the MonoGenericMethod here.
28156 2004-03-25  Martin Baulig  <martin@ximian.com>
28158         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28159         each time we create a new MonoGenericInst, we also create a new
28160         context which points back to us.
28162         * class.c (inflate_method): Use `ginst->context' instead of
28163         creating a new context.
28165         * loader.c (method_from_memberref): Use
28166         `klass->generic_inst->context' instead of creating a new context.
28168 2004-03-25  Martin Baulig  <martin@ximian.com>
28170         * class.h (MonoGenericContext): New struct.
28171         (MonoGenericMethod): Removed `generic_inst'.
28173         * class.c (mono_class_inflate_generic_method): Take a
28174         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28176 2004-03-25  Martin Baulig  <martin@ximian.com>
28178         * loader.h (MonoMethodInflated): New typedef.
28180         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28181         `generic_param_count' consume just 30 bits, added `is_inflated'
28182         and `has_type_parameters' flags (one bit each).
28184         * class.c (mono_class_inflate_generic_method): Create a
28185         MonoMethodInflated instead of a MonoMethodNormal and set
28186         `is_inflated' in the method signature.
28188         * class.h (MonoGenericMethod): Removed `generic_method'.
28190 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28192         * image.c: Make sure the name of a MonoImage is always an absolute path.
28193           This fixes bug #54415.
28195 2004-03-24  Martin Baulig  <martin@ximian.com>
28197         * class.c (mono_class_setup_vtable): If we're a generic instance,
28198         use our generic type's vtable size.
28200 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28202         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28203         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28204         problems.
28206 2004-03-23  Martin Baulig  <martin@ximian.com>
28208         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28209         `MonoEvent *events'.
28211         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28212         (typebuilder_icalls): Added "get_event_info"; calls
28213         mono_reflection_event_builder_get_event_info(). 
28215         * reflection.c (mono_reflection_generic_inst_initialize): Added
28216         `MonoArray *events'.
28217         (mono_reflection_event_builder_get_event_info): New function.
28219 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28221         * object.h: add mono_type_initialization_init
28223         * object.c (mono_runtime_class_init): 
28224         implement class constructor synchronization rules
28225         to cope with threading issues.  
28226         add mono_type_initialization_init
28228         * appdomain.c (mono_runtime_init): call 
28229         mono_type_initialization_init
28231         * class.h: removing initializing field from MonoVTable
28233 2004-03-23  Martin Baulig  <martin@ximian.com>
28235         * class.c (my_mono_class_from_generic_parameter): Use
28236         `param->name' if it's not NULL. 
28238 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28240         * class.c: do not insert non-virtual methods in the vtable.
28241         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28242         that means the method is non-virtual. This never would have
28243         happened before.
28245 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28247         * profiler.c: Added lock for accessing coverage_hash.
28249 2004-03-22  Martin Baulig  <martin@ximian.com>
28251         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28252         `method->method->signature->generic_param_count != 0' to make it
28253         work for interface methods.
28255 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28257         * process.c: quote the string passed to the shell using g_shell_quote.
28259 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28261         * threads.c:
28262         (mono_threads_manage): don't remove the finalizer thread and self
28263         from the threads hash table so that mono_thread_manage can be called
28264         more than once.
28266 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28268         * process.c: quote the arguments when UseShellExecute is true. Fixes
28269         bug #55790.
28271 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28273         * threads.c: set mono_thread_detach as a cleanup routine for every
28274         thread. This way it's always executed upon thread termination, either
28275         aborted or finished normally. No more xsp hangs!
28277 2004-03-17  Martin Baulig  <martin@ximian.com>
28279         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28280         `int count_nested' and a `MonoType **nested'.
28282         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28283         most of the functionality into a new static
28284         do_mono_reflection_bind_generic_parameters() and don't take a
28285         `MonoType *nested_in' argument any more.  Don't compute nested
28286         types here.
28287         (mono_reflection_generic_inst_get_nested_types): New public method
28288         to get nested types.
28290         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28291         we're a nested class.
28293         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28294         mono_reflection_generic_inst_get_nested_types() to compute the
28295         nested types.
28297 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28299         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28300         descriptive error message under windows.
28301         
28302 2004-03-17  Martin Baulig  <martin@ximian.com>
28304         * class.c (dup_type): Added `const MonoType *original' argument;
28305         copy the attrs from the original type.
28307 2004-03-17  Martin Baulig  <martin@ximian.com>
28309         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28310         `m->generic_inst_cache' here.
28312 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28314         * exception.h exception.c: Add stack_overflow_exception.
28316 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28318         * threadpool.c:
28319         (overlapped_callback): call SetEvent *after* invoking the callback.
28320         No need to call CloseHandle.
28322 2004-03-16  Martin Baulig  <martin@ximian.com>
28324         * reflection.c (mono_image_get_fieldref_token): Take a
28325         `MonoReflectionField *' instead of a `MonoClassField *' and a
28326         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28328 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28330         * appdomain.c: don't add the culture to the filename we're looking for
28331         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28333 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28335         * locales.c: don't ignore symbols when doing case insensitive compares.
28336         Thanks Dick! Fixes bug #54046.
28338         * threads.c: surround 'threads' usage with enter/leave in
28339         mono_thread_manage.
28341 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28343         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28344         implicitly marshalled as [Out]. Fixes #55450.
28346         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28347         an exception.
28349 2004-03-16  Martin Baulig  <martin@ximian.com>
28351         * class.c (mono_class_from_generic_parameter): Use the actual
28352         parameter name. 
28354 2004-03-16  Martin Baulig  <martin@ximian.com>
28356         * reflection.c (type_get_signature_size): New static function.
28357         Compues the size of the type in a method signature.
28358         (method_get_signature_size): New static function; calls
28359         type_get_signature_size() to compute the actual size of the
28360         method's signature.
28361         (method_encode_signature): Use method_get_signature_size() to get
28362         the signature's size rather than using `nparams * 10'.
28364 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28366         * file-io.h: define here WapiOverlapped on windows. I don't want the
28367         regular OVERLAPPED one.
28369         * file-io.c:
28370         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28371         Disabling AIO on windows.
28373 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28375         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28376         bug #55385.
28378 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28380         * appdomain.c: upgraded corlib version.
28382         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28383         and BeginWrite. Allow opening files for asynchrnous operations.
28385         * file-io.h: new struct that maps FileStreamAsyncResult.
28386         * icall.c: added new icalls.
28387         * process.[ch]: support setting child process environment variables
28388         and use the SHELL or COMSPEC when UseShellExecute is true.
28390         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28391         callback for async. IO is here and also BindHandle.
28393         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28394         from here.
28396 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28398         * reflection.c (create_custom_attr): Allow len == 0.
28400         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28401         computation on big-endian machines.
28403 2004-03-13  Martin Baulig  <martin@ximian.com>
28405         * class.h (MonoGenericInst): Added `int count_ifaces'.
28407         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28408         `ginst->count_ifaces' instead `klass->interface_count' since we
28409         may get called before the vtable is created.
28411         * loader.c (mono_method_get_param_names): If we're a generic
28412         instance, return and don't initialize the class.
28414         * reflection.c (mono_reflection_setup_generic_class): Don't call
28415         ensure_runtime_vtable().
28416         (mono_reflection_bind_generic_parameters): Set
28417         `ginst->count_ifaces'.
28419 2004-03-11  Jackson Harper <jackson@ximian.com>
28421         * icall.c:
28422         * unicode.c:
28423         * unicode.h: Remove unused System.Char icalls.
28424         
28425 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28427         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28428         code when we P/Invoke the first library in Windows.Forms, instead
28429         of when we first open the assembly.
28431         * assembly.c: Drop the lookup from here.
28433 2004-03-10  Martin Baulig  <martin@ximian.com>
28435         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28436         class for properties, fields and events.  Finally fixes #54945.
28438 2004-03-10  Martin Baulig  <martin@ximian.com>
28440         * metadata.c (mono_metadata_class_equal): New static function;
28441         checks whether two generic instances or two generic parameters are
28442         equal.
28443         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28444         compare classes.        
28446 2004-03-10  Martin Baulig  <martin@ximian.com>
28448         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28450         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28451         argument and write it into the `reflection_info' field.
28453         * icall.c
28454         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28455         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28457 2004-03-09  Jackson Harper  <jackson@ximian.com>
28459         * char-conversions.h: use 8 bits for numeric data its all we need
28460         * icall.c: numeric data is only 8 bits now.
28462 2004-03-09  Martin Baulig  <martin@ximian.com>
28464         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28466         * class.c (init_properties, init_events): Initialize the new
28467         `parent' field.
28469         * reflection.c (typebuilder_setup_properties): Likewise.
28470         (typebuilder_setup_events): Likewise.
28472         * reflection.h (MonoEventInfo): Replaced `parent with
28473         `declaring_type' and `reflected_type'.
28475         * icall.c (ves_icall_get_property_info): Distinguish between
28476         declaring and reflected type.
28477         (ves_icall_get_event_info): Likewise.
28479 2004-03-09  Martin Baulig  <martin@ximian.com>
28481         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28482         (ves_icall_Type_GetField): Correctly set field->klass.
28484 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28486         * loader.h: Fix warning.
28488 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28490         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28491         library routine if present.  Notice that it will still continue
28492         executing even if its missing, for those working on the Gtk#
28493         edition of Windows.Forms.
28495         * assembly.c (do_mono_assembly_open): If loading the
28496         System.Windows.Forms call mono_loader_wini_init.
28498 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28500         * class.h: Added MonoRemoteClass struct.
28501         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28502         function for MonoStrings.
28503         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28504         Added internal call for getting the proxy type.
28505         * marshal.c: Get the type of transparent proxies from its remote_class.
28506         Added methods that generate the IL for type checks and casts:
28507         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28508         mono_marshal_get_proxy_cancast.
28509         * marshal.h: Declaration of the previous new methods.
28510         * object.c: Added new moethods for creating and updating MonoRemoteClass
28511         instances: mono_remote_class, mono_upgrade_remote_class, 
28512         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28513         * verify.c: FIx transparent_proxy_fields layout.
28514         * appdomain.c: Bump corlib version.
28516 2004-03-04  Jackson Harper  <jackson@ximian.com>
28518         * icall.c: Add icall to access char conversion tables.
28519         * char-conversions.h: Character conversion tables.
28520         * Makefile.am: Add char-conversions.h private header file.
28521         
28522 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28524         * appdomain.c (unload_thread_main): Increase unloading timeout to
28525         10 sec as a temporary workaround for Nant problems.
28527 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28529         * gc.c: Add checks for GC_enable and GC_disable.
28531         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28532         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28533         (bug #54988).
28534         
28535 2004-02-27  Martin Baulig  <martin@ximian.com>
28537         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28538         `MonoReflectionType *' instead of a `MonoType *'.
28540 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28542         * gc.c (run_finalize): Avoid finalizing the object representing the
28543         finalizer thread.
28544         (finalizer_thread): Fix warning.
28546 2004-02-25  Martin Baulig  <martin@ximian.com>
28548         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28549         argument for nested types.
28550         (mono_class_create_generic): Added support for nested generictypes.
28552         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28553         `GList *nested'.
28555         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28557         * reflection.c (method_encode_signature): Increase the minimum
28558         value of `size' from 10 to 11.
28559         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28560         and `MonoType **types' arguments instead of the `MonoArray
28561         *types'; added `MonoType *nested_in'.  Recursively instantiate
28562         nested classes. 
28564 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28566         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28567         stack_overflow_ex members which are used by exception handling.
28569         * appdomain.c (mono_runtime_init): Initialize the new members.
28571         * gc.c (mono_gc_enable): New helper function.
28572         * gc.c (mono_gc_disable): New helper function.
28574 2004-02-23  Martin Baulig  <martin@ximian.com>
28576         * icall.c: I must have been really stupid - make it actually work
28577         this time ;-)
28579 2004-02-23  Martin Baulig  <martin@ximian.com>
28581         * loader.c (method_from_memberref): Only inflate the method if
28582         it's in another klass.
28584 2004-02-23  Martin Baulig  <martin@ximian.com>
28586         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28587         (mono_class_init): If we're a generic instance and an interface,
28588         compute `class->interface_id'; also create `class->interfaces'
28589         here and inflate them.
28591         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28592         `ginst->is_open'.
28593         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28595         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28597 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28599         * reflection.c (method_encode_code): Improved the error message
28600         generated by the exception.
28602 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28604         * icall.c: Martin did not do what he said in the ChangeLog for
28605         2004-02-18, but put back the changes for properties and events.
28606         Commenting those changes out again and adding comment to bug #54518.
28607         
28608         * process.c: removed warning.
28610 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28612         * marshal.c (emit_struct_conv): Print an error message instead of
28613         asserting when a type does not have the StructLayout attribute.
28615 2004-02-20  Martin Baulig  <martin@ximian.com>
28617         * reflection.c (mono_type_get_object): Also use the cache for
28618         generic instances.
28619         (mono_reflection_bind_generic_parameters): Always compute
28620         `ginst->ifaces'.        
28622 2004-02-20  Martin Baulig  <martin@ximian.com>
28624         * class.h (MonoGenericMethod): Removed `klass'.
28626         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28627         *klass' argument.
28629 2004-02-20  Martin Baulig  <martin@ximian.com>
28631         * reflection.c (method_encode_methodspec): Actually use the
28632         uninflated signature for the memberref.
28634 2004-02-20  Martin Baulig  <martin@ximian.com>
28636         * class.h (MonoGenericMethod): Removed `declaring'.
28638         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28639         is NULL, compute it here.
28641 2004-02-20  Martin Baulig  <martin@ximian.com>
28643         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28645         * metadata.c (mono_metadata_generic_inst_hash): New method.
28646         (mono_metadata_generic_inst_equal): New method.
28648         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28649         `klass->image->generic_inst_cache' cache to avoid creating
28650         duplicate MonoGenericInst's.
28652         * class.c (mono_class_inflate_generic_type): Use the cache.
28654 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28656         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28658 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28660         * icall.c: added Socket.WSAIoctl icall.
28662         * socket-io.[ch]: implemented
28663         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28665 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28667         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28669 2004-02-18  Urs C Muff  <umuff@quark.com>
28671         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28672         this work on PPC and other big-endian architectures.
28674         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28675         fields with an underscore to make sure they're only accessed by
28676         the read32() macro.
28678 2004-02-18  Martin Baulig  <martin@ximian.com>
28680         * icall.c: Put the klass->refclass changes back for methods and
28681         fields, but not for properties and events.  We're currently not
28682         distinguishing between DeclaringType and ReflectedType for
28683         properties and events, that's what caused the regressions.
28685 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28687         * object.c:
28688         (mono_async_result_new): the handle can be NULL.
28690         * threadpool.c: Use an event instead of a semaphore, don't initialize
28691         it until needed. This saves quite a few semaphores from being created
28692         when using the threadpool.
28694 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28696         * object.c (mono_string_is_interned_lookup): Fix interning of long
28697         strings. Fixes #54473.
28699         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28701         * icall.c: Revert the klass->refclass changes since they introduce
28702         regressions (bug #54518).
28704 2004-02-18  Martin Baulig  <martin@ximian.com>
28706         * class.c (mono_class_init): If we're a generic instance and don't
28707         come from a TypeBuilder, inflate our members here.
28708         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28709         (mono_class_create_generic): New public method.
28710         (mono_class_initialize_generic): Removed.
28711         (get_instantiation_name): Renamed to
28712         _mono_class_get_instantiation_name() and made it public.
28714 2004-02-18  Martin Baulig  <martin@ximian.com>
28716         * class.c (mono_class_inflate_generic_type): Clear the new
28717         instance's `nginst->klass' when inflating a generic instance.
28718         (mono_class_is_subclass_of): Added (basic) support for generic
28719         instances.
28721 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28723         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28724         MonoMempool to hold compiled native code.
28726 2004-02-17  Martin Baulig  <martin@ximian.com>
28728         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28729         `properties'.
28731         * reflection.c (mono_reflection_generic_inst_initialize): Added
28732         `MonoArray *properties' argument.
28734         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28736 2004-02-17  Martin Baulig  <martin@ximian.com>
28738         * icall.c (ves_icall_Type_GetFields): Renamed to
28739         ves_icall_Type_GetFields_internal() and added a
28740         `MonoReflectionType *rtype' argument; pass it to
28741         mono_field_get_object() to set the field's "reflected" type.
28742         (ves_icall_Type_GetConstructors): Likewise.
28743         (ves_icall_Type_GetEvents): Likewise.
28744         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28745         argument; pass it to mono_method_get_object() to set the method's
28746         "reflected" type.       
28748 2004-02-17  Martin Baulig  <martin@ximian.com>
28750         * class.h (MonoDynamicGenericInst): New type.
28751         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28753         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28754         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28755         (ves_icall_MonoGenericInst_GetFields): New interncall.
28757         * class.c (mono_class_from_generic): Don't call
28758         mono_class_initialize_generic() if this is a dynamic instance;
28759         ie. it's being created from a TypeBuilder.
28760         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28761         `class->byval_arg.type'.
28763         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28764         to `inflate_method' and made static.
28765         (mono_reflection_inflate_field): Removed.
28766         (mono_reflection_generic_inst_initialize): New public method.
28768         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28769         `ctors' and `fields'; added `initialized'.
28771 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28773         * debug-helpers.c (mono_method_full_name): Fix output for empty
28774         namespaces.
28776 2004-02-12  Martin Baulig  <martin@ximian.com>
28778         * class.h (MonoClassField): Added `MonoType *generic_type'.
28780         * reflection.c (mono_image_get_fieldref_token): Added support for
28781         instantiated generic types.
28782         (field_encode_inflated_field): Removed.
28783         (mono_image_get_inflated_field_token): Removed.
28784         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28786         * reflection.h (MonoReflectionInflatedField): Removed.
28788 2004-02-12  Martin Baulig  <martin@ximian.com>
28790         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28791         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28793         * reflection.c (mono_image_get_methodspec_token): Take a
28794         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28795         (mono_image_create_token): Check whether we have a
28796         `method->signature->gen_method' and call
28797         mono_image_get_methodspec_token() if appropriate.
28798         (inflated_method_get_object): Removed.
28799         (mono_reflection_bind_generic_method_parameters): Return a
28800         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28801         (mono_reflection_inflate_method_or_ctor): Likewise.
28803         * reflection.h (MonoReflectionInflatedMethod): Removed.
28805 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28807         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28808         for custom valuetype marshalling.
28810         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28812 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28814         * icall.c: fixed WSAGetLastError_internal name.
28816 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28818         * threads.c (mono_thread_attach): Allow this to be called multiple
28819         times for a thread.
28820         
28821         * threads.c (build_wait_tids): Do not wait for ourselves.
28823         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28824         appdomain list is empty.
28826         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28827         memory returned by mono_string_builder_to_utf16, since it points into
28828         managed memory. Thanks to Bernie Solomon for noticing this.
28830         * icall.c: Add AppDomainSetup icalls.
28832         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28834         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28835         types.
28837         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28838         custom attributes to the method_aux struct. Also fix array indexes etc.
28840         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28841         
28842 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28844         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28845         (both static and runtime) and reduce startup time.
28847 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28849         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28850         AsAny marshalling conversion instead of crashing.
28852         * marshal.c: Fix warnings.
28854 2004-02-09  Martin Baulig  <martin@ximian.com>
28856         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28858         * reflection.h (MonoReflectionInflatedMethod): Removed the
28859         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28861         * reflection.c (method_encode_methodspec): Removed the `method'
28862         argument; we get it from `gmethod->declaring'.
28863         (inflated_method_get_object): Removed the `declaring' argument.
28865 2004-02-09  Martin Baulig  <martin@ximian.com>
28867         * class.h (MonoGenericMethod): New type.
28868         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28869         `generic_method'.
28871         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28872         a `MonoGenericMethod *gen_method' one.
28874         * class.c (mono_class_inflate_generic_type): Take an additional
28875         `MonoGenericMethod * argument.  This is only non-NULL if we're
28876         inflating types for a generic method.   
28877         (mono_class_inflate_generic_signature): Renamed to
28878         inflate_generic_signature() and made static; take a
28879         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28880         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28881         instead of a `MonoGenericInst *' one.
28882         (mono_class_inflate_generic_method): Likewise.
28884         * reflection.c (encode_generic_method_sig): Take a
28885         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28886         (method_encode_methodspec): Likewise.
28887         (inflated_method_get_object): Likewise. 
28889         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28890         field with a `MonoGenericMethod *gmethod' one.  
28892 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28894         * class.h (mono_class_has_parent): add parens to expansion
28895         so you can ! this.
28897 2004-02-08  Martin Baulig  <martin@ximian.com>
28899         * image.h (MonoImage): Removed `generics_cache'.
28901         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28902         instead of a `MonoType *' argument; removed the `inflate_methods'
28903         argument.  Don't inflate methods here.
28905         * loader.c (find_method): If it's a generic instance, call
28906         mono_class_init() on the `sclass->generic_inst->generic_type'.
28908         * metadata.c (mono_type_size): Make this work on uninitialized
28909         generic instances; call it on the `ginst->generic_type's class.
28911         * reflection.c (mono_reflection_bind_generic_parameters): Call
28912         mono_class_from_generic() to create the `ginst->klass'.
28914 2004-02-08  Martin Baulig  <martin@ximian.com>
28916         * class.h (MonoClass): Changed type of `generic_inst' from
28917         `MonoType *' to `MonoGenericInst *'.
28919 2004-02-08  Martin Baulig  <martin@ximian.com>
28921         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28922         mono_type_get_object(), this is now creating a `MonoGenericInst'
28923         for MONO_TYPE_GENERICINST.
28924         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28925         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28927         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28928         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28929         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28930         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28931         and reflected type.
28933         * reflection.h (MonoReflectionInflatedMethod): Removed
28934         `declaring_type' and `reflected_type'.
28936 2004-02-08  Martin Baulig  <martin@ximian.com>
28938         * class.h (MonoGenericInst): Added `MonoType *parent' and
28939         `MonoType **ifaces'.
28941         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28942         `parent' and `interfaces'.
28944         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28945         `MonoType *' argument and return a `MonoType *'.
28947         * icall.c
28948         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28949         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28951 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28953         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28954         valuetype marshalling.
28956 2004-02-06  Martin Baulig  <martin@ximian.com>
28958         * class.c
28959         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28960         (my_mono_class_from_generic_parameter): Likewise.
28962 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28964         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28965         contents of the symbol files lazily.
28967         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28969         * threads.h threads.c icall.c: New icalls for getting and setting the
28970         threads name.
28972 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28974         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28975         Raise an exception when the domain is not found.
28977 2004-02-03  Martin Baulig  <martin@ximian.com>
28979         * reflection.c (mono_image_get_methodspec_token): Use the
28980         uninflated signature; fixes gen-33.
28982 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28984         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28985         the finalizer code can use thread functionality.
28987         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28988         the finalizer thread.
28990         * threads.c: Make some functions more robust.
28992         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28994         * metadata.h: Add new marshalling conventions.
28996         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28997         stringbuilder marshalling. Fixes #53700.
28999         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29001         * reflection.c (mono_image_get_type_info): Save declarative security
29002         info.
29004         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29005         unmanaged fields as well.
29007         * appdomain.c: Bump corlib version.
29009 2004-02-01  Martin Baulig  <martin@ximian.com>
29011         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29012         method type arguments.  
29014 2004-01-30  Duncan Mak  <duncan@ximian.com>
29016         * marshal.h: Add prototype for
29017         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29018         and
29019         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29020         fix the build.
29022 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29024         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29025         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29027 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29029         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29030         custom marshalling of valuetypes.
29032         * marshal.c: Fix some warnings.
29034 2004-01-29  Martin Baulig  <martin@ximian.com>
29036         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29037         for generic method parameters.
29039         * reflection.c (method_encode_methodspec): Write the uninflated
29040         signature into the methodspec table.
29041         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29042         is always the uninflated method.
29043         (reflection_methodbuilder_to_mono_method): Copy the generic
29044         parameters from the MethodBuilder into `header->gen_params'.
29046 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29048         * class.c (mono_class_from_generic_parameter): Fix warning.
29050 2004-01-27  Martin Baulig  <martin@ximian.com>
29052         * class.c (mono_class_from_generic_parameter): Don't create
29053         `klass->methods' here.  
29055 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29057         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29058         extension since it does not work with libraries named lib<FOO>.dll.so.
29060 2004-01-25  Martin Baulig  <martin@ximian.com>
29062         * class.c (mono_class_inflate_generic_type): Added support for
29063         MONO_TYPE_GENERICINST.
29065         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29066         inflate methods on open constructed types.      
29068 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29070         * object.c: fire ProcessExit event in the root AppDomain after running
29071         Main. Fixes bug #53299.
29073 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29075         * socket-io.c: include the new socket-wrappers.h header.
29076         Use the wrappers instead of the unix socket functions to make the code
29077         more clear.
29079 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29081         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29083         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29084         Fixes #22532.
29086 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29088         * reflection.c (mono_image_create_pefile): Handle the case when the
29089         entry point is not a MethodBuilder.
29091         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29092         field to ReflectionMethod since it is not allways a builder.
29094         * reflection.c (type_get_fully_qualified_name): New helper function to
29095         return the fully qualified name of a type.
29097         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29098         type name for custom marshallers.
29100         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29102         * class.c (mono_class_setup_vtable): If a parent class already 
29103         implements an interface, use the implementing methods from that class.
29104         Fixes #53148.
29106 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29108         * threadpool.c: just return instead of ExitThread to allow for thread
29109         clean up earlier.
29111 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29113         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29114         when closing resource modules.
29116         * reflection.c (mono_image_create_pefile): Handle the case when the
29117         entry point is not a MethodBuilder.
29119         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29120         field to ReflectionMethod since it is not allways a builder.
29122 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29124         * marshal.c (mono_marshal_get_managed_wrapper): 
29125         mono_marshal_alloc takes native int so CONV_I
29126         the arg for 64bits.
29128 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29130         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29131         tokens in the cattr table. Fixes #53108.
29133 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29135         * loader.c: don't trim ".dll" before looking up in the config file.
29136         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29138 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29140         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29141         Return the module which contains the resource as well.
29142         (ves_icall_System_Reflection_Module_Close): New icall.
29144         * appdomain.c: Bump corlib version number.
29146         * image.c (mono_image_addref): New public function.
29148         * assembly.c: Call mono_image_addref.
29150         * reflection.c (mono_module_get_object): Increase reference count of 
29151         the image.
29153         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29154         Fixes #22532.
29156         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29157         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29158         proper exceptions on DllImport problems.
29160 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29162         * class.c, metadata.c: eliminate CSIZE macro.
29164 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29166         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29167         * object.h: Added async_callback field in MonoAsyncResult.
29168         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29169         * verify.c: Added async_callback in MonoAsyncResult layout.
29171 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29173         * reflection.c (mono_reflection_get_custom_attrs): Add support
29174         for Modules.
29176 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29178         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29179         marshalling.
29180         (mono_marshal_method_from_wrapper): Add null pointer check.
29182 2004-01-16  Martin Baulig  <martin@ximian.com>
29184         * debug-mono-symfile.h: Set version number to 36 and reflect
29185         latest symbol writer changes.
29187 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29189         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29190         multi-dimensional arrays.
29191         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29192         (mono_class_from_mono_type): Use bounded_array_class_get.
29193         
29194         * class.c (mono_bounded_array_class_get): New function which takes
29195         a 'bounded' bool argument to distinguish vectors from one dimensional
29196         arrays.
29198         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29199         bounded_array_class_get if the array has bounds.
29201         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29202         Search modules loaded using AssemblyBuilder:AddModule as well.
29204 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29206         * appdomain.c: increased corlib version.
29207         * filewatcher.c: removed g_print.
29208         * icall.c:
29209         (get_property_info): only allocate what is actually requested.
29210         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29212 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29214         * Makefile.am: added filewatcher.[ch]
29215         * filewatcher.[ch]: FileSystemWatcher runtime support.
29216         * icall.c: added new FSW icalls.
29218 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29220         * string-icalls.c: fix stringbuilder regression as suggested by
29221         Iain McCoy <iain@mccoy.id.au>.
29223 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29225         * process.c (process_read_stringtable_block): Recognize '007f' as
29226         a language neutral stringtable block.
29228 2004-01-12  Patrik Torstensson
29230         * object.h (MonoStringBuilder) : Changed layout to support our
29231         new stringbuilder class.
29232         * marshal.c: Change marshalling to support the new layout of 
29233         string builder.
29234         * appdomain.c: increased version number because new layout of
29235         string builder.
29237 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29239         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29240         assembly name as an string instead of an AssemblyName, since it is
29241         easier to extract info from it.
29243         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29244         the culture subdirectories too. Fixes #52231.
29246 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29248         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29249         It takes 2 new parameters with an optional name for the method to look
29250         for and case ignoring info.
29252         * threadpool.c: removed unused variable.
29254 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29256         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29257         It takes 2 new parameters with an optional name for the property to look
29258         for and case ignoring info.
29259         Fixes bug #52753.
29261 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29263         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29264         Fix #52451.
29266 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29268         * appdomain.c:
29269         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29270         Fixes bug #52630.
29272 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29274         * reflection.c: Add support for more than one unmanaged resource.
29276         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29277         in field->def_value, as done in all other cases.
29279         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29280         TypeBuilders.
29282         * reflection.c (mono_reflection_create_runtime_class): Remove 
29283         errorneous assignment to klass->element_class, since it is already
29284         done in mono_reflection_setup_internal_class.
29286 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29288         * gc.c: added missing LeaveCriticalSection.
29289         * icall.c: indented a couple of lines.
29290         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29291         if we call EndInvoke inside a callback. Fixes bug #52601.
29293 2004-01-07  Martin Baulig  <martin@ximian.com>
29295         * mono-debug-debugger.h
29296         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29298 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29300         * appdomain.c: Use messages in NotImplementedException.
29302         * exception.c (mono_get_exception_not_implemented): Now this takes
29303         a message argument.
29305         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29306         exception instead of g_asserting an aborting when something is not
29307         implemented.
29309         Add some inline docs.
29311 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29313         * reflection.h: Update after changes to object layout.
29315         * reflection.c: Implement saving of unmanaged aka win32 resources.
29317         * appdomain.c: Bump version number.
29319         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29320         Handle missing domains gracefully.
29322 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29324         * file-io.c : On Windows, there are much more invalid_path_chars.
29326 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29328         * class.h, object.c: prepare for GetType () speedup.
29330 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29332         * profiler.c: workaround for --profile null reference exception on
29333           cygwin. Patch by Patrik Torstensson.
29335 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29337         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29338         make work for unaligned access.
29340 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29342         * class.c: small cleanup (class->fields [i] -> field).
29343         * image.c: check address of metadata is valid.
29345 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29347         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29348         search the list of loaded assemblies.
29350         * reflection.c (mono_reflection_type_from_name): Use 
29351         mono_assembly_loaded instead of mono_image_loaded.
29353         * reflection.c: Fix warnings.
29355 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29357         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29358         is dynamic. This is needed since an assembly can contain both dynamic and
29359         non-dynamic images.
29361         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29362         assembly->dynamic.
29364         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29366         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29367         to store modules loaded using AddModule.
29369         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29370         on Modules.
29372         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29374         * reflection.c (mono_image_fill_export_table_from_module): New function to
29375         fill out the EXPORTEDTYPES table from a module.
29377         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29378         into a separate function. Also handle loaded non-dynamic modules.
29380         * reflection.c (mono_image_basic_init): Fix memory allocation.
29382         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29384         * assembly.c (mono_assembly_load_references): Make this public.
29386 2003-12-19  Martin Baulig  <martin@ximian.com>
29388         * class.c (mono_class_initialize_generic): Made this static, take
29389         a `MonoGenericInst *' instead of a `MonoClass *'.
29390         (mono_class_from_generic): Call mono_class_initialize_generic()
29391         unless we're already initialized or being called from
29392         do_mono_metadata_parse_generic_inst().
29394         * class.h (MonoGenericInst): Added `initialized' and
29395         `init_pending' flags.
29397         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29398         `mono_class_init (gklass)' or mono_class_initialize_generic()
29399         here; set `generic_inst->init_pending' while parsing the
29400         `type_argv'.
29402 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29404         * locales.c: include string.h for memxxx prototypes
29406 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29408         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29409         constructor when accessing literal fields.
29411 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29413         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29415         * reflection.c (assembly_add_resource_manifest): New function to fill
29416         the MANIFESTRESOURCE table.
29418         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29420         * reflection.h: Update to changes in class layout.
29422         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29423         Reenable call to mono_runtime_is_shutting_down ().
29425         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29426         determine if the runtime is shutting down.
29428 2003-12-16  Jackson Harper <jackson@ximian.com>
29430         * icall.c: comment out call to mono_runtime_is_shutting_down to
29431         fix build.
29432         
29433 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29435         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29436         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29438 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29440         * reflection.c: move definition of swap_with_size
29441         to before its first call
29443 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29445         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29447         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29448         icall.
29450         * object.c: Fix warnings.
29452         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29453         members if FlattenHierarchy is set.
29455         * reflection.c (mono_image_add_decl_security): New function to emit
29456         declarative security.
29458         * reflection.h reflection.c: Add support for declarative security.
29460         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29461         
29462 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29464         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29465         
29466         * appdomain.c verify.c: Moved corlib version checking into its own
29467         function in appdomain.c since it needs to create vtables etc.
29469 2003-12-13  Patrik Torstensson <p@rxc.se>
29471         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29472         instead of unwrapped server.
29474 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29476         * verify.c (check_corlib): Fix field index.
29478 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29480         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29481         GetGacPath icall.
29483 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29485         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29486         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29487         cope with sizeof(size_t) != sizeof(guint32).
29489 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29491         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29492         in case of failure.
29494 2003-12-10  Mark Crichton <crichton@gimp.org>
29496         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29497         in managed code.
29499         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29501 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29503         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29504         marked as deleted.
29506 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29508         * verify.c (check_corlib): Handle the case when the version field is 
29509         initialized by a static constructor.
29511 2003-12-08  Patrik Torstensson  <p@rxc.se>
29513     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29515 2003-12-08  Martin Baulig  <martin@ximian.com>
29517         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29518         a MonoReflectionGenericParameter, also take the parameter index
29519         and name as arguments.
29520         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29521         (ves_icall_MonoGenericParam_initialize): New interncall.
29522         (ves_icall_Type_make_byref_type): New interncall.
29524         * reflection.h (MonoReflectionGenericParam): Derive from
29525         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29526         `index' fields.
29528         * reflection.c (mono_reflection_define_generic_parameter): Create
29529         and return a new MonoReflectionGenericParam; don't initialize the
29530         constraints here.
29531         (mono_reflection_initialize_generic_parameter): New public method;
29532         initializes the constraints and creates the `param->pklass'.
29534 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29536         * reflection.h reflection.c: Use the new fields 'num_types', 
29537         'num_fields' and 'num_methods' to track the number of types etc.
29539         * verify.c (check_corlib): Check corlib version number.
29541 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29543         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29544         function works on all methods.
29546 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29548         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29549         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29550         the custom_type_info flag of the transparent proxy.
29551         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29552         objects that supports IRemotingTypeInfo.
29553         * object.h: Added custom_type_info field in transparent proxy.
29555 2003-12-06  Martin Baulig  <martin@ximian.com>
29557         * class.c (mono_class_create_from_generic): Removed.
29558         (mono_class_from_generic): Check `ginst->klass' before doing
29559         anything else.  This is important to fully support "recursive"
29560         generic types.
29562         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29563         empty `generic_inst->klass' before doing anything else.
29565 2003-12-06  Dick Porter  <dick@ximian.com>
29567         * verify.c: 
29568         * object.h:
29569         * icall.c:
29570         * locales.c: Use C structs to access class fields.  Don't do a
29571         conversion between MonoString and UChar because both are
29572         platform-endian UTF-16.  Compare now takes startindex and count
29573         parameters.  Add a char overload for IndexOf.  Speed up the
29574         invariant string IndexOf.
29576 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29578         * Makefile.am (monosn_LDADD): Fix parallel build.
29580 2003-12-04  Martin Baulig  <martin@ximian.com>
29582         * icall.c
29583         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29584         (ves_icall_Type_make_array_type): New interncall.       
29586 2003-12-04  Martin Baulig  <martin@ximian.com>
29588         * locales.c: also change it in the !HAVE_ICU case.
29590 2003-12-04  Dick Porter  <dick@ximian.com>
29592         * icall.c:
29593         * locales.c: construct_compareinfo is now in CompareInfo, not
29594         CultureInfo.
29596 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29598         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29599         image->files array.
29601         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29602         table as well.
29604         * assembly.c (mono_assembly_load_references): Only load references
29605         once.
29607         * class.c (mono_class_from_name): Avoid linear search of the 
29608         EXPORTEDTYPE table.
29610         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29612 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29614         * image.h (MonoImage): Add 'field_cache' field.
29616         * loader.c (mono_field_from_token): Cache field lookups.
29617         
29618         * reflection.c (mono_module_get_object): Fix name property.
29620         * icall.c (ves_icall_get_enum_info): Update after changes to 
29621         mono_metadata_get_constant_index ().
29623         * icall.c: Get rid of get_type_info icall, use a separate icall for
29624         each type property to avoid needless memory allocations. Fixes #51514.
29626         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29627         to avoid needless binary searches.
29629         * class.c (class_compute_field_layout): Move the initialization of
29630         field->def_value to mono_class_vtable ().
29632         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29633         non-corlib types.
29635         * object.c (mono_object_allocate): Make it inline.
29637         * object.c (mono_object_allocate_spec): Make it inline.
29638         
29639 2003-12-02  Dick Porter  <dick@ximian.com>
29641         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29642         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29644 2003-12-01  Dick Porter  <dick@ximian.com>
29646         * threads.c: Fix signature and call in CreateMutex and
29647         CreateEvent.
29649 2003-12-01  Dick Porter  <dick@ximian.com>
29651         * icall.c: 
29652         * locales.c: Implement string compares and searching
29654         * object.h: Add extra Thread field
29656 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29658         * reflection.c (fixup_method): Add support for MonoCMethod.
29660 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29662         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29664         * reflection.c (assembly_name_to_aname): Allow extra characters in
29665         assembly names. Fixes #51468.
29667 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29669         * exception.c (mono_exception_from_name_domain): New helper function.
29671         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29672         exception object in the correct domain.
29674         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29675         formatting + make a copy a the input data.
29677         * loader.c (mono_get_method_from_token): Methods which contain
29678         native code do not have entries in the ImplMap.
29680         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29681         Thanks to Gonzalo for spotting this.
29682         
29683         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29684         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29686         * assembly.h (mono_assembly_load_from): Split the second part of 
29687         assembly loading into a new public function.
29689         * exception.h (mono_get_exception_bad_image_format): New function.
29691 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29693         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29694         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29695         
29696         * icall.c: Add new icall for creating dynamic methods.
29698         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29700         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29702         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29703         create a dynamic method.
29705         * reflection.c (resolve_object): New helper function.
29707         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29708         which manipulate it so they can also work on dynamic methods.
29710         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29711         creating the MonoReflectionMethodAux structure if it is not needed.
29712         
29713         * reflection.h verify.c: Update after changes to object layout.
29715         * reflection.c (method_builder_encode_signature): Fix compilation on
29716         gcc 2.95.x.
29718 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29720         * appdomain.h: Added support for context static fields. Added static_data
29721           field to MonoAppContext and renamed thread_static_fields to a more
29722           generic special_static_fields in MonoAppDomain, since it can now contain
29723           context static fields.
29724         * domain.c: Updated hashtable name.
29725         * object.c: Replaced field_is_thread_static() for a more generic
29726           field_is_special_static() which also checks for context static attribute.
29727           In mono_class_vtable(), added support for static context fields.
29728         * threads.c: Changed methods that manage thread static fields to more
29729           generic methods so they can be reused both for thread and context static
29730           data.
29731         * threads.h: Declared some new methods.
29733 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29735         * reflection.h: Update after changes to the managed types.
29737         * reflection.c (encode_custom_modifiers): New helper function.
29739         * reflection.c (method_encode_signature): Emit custom modifiers.
29741         * reflection.c (field_encode_signature): Emit custom modifiers.
29743 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29745         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29747         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29748         implementation.
29750         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29751         icall.
29753         * object.c (mono_field_get_value_object): New function.
29755         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29756         specific.
29758 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29760         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29761         return a preallocated out-of-memory exception instance.
29763         * object.c (out_of_memory): Use the new function.
29765         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29766         flag is before the custom modifiers. Fixes #49802.
29768 2003-11-16  Martin Baulig  <martin@ximian.com>
29770         * class.c (mono_class_is_open_constructed_type): Implemented the
29771         MONO_TYPE_GENERICINST case.
29773 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29775         * assembly.c (mono_assembly_fill_assembly_name): New function to
29776         fill out the MonoAssemblyName structure.
29777         (mono_assembly_open): Use the new function.
29779         * icall.c (fill_reflection_assembly_name): New helper function.
29781         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29782         new function.
29784         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29786 2003-11-15  Martin Baulig  <martin@ximian.com>
29788         * class.c (mono_class_is_open_constructed_type): New public
29789         function; checks whether a type is an open constructed type,
29790         ie. whether it still contains type parameters.
29791         (mono_class_inflate_generic_type): If we're a type parameter and
29792         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29793         type.
29795         * class.h (MonoGenericInst): Added `guint32 is_open'.
29797         * loader.c (method_from_methodspec): Check whether we're an open
29798         or closed constructed type and set `ginst->is_open'.
29800         * reflection.c (mono_reflection_bind_generic_parameters): Check
29801         whether we're an open or closed constructed type and set
29802         `ginst->is_open'.
29803         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29804         from open constructed types.
29806 2003-11-15  Martin Baulig  <martin@ximian.com>
29808         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29809         a generic instance (instead of a generic type declaration) with
29810         unbound generic parameters, bind them to our actual types.
29812 2003-11-14  Martin Baulig  <martin@ximian.com>
29814         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29816         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29817         an interface type, populate `res->interfaces' with instantiated
29818         versions of all the interfaces we inherit.
29820 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29822         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29823         when MONO_PATH is set but doesn't contain the install dir.
29825 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29827         * icall.c:
29828         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29829         it's also implemented in base classes. Fixes bug #50927.
29831 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29833         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29834         if this method is called from a finalizer. Fixes #50913.
29836 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29838         * threads.c: Implement VolatileRead/VolatileWrite
29840         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29842 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29844         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29845         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29846         2.95.3.
29848         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29849         from Peter Ross (pro@missioncriticalit.com).
29850         
29851 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29853         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29855 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29857         * assembly.c (mono_assembly_load_references): Disable check because it
29858         triggers on older corlibs which lots of people have.
29860 2003-11-12  Jackson Harper  <jackson@ximian.com>
29862         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29863         load corlib.dll if mscorlib.dll is not found.
29864         * assembly.h: Remove corlib name define.
29865         * class.c:
29866         * domain.c:
29867         * image.c: Change corlib name to mscorlib.
29868         
29869 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29871         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29873 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29875         * appdomain.h: Added loader_optimization here to sync with the C#
29876         code, and add disallow_binding_redirects field.
29878 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29880         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29882         * reflection.c (mono_image_build_metadata): Fix crash on modules
29883         with no types.
29885         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29887         * icall.c (ves_icall_get_method_info): Return callingConvention as
29888         well.
29890         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29891         namespaces from the EXPORTEDTYPE table as well.
29893         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29894         from all modules inside the assembly.
29895         
29896 2003-11-11  Martin Baulig  <martin@ximian.com>
29898         * reflection.c (mono_reflection_bind_generic_parameters): Make
29899         this work for interfaces.
29901 2003-11-11  Martin Baulig  <martin@ximian.com>
29903         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29905 2003-11-11  Martin Baulig  <martin@ximian.com>
29907         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29908         "MonoInflatedMethod" and "MonoInflatedCtor".
29910 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29912         * reflection.c (resolution_scope_from_image): Use the assembly table
29913         from the manifest module, since other modules don't have it.
29915         * debug-helpers.c (mono_type_full_name): New helper function.
29917         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29919         * image.c (mono_image_load_file_for_image): New public function which
29920         is a replacement for the load_file_for_image in class.c.
29922         * assembly.c (mono_assembly_load_module): A wrapper for the function
29923         above which does assembly association and reference loading too.
29925         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29927 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29929         * appdomain.c: not all of the attributes for the full assembly name
29930         are required and the order doesn't matter. Fixes bug #50787.
29932 2003-11-10  Dick Porter  <dick@ximian.com>
29934         * locales.c: Use platform-endian UTF16
29936 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29938         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29939         
29940 2003-11-10  Martin Baulig  <martin@ximian.com>
29942         * metadata.c
29943         (mono_metadata_load_generic_params): Make this actually work.
29945         * reflection.c (mono_reflection_bind_generic_parameters): If our
29946         parent is a generic instance, pass all the `types' to it, no
29947         matter whether it has the same number of type parameters or not.
29949 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29951         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29953         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29954         assignment code to this function so it gets called recursively for all
29955         modules.
29957         * image.c (load_modules): Remove the assembly assignment since it is
29958         now done by mono_assembly_load_references.
29959         
29960         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29961         Add 'module' argument.
29962         (mono_module_get_types): New helper function.
29963         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29965 2003-11-08  Martin Baulig  <martin@ximian.com>
29967         * class.c (mono_class_inflate_generic_method): Interface method
29968         don't have a header.
29970         * reflection.c (mono_image_get_methodspec_token): Take an
29971         additional `MonoGenericInst *' argument instead of reading it from
29972         the header; this is necessary to support interfaces.
29973         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29974         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29975         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29976         argument.
29978         * reflection.h (MonoReflectionInflatedMethod): Added
29979         `MonoGenericInst *ginst'.
29981 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29983         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29985 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29987         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29989 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29991         * reflection.c 
29992         (reflection_methodbuilder_from_method_builder):
29993         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29994         initialize a ReflectionMethodBuilder structure.
29995         (mono_image_get_methodbuilder_token):
29996         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29997         tokens which point to types in another module inside the same assembly.
29999         * reflection.c: Use the new helper functions.
30000         
30001         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30003         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30004         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30006         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30007         neccesary.
30009         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30010         current module. Emit the manifest only for the main module.
30012         * reflection.c (mono_image_create_token): Add assertion when a 
30013         memberref needs to be created.
30015         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30017         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30018         larger buffer for the custom attribute blob. Fixes #50637.
30019         
30020 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30022         * threadpool.c: notify listener on async processing handles after
30023         invoking the async callback. Thanks to Zoltan.
30025 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30027         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30028         avoid code duplication.
30030         * reflection.h (MonoDynamicImage): New type which is currently unused,
30031         but will be used through the ref.emit code in place of 
30032         MonoDynamicAssembly.
30034         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30035         object layout.
30037         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30038         a MonoDynamicImage instead of just a MonoImage.
30039         
30040         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30041         icalls to ModuleBuilder but keep their semantics, so they will work
30042         with moduleb->assemblyb. This will change later.
30043         
30044 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30046         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30047         object layout.
30049         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30050         main module, since it is now done by the managed code.
30052 2003-11-03  Martin Baulig  <martin@ximian.com>
30054         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30055         `ginst->klass' here.
30056         (method_encode_methodspec): Don't use the `ginst->generic_method's
30057         klass if it's a generic instance, use `ginst->klass' in this case.
30059 2003-11-03  Martin Baulig  <martin@ximian.com>
30061         * reflection.c (mono_image_get_generic_method_param_info):
30062         Removed, use mono_image_get_generic_param_info() instead.
30063         (mono_image_get_type_info): Write the GenericParam table before
30064         the Method table.  This is neccessary because in the GenericParam
30065         table, type parameters of the class (ie. '!0' etc.) must come
30066         before the ones from its generic methods (ie. '!!0' etc).
30068 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30070         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30072 2003-11-02  Martin Baulig  <martin@ximian.com>
30074         * reflection.c (create_generic_typespec): Take a
30075         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30076         the generic parameters from it.
30078 2003-11-02  Martin Baulig  <martin@ximian.com>
30080         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30081         instead of a `MonoClassField *' since we just need the type.
30082         (create_generic_typespec): New static function.  Creates a
30083         TypeSpec token for a generic type declaration.
30084         (mono_image_get_generic_field_token): New static function.
30085         (mono_image_create_token): If we're a FieldBuilder in a generic
30086         type declaration, call mono_image_get_generic_field_token() to get
30087         the token.
30089 2003-11-02  Martin Baulig  <martin@ximian.com>
30091         * reflection.h
30092         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30093         `MonoReflectionGenericInst *declaring_type' and
30094         `MonoReflectionGenericInst *reflected_type' fields.
30096         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30097         `MonoReflectionGenericInst *declaring_type' and a
30098         `MonoReflectionGenericInst *reflected_type' argument instead of a
30099         single `MonoReflectionGenericInst *type' one.  Set
30100         `res->declaring_type' and `res->reflected_type' from them.
30101         (mono_reflection_inflate_field): Likewise.      
30103 2003-11-02  Martin Baulig  <martin@ximian.com>
30105         * class.c (mono_class_setup_vtable): Don't store generic methods
30106         in the vtable.  
30108 2003-11-02  Martin Baulig  <martin@ximian.com>
30110         * reflection.h (MonoReflectionGenericInst): Added
30111         `MonoReflectionType *declaring_type'.
30113         * reflection.c (mono_reflection_bind_generic_parameters): Use
30114         `if (tb->parent)' instead of `klass->parent'.
30116 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30118         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30119         with an empty ASSEMBLY table.
30121         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30122         variable in the inner and outer loops.
30124 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30126         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30127         argument.
30129         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30130         
30131         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30132         icalls. Instead, do everything in managed code. This is needed since
30133         it is hard to restore the original domain etc. in unmanaged code in the
30134         presence of undeniable exceptions.
30136         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30137         New icalls to push and pop appdomain refs.
30139 2003-10-31  Martin Baulig  <martin@ximian.com>
30141         * class.c (inflate_generic_type): Renamed to
30142         mono_class_inflate_generic_type() and made it public.
30144         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30145         New interncall.
30147         * loader.c (mono_field_from_memberref): Also set the retklass for
30148         typespecs.
30150         * fielder.c (mono_image_get_inflated_field_token): New static
30151         method; creates a metadata token for an inflated field.
30152         (mono_image_create_token, fixup_method): Added support for
30153         "MonoInflatedField".
30154         (fieldbuilder_to_mono_class_field): New static function.
30155         (mono_reflection_inflate_field): New public function.
30157         * reflection.h
30158         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30159         (MonoReflectionInflatedField): New typedef.     
30161 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30163         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30164         for Solaris and other platforms without s6_addr16
30166 2003-10-30  Martin Baulig  <martin@ximian.com>
30168         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30169         argument instead of two.
30170         (mono_class_inflate_generic_signature): Likewise.
30171         (inflate_generic_header): Likewise.
30172         (mono_class_inflate_generic_method): Likewise.  In addition, if
30173         `ginst->klass' is set, it becomes the new `method->klass'.
30175         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30176         field.
30178         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30179         first byte. [FIXME]
30180         (method_encode_methodspec): If we have generic parameters, create
30181         a MethodSpec instead of a MethodRef.
30182         (fixup_method): Added support for "MonoInflatedMethod" and
30183         "MonoInflatedCtor".
30184         (mono_image_create_token): Added support for "MonoInflatedMethod"
30185         and "MonoInflatedCtor".
30186         (inflated_method_get_object): New static function; returns a
30187         managed "System.Reflection.MonoInflatedMethod" object.
30188         (mono_reflection_bind_generic_method_parameters): Return a
30189         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30190         (mono_reflection_inflate_method_or_ctor): Likewise.
30191         (mono_image_get_generic_method_param_info): Initialize unused
30192         fields to zero.
30193         (mono_image_get_generic_param_info): Likewise.
30195         * reflection.h (MonoReflectionInflatedMethod): New public
30196         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30197         "S.R.MonoInflatedCtor" classes.
30199         * loader.c (method_from_memberref): If we're a TypeSpec and it
30200         resolves to a generic instance, inflate the method.
30202 2003-10-28  Dick Porter  <dick@ximian.com>
30204         * object.c (mono_runtime_run_main): Convert command-line arguments
30205         into utf8, falling back to the user's locale encoding to do so.
30207 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30209         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30210         at this time.
30212         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30214         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30215         up icalls at method definition time. Partially fixes #33569.
30217 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30219         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30220         marshalling of arrays. Fixes #50116.
30222         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30224         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30225         points to a vtable in the dying appdomain.
30227         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30228         listeners into unmanaged code inside the lock.
30230         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30231         domains and add some comments.
30233 2003-10-25  Martin Baulig  <martin@ximian.com>
30235         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30237         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30239         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30240         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30241         currently parsing.  Create the generic class and store it in
30242         `generic_inst->klass' before parsing the type arguments.  This is
30243         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30244         for an example.
30245         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30246         to support recursive typespec entries.
30248         * class.c (mono_class_setup_parent): If our parent is a generic
30249         instance, we may get called before it has its name set.
30250         (mono_class_from_generic): Splitted into
30251         mono_class_create_from_generic() and mono_class_initialize_generic().
30253 2003-10-25  Martin Baulig  <martin@ximian.com>
30255         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30256         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30257         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30258         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30260         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30261         (create_typespec): Likewise.
30262         (mono_reflection_bind_generic_parameters): Return a
30263         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30264         (mono_reflection_inflate_method_or_ctor): New public function.
30266         * reflection.h (MonoReflectionGenericInst): New typedef.        
30268 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30270         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30271         inside the domain lock. Fixes #49993.
30272         
30273         * object.c (mono_class_vtable): When typed allocation is used, 
30274         allocate vtables in the GC heap instead of in the mempool, since the
30275         vtables contain GC descriptors which are used by the collector even
30276         after the domain owning the mempool is unloaded.
30278         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30280         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30281         reflect what it does. Also invalidate mempools instead of freeing
30282         them if a define is set.
30284         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30285         of the appdomain.
30286         
30287         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30288         hold the finalizable objects in this domain.
30290         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30291         appdomain.
30293         * appdomain.c (mono_domain_set): New function to set the current
30294         appdomain, but only if it is not being unloaded.
30296         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30297         appdomain which is being unloaded.
30298         
30299         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30300         unloading of the root appdomain.
30302         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30303         icall to execute a method in another appdomain. Intended as a 
30304         replacement for InternalSetDomain, which can confuse the code 
30305         generation in the JIT.
30307         * appdomain.c (mono_domain_is_unloading): New function to determine
30308         whenever an appdomain is unloading.
30310         * appdomain.c (mono_domain_unload): New function to correctly unload
30311         an appdomain.
30313         * assembly.c (mono_assembly_load_references): Check that an assembly
30314         does not references itself.
30316         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30317         domain manually, it asks the finalizer thread to do it, then waits for
30318         the result. Also added a timeout.
30320         * icall.c: Register the new icalls.
30322         * threads.h threads.c: Export the mono_gc_stop_world and 
30323         mono_gc_start_world functions.
30324         
30325         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30326         function to fill out the mempool with 0x2a.
30328 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30330         * reflection.h (MonoReflectionMethodAux): New structure to store
30331         information which is rarely used, thus is not in the MonoMethod
30332         structure.
30334         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30335         store the aux info.
30337         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30338         and marshalling info into the aux structure.
30340         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30341         from the aux structure.
30343         * loader.c (mono_method_get_param_names): Retrieve the param names from
30344         the aux structure.
30345         
30346 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30348         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30349         warning.
30351 2003-10-21  Dick Porter  <dick@ximian.com>
30353         * socket-io.c
30354         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30355         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30357 2003-10-21  Martin Baulig  <martin@ximian.com>
30359         * reflection.c (mono_reflection_bind_generic_parameters):
30360         `klass->parent' is NULL for interfaces.
30362 2003-10-21  Martin Baulig  <martin@ximian.com>
30364         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30366 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30368         * exception.c (mono_exception_from_name_msg): New helper function for
30369         creating exceptions and initializing their message field.
30371         * exception.c: Simplify functions using the new helper.
30373         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30374         New function.
30376         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30377         mono_raise_exception, since otherwise gcc doesn't generate the function
30378         epilog for raise_exception, confusing the stack unwinding in the JIT.
30379         Fixes #45043.
30381         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30382         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30383         Fixes #49499.
30385 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30387         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30388         utf8.
30390 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30392         * icall.c: Removed GetUninitializedObject method because
30393           AllocateUninitializedClassInstance does the same.
30395 2003-10-18  Martin Baulig  <martin@ximian.com>
30397         * class.c (inflate_generic_signature): Renamed to
30398         mono_class_inflate_generic_signature() and made it public.
30399         (my_mono_class_from_generic_parameter): New static function; if we
30400         don't already have the generic parameter's MonoClass, create a
30401         very simple one which is just used internally in the runtime and
30402         not passed back to managed code.
30404         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30406         * metadata.h (MonoMethodSignature): Moved the
30407         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30408         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30410         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30411         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30412         interncall on the MonoMethod class, not on MethodInfo.
30413         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30414         calling mono_reflection_bind_generic_method_parameters() directly.
30416         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30417         return the already computed `method->signature'.
30418         (method_from_methodspec): New static function to load a method
30419         from a MethodSpec entry.
30420         (mono_get_method_from_token): Call the new method_from_methodspec()
30421         for MethodSpec tokens.  
30422         (mono_get_method_from_token): If we're a generic method, load the
30423         type parameters.
30425         * reflection.c (mono_image_get_memberref_token): Allow
30426         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30427         table.
30428         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30429         (mono_image_create_token): First check whether it's a generic
30430         method (so we'd need to create a MethodSpec), then do the other
30431         two alternatives.
30432         (mono_reflection_bind_generic_method_parameters): Return a
30433         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30434         called directly from the interncall.
30436 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30438         * reflection.c (load_public_key): Move loading of the public key
30439         into managed code.
30441         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30443         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30444         fields.
30446         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30447         culture, hash_alg and public_key. Fixes #49555.
30449 2003-10-17  Martin Baulig  <martin@ximian.com>
30451         * class.h (MonoGenericInst): Moved this declaration here and added
30452         `MonoMethod *generic_method'.
30454         * icall.c
30455         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30456         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30458         * metadata.c (mono_metadata_type_equal): Two types of
30459         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30460         index; ie. don't compare the address of the `MonoGenericParam'
30461         structure.
30462         (mono_metadata_load_generic_params): Removed the `MonoMethod
30463         *method' argument.
30465         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30466         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30468         * reflection.c (method_encode_signature): Encode the number of
30469         generic parameters.
30470         (encode_generic_method_sig): New static function.
30471         (method_encode_methodspec): New static function; creates an entry
30472         in the MethodSpec table for a generic method.
30473         (mono_image_get_methodspec_token): New static function.
30474         (mono_image_create_token): Call mono_image_get_methodspec_token()
30475         for generic methods.
30476         (mono_reflection_bind_generic_method_parameters): New public
30477         function.  Instantiates a generic method.
30479 2003-10-16  Martin Baulig  <martin@ximian.com>
30481         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30482         *gen_params' here from MonoMethodHeader.
30484         * metadata.c (mono_metadata_parse_method_signature): If we have
30485         generic parameters, initialize `method->gen_params' and then set
30486         the correct `type->data.generic_param' in all the parameters.
30488 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30490         * threads.c (mono_threads_get_default_stacksize): New function to 
30491         return the default stacksize.
30493         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30494         termination of the finalizer thread, since the previous method had
30495         race conditions. Fixes #49628.
30497         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30498         as for the other managed threads.
30500 2003-10-16  Martin Baulig  <martin@ximian.com>
30502         * class.c (inflate_generic_signature): Copy `generic_param_count'
30503         and `gen_params'.
30505         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30506         New interncall.
30508         * metadata.c (mono_metadata_parse_method_signature): Actually set
30509         the `method->generic_param_count' here.
30510         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30512 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30514         * object.h: Add a new field to TypedRef to simplify the implementation
30515         of the REFANY opcodes in the JIT.
30517         * icall.c: Make use of the new field.
30519         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30520         dynamically.
30522 2003-10-15  Martin Baulig  <martin@ximian.com>
30524         * class.c (mono_class_from_gen_param): Renamed to
30525         mono_class_from_generic_parameter() and moved most of the
30526         functionality from mono_reflection_define_generic_parameter()
30527         here; ie. we create a "real" class here.
30528         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30529         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30530         previously been called.
30532         * class.h (MonoGenericParam): Moved the declaration of this struct
30533         here from metadata.h and added `MonoMethod *method'.
30535         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30536         interncall.
30538         * loader.c (mono_get_method_from_token): If we have any generic
30539         parameters, call mono_metadata_load_generic_params() to read them
30540         from the MONO_TABLE_GENERICPAR.
30542         * metadata.c (mono_metadata_load_generic_params): Added
30543         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30545         * metadata.h (MonoMethodSignature): Replaced
30546         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30547         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30549         * reflection.c (mono_reflection_define_generic_parameter): Moved
30550         most of the functionality into the new
30551         mono_class_from_generic_parameter(); set the `method' field if
30552         we're a method parameter.       
30554 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30556         * marshal.c (emit_struct_conv): if native size is 0
30557         emit no code.
30559 2003-10-14  Martin Baulig  <martin@ximian.com>
30561         * icall.c: The generics API has changed in the spec since it was
30562         added to System.Type; these modifications make it match the spec
30563         again.
30564         (ves_icall_Type_GetGenericParameters): Renamed to
30565         `ves_icall_Type_GetGenericArguments'.
30566         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30567         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30568         `ves_icall_MonoType_get_HasGenericArguments'.
30569         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30570         `ves_icall_MonoType_get_IsGenericParameter'.
30571         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30572         this is no interncall anymore.
30573         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30574         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30576 2003-10-14  Martin Baulig  <martin@ximian.com>
30578         * reflection.c (mono_reflection_bind_generic_parameters): Also
30579         inflate generic methods if we're reading the class from IL.
30581 2003-10-13  Martin Baulig  <martin@ximian.com>
30583         * reflection.c (mono_reflection_define_generic_parameter): This
30584         method isn't called directly from the icall anymore; take a
30585         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30586         method generic parameters.
30587         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30588         (method_builder_encode_signature): Encode generic parameters.
30589         (mono_image_get_method_info): Write generic params to the
30590         MONO_TABLE_GENERICPARAM table.
30592         * reflection.h (MonoReflectionMethodBuilder): Added
30593         `MonoArray *generic_params'.
30595         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30597         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30598         wrapper for mono_reflection_define_generic_parameter().
30599         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30601 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30603         * marshal.h: Add missing function to fix build.
30605         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30606         the SetLastError pinvoke attribute.
30608         * marshal.c (mono_marshal_set_last_error): New helper function called
30609         by the generated code.
30610         
30611         * marshal.c (mono_mb_emit_branch): New helper function.
30613         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30615         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30616         classes as parameters and return values of delegates. Fixes #29256. 
30618 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30620         * locales.c: use gint32 in non HAVE_ICU case
30622 2003-10-11  Martin Baulig  <martin@ximian.com>
30624         * mono-debug.c (mono_debug_add_method): Added a workaround for
30625         bug #48591.
30627 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30629         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30630         delegates passed to native code must use the STDCALL calling 
30631         convention. Fixes #35987.
30633 2003-10-10  Martin Baulig  <martin@ximian.com>
30635         * class.c (inflate_generic_type): If we're inflating for a generic
30636         type instance (and not for a generic method), return
30637         MONO_TYPE_MVAR unchanged.
30639 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30641         * string-icalls.c: Join ignores null strings in the source array.
30642         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30643         * threads.c: GetAvailableTheads is slightly more accurate.
30645 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30647         * threads.h threads.c : add mono_threads_set_default_stacksize
30648         and pass default to CreateThread calls.
30650 2003-10-09  Dick Porter  <dick@ximian.com>
30652         * icall.c:
30653         * locales.h:
30654         * locales.c: Internal calls for constructing CultureInfo and
30655         related objects from libicu (if its available.)
30657 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30659         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30661 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30663         * threadpool.c: added an argument to async_invoke_thread that is the
30664         item to process, pass the MonoAsyncResult to the thread start function
30665         when creating a new thread. This way we don't need to acquire any lock
30666         when we're creating a new thread. Readded a semaphore for faster
30667         response times (instead of that Sleep i added).
30669 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30671         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30672         get daylight change dates better on Windows, fix handling
30673         of platforms without tm_gmtoff.
30675 2003-10-06  Martin Baulig  <martin@ximian.com>
30677         * class.c (inflate_generic_method): Renamed to
30678         mono_class_inflate_generic_method() and made public.
30679         (mono_class_init): Don't inflate the generic methods here.
30680         (mono_class_from_generic): Added `gboolean inflate_methods'
30681         argument.  Inflate the methods here.
30683         * loader.c (mono_method_get_param_names): Ignore instances of
30684         generic types for the moment.
30686         * reflection.c (fixup_method): Added support for inflated methods.
30687         (mono_image_create_token): Use mono_image_get_methodref_token()
30688         for inflated methods.
30689         (mono_custom_attrs_from_param): Ignore instances of generic types
30690         for the moment.
30691         (mono_reflection_bind_generic_parameters): New public function.
30692         Moved all the functionality from
30693         ves_icall_Type_BindGenericParameters() here and added support for
30694         dynamic types.
30695         (mono_reflection_define_generic_parameter): Initialize
30696         `klass->methods' here.
30698         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30699         functionality into mono_reflection_define_generic_parameter().
30700         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30701         TypeBuilder, return that TypeBuilder.
30703 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30705         * appdomain.c: removed mono_delegate_semaphore.
30707         * threadpool.c:
30708         (mono_thread_pool_add): moved hash table creation inside and the thread 
30709         creation outside of the critical region.
30710         (mono_thread_pool_finish): removed obsolete code.
30711         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30712         continue or exit the thread depending on the queue.
30714 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30716         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30717         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30718         handle more bool marshalling options
30720 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30722         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30723         arrays of structs. Also add a more descriptive error message when
30724         a structure member is marshalled as LPArray.
30726 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30728         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30729         marshalling arrays of complex types. Fixes #29098. Also remove an
30730         usused and incomplete function.
30732 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30734         * gc.c: report heap_size - free_bytes as total memory allocated
30735         (bug#49362).
30737 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30739         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30740         fix timezone handling problems on Windows.
30741         
30742         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30743         asserts when the year is outside the range handled by ms the functions.
30745         * class.c (setup_interface_offsets): If the class is an interface,
30746         fill out its interface_offsets slot.
30748 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30750         * threadpool.c: mark threadpool threads as background.
30752 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30754         * decimal.c - define DECINLINE to nothing if not using GCC
30756 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30758         * assembly.c: More refcount fixes.
30760 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30762         * string-icalls.c: if we're not trimming, return the same string.
30763         When not splitting, don't create a new string.
30765 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30767         * image.c:
30768         (mono_image_open): increment the ref_count inside the critical section.
30770 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30772         * image.c (mono_image_open): Fix reference counting bug.
30774 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30776         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30777         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30778         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30779         mono_lookup_pinvoke_call throws.        
30781 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30783         * reflection.c (mono_reflection_parse_type): Fix #49114.
30785         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30786         temporary workaround for cygwin header problem.
30788         * object.c (mono_object_isinst): Synchronize this with the code
30789         generated by the JIT for casts.
30791 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30793         * reflection.c (encode_type): Fix #38332.
30795 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30797         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30798         the original method from the wrapper method.
30800 2003-09-25  Martin Baulig  <martin@ximian.com>
30802         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30803         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30804         (ves_icall_Type_get_IsGenericInstance): New interncall.
30806 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30808         * object.c: fix cast warning in big endian code.
30810 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30812         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30813         
30814 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30816         * assembly.c: don't call check_env from mono_assembly_load. It's
30817         already done once in mono_assemblies_init and may cause headaches when
30818         multiple threads are loading assemblies.
30820 2003-09-19  Martin Baulig  <martin@ximian.com>
30822         * reflection.c (mono_reflection_define_generic_parameter): Don't
30823         allocate `klass->methods', set `klass->flags' to
30824         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30826 2003-09-18  Martin Baulig  <martin@ximian.com>
30828         * class.c (mono_class_init): Don't create `class->methods' if it's
30829         already initialized.
30831         * metadata.c (mono_metadata_load_generic_params): Make this
30832         actually work.
30834         * reflection.c (mono_reflection_define_generic_parameter): Set
30835         parent class and interfaces from the constraints.
30837         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30838         to keep this struct in sync with the declaration in TypeBuilder.cs.
30840 2003-09-17  Martin Baulig  <martin@ximian.com>
30842         * metadata.h (MonoType): Replaced the data's `int type_param'
30843         field with `MonoGenericParam *generic_param'.
30844         (MonoGenericParam): Added `MonoClass *klass'.
30846         * class.c (mono_class_from_gen_param): Removed the
30847         `MonoImage *image' and `int type_num' arguments.
30849         * metadata.c (mono_metadata_parse_generic_param): New static
30850         method; creates a MonoGenericParam which just contains the index.
30851         (do_mono_metadata_parse_type): Call
30852         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30853         MONO_TYPE_MVAR.
30855         * reflection.c (mono_image_typedef_or_ref): Generic type
30856         parameters may be in the same assembly, but never use a typedef
30857         for them.
30858         (mono_reflection_define_generic_parameter): We're now creating a
30859         "real" class for the type parameter; it's now safe to call
30860         mono_class_from_mono_type() on the class'es type, it'll do the
30861         right thing.
30863 2003-09-16  Martin Baulig  <martin@ximian.com>
30865         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30866         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30867         the `symfile' data structure must be fully initialized before it
30868         gets added to the table.
30870 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30872         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30874         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30875         class init trampolines.
30877 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30879         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30880         to the built-in profiler to turn off time and allocation profiling
30881         respectively.
30883 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30885         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30886         g_direct_equal.
30888         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30889         in human readable form.
30891 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30893         * reflection.c icall.c: Fixed warnings.
30895         * image.c (load_class_names): Use a temporary hash table to hold the
30896         namespaces in order to avoid doing many string comparisons.
30898         * image.h: Fix typo.
30900         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30901         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30902         since the NULL case is short-circuited inside g_hash_table_lookup, 
30903         leading to better performance.  
30905         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30906         obtain the first custom attribute for a given index. Depends on the
30907         CustomAttribute table being sorted by the parent field.
30909         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30910         for better performance.
30912 2003-09-07  Martin Baulig  <martin@ximian.com>
30914         * class.c (mono_class_init): If we're a generic instance, inflate
30915         all our methods instead of loading them from the image.
30916         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30918 2003-09-07  Martin Baulig  <martin@ximian.com>
30920         * mono-debug-debugger.c: Added support for constructors.
30922 2003-09-06  Martin Baulig  <martin@ximian.com>
30924         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30925         New interncall.
30927         * reflection.c (mono_reflection_setup_generic_class): Call
30928         ensure_runtime_vtable() to create the vtable.
30930 2003-09-05  Martin Baulig  <martin@ximian.com>
30932         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30933         MONO_TYPE_MVAR.
30935 2003-09-04  Martin Baulig  <martin@ximian.com>
30937         * reflection.c (mono_reflection_define_generic_parameter): Generic
30938         parameters start with zero.
30940 2003-09-04  Martin Baulig  <martin@ximian.com>
30942         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30944         * reflection.h (MonoReflectionGenericParam): New typedef.
30945         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30946         the generic parameters from the managed TypeBuilder.
30948         * reflection.c (mono_reflection_define_generic_parameter): New function.
30949         (mono_reflection_create_runtime_class): Encode generic parameters.
30950         (mono_reflection_setup_generic_class): New function; this is
30951         called after adding adding all generic params to the TypeBuilder.
30952         (encode_type): Added MONO_TYPE_VAR.
30954 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30956         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30957         here from the JIT.
30959         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30960         load hook.
30962 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30964         * reflection.h reflection.c class.h class.c: Delete duplicate 
30965         definition of mono_type_get_name () from reflection.c and export the
30966         one in class.c.
30968         * class.c: Class loading fixes from Bernie Solomon 
30969         (bernard@ugsolutions.com).
30971         * reflection.c: Endianness fixes from Bernie Solomon 
30972         (bernard@ugsolutions.com).
30973         
30974 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30976         * assembly.h assembly.c: Define a file format version for AOT
30977         libraries.
30978         
30979         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30981         * appdomain.h (MonoJitInfo): New field to determine whenever the
30982         code is domain neutral.
30983         
30984 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30986         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30988 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30990         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30991         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30992         Avoid caching the result since strings must be domain specific. Fixes
30993         #48050.
30995 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30997         * marshal.c (mono_marshal_init): Make this callable multiple times
30998         since it is hard to find a correct place to call it.
31000         * object.c (mono_runtime_class_init): Execute static constructors in
31001         the correct appdomain.
31003         * image.c (build_guid_table): Handle the case when multiple images have
31004         the same GUID.
31006 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31008         * icall.c: added a couple of icalls for System.Web.
31010 2003-08-28  Martin Baulig  <martin@ximian.com>
31012         * icall.c (ves_icall_Type_BindGenericParameters): Use
31013         `klass->generic_inst' instead of `&klass->byval_arg' in the
31014         mono_type_get_object() call.  The returned type must be
31015         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31017 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31019         * NOTES: New file.
31021         * object.c (mono_class_proxy_vtable): Make it thread safe.
31023         * pedump.c: Fix warning.
31025         * object.c appdomain.h: Get rid of metadata_section. 
31026         It is no longer needed and it was causing deadlocks with domain->lock.
31028         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31030 2003-08-26  Martin Baulig  <martin@ximian.com>
31032         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31034 2003-08-26  Martin Baulig  <martin@ximian.com>
31036         * pedump.c (main): Call mono_metadata_init(),
31037         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31038         and mono_loader_init().
31040 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31042         * loader.h: Add missing include to fix build.
31044         * image.h: mono_image_load_references is no more.
31046         * assembly.c: Reworked assembly loading to make it really thread safe.
31047         After these changes, the assembly returned by mono_assembly_open is
31048         fully initialized, i.e. all its references assemblies are loaded.
31050         * assembly.c (mono_image_load_references): Renamed to 
31051         mono_assembly_load_references, and made private, since clients no
31052         longer need to call it.
31054         * class.c: Removed calls to mono_assembly_load_references, since it was
31055         a source of deadlocks.
31057         * loader.h loader.c class.h class.c: Protect data structures using a 
31058         new lock, the loader lock.
31060         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31061         GPtrArrays only when needed.
31063         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31064         into empty structures by mcs. Fixes pinvoke7.cs.
31065         
31066         * domain.c (mono_init): Call a new initialization function.
31068         * appdomain.c (mono_runtime_init): Call the new initializer function
31069         of the marshal module.
31071         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31072         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31074         * marshal.h marshal.c: Added locks around the wrapper caches to make
31075         this module thread safe.
31077         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31078         this argument. Fixes pinvoke1.exe.
31080 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31082         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31083         enumeration of values. Removed fields to store remote call output values in
31084         MonoAsyncResult. Not needed any more.
31085         * object.c: Initialize call_type and async_result fields in mono_message_init.
31086         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31087         dispatching the message.
31088         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31089         async call to finish. To do it use a message with EndInvoke call type.
31091 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31093         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31094         determines whenever a method has marshalling info.
31096 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31098         * assembly.c: fix the build on windows.
31100 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31102         * object.cs: Fixed bug #47785.
31104 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31106         * string-icalls.c (StringReplace): If their are no occurances of
31107         the old string found return a reference to the supplied
31108         string. This saves some memory and matches MS behavoir.
31109         
31110 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31112         * socket-io.c: fixed compilation for systems that define AF_INET6
31113         and don't define SOL_IP/SOL_IPV6.
31115 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31117         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31118         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31120         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31122         * domain.c: Make this module thread safe.
31124         * domain.c (mono_init): Call new initialization function.
31126         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31127         reference types too. Fixes #38812.
31129         * image.c (mono_image_init): Fixed warnings.
31131         * class.c (mono_class_from_typeref): Handle assembly load failure
31132         correctly.
31134         * appdomain.c (add_assemblies_to_domain): Handle the case when
31135         the references of an assembly are not yet loaded.
31137         * metadata.c image.c assembly.c: Moved initialization of global
31138         variables to a separate function called at startup since lazy 
31139         initialization of these variables is not thread safe.
31140         
31141         * image.c assembly.c: Made this module thread safe by adding locks in 
31142         the appropriate places.
31144         * domain.c (mono_init): Call the new initialization functions of the
31145         three modules.
31147 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31149         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31150           make a direct call. It is proxy's work to make the call asynchronous.
31151           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31152           the return values.
31153         * object.cs: mono_method_call_message_new(): read AsyncResult and
31154           state object from parameters list, if this info is requested.
31155         * object.h: Added fields to store remote call output values in
31156           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31158 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31160         * object.h: add needed fields to MonoThread.
31161         * threads.c, threads.h: allow registering a function to cleanup data
31162         allocated per thread by the JIT.
31164 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31166         * loader.h: portability fix by Bernie Solomon
31167         * <bernard@ugsolutions.com>.
31169 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31171         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31172         return a MonoArray. This simplifies the code and also ensures that
31173         the cache allways contains an object reference as a value.
31175         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31176         function.
31178 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31180         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31181         fixes a problem with byte ordering when getting the address family for
31182         a socket.
31184 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31186         * .cvsignore: Added monosn.
31188         * reflection.h reflection.c loader.c: Added support for parameter
31189         marshalling to dynamically created types. Fixes #47295.
31191 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31193         * rand.c: remove useless warnings.
31195 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31197         * class.c: implemented ldtoken for methods and fieldrefs.
31199 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31201         * threadpool.c: when mono_async_invoke was called, no one took care of
31202         monitoring the queue. So if the method invoked took some time and we
31203         got new async invoke requests after 500 ms (the thread created waited
31204         that long in WaitForSingleObject), the new async invoke was not called
31205         until the previous one finished.
31207         This is fixed now. Thanks to Totte for helping with it.
31209 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31211         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31213 2003-08-11  Martin Baulig  <martin@ximian.com>
31215         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31217 2003-08-06  Martin Baulig  <martin@ximian.com>
31219         * mono-debug-debugger.c: Added support for static fields,
31220         properties and methods.
31222 2003-08-06  Martin Baulig  <martin@ximian.com>
31224         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31225         make this work for applications with multiple application domains.
31227 2003-08-04  Martin Baulig  <martin@ximian.com>
31229         * mono-debug-debugger.c: Completely reworked the type support; the
31230         most important thing is that we're now just using one single
31231         `MonoType' instance per type.
31233 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31235         * mono-endian.h, mono-endian.c, icall.c: Added icall
31236         ves_icall_System_Double_AssertEndianity to assert double word endianity
31237         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31239 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31241         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31242         support, icalls and fixes.
31244 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31246         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31247         classes that are a punctuation character in .NET is not the same a
31248         g_unichar_ispunct.
31250 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31252         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31254 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31256         * icall.c: Add new MemCopy internalcall.
31257         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31258         Simplified code; It is not necessary to handle all the cases here,
31259         as the C# code takes care of it.  Only handle the case of the name
31260         resource embedded into the assembly.
31262         Changed signature to return the data pointer and the size of the
31263         data. 
31265 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31267         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31268         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31270 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31272         * socket-io.c: ignore EINTR error in select.
31274 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31276         * class.h, class.c: removed unused subclasses field in MonoClass.
31278 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31280         * icall.c: improve fix of get_base_definition(). If the parent class
31281           doesn't have the mehod, look at the parent of the parent.
31282         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31283           to check if a parameter is an in or out parameter
31284           (PARAM_ATTRIBUTE_IN is not set by default).
31285           mono_method_return_message_restore(): Use mono_class_value_size to
31286           get the size of a value type. mono_type_stack_size (parameterType)
31287           does not return the correct value if parameterType is byRef.
31288           mono_load_remote_field(), mono_load_remote_field_new(),
31289           mono_store_remote_field(), mono_store_remote_field_new():
31290           raise exception if the remote call returns an exception.
31292 2003-07-28  Martin Baulig  <martin@ximian.com>
31294         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31295         method.  This is a wrapper around mono_runtime_invoke() which
31296         boxes the instance object if neccessary.
31298 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31300         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31301         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31303 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31305         * icall.c: disable mcs bug workaround.
31307 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31309         * object.c (mono_runtime_class_init): Take the metadata_section
31310         mutex before obtaining the domain mutex.
31312         * appdomain.h: Added definition of metadata_section mutex here. 
31314         * object.c: define metadata_mutex here.
31316 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31318         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31319         fixed.
31321 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31323         * reflection.c: Fix bug #46669
31325 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31327         * exception.c:
31328         * exception.h:
31329         * icall.c:
31330         * object.h: fill in the type name for TypeLoadException.
31332 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31334         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31335         relationship between TypeBuilders while compiling corlib) and bug
31336         45993 (Array types returned from the runtime while compiling
31337         corlib were from the loaded corlib).
31339 2003-07-22  Martin Baulig  <martin@ximian.com>
31341         * mono-debug-debugger.c: Reworked the type support a bit more;
31342         distinguish between types and classes.
31344 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31346         * icall.c: add IsArrayImpl icall.
31348 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31350         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31351         initializing real_size only once. Also fix bug #46602.
31353 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31355         * object.c: Renamed mono_metadata_section to metadata_section.
31357 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31359         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31360           empty array if the type is an array. Fixed.
31361           ves_icall_MonoMethod_get_base_definition: if the base method
31362           is abstract, get the MethodInfo from the list of methods of
31363           the class.
31364         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31365           and it was 1-based. Fixed in mono_param_get_objects.
31367 2003-07-20  Martin Baulig  <martin@ximian.com>
31369         * mono-debug.h: Set version number to 31.
31370         (mono_debug_init): Added `MonoDomain *' argument.
31372         * mono-debug-debugger.c: Reworked the type support; explicitly
31373         tell the debugger about builtin types; pass the `klass' address to
31374         the debugger.
31376 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31378         * image.c: Allow new metadata tables to be loaded without a
31379         warning. Also update the warning message to give the new constant value.
31380                 
31381 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31383         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31384         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31385         array type representation changes.
31387 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31389         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31390         on Environment.Exit () call.
31392 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31394         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31395         requires a matching corlib.
31397 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31399         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31400           Committed again without the CRs.
31401         
31402 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31404         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31405           getting it from the "this" socket instance. Did not work
31406           if the socket is a subclass of Socket.
31407           Also fixed bug #35371.
31409 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31411         * metadata.c: fixed size for TypedByRef.
31412         * loader.c: when searching for a method, consider the vararg amrker.
31413         * unicode.c, decimal.c: constify some arrays.
31415 2003-07-15  Dick Porter  <dick@ximian.com>
31417         * socket-io.c: Fixed compilation for gcc < 3.2.
31419         Fixed compilation for machines that don't have AF_INET6 (thanks to
31420         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31422         Fixed compile warnings.
31423         
31424         Fixed formatting and line endings.
31426 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31428         * socket-io.h:
31429         * socket-io.c: Added IPv6 support.
31431 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31433         * class.c (mono_class_is_assignable_from): New function to implement
31434         the is_assignable_from logic. Used by mono_object_isinst, 
31435         Type::IsAssignableFrom () and the interpreter.
31437         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31438         Object, even interfaces.
31439         
31440         * object.c (mono_object_isinst): Implement in terms of 
31441         is_assignable_from.
31443         * icall.c (ves_icall_type_is_assignable_from): New icall.
31445 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31447         * domain.c (foreach_domain): fix compiler warning.
31449 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31451         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31452         not available on all plattforms
31454 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31456         * image.h image.c: Store the metadata version string in MonoImage.
31457         * icall.c: New icall to retrieve the image version.
31458         * reflection.c (create_dynamic_image): Fill in the image version field
31459         * reflection.c (build_compressed_metadata): Use the image version
31460         from the image structure.
31462 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31464         * appdomain.c: modified comment.
31465         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31466         That will be its last iteration when mono_gc_cleanup is called from
31467         mono_runtime_cleanup and before the domain is unloaded.
31469         Fixes bug #45962.
31471 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31473         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31474         attributes.
31476 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31478         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31479         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31480         Bernie Solomon <bernard@ugsolutions.com>.
31482 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31484         * object.c, object.h: provide mono_object_new_fast() for faster
31485         allocation in some special cases.
31487 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31489         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31490         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31492 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31494         * threadpool.c: fix leaks.
31496 2003-07-01  Dick Porter  <dick@ximian.com>
31498         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31499         using MonoGHashTables.  Fixes threadpool bug posted to list.
31501 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31503         * image.h, image.c: added support to load an assembly from a byte array.
31504         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31505         assembly bundle support.
31507 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31509         * threadpool.c (mono_thread_pool_add): keep a reference to the
31510         AsyncResult to prevent GC
31512 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31514         * class.c: leak fix.
31516 2003-06-25  Dick Porter  <dick@ximian.com>
31518         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31519         for the async object, the WaitHandle object will close the handle.
31520         Fixes bug 45321.
31522 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31524         * class.c: in mono_array_class_get (), lookup from the hash with the
31525         same type we insert: this works around a bug in
31526         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31527         lluis. The real fix will have to wait for after the release.
31529 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31531         * icall.c: fix memory leak when getting type members.
31533 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31535         * reflection.c: added more pubtoken special cases.
31537 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31539         * class.c: handle field offset correctly when class size
31540         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31542 2003-06-20  Martin Baulig  <martin@ximian.com>
31544         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31545         *image' field.
31547 2003-06-20  Martin Baulig  <martin@ximian.com>
31549         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31551 2003-06-20  Martin Baulig  <martin@ximian.com>
31553         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31554         just distinguish between variables in registers and variables at
31555         an offset relative to a register.
31557 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31559         * icall.c: #ifdef out latest changes until mcs is fixed.
31561 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31563         * icall.c: return members in metadata order.
31565 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31567         * icall.c: avoid infinite loop in GetTimeZoneData.
31569 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31571         * icall.c: added Marshal.Prelink/All icalls.
31573 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31575         * object.c, object.h: fix warnings and do some overflow checking
31576         when creating arrays.
31578 2003-06-17  Dick Porter  <dick@ximian.com>
31580         * file-io.h:
31581         * file-io.c: File attributes need to be tweaked slightly when
31582         passed from the managed to the w32 world.
31584 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31585         * profiler.h profiler-private.h profiler.c: Rework last patch
31586         based on suggestion by Paolo.
31587         
31588 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31590         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31591         instruction level coverage data collection.
31592         * profiler.h profiler.c (: Added new callback function which can be
31593         used by the profiler to limit which functions should have coverage
31594         instrumentation.
31595         * profiler.c (mono_profiler_load): Call g_module_build_path to
31596         generate the file name of the profiler library.
31598 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31600         * profiler.c, profiler.h, profiler-private.h: added basic block 
31601         coverage profiling API.
31603 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31605         * reflection.c (mono_reflection_create_runtime_class): Add support
31606         for events in dynamically generated code.
31608         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31609         not allocated.
31611 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31613         * icall.c: when getting timezone info, return reasonable values if we
31614         can't get the actual data.
31616 2003-06-14  Dick Porter  <dick@ximian.com>
31618         * threads.c (start_wrapper): Remove the reference to the thread
31619         object in the TLS data, so the thread object can be finalized.
31620         This won't be reached if the thread threw an uncaught exception,
31621         so those thread handles will stay referenced :-( (This is due to
31622         missing support for scanning thread-specific data in the Boehm GC
31623         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31625 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31627         * reflection.c: ensure streams and tables are first allocated with
31628         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31630 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31632         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31634 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31636         * reflection.c (mono_reflection_create_runtime_class): Add support for
31637         properties to dynamically created classes.
31638         * reflection.c: Fix a few places where non-MonoObjects were inserted
31639         into the tokens hashtable.
31641 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31643         * object.c: some support to handle out of memory exceptions.
31645 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31647         * marshal.c (mono_marshal_get_native_wrapper): support reference
31648         return types
31650 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31652         * object.h, object.c: more portability stuff from Bernie Solomon.
31653         Unexport mono_object_allocate(). Added mono_object_unbox ().
31654         Set exitcode when an unhandled exception is thrown.
31656 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31658         * marshal.c (mono_marshal_get_native_wrapper): use custom
31659         marshaler for return types.
31661 2003-06-10  Dick Porter  <dick@ximian.com>
31663         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31664         ip_mreq is available
31666 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31668         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31669         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31670         by Bernie Solomon <bernard@ugsolutions.com>.
31672 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31674         * gc.c (mono_gc_init): Avoid error message on shutdown when
31675         GC_DONT_GC=1 is used.
31677         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31678         New icall to return the GUID of a module.
31680 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31682         * class.c: ensure instance size always includes the parent's size
31683         even whem class size is set explicitly (fixes bug#44294).
31685 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31687         * profiler.h, profiler.c: made the simple profiler thread-safe,
31688         get more accurate timing info. Allow the loading of an
31689         externally-developed profiler module.
31691 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31693         * marshal.c (mono_marshal_get_native_wrapper): improved
31694         class/byref arguments.
31695         (mono_marshal_get_native_wrapper): better string marshaling support.
31697 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31699         * class.c: ensure .pack and .size are handled correctly and
31700         simplified layout of static fields.
31702 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31704         * appdomain.c
31705         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31707         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31708         current directory (fix bug 44008)
31710 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31712         * marshal.c (mono_marshal_get_native_wrapper): started support for
31713         custom marshalers.
31714         (mono_delegate_to_ftnptr): consider marshalling specifications
31716 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31718         * reflection.c, reflection.h: emit custom marshal info.
31720 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31722         * object.c: free the GError.
31723         * icall.c: added CloseEvent_internal.
31724         * threads.[ch]:
31725         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31726         call.
31728 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31730         * loader.c (mono_method_get_signature): Add support for dynamic
31731         assemblies.
31733 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31735         * reflection.c: fixed bug #43905.
31737 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31739         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31740         handling TypedReference and ArgIterator.
31741         * loader.c, loader.h: added function to get signature at call site.
31743 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31745         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31746         data readonly. Buglets and warning fixes. Some MethodSpec support.
31748 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31750         * class.h, class.c, object.c: remove relative numbering support.
31752 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31754         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31755         free the string, until we get a chance to fix Gtk#
31757 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31759         * marshal.c: revert last patch.
31761 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31763         * icall.c: updates for new mono_class_vtable() not calling
31764         the type constructor anymore.
31766 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31768         * object.h, object.c: separate vtable creation from type
31769         initialization. Make running the .cctor thread safe.
31771 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31773         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31775 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31777         * loader.c (mono_get_method): consider calling convention
31779 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31781         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31782         to return the invisible global type for a module.
31784         * reflection.c (mono_image_build_metadata): Emit global fields too.
31786 2003-05-20  Peter Williams  <peterw@ximian.com>
31788         * loader.c (mono_lookup_internal_call): Add a few newlines.
31790 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31792         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31793         literal strings.
31795         * appdomain.c (set_domain_search_path): Recalculate search path when
31796         AppDomainSetup.PrivateBinPath changes.
31798         * object.c (mono_class_compute_gc_descriptor): It turns out some
31799         parts of the class libs (like System.Thread) holds pointers to
31800         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31801         to treat native int a pointer type here.
31802         
31803 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31805         * appdomain.h, domain.c: add hashtable for jump target resolution.
31807 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31809         * reflection.h reflection.c icall.c: Added new icalls 
31810         GetManifestResourceInfoInternal, GetModulesInternal and support
31811         infrastructure.
31813 2003-05-16  Dick Porter  <dick@ximian.com>
31815         * icall.c:
31816         * file-io.h:
31817         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31819 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31821         * object.c: mono_store_remote_field: little fix to previous patch.
31823 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31825         * class.c: add constructors to array classes.
31826         * icall.c: special case array construction for InternalInvoke (),
31828 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31830         * class.h class.c reflection.c object.c: Added support for field
31831         defaults in dynamically generated classes.
31833 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31835         * reflection.c: properly encode charset for ddlimport.
31837 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31839         * threads.c: allow compiling without GC.
31841 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31843         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31844         handling of thread static data.
31846 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31848         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31850 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31852         * class.c (mono_array_class_get): always set the serializable flags
31853         (mono_array_class_get): always set the SEALED attribute for array types
31855 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31857         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31858         attributes (fix for bug 42021).
31860 2003-05-12  Dick Porter  <dick@ximian.com>
31862         * gc.c: Don't run finalizers when the finalizer thread is
31863         finishing up, because the default domain has already been
31864         destroyed.
31866 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31868         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31869         value is null, we should throw an exception.   This is slightly
31870         different than the other conventions used for the constructor.
31872 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31874         * socket-io.c: fixed windows build.
31876 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31878         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31880 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31882         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31883         compilers.
31885 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31887         * class.c (mono_class_layout_fields): Add experimental GC aware
31888         auto layout facility. Requires class library changes to work correctly.
31890         (mono_class_setup_vtable): Avoid overriding explicit interface
31891         method implementations. Fixes iface3.exe test.
31893         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31894         object reference.
31895         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31896         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31898         * metadata.h: Add new type classification macro which determines
31899         whenever the type holds an object reference.
31901 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31903         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31905 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31907         * gc.c (finalizer_thread): Work around a GC bug.
31909 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31911         * marshal.c (emit_struct_conv): allow unions
31913         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31915 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31917         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31919 2003-05-06  Martin Baulig  <martin@ximian.com>
31921         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31923 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31925         * socket-io.c:
31926         (Select_internal): allow NULLs, don't create arrays if not needed.
31927         Coupled with Socket.cs changes.
31929         * threadpool.c:
31930         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31931         register a finalizer for it that will close the semaphore handle. This
31932         fixes the leak and make Lupus' test run with > 4080 loops.
31934 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31936         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31937         Jerome Laban (bug #42287)
31939 2003-05-02  Martin Baulig  <martin@ximian.com>
31941         * debug-mono-symfile.h
31942         (MonoSymbolFile): Moved declaration into mono-debug.h.
31943         (MonoDebugMethodJitInfo): Likewise.
31944         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31945         argument.
31946         (_mono_debug_address_from_il_offset): Take a
31947         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31949         * mono-debug.h
31950         (MonoDebugDomainData): New struct.
31951         (mono_debug_get_domain_data): New function.
31952         (mono_debug_add_method): Take an additional `MonoDomain *'
31953         argument.
31954         (mono_debug_source_location_from_address): Likewise.
31955         (mono_debug_il_offset_from_address): Likewise.
31956         (mono_debug_address_from_il_offset): Likewise.
31958 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31960         * reflection.c: one more check for null type in custom attrs.
31962 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31964         * reflection.c: avoid warning (comparison is always false due to limited
31965         range of data type).
31967 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31969         * icall.c: throw an exception in Type.GetField if the argument 'name'
31970         is NULL.
31972 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31974         * reflection.c: fixed handling of enums in named arguments to custom
31975         attributes (bug #42123).
31977 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31979         * reflection.c: use the right array element type and handle
31980         a null for a Type argument, too.
31982 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31984         * reflection.c: handle arrays as arguments to custom attributes.
31986 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31988         * reflection.c: handle a string value in a custom attr
31989         ctor that takes an object.
31991 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31993         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31994         (fix bug #42063)
31996 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31998         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32000 2003-04-27  Martin Baulig  <martin@ximian.com>
32002         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32003         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32004         MONO_DEBUGGER_EVENT_BREAKPOINT.
32005         (mono_breakpoint_trampoline_code): Removed.
32006         (mono_debugger_event_handler): The last argument is now a
32007         `guint32'.
32008         (mono_debugger_insert_breakpoint_full): Removed the
32009         `use_trampoline' argument.
32010         (mono_debugger_method_has_breakpoint): Likewise.
32011         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32012         mono_debugger_breakpoint_callback(); take the method and
32013         breakpoint number as arguments.
32015 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32017         * metadata.c: fix off by one when loading parameters attributes.
32019 2003-04-24  Martin Baulig  <martin@ximian.com>
32021         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32023 2003-04-24  Martin Baulig  <martin@ximian.com>
32025         * mono-debug-debugger.c: Moved all code which interacts with the
32026         Mono Debugger here.
32028         * debug-mono-symfile.c: This code now just deals with the symbol
32029         file itself, the debugger code is now in mono-debug-debugger.c.
32031 2003-04-23  Martin Baulig  <martin@ximian.com>
32033         * mono-debug.c (mono_debug_source_location_from_il_offset):
32034         New method; like mono_debug_source_location_from_address(), but
32035         takes an IL offset instead of a machine address.
32037 2003-04-23  Martin Baulig  <martin@ximian.com>
32039         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32040         `line' field; this is now computed by the debugger.
32042 2003-04-23  Martin Baulig  <martin@ximian.com>
32044         * mono-debug.[ch]: New files.  This is the new debugging interface.
32046         * mono-debug-debugger.[ch]: New files.  Moved all code which
32047         interacts with the Mono Debugger here.
32049 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32051         * domain.c (mono_init): initialize mono_defaults.monitor_class
32053 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32055         * reflection.c (method_encode_code): Add a spicy exception to help
32056         future compiler authors.
32058 2003-04-21  Martin Baulig  <martin@ximian.com>
32060         * icall.c
32061         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32062         Make this work with relative pathnames; g_filename_to_uri() needs
32063         an absolute filename.
32065 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32067         * icall.c: Track name changes in Object and ValueType.
32069 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32071         * metadata.c (mono_type_stack_size): size should be a multiple of
32072         sizeof (gpointer)
32074 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32076         * gc.c:
32077         (internal_domain_finalize): moved into mono_domain_finalize. No need
32078         to create another thread because the finalizers will be run in the
32079         finalizer thread.
32080         
32081         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32082         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32083         to be run (MS does this too).
32085 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32087         * object.c (mono_class_compute_gc_descriptor): Update comment.
32089         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32091         * image.h: Add synchronized wrapper cache.
32093         * image.c (do_mono_image_open): Initialize cache.
32095         * reflection.c (create_dynamic_mono_image): Initialize cache.
32097 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32099         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32100         ves_icall_System_Buffer_ByteLengthInternal.
32102 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32104         * reflection.c: setup klass->nested_in earlier. Allow
32105         a dash in the assembly name.
32107 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32109         * metadata.c (mono_type_to_unmanaged): dont access
32110         type->data.klass for MONO_TYPE_OBJECT
32111         (mono_type_to_unmanaged): consider System.Delegate class
32113 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32115         * class.c: just setup supertypes in the proper place instead of
32116         initializing the full element class for arrays.
32118 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32120         * class.c: ensure the element class of arrays is initialized.
32121         Setup the supertype info for array classes, too.
32123 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32125         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32127 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32129         * Makefile.am: re-added -m option when running cygpath. This way,
32130         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32131         separator.
32132         * mono-config.c: same codepath for locating mono config file for WIN32
32133         and the rest.
32134         * assembly.c: if mono_assembly_setrootdir is called, don't override
32135         the value set.
32137 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32139         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32140         MONO_ASSEMBLIES variable.
32142 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32144         * icall.c: added Assembly::GetNamespaces() icall.
32146 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32148         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32150 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32152         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32153         * object.c: fixed bug in the construction of vtable for proxies
32155 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32157         * object.c (mono_array_new): Mark mono_array_new as an icall.
32159 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32161         * class.c: fixed test for public method when overriding interfaces.
32162         Closes bug #40970.
32164 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32166         * appdomain.h, domain.c: added mono_domain_foreach() to
32167         be able to access the currently loaded appdomains.
32168         * object.c: make string interning work across sppdomains.
32169         Mark some functions for use as icalls.
32171 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32173         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32175         * reflection.h reflection.c: Allocate long living data using 
32176         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32178         * reflection.c: Double the allocation size in streams instead of
32179         increasing it, to prevent unneccesary copying on large assemblies.
32180         
32181         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32182         creation if the assembly does not have the Run flag set.
32184 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32186         * class.h: avoid the C++ keywords in header files (Jerome Laban
32187         spotted and fixed this).
32189 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32191         * object.c:
32192         (mono_unhandled_exception): fill in the arguments for the
32193         UnhandledException event. Only trigger that event for the default
32194         domain (as MS does).
32196 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32198         * object.c: Improve typed allocation stuff based on suggestions from
32199         Paolo. Also turn it on if the GC library supports it.
32201 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32203         * object.c object.h class.h: Added experimental typed allocation
32204         facility using the interfaces in gc_gcj.h.
32206         * os/gc_wrapper.h: Added new include files.
32207         
32208 2003-04-03  Martin Baulig  <martin@ximian.com>
32210         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32211         which is not yet enabled by default.
32213         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32214         functions.
32215         (mono_gc_lock, mono_gc_unlock): New static functions.
32217         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32218         functions; stop/start the world for the garbage collector.  This
32219         is using the windows API; we need to complete the SuspendThread()/
32220         ResumeThread() implementation in the io-layer to make this work on Unix.
32221         (mono_gc_push_all_stacks): New public function; tells the garbage
32222         collector about the stack pointers from all managed threads.
32224 2003-04-03  Martin Baulig  <martin@ximian.com>
32226         * object.h (MonoThread): Added `gpointer stack_ptr'.
32228         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32230 2003-04-03  Martin Baulig  <martin@ximian.com>
32232         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32234 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32236         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32237         field.last.
32239 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32241         * loader.c (mono_lookup_internal_call): Report the corlib that is
32242         out of sync.
32244 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32246         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32247         System.DBNull (it's class not valuetype).
32249 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32251         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32252         if the array method was already assigned a token (fixes bug#40646).
32254 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32256         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32257         if no assembly is given.
32259 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32261         * metadata.h: Added the new tables.
32263         * row-indexes.h: Added definitions for new tables.
32265         * metadata.c: Add schemas for new tables, and add support for
32266         computing the sizes of them.
32268         * class.c: Update for handling the new type cases.
32270 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32272         * metadata.h (MONO_TYPE_IS_VOID): new macro
32274 2003-03-31  Martin Baulig  <martin@ximian.com>
32276         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32278         * threads.c (mono_thread_new_init): Call `thread_created' in the
32279         mono_thread_callbacks.
32281 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32283         * loader.h: added marshalbyrefobject_class to mono_defaults
32284         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32285         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32286           generation of output parameters.
32287           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32288         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32289           contextbound and the target object belongs to the context of the caller.
32290         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32291         * object.c: Implemented support for interfaces and abstract classes
32292           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32293           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32295 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32297         * class.h class.c (mono_class_is_subclass_of): New function.
32298         
32299         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32300         routines for most common case (calls from ArrayList::ToArray).
32302         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32303         routine so programs which call Environment::Exit() can be profiled.
32305         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32306         Added MONO_ARCH_SAVE_REGS.
32308         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32310 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32312         * blob.h: Add a couple of new MonoType types definitions.
32314         * tabledefs.h: Add a couple of new call convs.
32316 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32318         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32319         the layout of the class.
32321         * reflection.c (alloc_table): double the size on overflow to avoid
32322         unnecessary copying.
32324         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32325         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32326         null so it can be garbage collected.
32327         
32328 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32330         * reflection.c (mono_reflection_get_type): Return the resolved type
32331         only if it is in the assembly we searched.
32333         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32335         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32336         method.
32338 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32340         * appdomain.c:
32341         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32342         the right one is 'file:///blah', but MS allows it.
32343         * assembly.c:
32344         (mono_assembly_open): allow 'file://blah'
32346         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32348 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32350         * socket-io.c: fixes bug #40310.
32352 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32354         * reflection.c (mono_reflection_parse_type): handle deeply nested
32355         types correctly.
32357         * reflection.c (mono_image_create_token): Use unique token values
32358         since they will be put into a hash table.
32360         * class.c (mono_class_setup_vtable): If a method occurs in more than
32361         one place in the vtable, and it gets overriden, then change the
32362         other occurances too.
32364         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32365         object as return type.
32367 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32369         * icall.c: Deleted "ToString" implementation for double and float
32370         because they are full implemented in managed code.
32372 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32374         * reflection.c, reflection.h: implemented and exported functions
32375         to retrieve info about custom attributes.
32377 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32379         * appdomain.c: moved Uri handling to assembly.c
32380         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32381         work when using a file Uri in *nix and windows.
32383         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32384         GetReferencedAssemblies.
32386 2003-03-18  Dick Porter  <dick@ximian.com>
32388         * icall.c: Rename a couple of internal calls
32390         * threads.c: Set the thread state to Stopped when a thread exits.
32391         Fixes bug 39377.
32393 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32395         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32396         New icall.
32398         * object.c (mono_class_vtable): fix warning.
32400 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32402         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32404         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32405         memory.
32406         (method_encode_clauses): Create exception info structures in the right
32407         order.
32408         (mono_reflection_setup_internal_class): Initialize supertypes field.
32410         * class.c object.c: Handle interfaces which implement other interfaces 
32411         correctly.
32413         * class.h class.c: Move the supertypes array initialization code into 
32414         a separate function so it can be used for dynamic types too. Also call
32415         it earlier, in mono_class_init(), since it can be used before the
32416         type is initialized.
32418 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32420         * Makefile.am:
32421         * assembly.c:
32422         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32424         * appdomain.c:
32425         * appdomain.h:
32426         * marshal.c:
32427         * object.c: remove warnings.
32429 2003-03-13  Martin Baulig  <martin@ximian.com>
32431         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32432         (MonoDebugLexicalBlockEntry): New types.
32434         * debug-mono-symfile.c
32435         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32437 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32439         * process.c: ret can be any non-zero value accroding to MS doc.
32441 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32443         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32444         fixing a warning for a miss-used prototype, would have cause
32445         random memory corruption.
32447 2003-03-07  Martin Baulig  <martin@ximian.com>
32449         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32450         getting really annoying ....
32452 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32454         * reflection.c (fixup_method): added support for array methods.
32456 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32458         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32459         (pointed out by Michael Adams).
32461 2003-03-04  Dick Porter  <dick@ximian.com>
32463         * icall.c: Temporarily reverted the Double and Single ToString()
32464         change, because it broke nunit.
32466 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32468         * object.h, threads.h: make include files compatible with C++
32469         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32471 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32473         * icall.c: Erased ToString helper functions for Double and Single.
32474         Now, that implementations ar all in managed code (Double and Single
32475         Formatters).
32477 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32479         * appdomain.c: Added method for initializing the default context of
32480         a domain. Added internal call for getting the default context.
32481         * appdomain.h: Added context variable in MonoDomain struct.
32482         * domain.c: mono_domain_set also sets the default context of the domain
32483         * icall.c: Mapped internal method InternalGetDefaultContext.
32484         * object.c: mono_object_get_virtual_method returns always a remoting
32485         wrapper if the object is a transparent proxy.
32486         mono_runtime_invoke_array: when creating an object by calling the
32487         constructor, if the created object is a proxy, then the constructor should
32488         be called using the a remoting wrapper.
32490 2003-03-03  Dick Porter  <dick@ximian.com>
32492         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32493         variable so it compiles on solaris.  Problem spotted by
32494         Christopher Taylor <ct@cs.clemson.edu>
32496 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32498         * appdomain.c:
32499         (get_info_from_assembly_name): don't leak value.
32501         * icall.c:
32502         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32503         result.
32505 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32507         * assembly.c: export mono_image_load_references ().
32508         * class.c: handle function pointers. mono_class_from_name() now
32509         supports nested type names directly.
32511 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32513         * reflection.h reflection.c: Encode already created dynamic methods 
32514         and fields correctly as a DEF instead of a REF.
32516         * reflection.c: Get rid of the force_ref argument to 
32517         mono_image_typedef_or_ref since it was wrong in the first place.
32519         * string-icalls.c: add error checking to string constructors according
32520         to the MSDN docs.
32522         * reflection.c: Emit types in the order their TypeBuilders were 
32523         created. Previously, a new table index was assigned to each type before
32524         the tables were emitted. This was wrong because the signature blob
32525         might already refer to a type by its original table index.
32527 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32529         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32530         change.
32531         
32532 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32534         * Makefile.am: make assemblies dir have \ instead of / on windows.
32536 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32538         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32539         iterate over the NESTEDCLASS table using a linear search since the
32540         table is not guaranteed to be sorted by the secondary key.
32542         * class.c (mono_class_create_from_typedef): fixed up call to
32543         mono_metadata_nesting_typedef.
32544         
32545 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32547         * marshal.c (mono_string_to_byvalstr): clear the memory as
32548         suggested by Jerome Laban <jlaban@wanadoo.fr>
32550 2003-02-26  Dick Porter  <dick@ximian.com>
32552         * process.c: Cope with padding in .rsrc blocks
32554 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32556         * metadata.h: reverted the filter_len change, it breaks reflection
32557         
32558 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32560         * metadata.h: added a new field to store the filter_len
32561         
32563 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32565         * reflection.c: handle custom attributes for types and members
32566         created with Reflection.Emit (bug#38422).
32568 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32570         * reflection.c: define RTSpecialName automatically for constructors for
32571         compatibility with MS.NET.
32573         * reflection.c (mono_reflection_create_runtime_class): initialize
32574         nested_in field of dynamically created classes.
32576 2003-02-22  Martin Baulig  <martin@ximian.com>
32578         * debug-mono-symfile.h: Incremented version number.
32580 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32582         * object.h icall.c process.c: fix warnings.
32584 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32586         * appdomain.h appdomain.c:
32587         (mono_domain_try_type_resolve): split the 
32588         name_or_tb argument into a name and a tb argument.
32589         (mono_domain_has_type_resolve): new function to check whenever the
32590         application has registered a TypeResolve event handler.
32591         
32592         * icall.c reflection.h reflection.c: move the type resolve logic into
32593         mono_reflection_get_type () so it will be invoked when 
32594         Assembly::GetType () is called.
32596         * reflection.c:
32597         (mono_reflection_get_type): renamed to get_type_internal.
32598         (mono_reflection_get_type): fixed type name generation so it works 
32599         for nested types too.
32600         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32601         costly type name generation if there is no resolve event handler.
32603 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32605         * class.c, image.c: load exported types from file references.
32607 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32609         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32610           used to cache the managed methods used to create proxies and make 
32611           remote invocation of methods.
32612         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32613           to be remotely created.
32614         * object.c: Modified the method mono_class_vtable(). It now initializes 
32615           the remote flag of the vtable. Modified mono_object_new_specific(), 
32616           so now it checks the remote flag.
32617         * icall.c: Added a couple of internal methods, one for enabling instance 
32618           creation interception for a type, and one for creating objects bypassing
32619           the remote check.
32621 2003-02-18  Martin Baulig  <martin@ximian.com>
32623         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32624         New interncall to get a method's metadata token.
32626         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32627         New interncall for the debugger.
32629 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32631         * class.c (mono_class_setup_vtable): allocate supertype array
32633 2003-02-18  Martin Baulig  <martin@ximian.com>
32635         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32637 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32639         * reflection.c:
32640         (assembly_name_to_aname): jump over unknown properties (i've found
32641         something like: 'type, assembly, version=xxx, custom=null, public...',
32642         so now will ignore custom=null and still get the rest of the values).
32644 2003-02-17  Dick Porter  <dick@ximian.com>
32646         * threads.c: Have Thread.Start() wait for a semaphore to signal
32647         that the thread has set up all its local data.  This fixes bug
32648         34323, where Abort() raced the new thread's TLS data.
32650         Also removes the handle_store() call from start_wrapper, because
32651         threads are now always created suspended and there is no longer a
32652         race between the parent and child threads to store the info.
32654 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32656         * image.c: explain the #- heap issue in a message, hopefully
32657         avoiding FAQs on mono-list.
32659 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32661         * icall.c:
32662         (GetEntryAssembly): if the domain has not invoked
32663         AppDomain.ExecuteAssembly yet, return the assembly of the default
32664         AppDomain.
32666 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32668         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32670 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32672         * metadata.c, reflection.c: simple speedup to type hash
32673         and equals code.
32675 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32677         * image.c, image.h, class.c, assembly.c: move module loading
32678         to MonoImage. When loading metadata, consider alignemnet from
32679         the start of metadata, not from the metadata address in memory.
32681 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32683         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32684         AssemblyBuilder objects. Factored out custom attribute creation into
32685         a separate function.
32686         (create_custom_attr): new function to create custom attributes.
32688 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32690         * Makefile.am: Got tired of typing the full pathname to pedump.
32691         Until there is another option, am installing this.
32693 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32695         * class.c (class_compute_field_layout): always set field->parent 
32696         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32698 2003-02-11  Dick Porter  <dick@ximian.com>
32700         * threads-types.h:
32701         * monitor.c: Rewrote Monitor, making lock much faster and
32702         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32703         creates them as needed.
32705         * exception.c: Added SynchronizationLockException
32707         * threads.c: Deleted old Monitor implementation.  The new one is
32708         in a new file.
32710 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32712         * class.c: handled TypedReference type code. Set the correct size for
32713         class data. Setup interface_offsets for interface classes, too.
32715 2003-02-09  Martin Baulig  <martin@ximian.com>
32717         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32719 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32721         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32722         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32723         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32724         * verify.c: check for code that runs after the end of the method.
32726 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32728         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32729         "System.Math::Round2".
32730         * sysmath.h: Added Floor, Round and Round2 definitions.
32731         * sysmath.c: Modified certain functions that were not 100% compliant
32732         with MS.NET (math precision) and added the implementation of Floor,
32733         Round and Round2.
32735 2003-02-07  Martin Baulig  <martin@ximian.com>
32737         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32739 2003-02-07  Martin Baulig  <martin@ximian.com>
32741         * debug-mono-symfile.c: Reflected latest symwriter changes.
32742         (mono_debug_create_mono_symbol_file): Removed.
32743         (mono_debug_open_mono_symbol_file): Take an argument which
32744         specifies whether to create a dynamic symbol file.
32746 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32748         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32750 2003-02-05  Martin Baulig  <martin@ximian.com>
32752         * reflection.c (mono_image_build_metadata): Make this public,
32753         protect it against being called multiple times, don't create
32754         resources and don't build the compressed metadata here.
32755         (mono_image_create_pefile): Do this here.
32757         * icall.c
32758         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32760 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32762         * socket-io.c: fixed bug #36322.
32764 2003-02-06  Piers Haken <piersh@friskit.com>
32766         * appdomain.[ch]:
32767         * class.h:
32768         * debug-mono-symfile.c:
32769         * icall.c:
32770         * loader.c:
32771         * mono-config.c:
32772         * monosn.c:
32773         * reflection.c:
32774         * socket-io.c: warning cleanups
32776 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32778         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32779         function. works like remoting invoke, but does a check for the Proxy first.
32781 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32783         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32785 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32787         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32788         array of pointers.
32789         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32790         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32792         * object.c (mono_store_remote_field_new): used by the new jit
32793         instead of mono_store_remote_field
32794         (mono_load_remote_field_new): used by the new jit
32795         instead of mono_load_remote_field
32797 2003-02-05  Patrik Torstensson
32799         * appdomain.c: changed unload to take the domain id instead
32800         of domain
32801         
32802         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32805 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32807         * appdomain.c: don't look for assemblies in ApplicationBase if
32808         PrivateBinPathProbe is set.
32810 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32812         * object.c: make the first argument in main_args contain the absolute
32813         path to the assembly. Fixes bug #37511.
32815 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32817         * icall.c: get correct UTC offset for countries not using daylight
32818         time saving. Fixes bug #30030.
32820 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32822         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32823         and 1 are the family).
32825 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32827         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32829         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32831 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32833         * reflection.c: added support for SignatureHelper tokens, which is
32834         needed by the Calli opcode.
32836         * reflection.h: track changes to SignatureHelper class.
32838         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32840 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32842         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32844 2003-02-03  Patrik Torstensson
32845         * appdomain.[c|h], domain.c : 
32846          - Added support for getting a domain via domain id
32847          - Support for setting and getting domain from System.AppDomain 
32848            (used in cross appdomain channel)
32849          - Added support for get/set for a MonoAppContext on a thread 
32850            (Context class in System.Runtime.Remoting.Contexts),
32851          - Removed hack in Get/SetData and ExecuteAssembly.
32852         
32853         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32854         the managed world to get control when a proxy is created.
32856         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32857         
32858 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32860         * icall.c
32861         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32862         Populate the codebase field as well.
32864 2003-02-02  Martin Baulig  <martin@ximian.com>
32866         * debug-mono-symfile.c
32867         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32868         (mono_debug_symfile_add_method): Allow interncalls.
32870 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32872         * icall.c: throw parse exception if strtod fails or the string is empty.
32874 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32876         * marshal.c: handle object type separately from defined
32877         class types.
32879 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32881         * marshal.c: handle NATIVE_LPSTR for strings when it's
32882         explicitly specified.
32884 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32886         * reflection.c, reflection.h, icall.c: setup the reflection
32887         handle cache for ModuleBuilders and AssemblyBuilders.
32889 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32891         * reflection.c (reflection_methodbuilder_to_mono_method): set
32892         pinvoke flag
32894 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32896         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32898 2003-01-29  Dick Porter  <dick@ximian.com>
32900         * threads.c: No need for the fake_thread kludge now that Thread
32901         doesn't run a class constructor
32902         
32903 2003-01-29  Dick Porter  <dick@ximian.com>
32905         * threads.c: Use g_direct_hash instead of the rather bogus
32906         g_int_hash
32908 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32910         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32911         (fix pinvoke12.exe)
32912         (mono_marshal_get_struct_to_ptr): generate valid IL code
32913         (mono_marshal_get_ptr_to_struct): generate valid IL code
32914         (*): correctly set sig->pinvoke, we need to memdup the signature
32915         to do that
32917 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32919         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32920         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32922 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32924         * profiler.c: provide more callers information.
32926 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32928         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32930         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32932         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32934 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32936         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32937         exception instead of going into an infinite loop on dates which it 
32938         can't yet handle.
32940         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32941         out-of-range exception if needed.
32943         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32944         an implementation for an interface method and to override an inherited
32945         method at the same time. 
32946         Imagine a scenario when a virtual method is used to override a
32947         virtual abstract method in a parent class, and this same method 
32948         provides an implementation for an method inherited from an interface. 
32949         In this case, the interface resolution code will set im->slot, which 
32950         means that the virtual method override pass will skip this method 
32951         which means a pointer to the abstract method inherited from the parent
32952         will remain in the vtable of this non-abstract class.
32954         * class.c: (mono_class_setup_vtable): continue search for a real 
32955         method if only an abstract method is found.     
32957 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32959         * reflection.c: add size to encoding for ByValStr and ByValArray
32960         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32962 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32964         * class.c (mono_class_setup_vtable): pass the override info as an
32965         argument.
32967         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32968         correctly.
32969         
32970         * reflection.c (ensure_runtime_vtable); add support for method 
32971         overrides.
32972         
32973 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32975         * reflection.c (resolution_scope_from_image): Hack to work to work with
32976         dynamic assemblies.
32978         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32979         added a 'force_ref' argument to force this function to allways return 
32980         a TypeRef. This is needed by mono_image_get_memberref_token ().
32981         
32982 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32984         * reflection.c (mono_image_get_type_info): interfaces really don't have
32985         a parent.
32987         * reflection.c (mono_image_basic_init): fill out missing fields of
32988         image structure.
32990         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32991         dynamic assemblies. This is required so dynamic assemblies show up in
32992         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32993         Type::GetType() etc. This is consistent with MS behaviour.
32995         * image.c image.h reflection.c: add newly created classes to the name 
32996         cache so mono_class_get () will find them.      
32998 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33000         First part of changes to get IKVM.NET running under mono.
33001         
33002         * appdomain.h, appdomain.c: added new function 
33003         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33004         This function will call AppDomain::DoTypeResolve to do the actual work.
33006         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33007         moved existing code dealing with dynamic tokens to a new function 
33008         called mono_reflection_lookup_dynamic_token (). This function will 
33009         raise TypeResolve events when appropriate. Since reflection.c is not 
33010         part of libmetadata, a new hook function called 
33011         mono_lookup_dynamic_token() is added to class.c which will call this.
33013         * assembly.h assembly.c: make the invoke_load_hook function public,
33014         so it can be called for dynamic assemblies.
33016         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33018         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33019         type isn't found.
33021         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33022         MonoGHashTable, since it contains pointers to objects which the GC 
33023         needs to track.
33025         * assembly.c (search_loaded): remove unused variable.
33026         
33027 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33029         * object.c: fixed issue exposed by gcc-generated IL programs
33030         that use RVA data for pointers.
33032 2003-01-25  Martin Baulig  <martin@ximian.com>
33034         * threads.c (start_wrapper): Moved the initialization of
33035         `start_func' above the mono_new_thread_init() call to which we
33036         pass it as argument.
33038 2003-01-24  Martin Baulig  <martin@ximian.com>
33040         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33041         the MonoThread pointer.
33043 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33045         * icall.c: Rename `PowImpl' to Pow.
33047 2003-01-23  Dick Porter  <dick@ximian.com>
33049         * threads.c (start_wrapper): Create a Thread object if needed, so
33050         the Main() thread can do the class initialisation in a subthread
33051         that has been set up to allow managed code execution.
33053         Pass the thread ID instead of the MonoThread pointer to the thread
33054         start and attach callbacks.  This change is required, because the
33055         jit thread start callback must be called _before_ the Thread
33056         object can be created.
33057         
33058         (mono_thread_init): Removed much object creation code that is no
33059         longer needed.  No managed code is called from here now.
33061         * object.c (mono_runtime_exec_managed_code): Create a subthread
33062         for Main, and call back to the runtime to use it.
33063         Set the exit code when Main exits.
33065         * gc.c: Make sure domain finalisation happens in a subthread.
33066         Re-enable threaded GC, fixing bug 31333 (again).
33068         * environment.c: System.Environment internall calls (so far just
33069         ExitCode is here, the others are still in icall.c)
33071         * appdomain.c (mono_runtime_cleanup): All threads running managed
33072         code should have finished before mono_runtime_cleanup() is
33073         reached, so no need to clean up threads.
33075 2003-01-22  Martin Baulig  <martin@ximian.com>
33077         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33078         `gpointer func' arguments.      
33079         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33080         but added `MonoThread *thread' argument.
33081         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33083         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33084         and pass it to the mono_thread_start_cb callback.
33085         (mono_install_thread_callbacks): New public function to install a
33086         set of callbacks which are set by the debugger.
33087         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33089 2003-01-22  Martin Baulig  <martin@ximian.com>
33091         * Makefile.am: Install debug-mono-symfile.h.
33093 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33095         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33097 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33099         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33100         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33101         (mono_array_class_get): correctly set access levels of arrays
33103 2003-01-20      Patrik Torstensson
33104         * image.h (MonoAssemblyName): changed major, minor, build, revision
33105         from signed to unsigned.
33107 2003-01-20  sean kasun <skasun@azstarnet.com>
33109         * reflection.c (load_cattr_value): Now this handles
33110         MONO_TYPE_SZARRAY.  Fixes bug #35629
33112 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33114         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33115         integer value
33117 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33119         * decimal.c: fixed bug #26056.
33121 2003-01-17  Martin Baulig  <martin@ximian.com>
33123         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33125 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33127         * exception.[ch]:
33128         (mono_get_exception_type_initialization): new function.
33130         * object.c: throw a TypeInitializationException when an exception is
33131         thrown invoking the class constructor.
33133 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33135         * reflection.c: fixed attribute reading.
33137 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33139         * icall.c:
33140         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33141         provided, look for the type in the calling assembly and then in
33142         mscorlib; if the assembly name is provided, only try that one.
33144 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33146         * object.c: register the vtable before there is a chance it's
33147         queried again recursively.
33149 2003-01-13  Duncan Mak  <duncan@ximian.com>
33151         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33152         gc-internal.h. 
33153         
33154 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33156         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33158 2003-01-11  Martin Baulig  <martin@ximian.com>
33160         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33161         this to 20 for the release.
33163 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33165         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33167         * loader.c (mono_method_get_marshal_info): bug fix
33169         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33170         structures with explicit layout
33172 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33174         * profiler.c: made the output more readable (and sorted). 
33175         Added caller information for the allocation profiler.
33177 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33179         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33181 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33183         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33184         to get value types.
33185         
33186 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33188         * object.c, profiler.h, profiler.c, profiler-private.h:
33189         Added object allocation profiler.
33191 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33193         * reflection.h, reflection.c: handle global methods.
33194         Compress blob entries.
33196 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33198         * marshal.c: fix compilation.
33200 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33202         * loader.c (mono_method_get_marshal_info): impl.
33204         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33206 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33208         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33209         for reference types.
33211 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33213         * loader.c: fixed off by one error in loaded parameter names.
33215 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33217         * marshal.c (mono_marshal_get_icall_wrapper): like
33218         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33219         instead of a MonoMethod.
33221 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33223         * decimal.c: fixed bug #36537.
33225 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33227         * marshal.c: throw a missing method exception if a
33228         P/Invoke method is not found.
33230 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33232         * icall.c: allow a null this for constructors.
33234 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33236         * icall.c: raise the proper exceptions if the arguments to the
33237         internal Invoke are incorrect.
33239 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33241         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33243 2003-01-03  Martin Baulig  <martin@ximian.com>
33245         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33247 2002-12-31  Martin Baulig  <martin@ximian.com>
33249         * debug-mono-symfile.c: Completely rewrote the type section.
33250         Instead of using individual malloc()ed fields, we use one big
33251         continuous memory area and offsets into this area.
33252         See the comments in the source code for details.
33254 2002-12-30  Martin Baulig  <martin@ximian.com>
33256         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33258 2002-12-30  Martin Baulig  <martin@ximian.com>
33260         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33261         line number table in this data blob instead of using an external
33262         pointer.
33264 2002-12-28  Martin Baulig  <martin@ximian.com>
33266         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33268 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33270         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33271         as a boxed return type.
33273 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33275         * appdomain.c
33276         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33277         g_build_filename to properly get separators on the filename created.
33279         * object.h: Small change, introduce MonoMarshalByRefObject to
33280         track the layout of that structure in the C# universe as we make
33281         changes there.
33283 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33285         * object.c: removed assert to allow static fields on interfaces.
33286         * loader.c: a TypeSpec may be used for any type, not just arrays.
33288 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33290         * class.c, class.h: added mono_class_array_element_size ().
33291         Ignore static methods in interfaces.
33293 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33295         * threads.c: fixed the build under cygwin.
33297 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33299         * reflection.c: handle nullref constants. Allocate keys for
33300         reflection handles with the GC.
33302 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33304         * threads.c, threads.h: added mono_thread_get_abort_signal()
33305         to get a suitable signal for thread abort.
33307 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33309         * metadata.c: fix handling of ExportedType table.
33311 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33313         * icall.c: added WriteWindowsDebugString internal call.
33315 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33317         * reflection.h: added fields to match C# implementation.
33319 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33321         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33323 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33325         * gc.h, gc-internal.h: Rename header for GC internal calls to
33326         gc-internal.h from gc.h as to not clash with Boehm GC having its
33327         header installed as <gc.h> in outside include paths.
33328         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33329         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33331 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33333         * icall.c: assign minor, build and revision in FillName.
33335 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33337         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33338         Added support for running code generated by Reflection.Emit.
33340 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33342         * appdomain.c: check for NULL argument in LoadFrom.
33344 2002-12-10  Dick Porter  <dick@ximian.com>
33346         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33348 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33350         * appdomain.c: fix buglet when building exe file name.  Handle full
33351         assembly name (needed after latest changes to AssemblyName).
33352         * image.c:
33353         (mono_image_close): free some hashtables.
33355 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33357         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33358         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33359         on some systems (redhat 7.3) 
33361 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33363         * threads.c: delete the critical section of a sync block,
33364         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33366 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33368         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33370 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33372         * appdomain.[ch]: handle the assembly preload event to try loading the
33373         assemblies using the paths we have in the current domain.
33375         * assembly.[ch]: created an assembly preload hook that is called to try
33376         loading the assembly by other means that the ones provided here.
33378         * domain.c: initialize the domain search path.
33380         From now on, assemblies (TODO: except corlib and System) are loaded
33381         according to these rules when using mono_assembly_load ():
33383                 1. It tries to load the assembly from the ApplicationBase
33384                 of the current domain appending .dll and .exe (TODO: have to
33385                 try loading from name/name.dll and name/name.exe).
33387                 2. It tries the search path specified in PrivateBinPath for the
33388                 current domain (if any).
33390                 3. Previous behavior.
33392 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33394         * icall.c: implemented GetInterfaceMap() related icall.
33395         * domain.c, loader.h: load MethodInfo in mono_defaults.
33397 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33399         * gc.c: disable the finalizer thread for now, untill all the issues
33400         with it are resolved.
33402 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33404         * string-icalls.c: handle embedded nulls in string ctor when the
33405         length is specified.
33407 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33409         * class.c: look for explicit interface implementation in parent
33410         classes, too.
33412 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33414         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33416 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33418         * gc.c: protect handles with a critical section.
33420 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33422         * icall.c:
33423         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33424         parameters. If no assembly specified, try getting the type from all
33425         the assemblies in the current domain, else, load the assembly and get
33426         the type from it.
33428 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33430         * marshal.c: applied patch from Aleksey Demakov that fixes
33431         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33433 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33435         * icall.c: fixed get_location.
33437 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33439         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33440         declarations to make it work with older gcc. 
33442         * loader.c (mono_get_method): set signature->pinvoke for native calls
33444 2002-11-20  Dick Porter  <dick@ximian.com>
33446         * threads.c (mono_thread_init): Set the main thread's handle
33448 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33450         * gc.c: allow compilation without GC support. Changed to match the
33451         mono coding style.
33453 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33455         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33457 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33459         * reflection.c: set a public key token on the core assemblies.
33461 2002-11-18  Dick Porter  <dick@ximian.com>
33463         * threads.c: Split out some thread initialisation so that other
33464         files can set the start callback function.
33466         * gc.c: Run finalisers in a separate thread, to avoid stack
33467         overflow.  Fixes bug 31333.
33469         * appdomain.c: Set up GC finalisation thread.
33471         * reflection.c: 
33472         * object.c: 
33473         * domain.c: Use gc.h macros for GC_malloc
33474         
33475 2002-11-15  Dick Porter  <dick@ximian.com>
33477         * threadpool.c: 
33478         * threads.c:
33479         * appdomain.c: Removed mono_runtime_init_with_attach(),
33480         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33481         merging the extra parameter with the existing function.  Removed
33482         unneeded code in mono_thread_attach().
33484 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33486         * image.c (mono_image_loaded_by_guid): a method to get loaded
33487         images by guid. 
33488         (load_metadata_ptrs): we store the guid as string.
33490 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33492         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33494         * metadata.c (mono_guid_to_string): imported method form Zoltan
33495         Varga (slightly modified)
33497         * assembly.c (mono_assembly_open): load precompiled code
33499         * loader.h (MonoMethod): we store the method token for use in the
33500         aot compiler. 
33502 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33504         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33505         the hook function called when an assembly is loaded.
33506         
33507         * domain.c: Modified file.
33508         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33510         Fixes bug #33196.
33512 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33514         * reflection.c: Map PEFileKind to the value expected by the WinNT
33515         image loader. 
33517 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33519         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33520         Read until the buffer is filled completely.
33522 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33524         * icall.c: implemented MonoType.InternalGetEvent ().
33526 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33528         * appdomain.c: implemented InitAppDomainSetup. Delayed
33529         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33530         the entry_assembly.
33532         * assembly.c: base_dir is now an absolute path ending with
33533         G_DIR_SEPARATOR.
33535         * icall.c: modified get_location according to the above changes.
33537         * object.c: init AppDomain.SetupInformation for the default domain after
33538         we have the entry assembly.
33540         * domain.c: when unloading a domain, setup = NULL.
33542 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33544         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33546 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33548         * object.h, object.c: introduced mono_object_get_virtual_method ()
33549         to lookup the method invoked on an object when a callvirt is done on
33550         a method.
33551         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33553 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33555         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33556         current domain when loaded an assembly and failed to load it.
33558         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33560 2002-10-31  Dick Porter  <dick@ximian.com>
33562         * icall.c: 
33563         * file-io.h: 
33564         * file-io.c: Return the error status in a parameter, as the
33565         GetLastError() value has long since been blown away if we try and
33566         look it up in a subsequent internal call invocation.  Delete the
33567         GetLastError() internal call, because it's useless.
33569 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33571         * class.[ch]: added cast_class to fix bug 29517
33573 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33575         * marshal.c: create valid IL code in the filter clause:
33576         the new JIT is less forgiving:-)
33578 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33580         * icall.c: removed get_property internal call.
33582 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33584         * appdomain.h domain.c: Added an ID to appdomains.
33585         
33586         * threads.c threads.h icall.c: Implement icall
33587         Thread:GetDomainID(), and remove unused icall 
33588         CurrentThreadDomain_internal.
33590 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33592         * icall.c: Don't recurse through the base types in GetConstructor.
33593         Fixes bug #32063. 
33595 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33597         * mempool.h, mempool.c: added mono_mempool_empty() and
33598         mono_mempool_stats().
33600 2002-10-23  Dick Porter  <dick@ximian.com>
33602         * file-io.c: 
33603         * file-io.h: 
33604         * icall.c: Added MonoIO.GetFileType internal call
33606 2002-10-17  Dick Porter  <dick@ximian.com>
33608         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33609         delegate semaphore before waiting for all threads to finish,
33610         because new threads can also call async delegates.  Fixes bug
33611         32004.
33613         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33614         of 3 seconds, in case another async job is queued.  (This part is
33615         needed because the bug fix reintroduced the 3s exit lag.)  This
33616         makes the mono_runtime_shutdown flag superfluous.
33618 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33620         * reflection.c: include ehader size in method section headers.
33621         Really check for suplicated modules entries.
33623 2002-10-17  Martin Baulig  <martin@gnome.org>
33625         * debug-mono-symfile.c: Added back support for locals.
33627 2002-10-14  Martin Baulig  <martin@gnome.org>
33629         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33630         MONO_TYPE_VOID.
33632 2002-10-14  Martin Baulig  <martin@gnome.org>
33634         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33635         mono_class_get() instead of looking in the class cache. 
33637 2002-10-13  Martin Baulig  <martin@gnome.org>
33639         * debug-mono-symfile.c: Set version number to 28, include the
33640         signature in method names.
33642 2002-10-13  Martin Baulig  <martin@gnome.org>
33644         * debug-mono-symfile.h: Set version number to 27.
33646 2002-10-11  Martin Baulig  <martin@gnome.org>
33648         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33650 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33652         * metadata.c, metadata.h: added helper function to allocate signatures.
33654 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33656         * icall.c: added internal call to get the location of machine.config.
33658 2002-10-08  Martin Baulig  <martin@gnome.org>
33660         * debug-mono-symfile.c: Ignore classes with a pending init for the
33661         moment.
33663 2002-10-03  Dick Porter  <dick@ximian.com>
33665         * threads.c: Freebsd pthread_t is a pointer
33667 2002-10-03  Dick Porter  <dick@ximian.com>
33669         * socket-io.c: Implemented GetHostName_internal
33671 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33673         * mono-config.c:
33674         (mono_config_parse_file): don't leak the text.
33676 2002-10-02  Martin Baulig  <martin@gnome.org>
33678         * debug-mono-symfile.c: Added support for methods.
33680 2002-10-01  Martin Baulig  <martin@gnome.org>
33682         * debug-mono-symfile.c: Don't emit methods and line numbers for
33683         the dynamic symbol file, just write the type table.  We can easily
33684         have an external helper program which creates a symbol file for an
33685         IL file.        
33687 2002-10-01  Dick Porter  <dick@ximian.com>
33689         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33690         Only add the handle to the cleanup array when we're about to
33691         launch the thread.  Bug 31425 deadlocked when the test was run on
33692         mono under w32.
33694 2002-10-01  Martin Baulig  <martin@gnome.org>
33696         * debug-mono-symfile.c: Added support for properties.
33698 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33700         * reflection.c: unaligned store fix from Mark Crichton
33701         <crichton@gimp.org>.
33703 2002-09-27  Martin Baulig  <martin@gnome.org>
33705         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33706         New interncall.
33708 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33710         * assembly.h, assembly.c: use a sane API to hook into the assembly
33711         loading process instead of a useless special-purpouse hack
33712         (ngen needs a hook, too, for example).
33714 2002-09-27  Dick Porter  <dick@ximian.com>
33716         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33717         io-layer can set up some process handle info.  Not needed on w32,
33718         but doesn't hurt either.
33720         * process.c: Pass the program name in the second parameter to
33721         CreateProcess, so the path is searched.  Include the working
33722         directory. Implemented process name, process enumeration, and some
33723         process detail internal calls.
33724         
33725         * icall.c: Added internal calls for process lookup, and some
33726         process details
33728 2002-09-26  Martin Baulig  <martin@gnome.org>
33730         * assembly.c (mono_install_open_assembly_hook): New global
33731         function to install a function to be invoked each time a new
33732         assembly is loaded.
33733         (mono_assembly_open): Run this callback function if set.
33735         * debug-mono-symfile.c: Put back line numbers for the dynamic
33736         symbol file and also record the .il file as source file.  This
33737         allows us to install the temporary symbol file as `file.dbg' just
33738         like a compiler-generated one.
33740 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33742         * Corrected typo in gc.c (BOHEM vs BOEHM).
33744 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33746         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33747         GetProperties. Also avoid calling g_slist_length in GetProperties and
33748         GetMethods.
33750 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33752         * reflection.c: avoid unaligned stores (bug spotted by
33753         Mark Crichton  <crichton@gimp.org>).
33755 2002-09-25  Martin Baulig  <martin@gnome.org>
33757         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33758         instead of guint64 for addresses and added prologue/epilogue info.
33760 2002-09-25  Martin Baulig  <martin@gnome.org>
33762         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33763         store line number info.  For the dynamic symbol file, we only need
33764         to provide the JIT generated dynamic line number info for the dynamic
33765         symbol file.
33767 2002-09-25  Martin Baulig  <martin@gnome.org>
33769         * debug-mono-symfile.h: Incremented version number.
33771 2002-09-24  Martin Baulig  <martin@gnome.org>
33773         * class.c (mono_debugger_class_init_func): New global function
33774         pointer variable.
33775         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33776         call it.
33778         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33779         function.  This is called via the mono_debugger_class_init_func
33780         hook to add all types to the dynamic type table.
33781         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33782         from its metadata token.
33784         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33785         New interncall for the debugger.
33787 2002-09-24  Nick Drochak <ndrochak@gol.com>
33789         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33790         before using it in case it is null.
33791         
33792 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33794         * metadata.c: allow custom modifiers in local var signatures
33795         (bug spotted by Zoltan Varga).
33797 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33799         * class.c: deal with the <Module> class that may have a NULL vtable.
33800         Eliminate warnings.
33802 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33804         * image.c, image.h: more strong name helpers.
33805         * monosn.c: more work: convert pem keys to cryptoapi format.
33807 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33809         * string-icalls.c: speedup IndexOf.
33811 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33813         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33815 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33817         * icall.c: cleanup: use mono_object_domain ().
33819 2002-09-23  Martin Baulig  <martin@gnome.org>
33821         * debug-mono-symfile.c: Improved type support.
33823 2002-09-22  Martin Baulig  <martin@gnome.org>
33825         * debug-mono-symfile.c: Added support for reference types and strings.
33827 2002-09-22  Martin Baulig  <martin@gnome.org>
33829         * debug-mono-symfile.c: Started to work on the type table.
33831 2002-09-21  Martin Baulig  <martin@gnome.org>
33833         * debug-mono-symfile.c: Largely reworked the symbol table format.
33834         The symbol table is now incrementally updated each time a new
33835         method is added.  We're now also using our own magic and version
33836         so that you don't need to recompile all your classes if the
33837         dynamic table changes.
33838         (mono_debug_update_mono_symbol_file): Removed.
33839         (mono_debug_symfile_add_method): New function to add a method.
33841 2002-09-21  Martin Baulig  <martin@gnome.org>
33843         * icall.c
33844         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33845         New interncall.
33847         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33848         New interncall to get a method from its metadata token.
33850 2002-09-21  Martin Baulig  <martin@gnome.org>
33852         * debug-mono-symfile.c: Create type table.
33854 2002-09-20  Martin Baulig  <martin@gnome.org>
33856         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33858 2002-09-20  Martin Baulig  <martin@gnome.org>
33860         * debug-mono-symfile.c: Provide information about params and locals.
33862 2002-09-20  Martin Baulig  <martin@gnome.org>
33864         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33865         New interncall.
33867         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33868         interncall to get a method from its metadata token.
33870 2002-09-20  Martin Baulig  <martin@gnome.org>
33872         * debug-mono-symfile.c: Added a few checks for method->header
33873         being non-NULL.  This should never happen, but for the moment
33874         let's use a g_warning() rather than a g_assert().
33876 2002-09-19  Mark Crichton  <crichton@gimp.org>
33878         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33879         even if support for it isn't present.  Added an #ifdef to fix this.
33881         * socket-io.c: Added checks back for Solaris support.
33883 2002-09-19  Martin Baulig  <martin@gnome.org>
33885         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33886         changes in the symbol file format.
33888 2002-09-18  Martin Baulig  <martin@gnome.org>
33890         * debug-mono-symfile.c: Set version number to 21.
33892 2002-09-18  Dick Porter  <dick@ximian.com>
33894         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33895         on netbsd.  Fixes bug 30051.
33897 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33899         * reflection.c:
33900         (set_version_from_string): little fix.
33902 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33904         * monosn.c, Makefile.am: added strong name utility.
33905         * reflection.h, reflection.c: implemented delayed signing,
33906         locale, version and hash id assembly attributes.
33908 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33910         * loader.c, metadata.c: load param attributes in signatures.
33912 2002-09-16  Martin Baulig  <martin@gnome.org>
33914         * debug-mono-symfile.c: Added string table with all method names.
33916 2002-09-14  Martin Baulig  <martin@gnome.org>
33918         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33919         fast method lookup.
33921 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33923         * reflection.c: record the public key token of referenced assemblies.
33925 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33927         * image.c, image.h: added functions to get the strong name and the
33928         public key of an assembly.
33929         * pedump.c: use them.
33931 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33933         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33935 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33937         * marshal.c (mono_marshal_get_managed_wrapper): Added
33938         MONO_TYPE_BOOLEAN 
33940 2002-09-11  Martin Baulig  <martin@gnome.org>
33942         * gc.c: Call GC_unregister_disappearing_link() on all links when
33943         finalizing them, this is necessary to aviod a crash in boehm's
33944         finalize handler.
33946 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33948         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33949         nick@chemlab.org.
33951 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33953         * icall.c: implemented MonoType::Module.
33954         * reflection.c, reflection.h: mono_module_get_object () from
33955         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33957 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33959         * icall.c: ignore overridden methods in GetMethods ().
33960         Fix for FieldInfo::SetValue().
33961         * object.c: handle float/double in runtime invoke.
33963 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33965         * object.c: allow a constructor to be called again on an object.
33967 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33969         * class.h, class.c: move field layout code to it's own function and
33970         export it. Get an interface id earlier. Move fields in MonoClass
33971         so they are more cache friendly and align the bitfields.
33972         * loader.c: temporary handle get_param_names() for a runtime method.
33973         * reflection.c, reflection.h: more code to handle runtime creation of
33974         types.
33976 2002-09-09  Martin Baulig  <martin@gnome.org>
33978         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33979         signature with the pinvoke field being set for the actual call.
33981 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33983         * icall.c: removed some unused icalls. Start of map of glib charsets
33984         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33986 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33988         * debug-helpers.c: break infinite loop (found and fixed by
33989         Holger Arnold <harnold@gmx.de>).
33991 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33993         * icall.c: target may be null in create_delegate.
33995 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33997         * marshal.c: handle a boolean return type.
33999 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34001         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34003 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34005         * gc.c: fix weakreferences.
34007 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34009         * icall.c: added icall to get default codepage.
34011 2002-09-03  Dick Porter  <dick@ximian.com>
34013         * threads.h: 
34014         * threads.c: Use MonoThread instead of MonoObject where
34015         apropriate.
34017         Store running thread objects in a hash table, so that we have all
34018         the info to hand when waiting for them to finish
34019         (means we don't need OpenThread() any more, so mingw builds should
34020         be fully functional again.)
34022         * verify.c:
34023         * object.h: Added thread ID to MonoThread
34025 2002-09-03  Martin Baulig  <martin@gnome.org>
34027         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34029 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34031         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34033 2002-09-03  Martin Baulig  <martin@gnome.org>
34035         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34036         argument to store the end address of the disassembled instruction.
34038         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34039         here from debug-symfile.h.
34040         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34041         JIT into this struct.
34042         (MonoSymbolFile): Added `char *image_file' field.
34043         (MonoDebugGetMethodFunc): Removed.
34044         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34045         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34046         (mono_debug_find_method): New method.
34048         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34049         create a full symbol file.
34050         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34051         and static symbol files.
34052         (mono_debug_find_method): The symbol file keeps an internal method hash,
34053         call this to get a MonoDebugMethodInfo from a MonoMethod.
34055         * debug-symfile.[ch]: Removed.
34057 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34059         * image.c (do_mono_image_open): Remove linker version check.
34061 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34063         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34064         wrappers for instance methods.
34065         
34066 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34068         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34070 2002-08-28  Dick Porter  <dick@ximian.com>
34072         * Makefile.am: Export HOST_CC for w32 builds
34074 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34076         * file-io.c process.c: MonoString are null terminated, no
34077         need for mono_string_to_utf16() anymore.
34079 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34081         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34083 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34085         * icall.c, reflection.h: speedup System.MonoType.
34087 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34089         * reflection.c: allow null as the value of a string argument in
34090         custom attributes constructors.
34092 2002-08-27  Martin Baulig  <martin@gnome.org>
34094         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34095         `trampoline_address' field.
34097 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34099         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34100         check (fixes bug #29486) 
34102 2002-08-27  Martin Baulig  <martin@gnome.org>
34104         * debug-mono-symfile.c: Changed the file format in a way that allows us
34105         open it read-only and to use a specially malloced area for all the
34106         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34107         debugging IL code and there is no MCS generated symbol file for it.
34109 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34111         * object.c: added a define for a good string and array
34112         creation speedup (not enabled by default because we need to deal with
34113         the synch stuff).
34115 2002-08-26  Martin Baulig  <martin@gnome.org>
34117         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34118         function to create a dynamic symbol file.  This is used by the
34119         debugger to create a symbol file for IL code on-the-fly.
34121 2002-08-26  Martin Baulig  <martin@gnome.org>
34123         * loader.c (mono_lookup_pinvoke_call): Include the error message
34124         from g_module_error() in the error message.
34126 2002-08-24  Martin Baulig  <martin@gnome.org>
34128         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34129         function to update the symbol file.  The symbol file is mmap()ed
34130         writable, but private.  This allows us to install the symbol file
34131         together with the assembly.
34133 2002-08-24  Martin Baulig  <martin@gnome.org>
34135         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34136         but they can read the new symbol file format which mcs is now creating.
34138         * debug-symfile.c (mono_debug_find_source_location): Moved to
34139         debug-mono-symfile.c; this is now operating on the new symbol file.
34141 2002-08-23  Martin Baulig  <martin@gnome.org>
34143         * debug-helpers.c (mono_method_desc_from_method): New function to get
34144         a MonoMethodDesc from a MonoMethod.
34146 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34148         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34149         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34151 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34153         * string-icalls.[ch]: make helper methods static.
34155 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34157         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34158         types to it and to SetValueInternal.
34160         * object.c: Moved handle_enum label to its proper place. This was the
34161         f... bug! ;-)
34163         This time i compiled mcs and gtk-sharp and they both work.
34165 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34167         * icall.c: reverted partially my previous patch until 
34168         object.c:set_value handles enums correcly.
34170 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34172         * icall.c:
34173         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34174         (ves_icall_System_Environment_get_MachineName): removed warning when
34175         compiling under cygwin.
34177 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34179         * object.c: fixed field_get_value() for reference types.
34181 2002-08-22  Dick Porter  <dick@ximian.com>
34183         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34184         Don't free a buffer while it's still needed.  Patch from Jonathan
34185         Liger <Jonathan.liger@wanadoo.fr>
34187 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34189         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34190         internal call.
34192 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34194         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34195         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34197         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34198         we call unmanaged code which throws exceptions.
34200 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34202         * appdomain.h: added per-domain entry_assembly.
34203         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34204         arguments.
34205         * icall.c: Assembly::GetEntryAssembly icall.
34206         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34207         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34209 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34211         * appdomain.h, gc.c: added mono_domain_finalize ().
34213 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34215         * object.c:
34216         (mono_print_unhandled_exception): changed g_warning by g_printerr
34217         because g_log has a 1024 characters limit (yeah, i got a big stack
34218         trace). Don't print exception name, that should be in ToString 
34219         returned string.
34221 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34223         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34224         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34226 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34228         * object.c:
34229         (mono_print_unhandled_exception): after previous commit, i realized
34230         that MS calls ToString on the exception. I changed this function to
34231         do that. This way we get stack_trace for free.
34233 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34235         * object.c:
34236         (mono_print_unhandled_exception): invoke Message property instead of
34237         getting 'message' field from Exception. Don't allocate memory for
34238         'trace' and 'message' if not needed.
34240 2002-08-18  Dick Porter  <dick@ximian.com>
34242         * unicode.c: Fix asserts to match Encoder.cs checks
34244 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34246         * marshal.c: fix unaligned store issue and a few wrong
34247         opcode argument types.
34249 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34251         * icall.c: added GetUninitializedObjectInternal internal call.
34253 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34255         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34256         to the right domain.
34258 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34260         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34262         * class.c (class_compute_field_layout): set blittable to false for Strings
34264         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34266 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34268         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34269         first chunk of code to create types at runtime. Code to
34270         handle ReflectedType/DeclaringType. Make reflection handles
34271         domain specific.
34273 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34275         * class.c: set correct name in arrays.
34277 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34279         * appdomain.c (mono_domain_transfer_object): make it work with
34280         valuetypes. bug fixes.
34282 2002-08-12  Dick Porter  <dick@ximian.com>
34284         * object.h: Rename some parameters to avoid c++ keywords (Patch
34285         from Joseph Wenninger <kde@jowenn.at>)
34287 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34289         * icall.c: added icall to implement Assembly.GetFile*.
34291 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34293         * reflection.h, reflection.c: code to embed managed resources.
34295 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34297         * class.c: move all the type size stuff into
34298         class_compute_field_layout().
34300 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34302         * class.c: ensure enums have always the correct instance size.
34303         * unicode.c: remove wrong assert.
34305 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34307         * assembly.c: fix mem corruption issue.
34308         * image.h, image.c: added mono_image_get_resource () to access
34309         managed resources.
34310         * icall.c: implemented Assembly.EntryPoint property and some
34311         Managed Resources related internalcalls.
34314 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34316         * image.c, image.h: impemented mono_image_get_entry_point ().
34317         * appdomain.c: use mono_image_get_entry_point.
34319 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34321         * reflection.c: support the object type argument when loading
34322         custom attributes.
34324 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34326         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34327         String as return type.
34329 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34331         * reflection.c: fix encoding of named args for custom attrs to match
34332         the ms implementation. Read them back when instantiating custom
34333         attributes.
34335 2002-08-02  Radek Doulik  <rodo@ximian.com>
34337         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34338         by Dietmar as quick fix
34339         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34340         16 as stack size, used on more places as quick fix before Dietmar
34341         will fix it properly
34343 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34345         * object.h, object.c: added accessors for fields and properties.
34347 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34349         * class.c, class.h: made mono_class_get_field_from_name ()
34350         loop on parent types.
34351         Added mono_class_get_property_from_name ().
34353 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34355         * class.c, class.h: move the code to setup the type vtable in its own
34356         function so that it can be reused also for types created at runtime.
34357         Eliminate the "class" identifier from the header file.
34358         * reflection.c: setup the vtable for enums so that we can create
34359         objects for use in SetConstant ().
34361 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34363         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34364         instead of the delegate itself as this pointer (bug #28383)
34366 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34368         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34369         conversions.
34371 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34373         * loader.c: don't set the pinvoke bit on icalls.
34375 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34377         * debug-helpers.c (mono_method_full_name): only print a number to
34378         indicate wrapper type (so that the output is more readable in traces).
34380 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34382         * class.c (mono_class_init): include method override patch from Paolo
34384 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34386         * icall.c: fixed GetTypeCode().
34388 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34390         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34391         use real delegate invoke function to make it work with multicast
34392         delegates (fix bug# 28291).
34394 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34396         * object.c: load constant strings.
34398 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34400         * reflection.c: no magic numbers.
34401         * tabledefs.h: security action enum.
34403 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34405         * assembly.c: fix possible memory corruption.
34407 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34409         * reflection.h, reflection.c: added support for linking resources.
34410         * verify.c: check we have an updated corlib.
34412 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34414         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34415         string arrays.
34416         (mono_marshal_string_array): null terminate unmanaged string arrays.
34417         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34419 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34421         * icall.c: Type.GetType () can now return also types from the
34422         calling assembly.
34424 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34426         * loader.h, loader.c: stack walking support.
34427         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34428         GetCallingAssembly.
34430 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34432         * marshal.c: added optimisations for blittable types 
34434         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34435         (mono_class_setup_mono_type): set blittable attribute for single
34436         and double.
34438         * marshal.c (mono_string_utf8_to_builder): impl.
34439         (mono_string_builder_to_utf8): impl.
34440         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34442 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34444         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34445         (mono_marshal_get_managed_wrapper): impl. byref types
34447 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34449         * icall.c:
34450         (search_method): don't display debug message. 
34452 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34454         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34456 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34458         * appdomain.c: set the missing filename when throwing exception.
34460 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34462         * metadata.c (mono_type_size): code cleanup
34463         (mono_type_stack_size): removed some test code
34465 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34467         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34468         mono_get_exception_file_not_found now.
34470         * exception.c (mono_exception_from_name_two_strings): New version
34471         that will call a constructor with two string arguments. 
34472         (mono_get_exception_file_not_found): New helper routine, used to
34473         report file-not-found errors.
34475 2002-07-20  Dick Porter  <dick@ximian.com>
34477         * process.h:
34478         * process.c: Pass file handles to CreateProcess
34479         
34480         * icall.c:
34481         * file-io.h:
34482         * file-io.c: Implemented CreatePipe
34484 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34486         * metadata.c (mono_get_param_info): set alignment for value types
34488 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34490         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34491         Constify mono_domain_assembly_open().
34492         * loader.c: handle null namespace in icalls.
34494 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34496         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34497         (emit_str_to_ptr_conv): marshal object as structs
34499         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34501         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34503 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34505         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34506         (mono_marshal_get_native_wrapper): we an now return value types
34508 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34510         * verify.c: more checks implemented.
34512 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34514         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34515         (fix bug #27695)
34516         (mono_marshal_get_native_wrapper): allow byref arguments
34517         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34518         impl. PtrToStringXXX methods
34519         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34520         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34521         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34522         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34523         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34525 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34527         * reflection.c: fix buglet in parsing an assembly name.
34529 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34531         * marshal.c (emit_ptr_to_str_conv): first impl.
34533 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34535         * object.c, class.h: cache the vtable in the class as suggested by
34536         vargaz@freemail.hu (Zoltan Varga).
34538 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34540         * class.h, loader.c: added mono_field_from_token().
34541         * verify.c: first cut of type checking code.
34543 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34545         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34547 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34549         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34550         (fix bug #27782)
34551         (mono_marshal_get_remoting_invoke): impl.
34552         (mono_delegate_begin_invoke): impl.
34553         (mono_mb_emit_save_args): impl.
34554         (mono_delegate_end_invoke): impl.
34555         (mono_marshal_get_delegate_begin_invoke):
34556         (mono_marshal_get_delegate_end_invoke):
34557         (mono_marshal_get_delegate_invoke): generate a special name for
34558         those methods (including the signature) and associate them whith
34559         the delegate class. 
34561 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34563         * reflection.[ch]: 
34564         (mono_reflection_type_from_name): now it has a MonoImage parameter
34565         which is used as the default image to search the type in. If the image
34566         is NULL or getting the type from it fails, it defaults to corlib.
34568         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34569         new parameter.
34571 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34573         * reflection.c: update the parameter table index.
34575 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34577         * domain.c: don't include the mark byte in the string hash.
34579 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34581         * icall.cs: icall for Type.GetTypeCode ().
34582         * verify: a couple of fixes and disabled local initialization checks.
34584 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34586         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34588         * debug-helpers.c (mono_method_full_name): print the type of the
34589         runtime wrapper
34591         * metadata.c (mono_signature_hash): a hash function for signatures
34592         (mono_signature_hash): better hash algorithm
34594         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34596         * debug-helpers.c (mono_method_full_name): this can now generate
34597         method names with signatures
34599         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34600         method dont have this pointers.
34602 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34604         * reflection.c: fixup typebuilder tokens.
34605         * image.c: fix buglet.
34606         * marshal.h: remove whitespace.
34607         * metadata.h, metadata.c: reinstate code that was removed.
34608         * verify.c: handle catch directives and fix another couple of bugs.
34610 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34612         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34613         (mono_marshal_get_native_wrapper): make it comp. with the old code
34614         (mono_marshal_get_native_wrapper): support boolean
34615         (mono_marshal_get_managed_wrapper): support more types
34617 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34619         * class.c (class_compute_field_layout): compute class->blittable attribute.
34621 2002-07-09  Dick Porter  <dick@ximian.com>
34623         * threads.c: Make the thread cleaning up cope with threads that
34624         call ExitThread()
34626 2002-07-08  Radek Doulik  <rodo@ximian.com>
34628         * reflection.c (method_encode_code): use non-translated values to
34629         compute finally_start, this fixes exception handling on ppc, yay!
34631         * decimal.h (struct signscale): fix endianess
34633 2002-07-07  Radek Doulik  <rodo@ximian.com>
34635         * reflection.c: swap box_val and not val
34637 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34639         * reflection.c, reflection.h: handle full assembly info in type name.
34640         Handle Type arguments when loading custom attributes.
34641         * icall.c: updated to use new mono_reflection_type_from_name () method.
34643 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34645         * loader.c:
34646         (method_from_memberref): also print assembly name when method not found.
34648 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34650         * icall.c:
34651         (ves_icall_TypeGetProperties): fixed bug #27473. 
34653 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34655         * reflection.c: display image name and token when cannot find the
34656         .ctor for an attribute.
34658 2002-07-05  Martin Baulig  <martin@gnome.org>
34660         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34662 2002-07-04  Dick Porter  <dick@ximian.com>
34664         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34665         compile on mingw.  This will cause mingw builds to not wait for
34666         subthreads to terminate after the main thread does.  I've lodged a
34667         bug with the mingw developers for them to wrap OpenThread().
34669 2002-07-03  Dick Porter  <dick@ximian.com>
34671         * threads.c: Store thread IDs instead of handles, because
34672         GetCurrentThread() returns a pseudohandle and therefore stores
34673         useless values.  mono_thread_cleanup() continues checking the
34674         array of threads until it is empty, to cope with subthreads
34675         spawning new threads after the main thread has finished.
34677         * profiler.h:
34678         * profiler.c:
34679         * profiler-private.h: Pass the thread ID to thread profiler
34680         functions, instead of a handle
34682 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34684         * verify.c: fixes to make it more usable.
34685         * pedump.c: added --verify code to verify IL code in an assembly.
34687 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34689         * reflection.c: turn errors into warnings to allow compiling corlib.
34691 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34693         * reflection.c: add special cases to compile corlib.
34695 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34697         * reflection.c: handle properties with only a set method.
34699 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34701         * opcodes.h: add enum with opcodes in opval order.
34703 2002-07-01  Dick Porter  <dick@ximian.com>
34704         
34705         * object.h:
34706         * object.c (mono_runtime_run_main): Removed unneeded argument
34708 2002-06-28  Martin Baulig  <martin@gnome.org>
34710         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34712 2002-06-27  Dick Porter  <dick@ximian.com>
34714         * threads.c: Store the handle in both the parent thread and in the
34715         subthread, to minimise the time between starting a new thread and
34716         storing its ID.
34718 2002-06-26  Dick Porter  <dick@ximian.com>
34720         * appdomain.c (mono_runtime_cleanup): Close the socket library
34721         after all the threads have finished, not before
34723 2002-06-26  Martin Baulig  <martin@gnome.org>
34725         * debug-symfile.c (mono_debug_find_source_location): Added
34726         `guint32 *line_number' argument.  If it's not NULL, store the line number
34727         there and return the file name without the line number.
34729 2002-06-25  Dick Porter  <dick@ximian.com>
34731         * icall.c:
34732         * process.h:
34733         * process.c: Process forking and other support functions
34735 2002-06-25  Dick Porter  <dick@ximian.com>
34737         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34738         things dont happen when the image is closed.
34739         (mono_image_lookup_resource): Walk the resource section looking
34740         for a particular entry
34742         * cil-coff.h: PE resource section decoding
34744 2002-06-25  Dick Porter  <dick@ximian.com>
34745         
34746         * assembly.h:
34747         * assembly.c: 
34748         (mono_assembly_foreach): Accessor functions to walk the list of
34749         loaded assemblies
34750         (mono_assembly_set_main):
34751         (mono_assembly_get_main): Process methods need to know which
34752         assembly is the "main" one
34754         * object.c (mono_runtime_run_main): Record the main assembly
34756         * debug-helpers.c: Fix typo
34758 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34760         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34761         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34763 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34765         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34767 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34769         * image.c (do_mono_image_open): Initialize reference count,
34770         otherwise we leak the MonoImage.
34772 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34774         * reflection.c: small tweak to handle self-hosting.
34776 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34778         * reflection.c: fix type name parse code.
34780 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34782         * reflection.c: break out of the loop.
34783         * image.c: special case corlib.
34785 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34787         * reflection.c: add all the custom attrs at the end to ensure the
34788         ctors have been properly initialized when the attributes are defined
34789         in the current assembly.
34791 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34793         * reflection.c: handle correctly multiple-nested types.
34795 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34797         * row-indexes.h: fix typos.
34798         * reflection.c: adjust for typos and fix method_def_or_ref
34799         encoding in MethodImpl table.
34801 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34803         * reflection.c: fix entry point patching (thanks Serge!).
34805 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34807         * verify.c: add check for System.Exception
34809 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34811         * image.c, class.c: minifix for code just c&p'ed.
34812         * reflection.c: warning fix.
34813         * object.h, loader.h, domain.c: load also StringBuilder.
34815 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34817         * marshal.h, marshal.c: some support code to handle complex marshaling.
34819 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34821         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34822         Better signatures with vtable error dump.
34824 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34826         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34828 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34830         * icall.c (ves_icall_Type_GetField): impl.
34832 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34834         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34835         to retrieve a marshal description blob for a field or param.
34837 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34839         * reflection.h, reflection.c: change order of nested type emission
34840         to avoid table corruption. The NestedTypes table is sorted.
34841         * icall.c: change order of GetConstructor results to workaround mcs bug.
34843 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34845         * reflection.h, reflection.c: handle field and param marshal
34846         information.
34848 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34850         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34852 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34854         * reflection.c: fix call convention.
34856 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34858         * reflection.h, reflection.c: mono_image_get_memberref_token()
34859         takes a type instead of a class, now. Added
34860         mono_image_get_array_token() to create tokens for the special
34861         multi-dim array methods.
34863 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34865         * assembly.c: handle modules (no assembly table). Split
34866         loading references in its own function.
34867         * class.c: handle moduleref resolution scope.
34868         * image.c, image.h: cache module name in image.
34870 2002-06-07  Martin Baulig  <martin@gnome.org>
34872         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34873         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34875 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34877         * icall.c: more signature fixes that used uint instead of int.
34879 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34881         * reflection.c: fixed signature of field refs.
34883 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34885         * class.c, reflection.c: handle typerefs of nested types
34886         (both on read and when writing files).
34888 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34890         * icall.c: fix method signatures that tried to workaround the previous
34891         typo, d'oh!
34893 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34895         * debug-helpers.c: fix typo.
34897 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34899         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34900         rewrote the PE/COFF writing code (our programs are understood by the
34901         ms runtime, now).
34903 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34905         * gc.c, gc.h, icall.c: weakreference support.
34907 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34909         * Makefile.am, mono-config.c: use $(sysconfdir).
34911 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34913         * icall.c: changed default precision of Double.ToString() to 15.
34914         Fixed memory leak. Unified with Single.ToString.
34916 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34918         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34920 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34922         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34923         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34924         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34925         and myself.
34927 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34929         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34931 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34933         * reflection.c, socket-io.c: more compilation fixes.
34935 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34937         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34938         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34939         unicode.c: warning and compiler compatibility fixes.
34941 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34943         * class.h, metadata.c: fixed warnings/compilation errors.
34945 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34947         * Makefile.am, mono-config.c, mono-config.h: configuration file
34948         support routines.
34949         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34950         config file. Export methods to insert and lookup mappings.
34952 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34954         * reflection.c: handle types and boxed objects in custom attr
34955         constructors.
34957 2002-05-30  Martin Baulig  <martin@gnome.org>
34959         * debug-symfile.c
34960         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34962 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34964         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34965         to lookup the implmap row for a P/Invoke method.
34966         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34967         P/Invoke method from the runtime on an as needed basis.
34969 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34971         * metadata.c (mono_metadata_parse_signature): impl.
34973 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34975         * class.c: handle .pack directive.
34977 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34979         * object.c: initialize static fields with RVA data.
34981 2002-05-25  Martin Baulig  <martin@gnome.org>
34983         * debug-symfile.c
34984         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34986 2002-05-24  Martin Baulig  <martin@gnome.org>
34988         * debug-symfile.c
34989         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34990         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34991         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34993 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34995         * object.c: special case string ctros in invoke.
34996         * gc.c: silly whitespace changes.
34998 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35000         * threadpool.[ch]: impl. a threadpool that can
35001         be used by mint and mono.
35003 2002-05-22  Martin Baulig  <martin@gnome.org>
35005         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35006         The first argument is now a `MonoReflectionModuleBuilder *', the return
35007         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35008         `methods' field to get the method builder.  The `token' argument is the
35009         unfixed token.
35011         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35012         invalid characters instead of g_assert_not_reached()ing.  This seems
35013         to be the behaviour of mscorlib.
35015 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35017         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35018         Hestilow to fix bug #25104
35020 2002-05-21  Martin Baulig  <martin@gnome.org>
35022         * debug-symfile.c (mono_debug_find_source_location): New function.
35023         Looks up an IL offset in the line number table and returns the source
35024         location as a string.
35026 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35028         * icall.c:
35029         (mono_double_ToStringImpl): changed %f by %g until we have something
35030         better.
35032 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35034         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35035         parameters first in C#.
35037 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35039         * icall.c, reflection.h: added icall to get info about an event.
35041 2002-05-20  Radek Doulik  <rodo@ximian.com>
35043         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35044         endian
35045         (mono_value_box): don't use memcpy for small sizes on
35046         architectures with unaligned access
35048 2002-05-20  Martin Baulig  <martin@gnome.org>
35050         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35051         if `tb->parent == NULL'.
35052         (mono_reflection_create_internal_class): New function.  This is
35053         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35054         for enum types.
35056         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35057         New interncall.
35059 2002-05-19  Martin Baulig  <martin@gnome.org>
35061         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35062         argument to get the length, don't default to the array length.
35064 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35066         * assembly.c (mono_assembly_setrootdir): New function used to
35067         override the MONO_ASSEMBLIES directory.
35069 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35071         * icall.c: ValueType_GetHashCode() initialize local var.
35073 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35075         * reflection.c: sort custom attributes table.
35077 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35079         * reflection.c: support named args in custom attributes (write support).
35081 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35083         * reflection.c: fix finally position calculation.
35085 2002-05-15  Radek Doulik  <rodo@ximian.com>
35087         * reflection.c: fixed endianess at many places
35089         * icall.c (ves_icall_InitializeArray): comment out debug msg
35091 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35093         * object.c (mono_unhandled_exception): new function to handle
35094         unhandled exceptions.
35095         (mono_unhandled_exception): call the UnhandledException event.
35096         (mono_runtime_delegate_invoke): impl.
35098 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35100         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35101         returns the RVA, not the direct pointer to the data. Handle the case
35102         when the class size is fixed.
35104 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35106         * reflection.c: fix some endianess issues.
35108 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35110         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35112         * threads.c (mono_thread_init): added a callback which is invoked
35113         at thread start.
35115 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35116         
35117         * icall.c: make GetHashCode return non-negative values.
35119 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35121         * object.c, icall.c, gc.c: revert to address-based hashcode.
35123 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35125         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35127 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35129         * icall.c, class.c: special case <Module>.
35131 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35133         * icall.c: fix bug in GetNow().
35135 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35137         * object.c (mono_runtime_class_init): make sure that we call all
35138         static class constructors.
35140 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35142         * reflection.c: sort methodsemantics table.
35144 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35146         * reflection.h, reflection.c: honour init locals setting.
35148 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35150         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35152 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35154         * reflection.c: support ContructorBuilders in attribute blob creation.
35156 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35158         * reflection.c: some changes to build a binary that can be run
35159         directly in windows.
35161 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35163         * loader.c: print a big message when an icall can't be found.
35165 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35167         * string-icalls.c: fix bug 24248.
35169 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35171         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35172         icall.c, reflection.h: separate assembly loading by pathname and by
35173         assembly name. Use the MONO_PATH env var to search for assemblies.
35175 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35177         * assembly.c, image.h: add some support for assemblies
35178         with multiple modules.
35179         * class.c, class.h: export mono_class_from_typeref().
35180         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35181         instead.
35183 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35185         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35186         documentation says (the ECMA one is correct).
35188 2002-05-02  Dick Porter  <dick@ximian.com>
35190         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35191         Don't name the synchronisation mutex.
35193 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35195         * rand.c
35196         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35197         Make the prototypes match.
35198         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35199         Same.
35201         * icall.c
35202         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35203         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35204         all systems have tm.tm_zone, so use strftime() with %Z to print
35205         the timezone abreviation into a temp string.
35207         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35208         rather than mono_array_addr() on a MonoString on Big Endian
35209         machines.
35211 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35213         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35214         fix bug 24041
35216 2002-04-30  Dick Porter  <dick@ximian.com>
35218         * socket-io.c: Cope with SOCKET being an integer rather than a
35219         pointer now.
35221         * threads.c: Added Thread_free_internal, to deal with thread
35222         handle cleanup.  Moved calls to handle_store() and handle_remove()
35223         to start_wrapper(), so each can only be called once.  Allocate
35224         synchronisation blocks with GC_malloc(), and use GC finalisation
35225         to close the handles.
35227         * icall.c: added System.Threading.Thread::Thread_free_internal
35229 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35231         * icall.c: support Environment.Exit, CommandLineArgs().
35233 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35235         * object.c, object.h: added mono_runtime_run_main () and
35236         mono_runtime_get_main_args () for use in System.Environment.
35238 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35240         * gc.c: fix thinko, enable actual finalization since the jit is now
35241         fixed.
35243 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35245         * gc.c, object.c: take into account that an object may be offset wrt the address
35246         returned by GC_malloc().
35248 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35250         * image.c: handle files without entries in the assembly table (modules).
35252 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35254         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35255         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35256         allowed to be null when it's System.Object class setup.
35258 2002-04-27  Martin Baulig  <martin@gnome.org>
35260         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35261         if `tb->parent == NULL' rather than crashing.
35263 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35265         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35266         calling acos() where asin() should have been called.
35268 2002-04-26  Martin Baulig  <martin@gnome.org>
35270         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35271         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35272         there's a subdirectory called `System', but we don't want to read that
35273         subdirectory as an assembly.
35275 2002-04-25  Martin Baulig  <martin@gnome.org>
35277         * debug-symfile.c: Reflect latest MonoString changes.
35279 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35281         * rand.c, rand.h: instance method icalls need to have an explicit
35282         this pointer as first argument in the C implementation.
35284 2002-04-25  Nick Drochak <ndrochak@gol.com>
35286         * icall.c: Fix typo in map for GetNonZeroBytes
35288 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35290         * string-icalls.c : String does now passes unit tests without any 
35291         errors, the following changes has been made:
35292         
35293         Implemented replace methods.
35294         Renaming of methods to (try) follow the standard.
35295         Fixed compare ordinal
35296         Made all memory allocated directly to function instead of via icall function.
35297         Small performance fix in is_in_array function
35298                         
35299  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35301         c (mono_string_Internal_ctor_charp_int_int):
35302         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35303         sindex < 0, throw ArgumentOutOfRangeException instead of
35304         ArgumentNullException.
35306         Added new check for length == 0, however
35307         I need to make it return String.Empty from the C code.
35308         
35309         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35310         that calculate the length for us here.
35311         
35312         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35313         mono_string_new_utf16 with mono_string_new, since value is utf8.
35315 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35317         * object.c: register the object for finalization if needed.
35318         Allocate one more char in the string for the terminating 0 char.
35320 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35322         * class.c, class.h, image.c: check if a type implemenst a destructor.
35323         Use the proper key for array class lookups.
35324         * icall.c: register the icalls in the System.GC class.
35325         * gc.c, gc.h: GC-related functions and icalls.
35327 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35329         * icall.c:
35330         * socket-io.c:
35331         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35332         changed a couple of free () by g_free ().
35334         * decimal.c: one-liner in the comments for decimal2string ().
35336 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35338         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35340 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35342         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35343         * object.c (mono_runtime_invoke_array) : handle null in params
35345 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35347         * string-icalls.c: fixed bug in split (one off bug)
35349 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35351         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35352         * icalls.c: added String::Equals as internal method
35354 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35356         * threads.c: fixed bug in the double interlocked functions
35358 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35360         * threads.c: implemented all of the new interlocked icalls.
35361         * string-icalls.c: fix a bug in insert.
35362         * icalls.c: added the icalls for interlocked, removed old string functions.
35363         
35364 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35366         * loader.c: fix off-by-one error when reading argument names.
35368 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35370         * profiler.c: win32 counter implementation (untested).
35371         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35372         (the latter needs testing and more complete impl. from win32 folks).
35374 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35376         * object.c: mono_array_new_full workaround mono_array_class_get
35377         problem.
35379 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35381         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35382         * object.h (mono_string_chars): Changed casting type.
35384 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35386         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35387                            method signatures to use gunichar2 instead of gint16.
35389 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35391         * object.h, object.c: domain-specific versions of mono_object_new and
35392         mono_array_new.
35394 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35396         * object.c: changed String layout
35398         * string-icalls.c (mono_string_Internal_ctor_chara): added
35399         internal string constructors.
35401 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35403         * threads.c: pass 'this' to the thread start routine.
35405 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35407         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35408         InternalCompareStr don't call twice mono_string_cmp_char for the last
35409         character. Improved performance in mono_string_cmp_char.
35411 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35413         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35414         code into its own library: libmonoruntime.
35416 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35418         * object.h, object.c: changed array format so that szarrays do not
35419         require a bounds structure.
35420         * icall.c, appdomain.c: support for new szarray format.
35422 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35424         * metadata.c: compare also the retuns type when comparing signatures:
35425         we didn't do this as an optimization since really overloaded methods
35426         must differ also in the arguments, but this doesn't work with
35427         low-level IL code (or when using explicit conversion operators: see
35428         bug#23498 for an example).
35430 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35432         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35434 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35436         * icall.c: make MonoType::GetElementType its own icall.
35438 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35440         * icall.c: remove MonoMethod_get_Name().
35441         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35442         object.
35444 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35446         * string-icalls.c: optimized a few methods.
35448 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35450         * icall.c: added all new string internal calls
35451         * string-icalls.c: added, new string internal call implementation.
35452         * object.c: added mono_string_new_size for allocating a string a size
35454 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35456         * object.c (mono_object_isinst): use the same code as in the
35457         optimized x86 version.
35459 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35461         * profiler.c: TSC-based timer code (faster and more accurate).
35462         Not hooked up in configure, yet (set USE_X86TSC to 1).
35464 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35466         * profiler.c, profiler.h: track time spent compiling methods.
35467         * threads.c: track thread creation/destruction.
35469 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35471         * profiler.c, profiler.h, profiler-private.h: profiling interface
35472         and sample implementation. Moved here so that it can be used also by
35473         the jit.
35475 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35477         * reflection.c, reflection.h: keep types and other handles separate in
35478         the hash tables for referred tokens. Add guid for modules.
35480 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35482         * assembly.c: fix bugs found with valgrind.
35483         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35485 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35487         * threads: added icall support for getting current domain for
35488                    the thread.
35490 2002-04-13  Martin Baulig  <martin@gnome.org>
35492         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35493         (MonoDebugVarInfo): Added `index' field for register based addresses.
35494         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35495         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35496         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35497         `MonoDebugVarInfo *this_var'.
35499         * debug-symfile.c (relocate_variable): New static function to write
35500         a location description for a local variable or method parameter.
35502 2002-04-12  Martin Baulig  <martin@gnome.org>
35504         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35505         stack offset and begin/end scope address of a local variable.
35506         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35507         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35508         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35510         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35511         Added new relocation types for start/end scope of a local variable.
35513 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35515         * object.h: add mono_object_domain() macro.
35516         * reflection.c: handle typespecs.
35517         * icall.c: MonoMethod::get_Name() implementation.
35519 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35521         * icall.c: String::GetHashCode() icall implementation.
35523 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35525         * icall.c: String::IndexOfAny icall.
35526         * object.c, object.h: make array->max_length more useful.
35527         Intrduced mono_object_class() and mono_string_length() macros.
35529 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35531         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35532         instead of g_unichar_isdigit.
35534 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35536         * icall.c: Implement a simple Double.ToString().
35538 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35540         * appdomain.h: only io-layer.h is supposed to be included.
35541         * icall.c: explicitly import environ. Fix warning.
35543 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35545         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35546                 return true even if it's not Daylight Savings time.
35547                 Only return false for the case where the function isn't
35548                 implemented for a plaform (read Windows).
35550 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35552         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35553         data with a mutex.
35555 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35557         * mempool.c (mono_mempool_alloc): only use g_malloc when
35558         absolutely necessary.
35560 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35562         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35564         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35565         (mono_class_proxy_vtable): use domain mempool
35567 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35569         * appdomain.h, appdomain.c: split initialization that requires the
35570         execution engine support into mono_runtime_init().
35572 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35574         * class.c (mono_class_init): don't include vtable inside MonoClass
35575         to save some memory, gather some statistics.
35576         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35578 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35580         * icall.c: internalcall implementation for ValueType.Equals().
35582 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35584         * object.c (mono_message_init): moved 
35585         (mono_runtime_exec_main): new arch. independent impl.
35586         (mono_runtime_invoke_array): new method - like
35587         mono_runtime_invoke, but you can pass an array of objects.
35588         (mono_remoting_invoke): new arch. independent impl.
35589         (mono_message_invoke): new arch. independent impl.
35590         (mono_runtime_class_init): new arch. independent impl.
35591         (mono_runtime_object_init): new arch. independent impl.
35593 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35595         * metadata.c, object.c, reflection.c: documented the exported
35596         functions.
35598 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35600         * icall.c: simpler code to pass the assembly builder data to corlib.
35601         Implement GetNestedTypes() internalcall.
35603 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35605         * class.c: warn if a type can't be loaded.
35607 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35609         * image.h: typedef MonoImageOpenStatus
35610         * types.h: removed unused file
35611         
35612 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35614         * icall.c: Enum_ToObject accepts enum value arguments.
35616 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35618         * class.c: move initialization of properties, events and nested
35619         classes, so that they happen for interfaces, too.
35621 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35623         * icall.c: cleanup some ugly casts in Array_SetValue*.
35625 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35627         * icall.c: the values array fro enums is of the correct type, now.
35628         Implement (correctly) getFullName instead of assQualifiedName for
35629         MonoType.
35630         * reflection.h, reflection.c: added mono_type_get_name ().
35632 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35634         * assembly.c, image.h: for each MonoImage, record from wich assembly
35635         it was loaded.
35636         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35637         Make Type.Assembly work.
35639 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35641         * debug-symfile.h: use char* instead of gpointer to avoid
35642         unnecessary casts.
35644         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35646         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35647         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35649 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35651         * icall.c (mono_message_init): impl. (code cleanup)
35652         (ves_icall_InternalExecute): impl. FieldGetter
35654         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35655         defined we call all (non-static)methods through the vtable. 
35657 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35659         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35660         finalizer even though the memory is still referenced (and the chunk of
35661         memory is not freed).
35663 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35665         * assembly.c: fix brokeness.
35667 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35669         * class.c: kill some warnings. Check explicit interface method
35670         implementation also without considering the namespace.
35671         Load also literal strings in static class data.
35673 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35675         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35676         (default_assembly_name_resolver): Make the resolver take the
35677         "base" directory where the assembly was originally defined, so we
35678         can load DLLs that are in the same directory as the assembly that
35679         is being referenced.
35681 2002-03-28  Dick Porter  <dick@ximian.com>
35683         * file-io.h: 
35684         * file-io.c:
35685         * socket-io.c: 
35686         * unicode.h: 
35687         * unicode.c: Warning cleanups
35689 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35691         * object.h, reflection.h: use the correct type instead of MonoObject.
35693 2002-03-28  Martin Baulig  <martin@gnome.org>
35695         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35696         (mono_debug_update_symbol_file): Initialize classes if necessary.
35698 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35700         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35701         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35703 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35705         * assembly.h: fix function prototype.
35706         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35707         * mono-endian.h: use const cast.
35709 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35711         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35713 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35715         * loader.c: don't assert when a typeref can't be loaded, give
35716         a chance to the runtime to trow an exception instead.
35717         * loader.h: fix warning.
35719 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35721         * class.c (mono_class_proxy_vtable): added proxy support
35723 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35725         * icall.c: removed last of PAL calls, added System.Environment
35726         * file-io.h, file-io.c: MonoIO implementation
35727         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35729 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35731         * appdomain.c: do not use the byte marker in ldstr table lookup.
35732         * debug-helpers.c: allow two ':' to separate class and method name.
35733         * object.c: allocate arrays bounds with the GC, too.
35734         * verify: add a few more checks.
35736 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35738         * reflection.c: output also literal strings. Allocate parameter data
35739         with GC_malloc() (thanks, Martin, for catching this!).
35741 2002-03-26  Martin Baulig  <martin@gnome.org>
35743         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35744         include the `this' offset in the `param_offsets'.
35746 2002-03-25  Martin Baulig  <martin@gnome.org>
35748         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35749         mono_debug_get_class() function to get the classes. Added new
35750         relocation types for arrays and strings.
35751         (mono_debug_get_class): New static function to search in all
35752         referenced assemblies for a metadata token.
35754         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35756 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35758         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35759         hold gc-allocated objects. Make the string heap a stream like the
35760         others. Removed duplicated code when writing stream info.
35761         Added asserts to catch possible buffer overflows. Set the sorted map
35762         for tables that need sorting. Added some documentation.
35764 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35766         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35767         for interned strings and vtables.
35769 2002-03-24  Martin Baulig  <martin@gnome.org>
35771         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35772         it in the array since it was created with g_slist_prepend().
35774 2002-03-24  Martin Baulig  <martin@gnome.org>
35776         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35777         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35778         (mono_debug_method_from_token): Renamed to
35779         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35780         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35782         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35783         relocation types.
35785         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35787 2002-03-24  Martin Baulig  <martin@gnome.org>
35789         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35790         (mono_debug_method_from_token): New func.
35792         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35793         New interncall, calls mono_debug_local_type_from_signature().
35794         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35795         calls mono_debug_method_from_token().
35797 2002-03-23  Martin Baulig  <martin@gnome.org>
35799         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35800         specifies the number of bytes to be converted, not the array size.
35801         Return the number of chars, not the number of bytes.
35802         (ves_icall_iconv_get_chars): The `byteCount' argument
35803         specifies the number of bytes to be converted, not the array size.
35805 2002-03-23  Martin Baulig  <martin@gnome.org>
35807         * reflection.h (MonoReflectionSigHelper): New type.
35809         * reflection.c (mono_reflection_sighelper_get_signature_local),
35810         (mono_reflection_sighelper_get_signature_local): New functions.
35812         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35813         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35814         interncalls.
35816 2002-03-23  Martin Baulig  <martin@gnome.org>
35818         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35819         is_writeable is set.
35820         (mono_raw_buffer_update): New function to write the modified map
35821         back to disk.
35823         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35825         * debug-symfile.c (mono_debug_update_symbol_file): Call
35826         mono_raw_buffer_update() when done writing.
35828 2002-03-23  Martin Baulig  <martin@gnome.org>
35830         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35832         * debug-symfile.c: Added support for arguments and local variables.
35834 2002-03-23  Dick Porter  <dick@ximian.com>
35836         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35837         protected by ifdefs, hence breaking the w32 build.
35839 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35841         * object.c: implement is_interned() the right way.
35843 2002-03-21  Martin Baulig  <martin@gnome.org>
35845         * debug-symfile.[ch]: New files to handle debugging information
35846         files. There's also support to dynamically update these symbol
35847         files to include machine dependent information.
35849 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35851         * threads.c (mono_thread_create): new function to create thread
35852         from C
35854 2002-03-20  Martin Baulig  <martin@gnome.org>
35856         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35857         method is a constructor.
35858         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35859         points to ves_icall_InternalInvoke().
35861 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35863         * file-io.c: Flush shouldn't throw exceptions.
35865 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35867         * file-io.c: FileStream flush support; FileSetLength now
35868         restores file pointer.
35870 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35872         * class.c: set image for pointer classes.
35874 2002/03/19  Nick Drochak <ndrochak@gol.com>
35876         * sysmath.c: Forgot one.
35878 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35880         * sysmath.c: Avoid redefining existing names.
35882 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35884         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35885         handled by runtime as icall rather than dllimport from libm.so
35886         * file-io.c, file-io.h: fixed handle argument type.
35888 2002-03-18  Dick Porter  <dick@ximian.com>
35890         * reflection.c (mono_image_get_type_info): rename interface to
35891         iface, because of "#define interface struct" on windows.
35893 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35895         * class.c, class.h: rename and export mono_ptr_class_get().
35896         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35897         * reflection.c, reflection.h, icall.c: better/saner type name
35898         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35899         method signatures.
35901 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35903         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35905         * icall.c (ves_icall_InternalInvoke): impl.
35907 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35909         * reflection.c: output the interface map table, too.
35911 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35913         * class.c (class_compute_field_layout): separate computation of 
35914         static field layout
35916 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35918         * icall.c: added System.Buffer support.
35919         * file-io.c: moved file icalls from PAL to FileStream.
35921 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35923         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35925 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35927         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35929 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35931         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35933 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35935         * debug-helpers.{c,h}: moved here from monograph some useful functions
35936         to locate a method by name/signature in a class or image. Included
35937         also a small and flexible IL disassembler.
35939 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35941         * reflection.c: fixup tokens in methods with small header size, too.
35943 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35945         * object.c (mono_string_to_utf8): remove assert(!error), instead
35946         print a warning. 
35948 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35950         * icall.c: update to the new mono_Array_class_get interface.
35952 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35954         * appdomain.c, object.c: Boehm-GC enable.
35955         * icall.c: make get_data_chunk() support split data requests.
35956         Ensure a class is initialized in more cases. Return only the first
35957         property found in GetProperties() or the compiler gets confused. 
35958         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35959         * reflection.h, reflection.c: add fixup mechanism for field and method
35960         tokens. Initialize assembly->typeref in a single place. Output
35961         properties after events. Support custom attributes for events, too.
35962         Typo fix for paramter custom attrs.
35964 2002-03-07  Martin Baulig  <martin@gnome.org>
35966         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35968 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35970         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35972 2002-03-06  Martin Baulig  <martin@gnome.org>
35974         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35975         non-zero lower bounds. See testcases #F10-#F13.
35977 2002-03-05  Martin Baulig  <martin@gnome.org>
35979         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35981         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35982         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35983         here.
35984         (ves_icall_System_Array_SetValue): Likewise.
35985         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35986         as argument and does the actual work. This function is used when copying a
35987         multi-dimensional array.
35988         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35989         now do all the widening conversions of value types.
35990         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35992 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35994         * class.c: remove some magic numbers and use the smbolic names,
35995         instead. Added init_events() to load event info at class init time.
35996         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35997         and mono_metadata_methods_from_event().
35998         * reflection.h, reflection.c: added support for writing out the evnets
35999         related information.
36001 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36003         * reflection.h, icall.c: use a different method (GetInterfaces)
36004         to gather interface info and add isbyref, isprimitive and
36005         ispointer to the ves_icall_get_type_info() return value.
36007 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36009         * class.h: stared adding support for events.
36010         * icall.c: split find_members implementation. Added debug icall to get
36011         the address of an object.
36012         * reflection.c: handle TypeBuilders in mono_type_get_object().
36014 2002-03-01  Martin Baulig  <martin@gnome.org>
36016         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36017         ArgumentOutOfRangeException(), not an ArgumentException().
36018         (ves_icall_System_Array_GetLowerBound): Likewise.
36019         (ves_icall_System_Array_GetValue): Improved argument checking.
36020         (ves_icall_System_Array_SetValue): Improved argument checking.
36022 2002-03-01  Martin Baulig  <martin@gnome.org>
36024         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36025         called with invalid arguments rather than just dying with g_assert().
36026         (ves_icall_System_Array_SetValue): Likewise.
36027         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36028         raise a NotImplementedException instead.
36029         (ves_icall_System_Array_GetLength): Added argument checking.
36030         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36032 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36034         * object.h (mono_assert): new macros mono_assert and
36035         mono_assert_not_reached
36037 2002-02-28  Martin Baulig  <martin@gnome.org>
36039         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36040         and "System::String::IsInterned" to "System::String::_IsInterned".
36042 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36044         * icall.c: remove hacks for typebuilder. Added icall to create a
36045         modified type from a tybebuilder.
36046         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36047         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36048         to create a backing MonoClass for a TypeBuilder.
36050 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36052         * class.c, class.h: more refactoring of class init.
36053         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36055 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36057         * marshal.c, marshal.h: start of marshaling interface.
36059 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36061         * icall.c: fix order in assembly qualified name icall.
36063 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36065         * class.c: do not free str, since we store it in the hash table.
36066         * reflection.h: add label field to MonoILExceptionInfo.
36067         * reflection.c: handle references to more than one assembly. Handle
36068         case when there isn't a module created in the assembly.
36070 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36072         * class.c: Fix typo. Start refactoring of class init code.
36074 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36076         * appdomain.c: exit with 1 on error.
36077         * class.c: we already have the name in MonoClassField.
36078         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36079         MonoStreamHeader instead of an offset of image->raw_metadata.
36081 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36083         * appdomain.c (mono_init): Be even more descriptive about the error.
36085 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36087         * appdomain.c: give the user an informative message when corlib can't
36088         be loaded.
36090 2002-02-26  Martin Baulig  <martin@gnome.org>
36092         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36093         New icall to get the time zone data.
36095 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36097         * reflection.c: set virtual and raw size of section correctly.
36098         * threads.c: transfer domain information to newly created threads.
36100 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36102         * class.c: when instancing a class in a domain, load the default
36103         vaules for static fields from the constant table. Fix System.Enum to
36104         not be an enum.
36105         * icall.c: implement Object::GetType() internalcall. Implemented
36106         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36107         Fixed checking of binding flags in find_members().
36108         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36109         * reflection.c: handle enumerations when writing to the constant
36110         table. Use a different object cache for types.
36113 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36115         * object.c (mono_object_isinst): fix for arrays
36117         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36119 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36121         * object.c: don't use mprotect ()  and fix intern pool hash table
36122         lookup for big endian systems.
36124 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36126         * icall.c: change type_is_subtype_of () signature.
36128 2002-02-21  Mark Crichton  <crichton@gimp.org>
36130         * rand.c, rand.h: Added random number generator for
36131         System.Security.Cryptography classes.
36133         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36135         * icall.c: Added System.Security.Cryptography calls.
36137 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36139         * class.c, icall.c, metadata.c: better support for pointer types.
36140         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36141         * reflection.c: Add support for getting custom attrs for properties
36142         and simplify some code.
36144 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36146         * icall.c: change getToken () and add custom attribute GetBlob()helper
36147         method.
36148         * reflection.h: add custom attrs array to the reflection builder structures.
36149         * reflection.c: encode and emit custom attributes for all the relevant
36150         reflection objects. Cache fieldref and methodref tokens. Change
36151         mono_image_create_token() interface to take a MonoDynamicAssembly.
36152         More complete custom attributes decoder. Load custom attributes for
36153         Assembly, Field, Method and Constructor objects, too. Make the
36154         returned array an Attribute[] one, not object[]. Added
36155         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36156         custom attribute constructor.
36158 2002-02-20  Dick Porter  <dick@ximian.com>
36160         * icall.c:
36161         * rawbuffer.c:
36162         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36163         problem code out for now).
36165 2002-02-19  Radek Doulik  <rodo@ximian.com>
36167         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36169 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36171         * icall.c: register the GetCustomAttributes method.
36172         * object.c, object.h: add mono_string_new_len ().
36173         * reflection.h, reflection.c: added mono_runtime_invoke(),
36174         mono_install_runtime_invoke(). Added
36175         mono_reflection_get_custom_attrs () to load custom attributes and
36176         create the attribute objects.
36178 2002-02-19  Dick Porter  <dick@ximian.com>
36179         * threads-dummy-types.c:
36180         * threads-dummy-types.h:
36181         * threads-dummy.c:
36182         * threads-dummy.h:
36183         * threads-pthread-types.c:
36184         * threads-pthread-types.h:
36185         * threads-pthread.c:
36186         * threads-pthread.h:  Deleted obsolete files
36188 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36190         * class.c (mono_class_vtable): runtime init the class when we
36191         allocate static class data.
36193         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36195         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36196         and String - but we will need generic marshalling support in the
36197         future. 
36198         (mono_init): set the domain name in a ms compatible way
36200         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36201         String[].
36203 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36205         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36206         for sizes
36208         * appdomain.c (mono_domain_unload): impl.
36210 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36212         * appdomain.c, object.c: fix intern pool implementation.
36213         * class.c: fix alignment code.
36215 2002-02-16  Radek Doulik  <rodo@ximian.com>
36217         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36218         and s2 > s1, just copy lower bytes to be compatible with little
36219         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36220         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36222         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36223         force big_endian to be 1 for big endian machines 
36224         (ves_icall_iconv_new_decoder): ditto
36226 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36228         * socket-io.c (convert_sockopt_level_and_name): If the system
36229         doesn't define SOL_IP or SOL_TCP, get them by hand using
36230         getprotobyname() and caching the values (because this could be a
36231         slow operation).
36232         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36233         Use the appropriate struct when the system does support it. Ie,
36234         not all systems have struct ip_mreqn so use struct ip_mreq when
36235         appropriate.
36237 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36239         * reflection.c: handle finally clauses.
36241 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36243         * socket-io.c: use g_snprintf() instead of snprintf.
36245 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36247         * reflection.c (mono_param_get_objects): Cast second argument to
36248         mono_method_get_param_names to a const char** to silence the
36249         compiler warning.
36251         * appdomain.c (mono_domain_assembly_open): Put parens around the
36252         truth statement in the for-loop.
36254         * unicode.c (iconv_convert): Got rid of a compiler warning about
36255         int i being unused when the system has a new iconv.
36256         (iconv_get_length): Same.
36258         * image.c (load_class_names): Cast the second argument to
36259         g_hash_table_insert() to char* to hush compiler warnings about the
36260         arg being a const.
36261         (mono_image_open): Same here.
36263         * socket-io.c: Don't conditionally include sys/filio.h or
36264         sys/sockio.h here anymore since we now get them from
36265         io-layer/io-layer.h
36266         (inet_pton): If the system doesn't support inet_aton, implement
36267         using inet_addr and also #define INADDR_NONE if it isn't defined
36268         by the system.
36270 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36272         * metadata.c, metadata.h: added function to get packing and size info
36273         of a typedef.
36274         * reflection.h, reflection.c: handle field RVA data. Save info about
36275         the table layout if needed. Assign typedef indexes to all the types
36276         before dumping the info about them to avoid forward reference problems.
36278 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36280         * socket-io.c (convert_sockopt_level_and_name): ifdef
36281         SO_ACCEPTCONN because it is not defined on my system (old debian)
36283 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36285         * opcode.c: use stddef.h to get NULL.
36287 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36289         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36290         for FIONBIO, FIONREAD and SIOCATMARK.
36291         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36292         define INADDR_NONE and besides, inet_addr() is deprecated and
36293         should not be used. Use inet_pton() instead - it also has the
36294         added bonus that it can easily handle IPv6 addresses as well.
36295         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36297 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36299         * decimal.c: remove _MSC_VER conditional.
36301 2002-02-13  Dick Porter  <dick@ximian.com>
36303         * socket-io.c: 
36304         * icall.c: Internal calls for Blocking, Select, Shutdown,
36305         GetSocketOption and SetSocketOption
36307 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36309         * assembly.cs: better resolver: use it instead of some kludgy
36310         code.
36312 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36314         * reflection.c: the best way to speed-up the compiler is to avoid
36315         infinite loops.
36317 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36319         * class.c (mono_class_vtable): changed the object layout
36320         (obj->vtable->class). 
36321         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36323 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36325         * assembly.c: look for assemblies in the assembly dir, too.
36327 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36329         * class.c: fix thinko in mono_class_from_type().
36331 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36333         * exception.h, exception.c: added TypeLoadException.
36334         * object.h, object.c: added mono_array_clone ().
36335         * icall.c: handle throwOnError in AssemblyGetType().
36336         Added Array.Clone().
36337         * opcode.h, opcode.c: use a single value for the opcode val.
36338         Compile fix for non-gcc compilers.
36340 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36342         * opcodes.c, opcodes.h: export interesting info about opcodes.
36344 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36346         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36347         icalls. 
36349         * class.c (class_compute_field_layout): set element_class for enums
36350         (mono_class_create_from_typedef): set element_class for normal classes
36352         * icall.c (ves_icall_System_Enum_get_value): impl.
36354         * class.c (mono_class_create_from_typedef): do not set valuetype
36355         flag for System.ValueType and System.Enum
36357 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36359         * unicode.c (iconv_convert): fix big endian problem.
36361 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36363         * class.c: add asserts if we are ever going to scribble over memory.
36364         * socket-io.c: not all systems have AF_IRDA defined.
36366 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36368         * class.c (class_compute_field_layout): do not consider static
36369         fields to compute alignment
36371 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36373         * appdomain.c (mono_appdomain_get): impl.
36374         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36376 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36378         * icall.c: ignore "file://" prefix when loading an assembly.
36380 2002-01-23  Dick Porter  <dick@ximian.com>
36382         * socket-io.c:
36383         * icall.c:
36384         * Makefile.am: Added socket support
36386 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36388         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36389         code back.  This should return the assemblies that are loaded by
36390         the runtime on behalf of an application domain. 
36392         The current implementation is still broken, it just returns every
36393         assembly loaded, but until we get real applications domain this
36394         will do.
36396 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36398         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36399         AppDomain object.
36401 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36403         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36404         the mono_class_from_name lookup.
36405         (ves_icall_get_parameter_info): ditto.
36406         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36407         method.
36408         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36410 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36412         * class.c: load also nested classes on class init.
36413         System.ValueType instance methods gets passed boxed
36414         values, unless methods in derived classed that get a pointer to the
36415         data.
36416         * icall.c: use better name parsing code in GetType().
36417         * image.c, image.h: add mono_image_loaded ().
36418         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36419         * reflection.c, reflection.h: added mono_reflection_parse_type().
36421 2002-01-22  Veronica De Santis <veron78@interfree.it>
36423         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36424         * threads.c : Added the implementation of internal calls for events
36425         * threads.h : Added prototypes of internal calls for events
36426         
36427 2002-01-21  Radek Doulik  <rodo@ximian.com>
36429         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36431 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36433         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36434         (mono_class_value_size): use min_align
36436 2002-01-20  Dick Porter  <dick@ximian.com>
36438         * threads.h:
36439         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36440         so it compiles on w32.
36442 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36444         * metadata.c (mono_type_stack_size): impl.
36446         * class.c (mono_class_get_field): impl. memberref token
36448 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36450         * icall.h : Added the internal calls mapping for CreateMutex_internal
36451                     and ReleaseMutex_internal.
36452         * threads.h : Added the prototype of mutexes internal calls.
36453         * threads.c : Added the implementations of mutexes internal calls.
36455 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36457         * metaparse.h: removed unused file.
36458         * reflection.c, reflection.h: added stream_data_align () function 
36459         to align data in streams and keep stream aligned. Add support for
36460         exception support in method headers.
36462 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36464         * unicode.c: make iconv_convert () return the number of bytess written
36465         in the output buffer.
36467 2002-01-15  Dick Porter  <dick@ximian.com>
36468         * threads.c: Make the runtime's idea of infinite timeouts coincide
36469         with the class library's
36471         Fix a particularly egregious bug in mono_thread_cleanup(). That
36472         code was so utterly bogus it must have been written on a Monday.
36474 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36476         * reflection.h: add subtypes field to TypeBuilder.
36477         * reflection.c: encode constants for literal fields.
36478         Handle subtypes. Fix user string token (and add a zero byte)
36479         at the end.
36480         
36481 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36483         * class.c (mono_class_init): bug fix: assign slot numbers for
36484         abstract methods.
36486 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36488         * reflection.c: don't try to output a code RVA for abstract methods.
36489         Small fixes for method header format. Output parameter info to the
36490         ParamDef table. Save method overriding info to MethodImpl table.
36491         Fix property support. Allow typedef.extends to be a type in the
36492         building assembly.
36493         * verify.c: fix off-by-one error.
36495 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36497         * class.c: fix mono_class_from_mono_type () for szarray types.
36498         Remove unused cache check in mono_class_from_type_spec().
36499         * icall.c: *type_from_name () functions handle simple arrays and byref.
36500         * reflection.c: handle byref and szarray types. Handle methods without
36501         body (gets P/Invoke compilation working). Handle types and fields in
36502         get_token ().
36503         * reflection.h: add rank to MonoTypeInfo.
36505 2002-01-10  Dick Porter  <dick@ximian.com>
36507         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36508         internal calls
36510 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36512         * icall.c: initialize class in type_from_handle ().
36513         Loop also in parent classes for get_method ().
36514         * reflection.c: properly encode class and valuetype types.
36515         Start on encoding TypeBuilder types. Handle fieldrefs.
36516         Use correct length when registering a user string.
36517         Handle ConstructorBuilder and MonoMethod in get_token ().
36518         Make mono_type_get_object () aware of cached types.
36519         * object.c: back out change to mono_string_new ().
36521 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36522         * object.c: mono_string_new should return a NULL when the string 
36523         passed in is NULL -- not try to deference it.
36524         
36525 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36527         * icall.c: hack to make IsSubType work for TypeBuilders.
36528         * reflection.c: emit constructors before methods.
36529         Retrieve param names in mono_param_get_objects().
36531 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36533         * Makefile.am: fix list of headers and sources so automake 1.5
36534         doesn't complain. Removed \# at end of list.
36536 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36538         * reflection.c: get token for a method ref. Set return type of
36539         constructor to void.
36540         * loader.c: debug message.
36541         * class.c: typo fix.
36543 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36545         * icall.c: fix array init with rank > 1. FindMembers
36546         loops in parent class as well.
36547         * image.c: do not insert nested types in name cache.
36548         * reflection.c: warning fix.
36549         * reflection.h: add override method (for interface impl).
36551 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36553         * metadata.c: fix customattr decoding.
36555 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36557         * rawbuffer.cs: Added native Win32 implementation, avoids using
36558         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36560 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36562         * class.c: make the low-level routines handle the cache.
36564 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36566         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36568 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36570         * class.c: fix mono_array_element_size() for objects.
36571         * class.h, class.c: add properties to MonoClass and load them
36572         at init time.
36573         * icall.c: check with isinst() when assigning a value to an array
36574         instead of requiring the classes to match exactly.
36575         Implemented icall for System.Type::GetType().
36576         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36577         enums. Handle bindingflags when looking for methods and fields.
36578         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36579         and mono_metadata_methods_from_property().
36580         * reflection.h, reflection.c: added structures for propreties,
36581         parameters and enums. Implemented mono_property_get_object() and
36582         mono_param_get_objects().
36584 2001-12-18  Dick Porter  <dick@ximian.com>
36586         * file-io.c: Use mono_string_to_utf16() instead of
36587         mono_string_chars()
36589         * object.c: Added mono_string_to_utf16(), which copies the non
36590         NULL-terminated MonoString into a new double-null-terminated
36591         buffer.
36593 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36595         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36597 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36599         * file-io.c: raise exceptions if handle is invalid.
36601 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36603         * assembly.c: yet another check for mscorlib.
36604         * class.c, class.h: load nesting info for classes.
36605         * icall.c: many new functions to support the Reflection classes.
36606         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36607         * reflection.h, reflection.c: mono_image_create_token(),
36608         mono_assembly_get_object(), mono_type_get_object(),
36609         mono_method_get_object(), mono_field_get_object(): methods to return
36610         objects that parallel the C representation of assemblies, types,
36611         methods, fields.
36613 2001-12-11  Dick Porter  <dick@ximian.com>
36615         * icall.c:
36616         * file-io.c: Internal calls for file IO.
36618 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36620         * tabledefs.h: missing FileAttributes.
36621         * verify.h, verify.c: use is_valid_string () to simplify and check for
36622         valid strings more correctly. Fix warnings and speeling.
36623         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36624         Check code: branches, maxstack, method calls.
36626 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36628         * object.c (mono_object_allocate): removed static, so that the jit
36629         can allocate value types.
36631         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36633 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36635         * class.c: init enum types right away and register the
36636         token->MonoClass map in mono_class_create_from_typedef ().
36637         * verify.h, verify.c: first cut of the verifier.
36638         * pedump.c: add --verify switch to verify metadata tables.
36639         * tabledefs.h: add some missing enums.
36641 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36643         * class.c (mono_install_runtime_class_init): impl.
36644         (mono_class_init): renamed mono_class_metadata_init to
36645         mono_class_init, also removed the metadata_inited flag
36647         * object.c (mono_object_isinst): use faster algorithm
36649 2001-11-30  Radek Doulik  <rodo@ximian.com>
36651         * mono-endian.h: reverted last change
36652         added function prototypes
36654         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36655         add mono-endian.c back
36657         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36658         for unaligned access, I've mistaked it with endianess. I am
36659         sorry.
36660         (mono_read16): fix reverted endianess
36661         (mono_read64): ditto
36662         (mono_read32): ditto
36664 2001-11-30  Dick Porter  <dick@ximian.com>
36666         * exception.c: Implement mono_exception_from_name()
36668 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36670         * metadata.h, metadata.c: remove params_size and locals_size and their
36671         calculation from the metadata code: they are only usefult to the
36672         interp.
36674 2001-11-29  Radek Doulik  <rodo@ximian.com>
36676         * object.c (mono_ldstr): swap bytes here, it's probably not the
36677         best place, but works for me now, I'll redo it once I know mono
36678         better, also note that I add PROT_WRITE and don't reset back, also
36679         note that it's only affects big endians, so x86 should be OK
36681         * mono-endian.h (read16): use just glib macros for both endians
36683         * mono-endian.c: removed as glib macros are used in in
36684         mono-endian.h so we don't need to care about endianess for read
36685         macros as glib does that for us already
36687 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36689         * class.h, class.h: take minimum alignment into consideration so
36690         that the fields of a class remain aligned also when in an array.
36692 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36694         * loader.h, loader.c: add mono_method_get_param_names().
36695         * class.c: 0-init class fields.
36697 2001-11-26  Dick Porter  <dick@ximian.com>
36699         * icall.c:
36700         * threads-types.h:
36701         * threads.c: New file that handles System.Threading on all platforms
36703         * object.c: 
36704         * object.h: Remove the synchronisation struct from MonoObject,
36705         replace it with a pointer that gets initialised on demand
36707         * Makefile.am: Replace all the system-specific threading code with
36708         a single file that uses the new wrapper library
36710 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36712         * class.c, class.h: add mono_install_trampoline() so that the runtime
36713         can register a function to create a trampoline: removes the ugly
36714         requirement that a runtime needed to export arch_create_jit_trampoline.
36715         * object.h, object.c: added mono_install_handler() so that the runtime
36716         can install an handler for exceptions generated in C code (with
36717         mono_raise_exception()). Added C struct for System.Delegate.
36718         * pedump.c: removed arch_create_jit_trampoline.
36719         * reflection.c: some cleanups to allow registering user strings and
36720         later getting a token for methodrefs and fieldrefs before the assembly
36721         is built.
36722         * row-indexes.h: updates and fixes from the new ECMA specs.
36724 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36726         * class.h, class.c: add enum_basetype field to MonoClass.
36727         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36728         to get index in the constant table reated to a field, param or
36729         property.
36730         * reflection.h, reflection.c: handle constructors. Set public-key and
36731         version number of the built assembly to 0.
36732         * row-indexes.h: update from new ECMA spec.
36734 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36736         * class.h, class.c: add a max_interface_id to MonoClass.
36737         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36738         since it's used to do that. Added mono_type_type_from_obj().
36739         Make GetType() return NULL instead of segfaulting if the type was not
36740         found. Handle simple arrays in assQualifiedName.
36741         * object.h: add a struct to represent an Exception.
36742         * reflection.c: output call convention in method signature.
36743         Add code to support P/Invoke methods and fixed offsets for fields.
36745 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36747         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36748         the value.
36749         * icall.c: use mono_array_addr instead of array->vector: fixes the
36750         reflection image writing.
36751         * reflection.c: init call convention byte to 0 in method signature.
36752         Encode the property signature. Don't output property-related methods
36753         twice. Really process the properties for a type (don't cast a field to
36754         a property, my mom always told me that).
36755         Fix 64 bit issues in pointer alignment in a different and more
36756         readable way.
36758 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36760         * loader.h: Removed type class from MonoDefaults, added monotype
36762         * loader.c: Loaded MonoType, removed loading of Type
36764         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36765         and fills in System.Type._impl with a RuntimeTypeHandle rather
36766         than the actual MonoClass *
36768         (ves_icall_type_from_handle): change from type_class to
36769         monotype_class
36771         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36772         implemented
36774         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36775         implemented
36777         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36779         (ves_icall_System_Reflection_Assembly_GetType): implemented
36781         (ves_icall_System_MonoType_assQualifiedName): implemented
36783         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36785 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36787         * assembly.c (mono_assembly_open): Implement a cache for the
36788         assemblies. 
36790         (mono_assembly_close): only destroy the assembly when the last
36791         reference is gone.
36792         
36793 2001-11-09  Dick Porter  <dick@ximian.com>
36795         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36797 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36799         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36801 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36803         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36804         from Martin Weindel.
36805         * object.h: add mono_string_chars ().
36807 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36809         * reflection.c (build_compressed_metadata): Eliminates warnings
36810         and uses 64-bit clean code.
36812         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36813         (mono_type_equal): Change signature to eliminate warnings.
36815 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36817         * icall.c, loader.c: remove the internalcall array constructors.
36818         Changes to match the new MonoArray structure.
36819         * object.h, object.c: an array object doesn't allocate an extra
36820         vector. Add mono_array_new_full () to create jagged arrays easily.
36822 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36824         * metadata.h, metadata.c: add mono_metadata_field_info () to
36825         retreive all the info about a field from vairous tables.
36826         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36827         * class.h, class.c: augment MonoClassField with more info.
36828         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36829         policy and load a field's RVA if needed.
36831 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36833         * class.c (mono_class_metadata_init): create a trampoline for all
36834         virtual functions instead of actually compiling them.
36836 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36838         * class.h, class.c: include name in MonoClassField.
36839         * class.c: fix fundamental type of System.Object and System.String.
36840         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36841         tokens in ldtoken.
36842         * icall.c: remove internalcalls for the Reflection stuff that is now
36843         done in C# code.
36844         * loader.c: mono_field_from_memberref () implementation.
36845         * mono-endian.c: thinko (s/struct/union/g).
36846         * object.c, object.h: make the mono_string_* prototypes actually use
36847         MonoString instead of MonoObject.
36848         * reflection.c, reflection.h: updates for changes in the reflection
36849         code in corlib: we use C structures that map to the actual C# classes.
36850         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36851         fat method header if needed and use the info from the ILGenerator for
36852         methods. Handle fields in types. Misc fixes.
36854 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36856         * class.c (mono_class_metadata_init): bug fix: always allocate
36857         space for static class data
36859 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36861         * class.c (mono_compute_relative_numbering): use relative
36862         numbering to support fast runtime type checks.
36864 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36866         * class.c (mono_class_create_from_typeref): added debugging output
36867         to print class name when MonoDummy is returned instead of real class
36869 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36871         * class.c (mono_class_metadata_init): interface offset table now
36872         contains pointers into the vtable - this is more efficient for the jit
36874 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36876         * class.c (mono_class_metadata_init): use a temporary vtable (the
36877         old algorithm only worked for the interpreter, but not for the jit)
36879 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36881         * loader.c (method_from_memberref): use mono_class_get to get the
36882         class of an array instead of using System.Array directly.
36883         (mono_get_method): also add MEMBERREF methods to the method cache
36884         which usefull for arrays.
36886 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36888         * pedump.c (arch_compile_method): added to compute vtable entry
36890         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36891         number of interfaces.
36892         
36893         * class.h: merged MonoArrayClass into MonoClass
36895         * class.c (mono_class_create_from_typedef): compute the vtable size and
36896         allocate space to include the vtable inside MonoClass
36897         (mono_class_metadata_init): initialize the vtable
36899 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36901         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36902         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36903         * image.c: endian fixes by Laurent Rioux.
36904         * object.h, object.c: rename MonoStringObject to MonoString and
36905         MonoArrayObject to MonoArray. Change some function names to conform to
36906         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36907         guint16* as first argument, so don't use char*.
36908         Provide macros to do the interesting things on arrays in a portable way.
36909         * threads-pthread.c: updates for the API changes and #include <sched.h>
36910         (required for sched_yield()).
36911         * icall.c: updates for the API changes above.
36912         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36913         platforms that need them.
36915 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36917         * class.c: set the correct type for all the fundamental
36918         type when loading the class.
36920 2001-10-05  Dick Porter  <dick@ximian.com>
36922         * threads-pthread.c (pthread_mutex_timedlock): Simple
36923         compatibility version for C libraries that lack this call.
36925 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36927         * class.c: MonoTypes stored in MonoClass are stored as
36928         fundamental MonoTypes when the class represents a
36929         fundamental type (System.Int32, ...).
36930         The TypeHandle return by ldtoken is a MonoType*.
36931         * icall.c: ves_icall_get_data_chunk () write out all the
36932         PE/COFF stuff. Implement ves_icall_define_method (),
36933         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36934         * image.c: properly skip unknown streams.
36935         * loader.h, loader.c: add type_class to mono_defaults.
36936         * metadata.c, metadata.h: export compute_size () as
36937         mono_metadata_compute_size () with a better interface.
36938         Typo and C&P fixes.
36939         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36940         * reflection.c, reflection.h: many cleanups, fixes, output method
36941         signatures and headers, typedef and typeref info, compress the metadata
36942         tables, output all the heap streams, cli header etc.
36943         * row-indexes.h: typo fixes.
36945 2001-10-04  Dick Porter  <dick@ximian.com>
36947         * object.h: Add a synchronisation mutex struct to MonoObject
36949         * object.c (mono_new_object): Initialise the object
36950         synchronisation mutexes
36952         * icall.c: System.Threading.Monitor internal calls
36953         
36954         * threads-pthread.h:
36955         * threads-pthread.c: System.Threading.Monitor internal calls
36957         * threads-types.h: New file, includes the system-specific thread
36958         structures
36959         
36960         * threads-pthread-types.h:
36961         * threads-pthread-types.c: New files, handle pthread-specific
36962         synchronisation types
36964         * threads-dummy-types.h: 
36965         * threads-dummy-types.c: New files of dummy support for
36966         thread-specific types
36968         * metadata.c:
36969         * image.c:
36970         * pedump.c: include mono-endian.h not endian.h
36971         
36972         * Makefile.am: More threads files.
36973         Name mono-endian.h not endian.h
36975 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36977         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36978         stuff and implement a few more bits.
36979         * icall.c: a field needs to be dereferenced twice. Do not use the same
36980         name for two variables in the same scope.
36981         * image.c, image.h: cleanups.
36983 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36985         * class.c (mono_class_metadata_init): bug fix: compute the right size
36987 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36989         * icall.c: implemented some of the Reflection internalcalls.
36990         * image.c, image.h: start writing out the PE/COFF image.
36991         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36992         that does the reverse than decode_blob_size ().
36993         * object.c: use mono_metadata_encode_value (). Move here
36994         temporary implementation of mono_string_to_utf8 ().
36995         * rawbuffer.c: make malloc_map static.
36997 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36999         * metadata.c: fix type comparison for arrays.
37000         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37001         Added a couple of new classes to monodefaults.
37002         * icall.c: added a couple of Reflection-related internalcalls.
37003         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37004         Added a byval_arg MonoType to MonoClass.
37006 2001-09-28  Dick Porter  <dick@ximian.com>
37008         * icall.c:
37009         * threads-pthread.h: 
37010         * threads-pthread.c: Implemented internal calls for
37011         LocalDataStoreSlot operations.  Applied mutexes around all shared
37012         data.  Reworked the thread creation and Start() operations to
37013         avoid a race condition.
37014         
37015         * threads-dummy.h:
37016         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37018 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37020         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37022 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37024         * class.c, loader.c: warn and return NULL instead of erroring out.
37025         * icall.c: added System.AppDomain::getCurDomain().
37026         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37028 2001-09-25  Dick Porter  <dick@ximian.com>
37030         * threads-pthread.h:
37031         * threads-pthread.c: Implemented timed thread joining and added
37032         System.Threading.Thread::Join_internal internal call
37034         * icall.c: Added System.Threading.Thread::Join_internal internal call
37036         * threads-dummy.h:
37037         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37039 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37041         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37042         mono_string_intern () to implement the semantics of the ldstr opcode
37043         and the interning of System.Strings.
37044         * icall.c: provide hooks to make String::IsIntern and String::Intern
37045         internalcalls.
37047 2001-09-23  Dick Porter  <dick@ximian.com>
37049         * threads-dummy.c: 
37050         * threads-dummy.h: New files of dummy threading routines
37052         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37053         support code based on system specifics
37055         Rename PTHREAD_LIBS to THREAD_LIBS
37056         
37057 2001-09-23  Dick Porter  <dick@ximian.com>
37059         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37060         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37061         internal calls.
37062         (mono_thread_init): Set up a Thread object instance to return when
37063         the main thread calls Thread.CurrentThread
37064         (mono_thread_cleanup): Wait for all subthreads to exit
37066         * icall.c: New internal calls for System.Threading.Thread::Sleep
37067         (including Schedule) and CurrentThread
37069         * threads.h: New file, to insulate thread-specific stuff from the
37070         rest of the code
37072 2001-09-21  Dick Porter  <dick@ximian.com>
37074         * threads-pthread.h: 
37075         * threads-pthread.c: New file, for handling pthreads-style
37076         threading support.  Start() now starts a new thread and executes
37077         the ThreadStart delegate instance.
37079         * icall.c: Added the internalcall for
37080         System.Threading.Thread::Start_internal
37082         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37084 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37086         * loader.c: work around the different signatures for delegates
37087         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37089 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37091         * class.h, class.c: add mono_class_get_field_from_name ().
37092         * *: Fix C comments and other ANSI C issues.
37094 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37096         * endian.h, assembly.c: fix some endianness issues.
37098 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37100         * loader.h, load.c: add delegate_class to mono_defaults.
37101         Handle runtime provided methods in mono_get_method ().
37103 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37105         * loader.c (mono_get_method): use pinvoke for internal call
37107         * icall.c: use pinvoke for internal call
37109         * loader.c (method_from_memberref): set the method name
37111 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37113         * metadata.c: help the compiler generate better code for
37114         mono_class_from_mono_type ().
37116 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37118         * class.c (mono_class_metadata_init): delayed computing of the
37119         class size to mono_class_metadata_init ()
37121 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37123         * class.c, class.h: add an interfaces member to MonoClass.
37124         * image.c, image.h: add assembly_name field to MonoImage
37125         from the assembly table.
37126         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37128 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37130         * class.c: Handle Array in mono_class_from_mono_type ().
37131         * metadata.c, pedump.c: some endian fixes.
37133 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37135         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37136         * metadata.c: fix small problem introduced with the latest commit.
37138 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37140         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37141         We don't need a MonoMetadata pointer anymore to compare signatures in
37142         mono_metadata_signature_equal (), update callers.
37143         Reduced memory usage an number of allocations for MonoMethodHeader and
37144         MonoMethodSignature.
37146 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37148         * metadata.c: added compare for szarray.
37150 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37152         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37153         and add a couple more types to it and mono_defaults. Give an hint on
37154         classes that need implementing in our corlib and are referenced
37155         in mscorlib.
37157 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37159         * class.h, class.c: keep track if a class is also an Enum.
37160         * loader.c: Implement a couple more types for use in libffi
37161         marshalling. Gives better diagnostics when failing to dlopen
37162         a library. Set method->klass for P/Invoke methods, too.
37164 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37166         * class.c, class.h: add a MonoType this_arg to MonoClass that
37167         represents a pointer to an object of the class' type that
37168         can be used by the interpreter and later the type cache.
37169         Add best guess alignment info for valuetype objects.
37171 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37173         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37174         into MonoType: one less level of indirection and allocation and
37175         simplifies quite a bit of code. Added cache for MonoTypes that are
37176         used frequently, so that we don't need to allocate them all the time.
37178 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37180         * class.c (mono_class_create_from_typedef): System.Enum is also a
37181         value type, although it does not derive from System.ValueType
37182         (maybe a bug in the ms compiler?)
37184         * metadata.c (mono_type_size): return the right size for value types
37186         * loader.c (mono_get_method): only initialize method header if not abstract
37188         * class.c (mono_class_from_mono_type): use mono_default values. 
37190 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37192         * *: use MonoClass pointers instead of <type_tokens>
37193         
37194         * class.h: new flag: metadata_inited.
37196         * class.c (mono_class_metadata_init): impl.
37197         (mono_class_instance_size): impl.
37198         (mono_class_data_size): impl.
37200 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37202         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37203         MonoClass now has the name and name_space fields. 
37204         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37205         mono_get_method () takes and optional MonoClass as argument.
37206         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37207         instead that takes advantage of a map from class names to typedef
37208         tokens in MonoImage.
37210 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37212         * metadata.c: zero is not a valid alignment boundary.
37213         Merge MONO_TYPE_VOID in default decoding code.
37215 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37217         * image.h: merged MonoMetadata into MonoImage
37219         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37220         identify the type of elements.
37222 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37224         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37225         * cil-coff.h: split MonoMSDOSHeader and add size info.
37226         * image.c: add some consistency checks.
37227         * metadata.c: fix row size computation: one programmer
37228         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37229         add explanation for the locator routine.
37230         Fix decoding of size in method header.
37231         
37232 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37234         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37235         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37236         function from gnome-libs.  This uses the right path separator
37237         based on the OS, and also works around a bug in some systems where
37238         a double slash is not allowed. 
37239         (default_assembly_name_resolver): Use g_concat_dir_and_file
37240         (mono_assembly_open): ditto.
37242 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37244         * metadata.c (mono_metadata_signature_equal): impl.
37246         * *: void is now a realy MonoType (instead of using NULL)
37247         
37248         * metadata.c (do_mono_metadata_parse_type): use
37249         mono_metadata_parse_type to parse void value.
37251 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37253         * metadata.c, metadata.h: in the signature and method header store
37254         only the space required for holding the loca vars and incoming arguments.
37256 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37258         * metadata.c (do_mono_metadata_parse_type): treat void like any
37259         other type (instead of assigning NULL);
37261 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37263         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37265 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37267         * image.c (do_mono_image_open): added a cache for arrays.
37269 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37271         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37272         decode a single column from a row in a metadata table and changes
37273         to take advantage of it in the typedef locator (gives a nice speed up).
37274         Store offset info for function params.
37276 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37278         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37280 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37282         * assembly.c: how could mono_assembly_close () had ever worked?
37283         * metadata.c, metadata.h: provide offset info for local vars.
37284         Implement mono_type_size () to take care of alignment as well
37285         as size (it was mono_field_type_size in cli/class.c before).
37287 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37289         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37291         * assembly.h (CORLIB_NAME): set to corlib.dll
37293         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37295 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37297         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37298         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37299         tokentype.h: massive namespace cleanup.
37301 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37303         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37305 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37307         * metadata.c (mono_metadata_free_type): added check for type !=
37308         NULL (void) before calling mono_metadata_free_type()
37310 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37312         * metadata.h, row_indexes.h: added header with enumerations to use
37313         to index in the columns from tables in metadata and to decode coded
37314         tokens: we should start using this instead of embedding magic numbers
37315         all over the code.
37317 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37319         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37320         Move metadata_t info from cli_image_info_t to MonoImage, where
37321         it's easily accessible. Changed all the uses accordingly.
37322         Added the method and class caches to MonoImage.
37323         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37324         and mono_metadata_decode_value () signature to be more consistent
37325         with the other parse functions (and simplify code). Taken advantage
37326         of zero-length array allocation with GCC. Removed reduntant (and
37327         wrong) MonoFieldType struct and use MonoParam instead. Changed
37328         mono_metadata_parse_field_type () to use common code for parsing.
37329         Added mono_metadata_typedef_from_field () and
37330         mono_metadata_typedef_from_method () to lookup a typedef index from a
37331         field or method token.
37332         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37334 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37336         * metadata.c (mono_metadata_parse_field_type): Implement. 
37337         (do_mono_metadata_parse_type): Split engine from
37338         mono_metadata_parse_type, so that we can create smaller structures
37339         for things that just have one pointer to the MonoType (look at
37340         the MonoFieldType)
37342 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37344         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37345         as Jan Gray found out, it is incorrect. 
37347 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37349         * assembly.c: Implement asssembly loading.  This loads an image
37350         and loads all the referenced assemblies.  Come to think of it, we
37351         could always do lazy loading of the assemblies. 
37353         * image.c (mono_image_open): Keep loaded images in a hashtable.
37355         * image.h (MonoImage): Add reference count.
37357 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37359         * assembly.c (mono_assembly_open): Keep track of the file name in
37360         case the assembly has no ASSEMBLY table.
37362         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37363         from get.c here.
37365 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37367         * metadata.c, metadata.h: decode local vars in method header
37368         parse function. Change callers accordingly.
37370 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37372         * metadata.h, cil-coff.h: protect against multiple inclusion.
37373         Added some new structures to hold information decoded from metadata:
37374         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37375         and relevant decoding/free functions.
37376         * metadata.c: implement decoding functions. Add warning for out of bounds
37377         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37378         all the info about a method signature and invocation. Remove check on
37379         uninitialized local var in parse_mh() and fix memory leak.
37381 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37383         * metadata.h: More macros.
37385         * tokentype.h: New file.
37387 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37389         * assembly.c: added a consistency check and initialize
37390         some structures with g_new0().
37391         * metadata.c: fixed a couple more bugs in table size computation
37392         and add other checks for out-of bound access to metadata.
37394 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37396         * metatada.c: fix bugs computing table sizes. Spew a
37397         warning when index in string heap is out of bounds.
37399 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37401         * metadata.h: Add a couple of macros to manipulate tokens. 
37403 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37405         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37406         cli_section_tables).
37408 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37410         * metadata.c (mono_metadata_user_string): New function, provides
37411         access to the UserString heap. 
37413 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37415         * metadata.c: Add inline documentation.
37417 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37419         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37420         files. 
37422 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37424         * typeattr.h: New file, TypeAttribute flags. 
37426 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37428         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37429         mono_assembly_ensure_section): Section loading code.
37430         (load_section_tables): Load the sections.
37432         * mono/metadata/metadata.c (mono_metadata_locate_token,
37433         mono_metadata_locate): Functions to locate the information
37434         definition given a token or a table and an index.
37435         (mono_metadata_compute_table_bases): New.
37436         (compute_size): New function to compute the sizes of the various
37437         tables.
37439         * mono/metadata/metadata.h: Finish listing the different index
37440         types. 
37442         * mono/metadata/pedump.c: Improve to dump new information.
37444 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37446         * mono/metadata/metadata.c: Entered all the tables matching
37447         Beta2. 
37449         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2