2010-05-07 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git] / mono / metadata / ChangeLog
blob89a31c01cebf96bf27beecc26535c9cf8277c25d
1 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
4         checks can avoid doing a mono_class_init.
6         * icall.c: Remove mono_class_init from a bunch of icalls that
7         don't need it.
9         Hopefully we're now lazy enough to fix most victims of #601431.
11 2010-05-07  Mark Probst  <mark.probst@gmail.com>
13         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
15 2010-05-07  Mark Probst  <mark.probst@gmail.com>
17         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
19 2010-05-07  Marek Habersack  <mhabersack@novell.com>
21         * culture-info-tables.h: updated to include en-TT culture. Fixes
22         bug #594035
24 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
26         Move mono_class_init from mono_type_get_object to icalls.
27         This causes massive memory savings for Assembly::GetTypes () and
28         make it fail a lot less due to missing dependencies.
30         This is a conservative, naive change as it doesn't remove some
31         mono_class_init from places that might not need them. Carefull
32         review of those should follow.
34         * reflection.c (mono_type_get_object): Don't mono_class_init the
35         returning type.
37         * reflection.c:
38         * cominterop.c:
39         * icall.c:
40         * marshal.c: Call mono_class_init in functions receiving a MonoType
41         object.
43         First step into fixing #601431.
45 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
47         * gc-internal.h: Add new functions required for ephemeron support.
49         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
51         * icall-def.h: Add GC::register_ephemeron_array.
53         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
54         under sgen. Its fields must not be marked.
56         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
58         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
59         handling finalizable objects. Clean dead ones after all finalizable
60         handling.
62         * sgen-gc.c (dump_heap): Add new kind of internal memory.
64         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
65         arrays from the dead domain.
67         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
69         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
70         whose keys are reachable.
72         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
73         list of live ephemeron arrays.
75 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
77         * class.c (mono_class_layout_fields): Don't perform alignment
78         if align is zero.
80         * class.c (mono_class_layout_fields): Init field related information
81         to sane defaults.
83 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
85         * verify.c (mono_verifier_verify_class): Verify the constraint
86         of generic type definitions.
88 2010-05-04  Mark Probst  <mark.probst@gmail.com>
90         * sgen-marksweep.c: Simplify free list maintenance in sweep.
92 2010-05-02  Mark Probst  <mark.probst@gmail.com>
94         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
95         major_do_collection() across the two major collectors.
97 2010-05-02  Mark Probst  <mark.probst@gmail.com>
99         * sgen-gc.c: Add heavy statistics counter for re-added global
100         remsets.
102 2010-05-02  Mark Probst  <mark.probst@gmail.com>
104         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
105         get rid of a division in critical code.
107 2010-04-29  Mark Probst  <mark.probst@gmail.com>
109         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
110         blocks for objects without references in mark&sweep, to improve
111         performance.
113 2010-04-28  Mark Probst  <mark.probst@gmail.com>
115         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
116         statistics up-to-date.
118 2010-04-27  Mark Probst  <mark.probst@gmail.com>
120         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
121         heap-dump for mark&sweep.
123 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
125         * loader.c (mono_method_get_header): Move the is_inflated case before the
126         wrapper case, as a method can be both.
128 2010-04-27  Mark Probst  <mark.probst@gmail.com>
130         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
131         separate pass to scan pinned and large object but use the gray
132         queue like for regular objects.
134 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
136         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
137         string.h for memmove.
139         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
140         ipaddress_to_struct_in6_addr() is only needed when
141         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
143 2010-04-25  Mark Probst  <mark.probst@gmail.com>
145         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
146         separate copy_object functions for major vs nursery.  Allows us to
147         get rid of a few checks and the start and end parameters for many
148         functions.
150 2010-04-25  Mark Probst  <mark.probst@gmail.com>
152         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
153         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
154         collector.
156 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
158         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
159         calling setup_mono_type () since the nested parent could recursively reference
160         the nested class using generic constraints. Fixes #599469.
162 2010-04-24  Mark Probst  <mark.probst@gmail.com>
164         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
165         abstraction.
167 2010-04-24  Mark Probst  <mark.probst@gmail.com>
169         * sgen-gc.c: Remove more unneeded code.
171 2010-04-24  Mark Probst  <mark.probst@gmail.com>
173         * sgen-gc.c: Disable managed allocator and wbarrier when the
174         binary protocol is enabled.
176 2010-04-24  Mark Probst  <mark.probst@gmail.com>
178         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
180 2010-04-24  Mark Probst  <mark.probst@gmail.com>
182         * sgen-gc.c: Remove a few commented out and unneeded bits.
184 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
186         * threadpool.c: patch from Robert Nagy that fixes a nullref and
187         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
189 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
191         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
192         types.
194         Fixes #331126
196 2010-04-21  Mark Probst  <mark.probst@gmail.com>
198         * sgen-gc.c: Turn off semi-precise stack mark.
200 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
202         * reflection.c (mono_custom_attrs_from_index): Use right function
203         to free 'list' (i.e. g_list_free) if the verifier fails.
205 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
207                 * verify.c: Handle the case where mono_type_get_underlying_type_any
208                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
209                 and MONO_TYPE_VALUETYPE in those case.
211                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
213                 Hopefully Fixes #564253.
215 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
217         * domain-internals.h: made threadpool_jobs volatile.
218         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
219         all local jobs.
220         * threadpool.c:
221                 -When two threads try to initialize the socket IO pool,
222                 the second one waits until the intialization is finished
223                 instead of continuing right away.
224                 -Add checks for domain unload: no items added in this case.
225                 -Only measure the time every 10 elements added to the queue.
226                 This is an experiment since linux x86 gettimeofday() sucks.
227                 -Create new thread if there are none waiting for work items.
228                 -There was a missing decrement of the busy threads.
229                 -Make sure the local queue is cleaned up before exiting the
230                 thread when the program ends.
232 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
234         * reflection.c (mono_type_get_object): Normalize generics types
235         as to how managed code expect them to be. A generic instance over
236         the GTD arguments must have the same mirror as the GTD itself.
238         Fixes #473289.
240 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
242         * locales.c: Implement support for DISABLE_NORMALIZATION.
244 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
246         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
247         since it is not a MonoMethod.
249 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
251         * icall-def.h: Add get_RequiresElevatedPermissions icall to
252         System.Security.SecurityManager - used only by Moonlight
253         * security-core-clr.c|h: Add Elevated Trust/Permission support
254         for CoreCLR / Moonlight
256 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
258         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
259         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
261 2010-04-16  Marek Habersack  <mhabersack@novell.com>
263         * mono-perfcounters.c: added code for the "Mono
264         Memory/Total Physical Memory" performance counter.
266         * mono-perfcounters-def.h: added definition of the "Mono
267         Memory/Total Physical Memory" performance counter.
269 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
271         * class.c (mono_class_get_method_by_index): Return NULL
272         on type load failures.
274 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
276         * class.c (mono_class_from_typeref): Check if the supplied
277         image has an assembly bound to it.
279         Fixes #567884.
281 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
283         * loader.c (mono_method_get_signature_full): Use new function
284         inflate_generic_signature_checked to check for errors.
286         Fixes #560839.
288 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
290         * loader.c (inflate_generic_signature): Add _checked variant
291         and move this function to use it.
293 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
295         * class.c (mono_class_setup_vtable_general): Use error checking
296         version of mono_class_inflate_generic_method_full.
298         Fixes #596975.
300 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
302         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
303         error handling passing MonoError around.
305         Fixes #560336.
307 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
309         * socket-io.c: make GetHostByName ("") work on windows.
310         Fixes bug #456723.
312 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
314         * object-internals.h:
315         * threads.c: use a spin lock when accesing the per-thread appdomain
316         list.
318 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
320         * threads.c: no need to take the threads lock in push/pop appdomain.
322 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
324         * reflection.c (_mono_reflection_parse_type): MS supports
325         non-assembly-qualified types in a generic type parameter list
326         when enclosed in '[]' (which signals that they should be a fqn).
328         This breaks ECMA specs for how type names are encoded in cattr
329         blobs but F# does it.
331         Fixes #576342.
333 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
335         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
336         for instance methods/ctors.
338         Fixes #422113.
340 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
342         * reflection.c: Use the new verifier support for checking
343         custom attributes.
345         Fixes #595306.
347 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
349         * metadata-verify.c: Implement structural verification
350         of custom attributes. This check requires access to the
351         loader since to resolve the size of an enum we have to
352         look it up.
353         We don't check if named argumenments are encoded in a
354         compatible fashion to their underlying field/prop.
355         Maybe we should?
357         * verify-internals.h: Add two new cattr verification API.
359 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
361         * metadata-verify.c (decode_signature_header): Fix signature.
363 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
365         * verify.c (mono_verifier_is_enabled_for_method): Handle
366         assembly less images.
368         * verify.c (mono_verifier_is_class_full_trust): Ditto.
370 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
372         * loader.c (mono_method_signature_checked): Properly
373         init MonoError.
375         * loader.c (mono_method_signature): It's the calee
376         resposibility to init the error object.
378 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
380         * metadata-verify.c (decode_signature_header): Do proper
381         overflow checking.
383 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
385         * reflection.c: maintain the invariants required by
386         mono_class_layout_fields() also in typebuilder_setup_fields ().
388 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
390         * security-core-clr.c: Call mono_class_setup_methods in 
391         get_default_ctor before checking klass->methods. Fix typo in
392         comment
394 2010-04-10  Jb Evain  <jbevain@novell.com>
396         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
397         add .net 4.0 RTM version.
399 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
401         * reflection.c (resolve_object): Properly inflate generic
402         methods when a context is supplied.
404         Fixes #591226.
406 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
408         * verify.c (mono_method_verify): A switch op don't empty
409         the stack for the next one. Fixes a bug when running fsi
410         under --verify-all.
412 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
414         * metadata-verify.c (is_valid_standalonesig_blob): Accept
415         fields as valid standalone sig too. F# does generate them.
417         * metadata-verify.c (verify_typedef_table_full): Ignore
418         what <module> extends.
420 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
422         * verify.c (do_invoke_method): It's ok to do use call with
423         virtual, non-final methods if their class is sealed.
425 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
427         * icall.c (ves_icall_MonoField_GetValueInternal): This function
428         is a near identical copy of mono_field_get_value_object. So simply
429         call it.
431         * object.c (mono_field_get_value_object): Handle literal fields
432         on open generic classes.
434         Fixes #594942.
436 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
438         * reflection.c (mono_reflection_create_runtime_class): Setup
439         parent/supertype information again since it can be changed
440         without notice.
442 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
444         * verify.c (verify_type_compatibility_full): Properly handle
445         stores between arrays of primitives.
447         Fixes the verifier side of #555950.
449 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
451         class.c (mono_bounded_array_class_get): Properly init
452         cast_class to take the fact that uint[] and int[] can be
453         casted between each other.
455         Fixes #555950.
457 2010-04-07  Geoff Norton  <gnorton@novell.com>
459         * domain.c: Avoid a deadlock on osx.  Fixes #565765
461 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
463         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
464         builders. Fixes #594464.
466 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
468         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
469         waiting for all threads to suspend, as those threads can't be suspended.
471 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
473         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
474         to avoid crashes on newly created threads.
476 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
478         * file-io.c: reset the MonoIOStat structure in case of error.
479         Fixes bug #582667.
481 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
483         * class.c (print_implemented_interfaces): Print proper type name.
485         * class.c (mono_class_setup_vtable): Don't try that hard to produce
486         the override map for generic instances since it later ignored.
488         * class.c (mono_class_implement_interface_slow): Don't break for
489         dynamic generic instances.
491         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
493         * reflection.c (mono_reflection_method_get_handle): New method that
494         resolves a method handle.
496         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
497         case when we override methods from a dynamic generic instance interface.
499         Fixes #575941.
501 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
503         * threadpool.c: don't attempt to close the pipe when it has not been
504         created.
506 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
508         * threadpool.c: if there are no waiting threads, try to start a new
509         one. This fixes the not-so-random hangs in System.ServiceModel tests.
510         No need to use InterlockedCompareExchange to read volatile variables.
512 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
514         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
515         and reference types that point to the same class.
517         Fixes #565598.
519 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
521         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
522         when verifying compatibility between a generic instance and a generic
523         parameter.
525         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
527         * verify.c (stack_slot_stack_type_full_name): Improve verification type
528         name.
530         Fixes #587849.
532 2010-04-04  Mark Probst  <mark.probst@gmail.com>
534         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
536 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
538         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
540 2010-04-03  Marek Habersack  <mhabersack@novell.com>
542         * process.c: when cross-compiling with MinGW, force GetProcessId
543         lookup using GetProcAddress.
545 2010-04-02  Mark Probst  <mark.probst@gmail.com>
547         * sgen-gc.c: parse_environment_string_extract_number() must be
548         static.
550 2010-04-02  Mark Probst  <mark.probst@gmail.com>
552         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
553         gray_object_dequeue(), to make sure they're inlined.
555 2010-04-02  Mark Probst  <mark.probst@gmail.com>
557         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
558         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
560 2010-04-02  Jb Evain  <jbevain@novell.com>
562         * exception.c: remove dead code.
564 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
566         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
567         with mono-gc.h.
569 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
571         * sgen-gc.c: Make the nursery size adjustable by the
572         MONO_GC_PARAMS environment variable.
574         Code is contributed under MIT/X11 license.
576 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
578         * threadpool.c: threadpool threads wait is alertable.
579         Fixes bug #592964.
580         Reduced the stack size of the *poll_wait thread.
582 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
584         * exception.c|metadata-internals.h: Add new mono_get_exception_
585         field_access_msg and mono_get_exception_method_access_msg 
586         functions that accept a const char* parameter to provide more 
587         details when the exception is thrown.
588         * security-core-clr.c|h: Rework code to allow logging exceptions
589         (export MONO_LOG_MASK="security") and to supply more details in
590         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
591         mono_security_core_clr_is_field_access_allowed and 
592         mono_security_core_clr_is_call_allowed to return an exception,
593         with messages and logging, that can be emitted by method-to-ir.c
595 2010-04-01  Mark Probst  <mark.probst@gmail.com>
597         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
598         pinned object.
600 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
602         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
603         the assembly name is not well formed utf8. Fixes #567882.
605 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
607         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
608         the generic parameters from the builder. Fixes #473298.
610 2010-03-31  Miguel de Icaza  <miguel@novell.com>
612         * object.c (mono_class_proxy_vtable): Eliminate warning. 
614         * marshal.c (emit_marshal_boolean): Eliminate possible
615         uninitialized local warning. 
617 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
619         * class.c (mono_class_init): Postpone coreclr inheritance check
620         until the end of the initialization (so we can check up the 
621         default ctor manually for the core-clr inheritance rules).
622         * security-core-clr.c: Add the missing (undocumented) checks on
623         default constructors when verifying inheritance rules.
625 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
627         * domain-internals.h (MonoJitExceptionInfo): Add new field
628         handler_end to the data union. To be used to point the end
629         of a finally block.
631 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
633         * reflection.c: Add support for new v4 type
634         System.Reflection.MonoModule that is the concrete version
635         of Module which is abstract unver v4.
637 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
639         * class.c (mono_class_init): Don't set class failure after
640         inited = 1 is set. It must be done before.
642 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
644         * mono-config.c: Add support for OS "haiku"
645         * ChangeLog: Fix UTF-8 encoding
647         Code is contributed under MIT/X11 license.
649 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
651         * console-unix.c: fixed include logic for sys/ioctl.h.
653 2010-03-30  Mark Probst  <mark.probst@gmail.com>
655         * threads.c: Fix bitmap generation for TLS marking on 64 bit
656         systems.
658 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
660         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
661         unfinished/broken typebuilders.
663 2010-03-29  Mark Probst  <mark.probst@gmail.com>
665         * sgen-gc.c: Use the same heuristic for the LOS target that we use
666         for the minor section allowance.
668 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
670         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
671         "NoOptimization".
673 2010-03-29  Mark Probst  <mark.probst@gmail.com>
675         * sgen-gc.c: Count bytes allocated with heavy statistics.
677 2010-03-29  Mark Probst  <mark.probst@gmail.com>
679         * sgen-gc.c: More detailed time statistics.
681 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
683         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
684         fix the user defined mark interface to pass a pointer
685         to the object location and not the object itself.
687 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
689         * reflection.c (mono_method_body_get_object): Release
690         the method header before the call to CACHE_OBJECT since
691         this is a macro that returns.
693 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
695         * class.c (inflate_generic_type): mono_metadata_type_dup
696         already dupes array information, the g_memdup was just
697         leaking memory.
699 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
701         * verify.c: Add stack_peek function. Fix CEE_DUP
702         to not read from invalid memory if push did expand
703         the stack.
705 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
707         * verify.c: Remove old table verification code that has
708         been superseeded by the new metadata verifier.
710         * verify.h: Remove mono_image_verify_tables from the public
711         API.
713         * pedump.c: Fix for removed bits.
715 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
717         * verify.c: Allocate stack slows lazily to reduce stack usage
718         in case of methods with huge stacks. Reduces memory consumption
719         for mcs yyparse from 459Mb to 1.8Mb.
721 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
723         * threadpool.c: don't try executing items from domains being
724         unloaded. Fixes appdomain-async-invoke test.
726 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
728         * threadpool.c: spin while the threadpool initializes.
729         * mono-wsq.c: if the WSQ has not been initialized or has been shut
730         down, don't do anything.
732 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
734         * threads.c (mono_thread_create_internal): Set the GC type of the
735         threads_starting_up hash table.
737 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
739         * threadpool.c: reset 'state' to avoid returning non-null when the
740         event type is not found.
742 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
744         * sgen-gc.c: make copy_object () take the address of the
745         slot holding the reference. This allows saving memory stores
746         when not needed and it allows keeping track of oldspace->nursery
747         references for the card table code.
749 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
751         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
753         Code is contributed under MIT/X11 license.
755 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
757         * object.c, threads.c, threads-types.h, threads.h: make the
758         managed thread local storage references precisely tracked.
760 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
762         * threadpool.[ch]: reworked the threadpool:
763                 -Threadpool threads use a work-stealing queue. Adding a work
764                 item from a threadpool thread will queue it in the thread
765                 local queue without locking (in most cases).
766                 -epoll events are coalesced before being added to the IO
767                 queue.
768                 -Dynamically change the number of active threads
769                 -Changed the global queue to be more GC friendly
771         * class-internals.h: add 2 new performance counters for the number of
772         threads in the threadpool and the IO threadpool.
774         * object-internals.h: new field in MonoAsyncResult.
775         * icall-def.h: new internal call for queueing work items.
777         * Makefile.am: add 2 new files.
779         * appdomain.c: bump up corlib version.
781         * mono-wsq.[ch]: an implementation of a work-stealing queue.
783         * mono-perfcounters-def.h:
784         * mono-perfcounters.c: added 2 new performance counters.
786 2010-03-26  Mark Probst  <mark.probst@gmail.com>
788         * sgen-gc.c: More FIXME/TODO updates.
790 2010-03-25  Mark Probst  <mark.probst@gmail.com>
792         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
793         function mono_gc_invoke_with_gc_lock() which invokes a function
794         with the guarantee that no collection will occur during its execution.
796 2010-03-25  Mark Probst  <mark.probst@gmail.com>
798         * sgen-gc.c: Update a few comments.
800 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
802         * reflection.c: Add support for new v4 type
803         System.Reflection.MonoAssembly that is the concrete version
804         of Assembly which is abstract unver v4.
806 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
808         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
809         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
811         Expose a few macros that are needed for SR but not SRE to the
812         world (previous inside the SRE ifdef)
814 2010-03-24  Mark Probst  <mark.probst@gmail.com>
816         * sgen-gc.c (gc_register_current_thread): We need
817         stack_start_limit as well in the non-attribute pthread case.
819 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
821         * threads.c: Fix windows build.
823 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
825         * thread-types.h: Add mono_thread_resume_interruption.
827         * threads.c: Add mono_thread_resume_interruption, this
828         function should be called after the last protected handler
829         found at interruption time has finished.
831 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
833         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
834         Check MonoInternalThread's ::state instead of ::abort_exc
835         since the later can be lazily created.
837         This is specially problematic when running a finally block
838         under AbortRequested state. ResetAbort must work, but the
839         abort_exc object has not been created because interruption
840         has not began.
842 2010-03-22  Geoff Norton  <gnorton@novell.com>
844         * locales.c: Its possible for CFStringGetCStringPtr
845         to return null and not convert encodings.  Use
846         CFStringGetCString instead.
848 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
850         * class-internals.h, class.c, object.c: introduce compressed
851         interface bitmaps (for now only under small config): this saves
852         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
853         startups.
855 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
857         * mono-debug.c: don't try to get the method header, it causes a
858         deadlock and it is not used for anything anymore.
860 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
862         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
863         broken by the last change.
865 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
867         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
868         SOCK_RDM.
869         
870         Code is contributed under MIT/X11 license.
872 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
874         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
875         nursery.
877         Code is contributed under MIT/X11 license.
879 2010-03-19  Martin Baulig  <martin@ximian.com>
881         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
882         dummy field, containing an empty string.
883         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
886 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
888         * class.c: setup_interface_offsets() refactor to not call
889         mono_class_get_implemented_interfaces () more times than needed and
890         to reduce the runtime memory requirements to be O(num_interfaces)
891         instead of O(max_interface_id).
893 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
895         * mono-mlist.[ch]: add mono_mlist_set_next ().
897 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
899         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
900         associated changes to support holes in the protected range of a
901         try block.
903         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
904         retrieves the holes table from a given MonoJitInfo.
906 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
908         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
909         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
910         hide the contents of the MonoString and MonoArray structs from the
911         public API. Change the accessor macros to accessors functions where
912         needed. Adjusted the array API to allow for pointer-sized lengths and
913         starting positions, so 64 bit arrays can be optionally provided in an
914         API compatible way if needed on 64 bit systems.
916 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
918         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
919         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
921 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
923         * class-internals.h: remove the method header from MonoMethod since
924         from now on it will be transient. We have a header pointer for method
925         wrappers, since in that case we need to keep track of it. For this
926         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
927         structs now. The same happens with MonoMethodInflated.
928         * class.c: reset the sre_method flag for inflated method structures:
929         this makes the code that cares look at the header in the MonoMethodInflated
930         structure.
931         * loader.c: lookup the method header in the appropriate field now that
932         it is removed from MonoMethod.
933         * metadata-internals.h: add a flag to the method header to know if it
934         can be freed inside mono_metadata_free_mh ().
935         * method-builder.c: updates after moving the header field from
936         MonoMethod to MonoMethodWrapper.
937         * reflection.c: MonoMethods generated from Reflection.Emit use
938         MonoMethodWrapper structs if they need a method header now (later take
939         advantage of this and remove all the current unsafe uses of method_aux_hash).
940         * metadata.c: make method header parsing not leak when verification
941         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
942         These changes save a few hundred KB of runtime memory in a mcs
943         bootstrap or a monodevelop startup.
945 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
947         * verify.c: Improve error message.
949 2010-03-12  Jb Evain  <jbevain@novell.com>
951         * reflection.c (add_exported_type): populate the exported
952         table with the type's nested type.
954 2010-03-10  Mark Probst  <mark.probst@gmail.com>
956         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
957         can't read parentheses.
959 2010-03-10  Mark Probst  <mark.probst@gmail.com>
961         * threads.c (thread_cleanup): Add a guard to dereferencing
962         "thread" to avoid an unlikely race condition.
964 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
966         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
967         instead of an empty string.
969 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
971         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
972         convert to a boolean, recent gcc versions compile this differently.
974 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
976        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
977        inlined.
979 2010-03-09  Mark Probst  <mark.probst@gmail.com>
981         * sgen-gc.c (STRING_SIZE): Off by one.
983 2010-03-09  Mark Probst  <mark.probst@gmail.com>
985         * sgen-archdep.h: Fix the signal context register access for
986         AMD64.
988 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
990         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
992 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
994         * verify.c: Store the initial basic block returned by mono_basic_block_split
995         so we can release the whole list and not just the first one.
997 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
999         * verify.c, debug-helpers.c, profiler.c, loader.c,
1000         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1001         MonoMethodHeader a transient entity.
1003 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1005         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1006         uncontrolled growth of the gray stack.
1008         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1009         added items are removed first, improving cache locality. Avoid freeing queue
1010         segments in the fast path, use the list of segments as the free list, truncate
1011         it to its max size at the start of collection.
1013 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1015         * metadata-internals.h: more memory savings, both with small config and without.
1018 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1020         * appdomain.c, domain-internals.h, domain.c, object.c:
1021         make class_vtable_hash into an array to reduce memory usage.
1023 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1025         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1026         object-internals.h, object.c, reflection.c, threadpool.c:
1027         reduce resource usage when the small config is selected.
1028         In particular, up to 64K of methods/fields/properties/events
1029         are allowed and "other" methods in events are ignored.
1031 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1033         * threads.c: reduce resource usage when compiled for a small config.
1035 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1037         * sgen-gc.c: Also collect number of degraded-alloced objects with
1038         heavy statistics.
1040 2010-03-04  Geoff Norton  <gnorton@novell.com>
1042         * assembly.c: Only support OSX bundling if the bundle is 
1043         actually detectable.
1045 2010-03-04  Geoff Norton  <gnorton@novell.com>
1047         * loader.c: The marshal specs are freed at the end of the call
1048         but it explicitly frees the strings as well as the container,
1049         so we need to dup them too to avoid referencing free'd memory.
1051 2010-03-04  Geoff Norton  <gnorton@novell.com>
1053         * icall-def.h:
1054         * icall.c: Add a new private internal icall to construct
1055         an object from its type without running the ctor.
1057 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1059         * profiler.c: allow multiple profiler engines to be loaded
1060         at the same time.
1062 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1064         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1065         profiler event to track object moves.
1067 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1069         * object.c, profiler.c, profiler.h, string-icalls.c:
1070         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1072 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1074         * decimal.c (mono_double2decimal): Add support for reducing the
1075         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1076         expected.
1078 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1080         * icall-def.h:
1081         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1083 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1085         * mono-config.c (mono_config_parse_assembly_bindings): added -
1086         parses assembly binding redirections from appdomain's config
1087         file.
1089         * metadata-internals.h: added definition of a new function -
1090         mono_config_parse_assembly_bindings - to support parsing assembly
1091         binding redirections defined in appdomain's config file.
1093         * domain-internals.h: added two new fields to _MonoDomain - a list
1094         of assembly bindings and a flag to parse the config file only
1095         once.
1097         * assembly.c (assembly_binding_maps_name): empty culture name and
1098         NULL culture name are considered equal.
1099         (mono_assembly_apply_binding): added support for domain specific
1100         assembly binding redirections, read from the appdomain's
1101         configuration file. Fixes bug #580185
1103 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1105         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1106         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1107         support.
1109 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1111         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1112         from this function. The new function receive the parent token instead of a type.
1114         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1115         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1116         typebuilders. This make it possible to properly encode generic type builders since
1117         their unmanaged type don't have generics data while unfinished.
1119         Fixes #583655.
1121 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1123         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1124         writing binary log files (can be enabled by #define'ing
1125         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1126         bugs in longer running programs.
1128 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1130         * metadata.c: added some API documentation.
1132 2010-03-01  Robert Jordan  <robertj@gmx.net>
1134         * filewatcher.h: Include glib.h to fix the MSVC build.
1136 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1138         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1139         a GC handle instead. This is a bit slower to access, but avoids burdening the
1140         GC with 100s of individual roots.
1142         * reflection.c (mono_class_get_ref_info):
1143         (mono_class_set_ref_info):
1144         (mono_class_free_ref_info): New internal helper fuctions.
1146         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1147         of accessing klass->reflection_info directly.
1149         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1150         words.
1152         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1153         the previous array.
1155 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1157         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1158         needs an indirection.
1160 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1162         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1163         so all generic sharing code is in one place.
1165         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1166         we don't call setup_interface_offsets () for unfinished types.
1168 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1170         * class.c (mono_class_generic_sharing_enabled): Move this to
1171         generic-sharing.c.
1173         * image.c: Add an unload hook which is called before an image is unloaded.
1175         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1176         metadata.c having to depend on generic sharing.
1178 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1180         * class.c: reduce size of ridiculously large cache.
1182 2010-02-26  Martin Baulig  <martin@ximian.com>
1184         * mono-debug.h
1185         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1187         * threads.c (mono_thread_internal_reset_abort): New method; resets
1188         the abort, but doesn't throw any exception if no abort was requested.
1190 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1192         * class.c (get_implicit_generic_array_interfaces): Call
1193         mono_class_setup_interface_offsets () before accessing
1194         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1195         some reason.
1197 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1199         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1200         icall internal.
1202 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1204         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1205         direct access to the MonoType fields.
1207 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1209         * threads.h: Move some internal functions which were added to this header by
1210         mistake to threads-types.h.
1212         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1214 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1216         * class-internals.h, class.h, object.h: make MonoRemoteClass
1217         and mono_remote_class() internal.
1219 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1221         * metadata-internals.h, class-internals.h, metadata.h: make the
1222         MonoType guts internal as well.
1224 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1226         * reflection.h: the MonoTypeNameParse guts are internal now.
1227         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1228         are internal now, provide accessors as needed.
1229         * metadata.h, metadata-internals.h: the MonoMethodSignature
1230         guts are internal now.
1231         * Makefile.am: mempool.h is an internal header now.
1232         * *.h, *.c: remove glib.h usage from the public headers.
1234 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1236         * culture-info-table.h : regenerated.
1238 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1240         * metadata.c: Add mono_method_get_header_summary which returns minimal
1241         information about the header of a method. This is the information used
1242         by the inline oracle to reject methods.
1244         This method doesn't decode local variables and doesn't cache it's result,
1245         so it should cause a minimal reduction in memory usage.
1247         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1248         mono_method_get_header_summary.
1250 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1252         * threads.c (mono_thread_exit): Make sure that the main thread is
1253         non-null before dereferencing it.
1255 2010-02-21  Geoff Norton  <gnorton@novell.com>
1257         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1258         locale.
1259         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1260         before falling back to the posix lookup.
1262 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1264         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1265         the DONT_MANAGE flag set.
1267 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1269         * domain.c: Remove old v1 version strings. Let the runtime
1270         default to 2.0 instead of failing because it can't find a
1271         working 1.0 instalation.
1273 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1275         * domain.c: Add v4 RC version string.
1277 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1279         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1280         of overflow checking function.
1282 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1284         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1285         generic methods.
1287         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1288         cases for ParameterInfo.
1290         Fixes #579493.
1292 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1294         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1295         have has_cctor set. Fixes #575946.
1297 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1299         * appdomain.c: display a warning if the parsing the config file
1300         produces any error.
1301         Skip the BOM in UTF-8 files.
1302         Copy the AppDomainSetup before setting the privateBinPath so that the
1303         correct configuration file is read.
1305 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1307         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1308         vtable trampoline per vtable slot index. Not used yet.
1310 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1312         * icall-def.h:
1313         * icall.c: add internal call that returns the system page size.
1315 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1317         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1318         'int' for system classes.
1320 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1322         * icall.c, icall-def.h: new icall to check for sufficient
1323         stack space.
1325 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1327         * reflection.c (ensure_complete_type): Check that reflection_info
1328         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1330 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1332         * attrdefs.h:
1333         * tabledefs.h: Add NoOptimization flag.
1335 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1337         * sgen-gc.c: Don't consider it a missing remset if the target
1338         object is pinned - we might have done the store but not added the
1339         remset yet.
1341 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1343         * sgen-gc.c: When checking for missing remsets, don't assert on
1344         the first one, but print them all and then assert.
1346 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1348         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1350 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1352         * console-unix.c: On OSX Control-Y is assigned to
1353         VDSUSP (non-Posix), the
1354         suspend-program-next-time-it-tries-to-read-input command (this is
1355         different than C-z, which suspends immediately).
1357         Do the same thing that bash does and ignore this setting,
1358         making our repl/getline support pasting.
1360 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1362         * sgen-gc.c: Simple plausibility check for scan_starts.
1364 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1366         * sgen-gc.c: Round up when calculating the number of scan starts.
1368 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1370         * reflection.c: Export mono_get_object_from_blob.
1372         * object-internals.h: Ditto.
1374         * icall.c: New icall property_info_get_default_value to get the default
1375         value of a property. Since using this is not common, no caching is done.
1377         * icall-def.h: Add new icall.
1379 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1381         * class.c: Add mono_class_get_property_default_value.
1383         * class-internal.h: Export mono_class_get_property_default_value.
1385 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1387         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1389 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1391         * sgen-gc.c: introduced critical regions to allow some lockless
1392         operations and increase scalability.
1394 2010-02-10  Geoff Norton  <gnorton@novell.com>
1396         * reflection.c: Support building with DISABLE_REFLECTION
1398 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1400         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1401         Closes bug #566057.
1403         * exception.c: fix typo in comment.
1405 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1407         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1408         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1410         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1412         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1413         the internal API.
1415         Fixes #574434.
1417 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1419         * threads.c: Removed two assertions that were too strict.  Added a
1420         clarifying comment.  Fixes #577090.
1422 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1424         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1425         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1427         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1429         * verify.c (mono_type_get_stack_name): Fix a warning.
1431 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1433         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1434         mono_marshal_wrapper_info_from_wrapper.
1436         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1437         mono_marshal_method_set_wrapper_data, and export.
1439         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1440         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1441         by calling mono_marshal_get_wrapper_info ().
1443         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1444         small objects which does no size checks.
1446 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1448         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1450 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1452         * verify.c (mono_method_verify): Use the new basic block formation pass
1453         to avoid verifying dead basic blocks. This is the same behavior as the
1454         runtime MS verifier.
1456 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1458         * mono-basic-block.c:
1459         * mono-basic-block.h: New implementation of a basic block formation pass.
1460         The formation pass does static liveness analysis as well to detect dead
1461         basic blocks.
1463 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1465         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1466         'this' argument in icalls.
1468 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1470         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1472 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1474         * object.c, domain.c: When using SGen, we must register
1475         vtable->type as a root if it's not a MonoType, because then it
1476         wasn't pin-alloced.
1478 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1480         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1481         at the start of nursery collections, because we might have had
1482         degraded allocations which changed next_data.
1484 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1486         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1487         custom attr so this function works in cross-compiling mode.
1489 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1491         * class.c (make_generic_param_class): Initialize interface offsets since we
1492         set klass->inited. Fixes #574819.
1494 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1496         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1497         calling the JIT domain cleanup hook.
1499 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1501         * pedump.c (main): Properly set the verifier mode when running the metadata
1502         verifier.
1504 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1506         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1507         overlapping fields now that we're called before has_references is set.
1509         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1510         method. Otherwise all sort of weird stuff happens.
1512 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1514         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1515         Fixes #572874.
1517 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1519         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1520         Fixes #573322.
1522 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1524         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1525         pin_staging_area_index is greater than 0.
1527 2010-01-22 Miguel de Icaza (miguel@novell.com)
1529         * loader.c: Since we do nothing with the error returned, pass NULL
1530         to ignore the error.
1532 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1534         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1535         happened before starting to encode the actual fields. This avoid ciclic
1536         dependencies and eventual crashes.
1538         Fixes #572660.
1540 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1542         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1543         atomic and remove the half-constructed hack in SGen.
1545 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1547         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1548         has a recursive reference to itself.
1550         Fixes #571863.
1552 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1554         * loader.c (mono_method_signature): Fix error message.
1556 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1558         * sgen-gc.c: Reuse to-space sections between nursery collections.
1560 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1562         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1563         from the current assembly or mscorlib. Fixes bug #322957.
1565 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1567         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1568         get_wrapper_target_class.
1570 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1572         * sgen-gc.c: Fix warnings.
1574 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1576         * verify.c (store_local): Better error message.
1578 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1580         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1581         arguments.
1583 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1585         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1586         function is generics variance aware.
1588 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1590         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1591         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1593 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1595         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1596           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1598         Code is contributed under MIT/X11 license.
1600 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1602         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1603         on a GTD.
1605 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1607         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1608         return a point to a wrapper specific info structure describing the wrapper.
1609         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1611 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1613         * sgen-gc.c: Make minor collection section allowance adaptive,
1614         depending on the amount of memory reclaimed in the last major
1615         collection.  If more memory was reclaimed (i.e. more garbage
1616         produced), do the next collection earlier.
1618 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1620         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1621         to itself.
1623         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1624         the token as parameter.
1626         * verify-internals.h: Ditto.
1628         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1630         Fixes #571460.
1632 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1634         * sgen-gc.c: Make store_remset_buffer_index long.
1636 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1638         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1640         Fixes #569579.
1642 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1644         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1645         off precise marking if it is available.
1646         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1648 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1650         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1652         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1653         pinned objects.
1655         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1656         to the array allocator.
1658 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1660         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1661         result of mono_compile_method (), it already includes an ftnptr.
1663 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1665         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1667 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1669         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1670         hash value which doesn't depend on glib/eglib versions.
1671         (mono_metadata_type_hash): Use it.
1673         * object.c (mono_method_get_imt_slot): Ditto.
1675 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1677         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1678         independently of the GTD.
1680         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1682         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1683         to the upper limit since instance_size includes this amount.
1685         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1687         Fixes #569544.
1689 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1691         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1692         with static methods.
1694         * object.c (build_imt_slots): Avoid asserting when static methods are
1695         encountered in an interface.
1697 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1699         * sgen-gc.c (to_space_expand): Fix assertion.
1701 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1703         * string-icalls.c: missing declaration fixes.
1704         * sgen-gc.c: portability fixes.
1706 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1708         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1710         * class.c:
1711         * cominterop.c:
1712         * icall.c:
1713         * object.c: 
1714         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1716 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1718         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1719         it can fail loading the type.
1721         * class.c: Add mono_class_inflate_generic_class_checked.
1723         * class.c:
1724         * verify.c:
1725         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1727 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1729         * loader.c (mono_method_signature_checked): New internal function taking an
1730         MonoError argument.
1732         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1733         Fixes build on rh 7.3.
1735 2010-01-10  Aaron Bockover  <abockover@novell.com>
1737         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1738         at runtime in the same way as on Windows, which yields a relocatable
1739         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1740         of the running mono process.
1742         On TARGET_ARM, fallback () will always be executed.
1744 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1746         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1748 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1750         * class.c (mono_class_is_assignable_from_slow): Support variant
1751         generic delegates.
1753         * class.c (mono_class_implement_interface_slow): Support types with
1754         variant generic arguments.
1756 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1758         * verify.c: Remove some code duplication.
1760 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1762         * object.c: Update docs.
1764 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1766         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1768         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1769         fallback trampoline as well.
1771         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1772         out argument that is set to TRUE if the match was direct. 
1774         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1776         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1778 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1780         * class.c: Add mono_class_interface_offset_with_variance function that does same
1781         as mono_class_interface_offset but takes variance into account.
1783         * class-internal.h: Export mono_class_interface_offset_with_variance.
1785         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1787 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1789         * object.c:
1790         * icall.c:
1791         * class.c: Add some FIXME for due to variant generic arguments.
1793         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1794         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1795         the bitfield check fails.
1797 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1799         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1800         to be easier to read and fix bugs in the case a non generic type implements a variant
1801         interface.
1803         * class.c (mono_class_has_variant_generic_params): Make non static.
1805         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1806         the private API.
1808 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1810         * assembly.c: fix MONO_PATH debug output.
1812 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1814         * culture-info-table.h : regenerated.
1816 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1818         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1819         types that are meant to not have a parent.
1821 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1823         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1824         from the image mempool, so it is not leaked.
1826 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1828         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1830 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1832         * verify.c (verify_valuetype_layout_with_target): Fix case
1833         that can lead to infinite recursion. Fix bug #567861
1835 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1837         * pedump.c: Run code verifier even if image verification fails
1838         due to a failed type we. This allows more errors to be shown.
1840 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1842         * class.c (count_virtual_methods): Remove the assert and now
1843         fail properly.
1844         
1845         * class.c (setup_interface_offsets): This can fail now.
1847         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1848         errors. Check setup_interface_offsets errors.
1850         * class.c (setup_interface_offsets): Simplify the return error logic
1851         and remove class_init_ok.
1853         Fixes #560327.
1855 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1857         * class.c (mono_class_init): Do class verification at the beginning. Add
1858         some asserts to avoid tripping into invalid memory.
1860         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1861         g_error and a decent message.
1863         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1865         Fixes #567548.
1867 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1869         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1870         as inline functions instead of defining them in mempool.c.
1872         * metadata-internals.h (MonoImageSet): New structure representing a set of
1873         MonoImages, which own a collection of generic instances.
1875         * metadata.c: Get rid of the global generic caches, instead assign each generic
1876         instance to the image set which consists of all the images referenced by the
1877         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1878         the memory used by generic instances to be allocated from a per image-set mempool
1879         later.
1881 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1883         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1885 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1887         * appdomain.c (zero_static_data): Fix a warning.
1889         * locales.c (construct_culture_from_specific_name): Applied patch from
1890         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1891         not found. Fixes #567900.
1893 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1895         * loader.c (mono_method_get_signature_full): Remove two asserts.
1896         Return NULL instead so that the verifier can handle both cases 
1897         gracefully.
1899 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1901         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1902         so we can properly fail types instead of crashing.
1904         Fixes #567676.
1906 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1908         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1909         generic method.
1911 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1913         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1915 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1917         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1918         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1919         we can't remove it from it since we don't hold the lock.
1920         (mon_new): Free the orphaned events here when a mon structure is added to the
1921         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1922         this down.
1924 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1926         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1927         as max stack might be zero.
1929         Fixes #562320.
1931 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1933         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1935         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1936         instances if the GTD did.
1938         * class.c (mono_class_setup_properties): Ditto.
1940         * class.c (mono_class_setup_events): Ditto.
1942         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1944         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1945         error setting.
1947         * class.c (mono_class_init): Fail if GTD did.
1949         * cominterop.c:
1950         * generic-sharing.c:
1951         * icall.c:
1952         * loader.c:
1953         * object.c:
1954         * verify.c: Properly handle failure of mono_class_setup_methods.
1956 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1958         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1959         mono_class_inflate_generic_method_full internal.
1961         * class.c (inflate_generic_context): Now takes a MonoError argument.
1963         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1964         errors.
1966 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1968         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1969         they cannot be patched. Partly fixes #564408.
1971 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1973         * metadata-internals.h, reflection.c: Use the
1974         MonoDynamicImage.handleref hash table only with unmanaged keys,
1975         and add a managed hash table handleref_managed for managed keys.
1977 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1979         * sgen-gc.c: Unset to-space bumper between collections.  It might
1980         become invalid due to degraded allocations.
1982 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1984         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1985         with the one from the original method.
1987         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1988         compatibility.
1990         * verify-internals.h: Add new function to the internal API.
1992 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1994         * culture-info-tables.h: regenerated it to include the Georgian culture.
1996 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1998         * sgen-gc.c: Include mono/utils/memcheck.h.
2000         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2001         instead of the current domain, since the two might not match if this is called
2002         from the debugger.
2004         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2005         domain which created this assembly.
2007 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2009         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2011 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2013         * sgen-gc.c: Managed implementation of the specialized generic
2014         store write barrier.
2016 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2018         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2019         A private virtual newslot method is used to implement an interface method without exposing
2020         it to users. When querying for public instance methods, such method would hide a public one
2021         on a parent type.
2023         Fixes #564379.
2025 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2027         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2028         conventions.
2030 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2032         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2034 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2036         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2037         as they are no longer used.
2038         
2039          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2041         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2043 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2045         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2046         if the owner class has not been finished before returning reflection_info.      
2048         Fixes #565127.
2050 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2052         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2053         param doesn't have custom attributes. Fixes #565117.
2055         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2056         #565120.
2058 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2060         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2062 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2064         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2065         same amount done by a core-clr enabled runtime.
2067 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2069         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2070         the target files is reset to writable by owner and readable by
2071         everyone else to prevent problems when updating shadow copies of
2072         files whose source is read-only. Fixes bug #556884
2074 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2076         * class.c (mono_generic_class_get_class): Allocate the generic
2077         class via malloc again, so that it can be freed when any one of
2078         the images of its constituent types is closed.
2080         * metadata.c: When closing an image, don't free generic insts and
2081         generic classes right away, but put them into a list for later
2082         freeing.
2084         * image.c, metadata-internals.h: Store the free list and in the
2085         second pass of closing an image, free it.
2087 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2089         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2091         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2092         types in type_hash.
2094         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2096 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2098         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2099         user type.
2101         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2102         is used.
2104 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2106         * verify.c (mono_method_verify): The Unused opcodes produce an
2107         InvalidProgramException on .NET
2109 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2111         * loader.c (mono_method_get_header): Move assert after the verifier
2112         has been called on the method header.
2114 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2116         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2118         * appdomain.c: Bump corlib version.
2120 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2122         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2123         types as well since otherwise generic instances would not return UT as arguments but
2124         their undelying system type.
2126         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2127         to reflect the fact that they can have now multiple different types.
2129         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2131         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2133         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2135         * reflection.c (mono_reflection_register_with_runtime): Init super types
2136         if the image is not dynamic.
2138         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2139         check if the generic type definition is a TypeBuilder.
2141         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2142         doesn't belong to a dynamic image, skip initialization.
2144         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2145         base definition is not a dynamic type.
2147 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2149         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2150         mono_profiler_string_allocation
2152         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2153         if string profiling is enabled, call
2154         mono_profiler_string_allocation
2156         * profiler.h: added two MonoProfileFlags -
2157         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2158         installation functions for the hooks below.
2160         * profiler-private.h, profiler.c: added two hooks:
2161         mono_profiler_string_allocation called whenever a string is
2162         allocated by InternalAllocateStr and mono_profiler_iomap called
2163         whenever IOMAP code performs an adjustement on a file path.
2165 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2167         * boehm-gc.c: fixed race condition while getting the target of a
2168         disappearing link (bug #522233).
2170 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2172         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2173         the error.
2175 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2177         * reflection.c: Add mono_reflection_register_with_runtime icall to
2178         allow a MonoGenericClass to register itself as the managed mirror of
2179         a given generic instance.
2180         This is a temporary workaround until all MGC instantiation happens in
2181         managed code.
2183         * object-internals.h: Ditto.
2185         * icall-def.h: Ditto.
2187 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2189         * sgen-gc.c (find_in_remsets): Also search the generic store
2190         remsets.
2192 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2194         * sgen-gc.c: Don't access class names in debugging code when
2195         unloading a domain, because they might not be valid anymore.
2197 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2199         * domain.c, domain-internals.h: New function mono_domain_unset().
2201         * appdomain.c (unload_thread_main): Detach the thread again at the
2202         end.
2204         * threads.c: When a thread exists or is detached, unset its domain
2205         so that it's NULL when, for example, a pthread destructor runs.
2207         * sgen-gc.c: Assert that there is no domain set after a thread is
2208         done.
2210 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2212         * class.c (mono_generic_class_get_class),
2213         metadata.c (free_generic_class): Allocate generic MonoClass's from
2214         the image mempool, not via malloc.  The problem with malloc is
2215         that when unloading a domain those classes are freed before
2216         clearing the heap and SGen needs the classes.  Rewriting the
2217         unloading code to do the free later would be more work and there's
2218         no point in using malloc anyway.
2220 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2222         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2223         before returning.
2225 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2227         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2228         user string blobs.
2230         * verify-internals.h: Add new function to the internal API.
2232         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2233         check if it's a valid string.
2235         * object.c (mono_ldstr): Ditto.
2237         Fixes #561943.
2239 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2241         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2242         from a method before returning it. This is the expected behavior.
2244 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2246         * reflection.c (inflate_method): Handle the case of a regular system type.
2248 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2250         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2251         gathering code.
2253         * mempool.c, mempool-internals.h: New function
2254         mono_mempool_get_bytes_allocated().
2256         * Makefile.am: sgen-pinning-stats.c added.
2258 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2260         * sgen-gc.c (create_allocator): Only use the fast path if the
2261         object size is within the small object size limit.
2263 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2265         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2266         possibly adding padding to sizeof (GCMemSection).
2268 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2270         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2271         reference is not in the nursery.
2273 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2275         * class.c (mono_class_from_typeref): Bounds check idx against the 
2276         assemblyref table.
2278 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2280         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2281         through the potential roots, then sort the results and find the
2282         pinned objects from there.
2284         * Makefile.am: sgen-pinning.c added.
2286 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2288         * sgen-gc.c: Record generic stores in specialized remset buffers.
2290 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2292         * sgen-gc.c: Make pinned chunks the same size as major heap
2293         sections, and align them as well, so that we can check whether an
2294         object is in a pinned chunk or a major section in constant time.
2296 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2298         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2300 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2302         * sgen-gc.c: Make all major heap sections the same size (currently
2303         128k) and allocate them on aligned addresses.  Small heap sections
2304         give us better granularity with pinned objects - we can free up
2305         much more memory.
2307 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2309         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2310         output removed.
2312 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2314         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2316         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2317         names in addition to the runtime generated one.
2319         * mono/metadata/image.h: Add a function to take the real name of the assembly
2320         image.
2322         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2323         use it instead of the runtime generated one.
2325         Code is contributed under MIT/X11 license.
2327 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2329         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2330         before the other checks to prevent problems if the DateTime class is blittable.
2331         Hopefully fixes #559600.
2333 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2335         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2336         returns the largest string length that will not be put into the
2337         LOS.
2339         * sgen-gc.c, gc-internal.h: New function that returns the largest
2340         object size that will not be put into the LOS.
2342         * appdomain.c: Bump corlib version.
2344 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2346         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2348         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2350 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2352         * reflection.c (inflate_method): Fix signature.
2354         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2355         in managed code.
2357 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2359         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2361 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2363         * sgen-gc.c: Abstract to-space handling.
2365 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2367         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2369         Fixes #559906.
2371 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2373         * sgen-gc.c: Only add references from outside the nursery to
2374         within the nursery to the global remset list.
2376 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2378         * appdomain.c (create_exceptions): Set the domain temporarily if
2379         necessary to avoid cross-domain references.
2381 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2383         * verify.c (get_stack_type): Return that the type is invalid instead of
2384         asserting.
2386         * verify.c (mono_method_verify): Verify that all locals and arguments
2387         have valid stack types.
2389         Fixes #559913.
2391 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2393         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2394         bounds checking overflow aware.
2396         Fixes #559910.
2398 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2400         * verify.c (do_invoke_method): Check for invalid method signatures.
2402         Fixes #553450.
2404 2009-12-02  Jb Evain  <jbevain@novell.com>
2406         * appdomain.c (MONO_CORLIB_VERSION): bump.
2407         * icall-def.h (get_base_definition): renamed to get_base_method
2408         and add a boolean argument indicating we want the original
2409         method definition, or the immediate base method.
2410         * icall.c: apply the get_base_definition to get_base_method change.
2412 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2414         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2416         Fixes #558042.
2418 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2420         * class.c: remove asserts for invalid type token in
2421         mono_class_name_from_token(), mono_assembly_name_from_token() and
2422         mono_class_create_from_typedef () (fixes bug #553318).
2424 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2426         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2427         incorrect assemblies (bug #553322).
2429 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2431         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2433         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2435         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2437         * class.c (inflate_generic_context): Ditto.
2439         * loader.c (method_from_methodspec): Ditto.
2441         Fixes #558230.
2443 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2445         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2447         * class.c (mono_class_create_from_typespec): Ditto.
2449         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2451         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2453         Fixes #558184.
2455 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2457         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2459         * verify.c (verify_delegate_compatibility): Ditto.
2461         * verify.c (do_newobj): Ditto.
2463         Fixes #558046.
2465 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2467         * sgen-gc.c: Use a gray queue instead of requiring that gray
2468         objects are in a contiguous region.
2470         * sgen-gray.c: The gray queue implementation.
2472         * Makefile.am: sgen-gray.c added.
2474 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2476         * appdomain.c: When unloading a domain, zero its static data and
2477         perform a minor collection when using SGen.  That will get rid of
2478         all the remsets pointing into that domain's static data.
2480         * sgen-gc.c: Allow remsets into static data.  By doing this we
2481         need less checks so we're more efficient.
2483 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2485         * verify.c (mono_method_verify): Check for catch clauses with broken
2486         types.
2488         Fixes #558465.
2490 2009-12-01  Jb Evain  <jbevain@novell.com>
2492         * class.c (make_generic_param_class): set the namespace of
2493         the generic parameter class from its owner, if available.
2495 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2497         * verify.c (code_bounds_check): Do proper overflow checking.
2499         * verify.c (mono_method_verify): The number of switch entries is
2500         an unsigned int. Properly bounds check it.
2502         Fixes #558594.
2504 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2506         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2507         mono_metadata_method_has_param_attrs which only checks if a given param
2508         list has a non zero flags entry.
2510         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2511         to inform how many params should we expect to decode.
2513         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2514         as it's faster than mono_metadata_get_param_attrs.
2516         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2517         add mono_metadata_method_has_param_attrs.
2519 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2521         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2522         failures.
2524         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2525         is -1 but its class is broken.
2527         Fixes #558522.
2529 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2531         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2532         for parameter overflow.
2534         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2535         of mono_metadata_get_param_attrs.
2537         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2538         API.
2540         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2542 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2544         * class.c (mono_class_setup_fields): Check for fields with broken types.
2546         Fixes #558741.
2548 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2550         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2551         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2552         its TypeBuilder::CreateType ().
2554         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2555         if not needed.
2557         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2558         to make setup_interface_offsets happy.
2560         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2561         compilation now works.
2563 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2565         * appdomain.c (create_exceptions): New helper function extracted from
2566         mono_runtime_init () to precreate objects used during exception handling.
2567         (mono_runtime_init): Call it.
2568         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2570 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2572         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2573         compilation until the proper one is found.
2575 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2577         * class.c (mono_class_setup_vtable_general): Cache the result of
2578         get_virtual_methods () since it can be slow because of the metadata
2579         optimization.
2581         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2582         from a MonoValueHashTable for now, since the later is based on an earlier
2583         version of hpj's internal probing code and seems to have serious collision
2584         issues.
2586         * loader.c (mono_get_method_full): Update after the change above.
2588 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2590         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2592 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2594         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2595         the GTD instead of the DGC instead of crashing.
2597         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2598         required. Inflate fields if needed.
2600         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2601         finished. Renamed.
2603 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2605         * class.c (check_interface_method_override): Check for NULL signatures and fail
2606         the type.
2608         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2610         Fixes #553428.
2612 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2614         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2615         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2617 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2619         * loader.c (field_from_memberref): Resolve the class first then the field
2620         signature. Remove a lot of duplicated code and make sure we don't pass valid
2621         values to mono_loader_set_error_field_load.
2623         Fixes #553306.
2625 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2627         * class.c (inflate_generic_type): Change code to use new signature of
2628         mono_error_set_bad_image.
2630         Fixes #558124.
2632 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2634         * verify.c (mono_method_verify): Don't free ctx.params items if 
2635         we aborted while inflating the ctx.locals. Complete previous fix
2637 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2639         * verify.c (mono_method_verify): Use the uninflated type name, 
2640         when the inflated is null, to report errors. Also take care when
2641         freeing, not to free everything since, in case of an error, some
2642         stuff would be copies (i.e. not allocated by the function itself)
2643         Fix bug #558145
2645 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2647         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2648         or overflow. The caller must have done this check explicitly. This guard us
2649         from accessing invalid memory.
2651         * verify.c (do_push_static_field): Check for stack overflow.
2653         Fixes #553333.
2655 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2657         * loader.c (find_method_in_class): Don't crash if the signature cannot
2658         be resolved.
2660         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2661         of asserting for the case of invalid params.
2663         Fixes #553304.
2665 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2667         * image.c (mono_image_load_module): Fix crash when a bad assembly
2668         has no module at all (fix bug #553412) and also replace the 
2669         g_assert with a return NULL (documented return value for failure)
2671 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2673         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2675 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2677         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2678         file attribute to managed code and avoid doing the mask/attribute
2679         checks here. 
2681 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2683         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2684         the managed world.
2686         * icall-def.h: New entry points.
2687         
2688 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2690         * process.c: Don't put references to managed objects into a
2691         g_ptr_array.
2693 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2695         * class.c (can_access_internals): Allow CoreCLR to participate in
2696         allowing (or not) [InternalsVisibleTo] between assemblies.
2697         * security-core-clr.c|h: Make sure that only trusted code (a 
2698         superset of platform code) can access the internals of platform
2699         code.
2701 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2703         * reflection.c: use the correct base class to get the virtual method
2704         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2706 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2708         * security-core-clr.c (get_caller_no_reflection_related): 
2709         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2710         it's still reflection and must be filtered correctly.
2712 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2714         * object.c (compute_class_bitmap): Fix for large bitmaps.
2716 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2718         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2720         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2721         koush@koushikdutta.com). Disable GC_no_dls on android.
2723 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2725         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2726         tlab_next points outside the TLAB because the allocator was
2727         interrupted.
2729 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2731         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2733 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2735         * object-internals.h: Change signature for mono_string_to_utf8_image.
2737         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2738         argument.
2740         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2741         exceptions due to mono_string_to_utf8.
2743 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2745         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2747         * object.c (mono_remote_class): Make sure all resources are released before
2748         raising an exception.
2750         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2752 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2754         * mono-perfcounters.c (network_get_impl): Change variable initialization
2755         ordering to fix potential memory leak in case of exceptions.
2757         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2758         encoded strings.
2759         
2760 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2762         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2763         variable initialization ordering to fix potential memory leak in case
2764         of exceptions.
2766 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2768         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2769         needed.
2771 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2773         * appdomain.c: Fix shadow path code to better deal with exceptions.
2775 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2777         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2778         exception in the middle of the runtime code.
2780 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2782         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2783         leak memory with broken envvar value.
2785 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2787         * reflection.c (mono_reflection_setup_internal_class): Because
2788         nested classes are not added to the name cache, we must put them
2789         in the reflection_info_unregister_classes list.
2791 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2793         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2794         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2795         platform (trusted) code. Instead we return a TypeLoadException to
2796         be thrown later. This is the exception thrown by Silverlight 2 if
2797         a type, inside application (user) code is marked with [ComImport]
2799 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2801         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2802         mono_is_debugger_attached () too.
2804         * mono-debug.c (mono_is_debugger_attached): New helper function.
2805         (mono_set_is_debugger_attached): Ditto.
2807 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2809         * object-internals.h: Add mono_string_to_utf8_checked.
2811         * object.c: Implement mono_string_to_utf8_checked.
2813 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2815         * class.c: Add missing check for load errors after every
2816         call to mono_class_setup_fields
2818         Fixes #552282.
2820 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2822         metadata-verify.c (verify_tables_schema): Fix the error message.
2824 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2826         * metadata.c: Change event table schema to use TDOR for event type
2827         as this is what it's meant to be.
2829         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2830         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2831         entry.
2833         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2834         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2835         rows in MONO_TABLE_GENERICPARAM.
2837         Fixes #552289.
2839 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2841         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2842         insertion.
2844         * reflection.c (mono_reflection_setup_internal_class): Avoid
2845         registering a gc root the same MonoClass multiple times.
2846         Don't register nested types on the global scope as they should
2847         not be available there.
2849 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2851         * culture-info-tables.h: regenerated.
2853 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2855         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2857 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2859         * string-icalls.c|h: Remove string internal calls that are not 
2860         used anymore by the class libraries.
2861         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2862         which is not used in the class librairies.
2863         * icall-def.h: Update tables.
2865 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2867         * class.h: Move mono_class_inflate_generic_type_checked...
2869         * class-internals.h: to here and make it internal. We don't want to
2870         further expose MonoGenericContext. 
2872 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2874         * verify.c (mono_method_verify): Improve error message.
2876 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2878         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2879         the token is already properly encoded. Fixs 4.0 build.
2881 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2883         * locales.c (construct_number_format): Check if the number index is
2884         valid before trying to use it, if not, just return.
2885         
2886 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2888         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2889         since that loses the abort state. Fixes #539394.
2891 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2893         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2894         explicit this argument to the call signature.
2895         (mono_marshal_get_icall_wrapper): Ditto.
2897 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2899         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2900         to indicate which assembly to use when resolving a custom-mod.
2902         Fixes handling of volatile fields used across assemblies as reported in #551513.
2904 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2906         * loader.c: Improve error messages.
2908 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2910         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2911         of interfaces. Fixes IKVM.
2913         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2915 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2917         * verify.c (verifier_inflate_type): Return the inflated type on success.
2919 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2921         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2923         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2925         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2927         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2928         flag set.
2930         * profiler.c: Add new profiler callbacks for runtime invoke.
2932         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2934 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2936         * sgen-gc.c: Keep track of the reason for a major collection and
2937         write it to the heap-dump file.
2939 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2941         * threads.c: refactor the code that initializes the
2942         thread_start_args into a reusable function and use this in the two
2943         methods that start up threads.
2945 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2947         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2948         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2950 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2952         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2953         Until now, we only had the per-cpu(core) counters.
2955 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2957         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2958         mono_gc_get_suspend_signal(), which returns the suspend signal
2959         number used by the GC.
2961 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2963         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2965         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2966         signalling start_notify.
2968 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2970         * appdomain.c: do not test the st_mode field for shadow-copies.
2971         Fixes bug #545276.
2973 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2975         * threadpool.[ch]: added hooks for thread start/finish and item
2976         processing begin/end. For monotouch use only.
2978 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2980         * threads.c (mono_thread_get_name): New helper function.
2982         * reflection.c (resolve_object): Set handle_class for strings too.
2983         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2984         a cattr blob into a set of arrays and structures without creating the custom
2985         attributes themselves.
2986         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2988         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2990         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2991         function.
2993 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2995         * verify.c: Replace calls to mono_class_inflate_generic_type with
2996         mono_class_inflate_generic_type_checked. Fixes #480005.
2998 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3000         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3001         object since not all paths lead to callees initing it.
3003 2009-10-23  Alp Toker  <alp@nuanti.com>
3005         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3006         header and should not be shipped:
3008         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3009         which is specific to the mono build. Not going to work.
3011 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3013         * security-manager.c: Report if core-clr is active from
3014         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3015         to allow Moonlight BCL to behave appropriately (both in browser
3016         and outside, e.g. smcs)
3018 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3020         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3021         Fixes bug #549108.
3023 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3025         * class.c: fix typo.
3027 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3029         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3030         a MonoError parameter.
3032         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3033         version that can does proper error handling.
3035         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3037         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3039         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3041 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3043         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3044         NO_UNALIGNED_ACCESS is defined.
3046 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3048         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3049         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3050         Fixes #549173.
3052 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3054         * sgen-gc.c: Shorten sections whenever possible.
3056 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3058         * sgen-gc.c: Use our portable semaphore #defines.
3060 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3062         * sgen-gc.c: A debug option for dumping the heap layout to a file
3063         after each collection.
3065 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3067         * sgen-gc.c: Make managed write barriers atomic via
3068         thread-restarts.
3070 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3072         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3073         methods. Fixes #543021.
3075 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3077         * socket-io.[ch]: fix VS build.
3079 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3081         * icall-def.h:
3082         * socket-io.[ch]: implemented SendFile.
3084 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3086         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3087         before the interfaces to avoid crashes later if class initialization fails.
3088         Fixes #548417.
3090         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3091         Fixes #548276.
3093 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3095         * domain.c: Bump 4.0 version.
3097 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3099         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3100         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3101         check since 'pubkey' can't be NULL at this stage
3102         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3103         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3104         initialization of 'iter'
3106 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3108         * cominterop.c : Search the interface parts of vtable to find 
3109           method matches.  Fixes 547030.
3111         Code is contributed under MIT/X11 license.
3113 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3115         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3116         multiple targets. Fixes bug #574426.
3118 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3120         * profiler.h: Put here the definition of
3121         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3122         (and fix the build...).
3124 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3126         * profiler.c, profiler.h, profiler-private.h:
3127         Added support for different ways of getting call chains in stat mode.
3129 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3131         * object.c, object-internals.h: New function for computing the
3132         size of an array, factored out of mono_array_new_full().  Use
3133         SGen's functions for allocating arrays and vectors.
3135         * sgen-gc.c, gc-internal.h: Special functions for allocating
3136         arrays and vectors without race conditions.  A managed array
3137         allocator method.
3139         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3141 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3143         * object.c, object.h, icall.c: Write barriers do the copying now,
3144         as well, so no need for an additional memcpy.
3146         * sgen-gc.c: Lock when storing remsets.  Do the memory
3147         copying/moving in the write barriers.
3149         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3151         * reflection.c: Added an assert.
3153 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3155         * threads.c, process.c: A few missing write barriers.
3157 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3159         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3160         network performance counters for bytes sent per second, bytes
3161         received per second, and bytes total per second.
3163         Code is contributed under MIT/X11 license.
3165 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3167         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3168         Fix warning.
3170 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3172         * threads.c, object-internals.h, object.c: Move code for
3173         transferring an object to a different domain (via
3174         serialization/remoting) to object.c.
3176         * object.c (call_unhandled_exception_delegate): If the exception
3177         is in a different domain than the delegate, transfer the exception
3178         to that domain.
3180 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3182         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3183         Fixes #322934.
3185 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3187         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3189 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3191         * object.c (mono_method_return_message_restore): Handle the case
3192         where the argument is an instance of a generic type.  Fixes
3193         #544446.
3195 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3197         * object.c (set_value): Write barrier fix - we must pass the
3198         count, not the size.
3200 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3202         * domain.c (mono_init_internal): Print a useful error message when encountering
3203         an old mscorlib, instead of crashing. Fixes #544307.
3205 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3207         * appdomain.c (copy_app_domain_setup): Fix a warning.
3209         * debug-helpers.c (dis_one): Ditto.
3211 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3213         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3214         into the new domain, instead of referencing the original one.
3216         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3217         non-static.
3219         * appdomain.c: Corlib version bump.
3221 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3223         * threadpool.c: one more...
3225 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3227         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3228         threads to die because we're shutting down. delgate5.exe works again.
3230 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3232         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3233           ccw_interface_hash table when a ccw is finalized.
3235         Code is contributed under MIT/X11 license.
3237 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3239         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3240         domain and image unloading into two steps.  We must do this
3241         because clearing the domain in SGen requires the class metadata to
3242         be intact, but we need to free the mono_g_hash_tables in case a
3243         collection occurs during domain unloading and the roots would trip
3244         up the GC.
3246 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3248         * object-internals.h: Remove serialized culture fields from
3249         MonoInternalThread.
3251         * icall-def.h, thread-types.h, threads.c: Remove serialized
3252         culture icalls.
3254         * appdomain.c: Corlib version bump.
3256 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3258         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3259         Fixes #543133.
3261 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3263         * sgen-gc.c: Try to shorten the new section after a major
3264         allocation to avoid ever-growing sections.
3266 2009-10-13  Martin Baulig  <martin@ximian.com>
3268         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3269         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3270         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3271         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3273         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3275 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3277         * threadpool.c: fixed the order in which 'completed' and the wait
3278         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3279         No need to use the wait_handle field of ASyncCall. Make sure the
3280         threadpool is active when adding a job or queueing an idle thread.
3282 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3284         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3286         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3287         when using --compile-all.
3289 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3291         * metadata.c (free_generic_class): Unregister the field_objects
3292         roots if we're using SGen.
3294 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3296         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3297         for GenericParamTableEntry.gparam.
3299 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3301         * marshal.c: don't create the handle when calling. It is created later
3302         if needed.
3304 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3306         * sgen-gc.c: Warning fixes.
3308 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3310         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3311         whole heap for cross-domain references before each collection.
3313         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3314         object.
3316         * threadpool-internals.h, threadpool.c: New function
3317         mono_thread_pool_is_queue_array() for checking whether a given
3318         array is used as a (cross-domain) queue by the thread pool code.
3320 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3322         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3323         searches the whole heap for objects containing a specific
3324         reference.  Only for debugging.
3326 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3328         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3330         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3331         byte arrays between domains.
3333 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3335         * threadpool.c:
3336         * class-internals.h:
3337         * mono-perfcounters-def.h:
3338         * mono-perfcounters.c:
3339         -There is a list of idle threads
3340         -Each of those idle threads wait on their own WaitHandle instead
3341         of all of them using the same semaphore. When a new work item is
3342         added, the job is assigned directly to an idle thread or a newly
3343         created one if possible and then the handle for that thread is
3344         signaled. Compare that to the current approach where all the
3345         threads in the pool compete to dequeue a job from the same
3346         queue.
3347         -New struct ThreadPool that brings together the bunch of static
3348         variable for each threadpool (IO and regular).
3349         -New performance counters: # of items added and its rate per
3350         threadpool. The rate will be used later, perhaps together with
3351         other perf. counters, to decide when idle threads should exit.
3353 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3355         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3356         Fix typo on Windows build.      
3357         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3358         
3359         Code is contributed under MIT/X11 license.
3361 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3363         * object-internals.h: The Thread class is split up into Thread and
3364         InternalThread now.  We have exactly one InternalThread per
3365         thread, and at most one Thread per appdomain per thread.  Most
3366         data is stored in InternalThread.  All InternalThread objects live
3367         in the root domain.
3369         * class-internals.h: Add internal_thread_class to MonoDefaults.
3371         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3372         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3373         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3374         resulting from the split of the Thread class.
3376         * gc-internal.h: Prototype for new function for checking whether a
3377         thread is the finalizer thread.
3379         * appdomain.c: Corlib version bump.
3381 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3383         * appdomain.c|h: Add a mono_domain_try_unload method which is
3384         equivalent to mono_domain_unload, except that it returns an exception
3385         instead of throwing it. Make mono_domain_unload use the
3386         mono_domain_try_unload method to avoid code-duplication.
3388 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3390         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3391         a problem.
3393 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3395         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3396         aborting when a conversion is not implemented.
3398 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3400         * verify.c: when comparing culture strings, use g_ascii_strcmp
3402         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3403         when comparing public key tokens to use memcmp on 16 bytes.   I do
3404         not believe this ever worked as advertised in the past.
3406         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3407         which would have always failed earlier.
3409 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3411         * gc.c: Raise a NullArgumentException if the object passed is
3412         null.
3414 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3416         * image.c (mono_image_close): Atomically decrement the reference count and
3417         remove the image from the hash tables, to prevent another thread from seeing a
3418         dying MonoImage. Fixes #541194.
3420 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3422         * threadpool.c: actually use the minimum number of 'completion ports'
3423         (for us is just a potential worker thread).
3425 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3427         * threadpool.c: remove ares_htable. It does not make sense any more
3428         since the same objects are now stored in GC-tracked arrays while they are
3429         in the queue.
3431 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3433         * threadpool.c: increase the minimum length of the queues to 128.
3434         Remove warning.
3436 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3438         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3439         return the modified signature used by string ctors.
3441 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3443         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3444         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3445         method, to be used by full-aot.
3447 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3449         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3450         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3451         be known to be good.
3453         * class.c (mono_class_init): Fail array types if their element type fails initialization
3454         as well.
3456         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3457         initialization, additionally we request the element_type vtable to be initialized as well.
3459         This is fine and should not increase the working set in any meaningful way since it's reasonable
3460         to assume       that most code will create an array and eventually populate it, which will require the
3461         type's vtable to be initialized.
3463         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3465 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3467         * normalization-tables.h : regenerated.
3469 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3471         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3472         a leb128 encoding can take up to 5 bytes.
3474 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3476         * class.c (verify_class_overrides): Remove useless argument.
3478         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3479         before interface enumeration as this is no longer required.
3481 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3483         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3484         used under mono_class_init context. This functions avoid any code path that
3485         calls mono_class_init, which leads it to be slow as some things like the interface
3486         bitmap are not available.
3488         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3489         of it's own broken version. Fixes the verifier part of #538588.
3491         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3492         API.
3494 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3496         * class.c (mono_class_init): Always set an exception in a class if
3497         vtable setup fails.  Fixes #538577.
3499         * generic-sharing.c: Raise an exception if mono_class_vtable()
3500         returns NULL.
3502 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3504         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3505         methods of vtypes, as they could be incorrectly shared with static methods
3506         taking an IntPtr argument.
3508 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3510         * domain.c:
3511         * object.c:
3512         * class-internals.h: renamed waithandle_class to
3513         manualresetevent_class.
3514         * marshal.c: propagate the exception if a remoting BeginInvoke call
3515         fails.
3517 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3519         * object.c: Properly handle vtable failures.
3521 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3523         * socket-io.c: Assert on vtable failure.
3525         * mono-mlist.c: Assert on vtable failure.
3527 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3529         * marshal.c: Assert on vtable failure.
3531 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3533         * icall.c: Properly handle vtable failures.
3535 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3537         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3539 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3541         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3543         * console-unix.c (do_console_cancel_event): Same.
3545 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3547         * class-internals.h: Add mono_class_vtable_full function that allows control
3548         if an exception should be raised or not.
3550         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3551         to do what its documentation say, that is to return NULL and set exception_type on
3552         failure.
3554         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3555         and change the code to honor it.
3557 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3559         * verify.c: Fix typo in error message.
3561 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3563         * security-core-clr.c: Fix default_platform_check so it can run
3564         the runtime coreclr tests (without an infinite recursion when
3565         throwing an exception).
3567 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3569         object.c (mono_delegate_ctor_with_method): Guard against null method.
3571 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3573         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3574         that should be replaced with error handling later.
3576 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3578         * marshal.c (mono_delegate_end_invoke): Fix warning.
3580 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3582         * loader.c (mono_field_from_token): Properly handle invalid
3583         dynamic tokens.
3585 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3587         * pedump.c (verify_image_file): Skip types that can't be
3588         decoded.
3590 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3592         * verify.c: Look for recursive valuetypes only against the
3593         type been initialized as this is a lot simpler and works.
3595 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3597         * verify.c: Ensure that fields are properly loaded before
3598         checking them.
3600 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3602         * object.c (mono_object_get_virtual_method) : Call 
3603           mono_cominterop_get_invoke if the object is a COM object.
3605         Code is contributed under MIT/X11 license.
3607 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3609         * verify.c: Check for recursive valuetype definitions.
3611 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3613         Use inheritance-aware interface offsets. Inherited types use the same offsets
3614         of their parents. This reduce offset duplication in case more than one type in
3615         the inheritance tree explicitly implements the same interface.
3617         This also removes a source of vtable bubbles found in #532409. An abstract type
3618         isn't required to provide abstract methods to all interfaces it implements, which
3619         resulted in a bubble with the previous scheme as the child would get a non-full
3620         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3621         should be fixed.
3623         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3624         it's expected to not cause any significant increase beyond that.
3626         * class.c (setup_interface_offsets): Compute super class iface offsets
3627         first to force sharing.
3629         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3630         dumping only the relevant ones.
3632         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3633         methods a new slot regardless if they belong to an interface or not. This allows
3634         an inherited type to override the iface method separately from the class one.
3636 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3638         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3639         applications that take less than 2s to execute.
3640         Bug #524984 fixed.
3642 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3644         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3646         * object.c (mono_get_runtime_callbacks): New helper function to return
3647         the runtime callbacks.
3649         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3650         mono_get_runtime_build_info () as the display name.
3651         
3652 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3654         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3655         argument, since NEWARR expects a native int. Fixes #481559.
3657 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3659         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3660         against broken SRE methods.
3662 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3664         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3665         a NULL variable. Abort early on failure.
3667 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3669         * class.c (can_access_type): Fail visibility test for non nested
3670         types with nested visibility.
3672 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3674         * assembly.c (parse_public_key): Avoid allocating (and not 
3675         freeing) the public key array when it's not requested by the 
3676         caller.
3677         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3678         ves_icall_System_Threading_Thread_Thread_internal): Free 
3679         allocated memory on error.
3681 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3683         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3685 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3687         * class.c (mono_class_setup_fields): Remove duplicated local variable
3688         named gklass.
3689         Rename gklass to gtd to reflect the fact that it points to the generic
3690         type definition.
3691         Remove the duplicated call to mono_class_setup_fields on gtd and move
3692         the error check to the beginning.
3694 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3696         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3697         Remove cruft of the previous patch.
3699 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3701         * metadata-verify.c (verify_method_table): Check for abstract + final.
3702         Fixes #534175.
3704 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3706         * verify.c (verify_class_fields): Check for duplicate fields.
3708 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3710         * metadata-verify.c: Verify the typeref table for duplicates.
3712 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3714         This reverts r140936 and properly handles interfaces with static methods. The
3715         right fix is to ensure vtables without bubles which is an easier to verify
3716         constraint. We should avoid such special cases as of the reverted patch as those
3717         only make the runtime more brittle.
3719         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3720         static methods on interfaces.
3722         * class.c (setup_interface_offsets): Use the number of virtual methods when
3723         calculating interface offsets instead of the number of methods. This way we
3724         avoid bubles on the layout.
3726 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3728         * metadata-verify.c (verify_metadata_header): Some very smart
3729         obfuscators like to add extra stream headers. Ignore them.
3731 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3733         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3734         methods correctly.
3736 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3738         * metadata-verify.c: Verify for duplicated types.
3740 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3742         * metadata-verify.c (verify_typedef_table): Verify for nested types
3743         without an entry on the nested class table.
3745 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3747         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3748         <tom_hindle@sil.org>. Add locking around hash table accesses.
3750 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3752         * verify.c (mono_verifier_verify_class): Verify all interface if
3753         really are interfaces. Fixes #534184.
3755 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3757         * pedump.c: Initialize all types during metadata validation so we report
3758         errors only detected as part of class initialization.
3760 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3762         * metadata-verify.c (verify_method_table): PInvoke requires method to
3763         be static. Fixes #534189
3765 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3767         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3768         being NULL.
3770 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3772         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3773         for holes or bad methods. Fixes #525314.
3775 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3777         * class.c (setup_interface_offsets): Don't allocate slot
3778         for the same interface multiple times. This creates bubbles
3779         that waster space and make vtable verification harder.
3781         The same interface get a slot multiple times since we need
3782         to get the closure of all implemented interfaces, which means
3783         the same interface is reported multiple times.
3785 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3787         * verify.c (mono_verifier_verify_class): Don't check the fields
3788         of generic instances since the context on which they got expanded
3789         might lead to false positives.
3791         Such thing happens when a generic type is inflated in the context
3792         of a generic method and the inflated type of a field turns into a
3793         generic method argument, which causes the checking code to think
3794         it's an invalid class when it's not.
3796 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3798         * verify.c (mono_type_is_valid_in_context): Verify if type
3799         is NULL and remove duplicate test.
3801 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3803         * verify.c (mono_verifier_verify_class): Check fields for
3804         invalid generic arguments.
3806 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3808         * class.c (verify_class_overrides): Verify if for static
3809         and non virtual methods.
3811 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3813         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3814         Check for errors after retrieving the vtable.
3816 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3818         * class.c (mono_class_setup_vtable_general): Verify
3819         if method overrides are valid before processing them.
3821 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3823         * marshal.c (mono_array_to_lparray): Fix minimal build with
3824         cominterop disabled.
3826         * marshal.c (mono_free_lparray): Same.
3828 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3830         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3831         the hash function for the ares_htable.
3833 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3835         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3836         bit for assembly flags. MS is ok with it but there is no spec anywhere
3837         on its mean
3839 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3841         * class.c (mono_class_create_from_typedef): Emit profiler events
3842         in all cases.
3844 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3846         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3847         Release memory on failure.
3849 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3851         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3852         to the internal API.
3854         * metadata.c (get_constraints): Use a single-linked table as we don't
3855         traverse it backward. Fail and return FALSE if only of the contraint types
3856         is not found.
3858         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3859         to mono_metadata_load_generic_param_constraints except for having a return value.
3860         This has to be done since the later is part of the public API.
3862         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3863         and fail the type.
3865         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3866         and fail the method.
3868 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3870         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3871         with MS broken behavior of emmitting EH section sizes without the
3872         header size added.
3874 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3876         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3877         memory until we're sure that we'll need it. This avoids leaking for
3878         broken types or duplicated instantiation.
3880 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3882         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3883         mistake.
3885 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3887         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3888         and expected size calculation.
3890 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3892         * class.c (mono_class_get_field_idx): Add fixme for broken
3893         behavior for types with multiple fields with the same name.
3894         I would rather fix it, but have no idea on how to generate
3895         such artifact for testing.
3897 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3899         * verify.c (verifier_load_field): We should allow references to
3900         fields to be made using the generic type definition. It's up to
3901         the loader system to fail invalid ops.
3903         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3904         are invalid.
3906 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3908         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3910         * metadata-internals.h: Fix declaration of 
3911         mono_metadata_interfaces_from_typedef_full.
3913         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3914         heap_alloc_result parameter that controls if the result should be
3915         g_malloc'd.
3917         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3918         array be g_malloc'd and properly document this public API function.
3920 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3922         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3923         remove METHOD_HEADER_TINY_FORMAT1.
3925         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3927         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3929         Both spec and MS uses only 2 bits to enumerate the kind of header.
3930         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3931         is superfluous, only used for tiny headers with odd code lengths.
3933         This change also make sure that mono doesn't wronly interpret bit 2
3934         of fat header flags, which is currently reserved.
3936 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3938         * metadata.c (do_mono_metadata_parse_type): Do error
3939         checking for element types. Don't abort if presented
3940         with a broken type kind.
3942 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3944         * metadata.c (mono_metadata_parse_method_signature_full):
3945         Gracefully fail bad vararg signatures.
3947 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3949         * profiler.c:
3950         * class.c: Fix warnings for uninitialized variables.
3952 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3954         * icall.c: Fix _NSGetEnviron method declaration warning.
3956 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3958         * icall.c:
3959         * reflection.c: Make bitwise checks explicit.
3961 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3963         * debug-helpers.c:
3964         * marshal.c: Fix printf warnings.
3966 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3968         * reflection.c (encode_cattr_value): Fix a warning.
3970 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3972         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3973         of array bounds.
3975 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3977         * loader.c (mono_method_signature): Don't assert on broken
3978         signature. Print a more useful error message.
3980 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3982         * loader.c (mono_method_get_marshal_info): Assert if
3983         signature is invalid. Bounds check stores to the
3984         mspecs array;
3986 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3988         * loader.c (field_from_memberref): Fix warning.
3990 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3992         * loader.c (mono_method_get_param_names): Check if signature
3993         is null. Don't store beyond the size of the name array.
3995 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3997         * loader.c (mono_get_method_constrained): Check if signature
3998         is null.
4000 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4002         * loader.c (mono_loader_set_error_bad_image): Improve
4003         error messages.
4005 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4007         * loader.c (mono_get_method_full): Convert an assertion
4008         into a loader error.
4010 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4012         * class-internals.h, class.c: Better naming and documentation.
4014 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4016         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4017         obj is NULL.
4019 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4021         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4022         parsing fails.
4024 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4026         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4027         errors with no class set.
4029         * loader.c (field_from_memberref): If the field signature is of the wrong
4030         type fail with a MissingFieldException instead of a BadImageException as
4031         this is the behavior observed on MS. 
4033 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4035         * loader.c (field_from_memberref): Don't crash if either the field
4036         signature or the typespec class are invalid.
4038 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4040         * verify.c (verifier_load_field): Don't allow field related
4041         ops to reference fields on generic type definition.
4043 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4045         * metadata-verify.c: Add new warning level for errors specified
4046         by ECMA 335 but that MS ignores.
4048         * metadata-verify.c (verify_method_table): Make compiler controled
4049         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4050         this check is safe because the end result will only be some visibility
4051         exceptions been thrown.
4053 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4055         * verify.c (get_boxable_mono_type): Don't allow the
4056         use of the generic type definition on boxed type positions.
4058         Fixes #531237.
4060 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4062         * threadpool.c: Make sure no cross-domain references remain in
4063         ares_htable or the arrays that are thrown away when resizing.
4065 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4067         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4068         list of classes for which we have to unregister reflection_info
4069         with the GC and which are not in the namespace cache.
4071         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4072         the class to the list.
4074 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4076         * domain.c (mono_domain_free): Unregister the GC roots in
4077         MonoDomain.
4079 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4081         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4083 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4085         * class.c: Add mono_class_get_field_from_name_full which does
4086         the same as mono_class_get_field_from_name but does check field
4087         signature as well.
4089         * class-internals.h: Export mono_class_get_field_from_name_full as
4090         part of the internal API.
4092         * loader.c (field_from_memberref): Search fields by name and signature
4093         as it's valid to have two fields with same name but different types.
4095         Fixes #528055.
4097 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4099         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4101         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4103         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4104         System.Type.
4106 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4108         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4110         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4112 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4114         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4115         to sgen-scan-object.h, which can be included and parameterized via
4116         macros.
4118         * Makefile.am: sgen-scan-object.h added.
4120 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4122         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4124 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4126         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4127         before clearing a domain in the GC.
4129 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4131         * exception.c (mono_exception_from_name_domain): Actually create
4132         the exception in the specified domain.
4134         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4135         OutOfMemoryException a bit later so that the domain is inialized
4136         "enough" that it works.
4138 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4140         * threads.c (thread_cleanup): Clean up the cached_culture_info
4141         array to prevent cross-domain references.
4143 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4145         * metadata.c: more documentation for MonoType accessors.
4147 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4149         Fix incorrect size definitions where the tail array isn't a list
4150         of pointers
4151         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4152         define size.
4153         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4154         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4155         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4157 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4159         * reflection.h:
4160         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4162 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4164         * metadata.c:
4165         * loader.c:
4166         * metadata-internals.h:
4167         * method-builder.c:
4168         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4170 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4172         * cominterop.c:
4173         * metadata.c:
4174         * metadata.h:
4175         * loader.c:
4176         * marshal.c:
4177         * reflection.c: #define for sizeof in MonoType and
4178         MonoMethodSignature.
4180 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4182         * domain.c:
4183         * domain-internals.h: add and use #define's instead of sizeof()
4184         for MonoJitInfo and MonoJitInfoTable.
4186 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4188         * object.c:
4189         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4191 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4193         * metadata.c:
4194         * metadata.h:
4195         * object.c:
4196         * class-internals.h:
4197         * generic-sharing.c:
4198         * marshal.c: use a #define instead of sizeof() for a few
4199         structures that use a zero-length array.
4201 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4203         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4204         to handle inflated generic methods.
4206         * appdomain.c: Bump corlib version.
4208         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4209         instances.
4211         * reflection.c (fixup_method): Same
4213         * reflection.c (resolve_object): Same.
4215         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4216         g_error and a decent message.
4218 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4220         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4221         from the object because it could not yet be available globally
4222         (it happens if the profiler tries to create a gchandle on the
4223         MonoThread object of a thread that is still registering itself
4224         with the runtime).
4226 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4228         * reflection.c (mono_generic_class_get_object): Initialized the
4229         managed type arguments array.
4231         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4233         * appdomain.c: Bump corlib version.
4235 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4237         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4238         #527902.
4240 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4242         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4243         Avoid a crash if synch_cs is not set.
4244         
4245         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4246         Handle the case when the handle is 0.
4248         * appdomain.c: Bump corlib version.
4250 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4252         * reflection.c (mono_type_get_object): Fix a warning.
4254 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4256         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4257         descriptor here.  We assume it's already been computed.
4259         * generic-sharing.c (instantiate_other_info): Compute the GC
4260         descriptor for info type MONO_RGCTX_INFO_KLASS.
4262 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4264         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4265         type, so don't use MONO_OBJECT_SETREF to set a field.
4267 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4269         * gc.c: We were missing one case where invoking a finalizer would
4270         not reset the domain.  Also, in the finalizer thread loop, assert
4271         that we're in the root domain.
4273 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4275         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4276         if the type is not an array.
4278 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4280         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4281         method bound to the declaring type of the method. Raise an exception
4282         if the type is not a generic param.
4284 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4286         * class.c (print_unimplemented_interface_method_info): Print the
4287         full type name.
4289         * class.c (mono_class_setup_vtable_general): When dealing with a
4290         generic instance first check if the generic type definition is
4291         not broken.
4293 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4295         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4297         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4299         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4301         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4303         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4305         Code is contributed under MIT/X11 license
4307 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4309         * verify.c: Fix naming of stelem and ldelem.
4311 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4313         * generic-sharing.c: Replace the templates lock with the loader
4314         lock because of very hard to resolve deadlock issues.
4316 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4318         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4319         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4320         directly. Fixes #525338.
4322         * class.c (mono_class_get_vtable_size): New helper function.
4324         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4325         the field belongs to the type. Fixes #525733.
4327 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4329         * sgen-gc.c: When we stop a thread and its stack top is not within
4330         its allocated stack (because it's in an altstack signal handler),
4331         restart it and stop it again, until it is.
4333 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4335         * sgen-gc.c: Take a thread's stack top and registers from the
4336         sigcontext in the suspend signal handler.
4338         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4339         stuff to sgen-archdep.h.
4341         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4342         caller, because have code in sgen-archdep.h to acquire that data.
4344 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4346         * profiler.c, profiler.h, profiler-private.h:
4347         Added support for keeping track of code chunks and buffers.
4349 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4351         * metadata-verify.c: Fix endianness problems on decoding functions.
4352         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4354 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4356         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4357         schema for vectors and one dimension SZARRAY.
4359 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4361         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4362         schema for vectors and one dimension SZARRAY.
4364 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4366         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4367         Interlocked.(Compare)Exchange with object arguments, which invoke
4368         write barriers.
4370 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4372         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4373         passed invalid arguments.   Fixes another crasher in the
4374         Silverlight test suite.
4376         * class.c (mono_class_array_element_size): Return 0 for the size
4377         of the class;  This fixes the crasher exposed by :
4379         typeof (void).MakeArrayType ();
4381         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4382         if there is no method to dereference.    Put all the code that
4383         depends on this inside the if (method) block.
4385         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4386         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4388         With this change, we pass the test.
4389         
4390         * reflection.c (mono_reflection_sighelper_get_signature_local):
4391         Only dereference the assembly if it has been set.    Fixes a
4392         crasher exposed by #525328
4394 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4396         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4397         don't perform the store in mono_gc_wbarrier_generic_nostore().
4398         Remove the second argument (value), which is not needed.
4400 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4402         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4403         the build.
4405         * boehm-gc.c: Ditto.
4406         
4407 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4409         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4410         not perform the store itself.  Introduce
4411         mono_gc_wbarrier_generic_nostore(), which is the same as
4412         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4413         store.
4415 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4417         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4418         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4419         we still need the memcpy().
4421 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4423         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4424         so that big arrays are handled correctly.  Always use
4425         safe_object_get_size() to calculate array object sizes, which
4426         takes bounds into account.
4428 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4430         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4431         GC descriptor is computed before we use it.
4433 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4435         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4436         write barrier if necessary.
4438 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4440         * icall-def.h, icall.c, thread-types.h: New separate icall for
4441         VolatileWrite(object&,object) that uses a write barrier.
4443         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4444         barriers in icalls which write to "ref" or "out" arguments.
4446 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4448         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4449         handler in a separate icall, to reduce the size of the wrappers.
4451 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4453         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4455 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4457         * metadata-verify.c (parse_field): Allow byref field.
4459         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4461         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4463 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4465         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4466         Fixes #522784.
4468 2009-07-20  Robert Jordan  <robertj@gmx.net>
4470         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4471         Fix invalid IL in valuetype handling (STOBJ must push the
4472         corresponding class). Fixes bug #523149.
4474         Code is contributed under MIT/X11 license.
4476 2009-07-20  Geoff Norton  <gnorton@novell.com>
4478         * gc.c: Use proper semaphores where available on posix and darwin.
4480 2009-07-19  Geoff Norton  <gnorton@novell.com>
4482         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4484 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4486         * refletion.c (is_sre_usertype): Change name to is_usertype and
4487         invert it's result so it returns true if the type is an user type
4488         and not the opposite.
4490         * reflection.c (is_*_type): Change all of those to use new macro
4491         check_corlib_type_cached that cached the type lookup so we don't
4492         need to do string comparisons all the type. Changed the signature
4493         to take a MonoClass instead.
4495         * reflection.c: Change mono_image_create_token and resolve_object
4496         to use is_sre_* functions.
4498 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4500         * sgen-gc.c: Check for writes to the stack in the managed
4501         wbarrier as well.
4503 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4505         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4506         but put them on a list which is processed with the other thread's
4507         remsets.
4509 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4511         * sgen-gc.c: Fix and enable the internal allocator instead of
4512         using malloc/free (which causes deadlocks).
4514 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4516         * refletion.c: Fix builds with SRE disabled by adding a minimal
4517         implementation of mono_reflection_type_get_handle.
4519 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4521         * refletion.c: Make mono_reflection_type_get_handle non static.
4523         * object-internals.h: Export mono_reflection_type_get_handle.
4525         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4526         unmanaged handle using mono_reflection_type_get_handle.
4528 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4530         * refletion.c: Replace all reads of MonoReflectionType::type with
4531         calls to mono_reflection_type_get_handle. Only the functions that
4532         deal with constructing TypeBuilder::type have not been changed
4533         because they have to deal with NULL values.
4535         This is a first step into supporting reflection types that don't
4536         map directly into their unmanaged counterpart.
4538 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4540         * metadata-verify.c (parse_locals_signature): Don't complain
4541         on signature with zero locals since MS generates it and doesn't
4542         bother with.
4544 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4546         * reflection.c (mono_image_get_array_token): Resolve return
4547         type using mono_reflection_type_get_handle.
4549         * reflection.c (mono_image_get_array_token): Resolve array method
4550         parent type using mono_reflection_type_get_handle.
4552 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4554         * reflection.c (mono_image_basic_init): Applied patch from
4555         <Dax@daxxfiles.net>. Set the public key token from the assembly
4556         builder. Fixes #518909.
4558         * appdomain.c: Bump corlib version.
4560 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4562         * class.c (mono_class_needs_cctor_run): Make this return false if
4563         the class has no cctor.
4565 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4567         * sgen-gc.c: When the minor GC needs to allocate a new section,
4568         invoke the major GC afterwards.
4570 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4572         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4573           Applying the window_style field to the SHELLEXECUTEINFO struct.
4575         Code is contributed under MIT/X11 license.
4577 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4579         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4580         locking earlier.  Fix it in the managed allocator by making sure
4581         that no thread is stopped there before the GC runs.  If we do stop
4582         a thread there, we restart it and let it run a but, until it stops
4583         somewhere else.
4585         * gc-internal.h, gc.c: Function for getting the IP from a signal
4586         context via a function registered by mini.
4588 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4590         * object-internals.h (MonoIntPtr): New structure describing a boxed
4591         IntPtr.
4593         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4594         returns. Fixes #519953.
4596         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4598 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4600         * class-internals.h, generic-sharing.c: New RGCTX info type for
4601         getting a remoting invoke with check wrapper.
4603 2009-07-07  Geoff Norton  <gnorton@novell.com>
4605         * icall-def.h: Fix the enable-minimal build.
4607 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4609         * object-internals.h: Add MonoReflectionDerivedType.
4611         * reflection.c: Implement support for PointerType.
4612         Fixed tons of warnings.
4614 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4616         * object-internals.h: Add MonoReflectionByRefType.
4618         * reflection.c: Implement support for ByRefType.
4620 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4622         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4624         * object-internals.h: Add MonoReflectionArrayType and
4625         mono_reflection_create_unmanaged_type.
4627         * reflection.c: Implement support for ArrayType.
4629 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4631         * metadata-verify.c (is_valid_method_header): Parse EH block
4632         flags correctly.
4634 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4636         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4637         processing the disappearing links, and process disappearing links
4638         in a loop until no new objects are copied.
4640 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4642         * object.c (handle_enum): Invoke the write barrier when copying
4643         value type instances.
4645         * sgen-gc.c: Register remsets for unmanaged write barriers only
4646         when the address written to is actually on the heap.  This makes
4647         set_value() in object.c work without requiring that the result be
4648         on the heap.
4650 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4652         The runtime wrappers are all bound to a given type that must
4653         exist in the same image. For regular images we use the <Module>
4654         type, which is required to exist for all images.
4656         The <Module> type can't be used for dynamic images because it
4657         might not exist at the time the wrapper is required, so we create
4658         a synthetic type to use instead.
4660         The current code works because of the 2 stage setup of MonoClass,
4661         but once this is gone it will no longer work.
4663         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4665         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4667         * object-internals.h: Export mono_image_set_wrappers_type icall
4668         as part of the internal API.
4670         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4671         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4673         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4674         image wrappers_type to the provided value.
4676 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4678         * appdomain.c (deregister_reflection_info_roots): No need
4679         to use the image lock here.
4681 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4683         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4685 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4687         * threads.c: Store the thread start argument in a hash table instead of
4688         registering it as a root, as libgc doesn't support unregistering roots
4689         under windows, leading to 'too many root sets' errors when many threads
4690         are created.
4692         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4693         shutdown, they can still be referenced by the other dying objects.
4694         Fixes #514506.
4696 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4698         * socket-io.c: DontLinger does not allow LingerOptions.
4700 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4702         * metadata-verify.c: The spec doesn't mention that it's possible to add
4703         custom attribute to a generic parameter. Fixed.
4705 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4707         * class.c (inflate_generic_type): Don't crash while trying to output a message
4708         on why we're aborting.
4710 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4712         * socket-io.c: DontLinger can take an int or a boolean too.
4714 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4716         * gc.c: check for a null argument to SuppressFinalize () and
4717         ReRegisterForFinalize ().
4719 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4721         * loader.c (method_from_methodspec): Call into the verifier to check
4722         the signature.
4724         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4726         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4727         part of the internal API.
4729 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4731         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4732         the signature.
4734         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4736         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4737         part of the internal API.
4739 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4741         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4742         the signature.
4744         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4745         blob verification.
4747         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4748         part of the internal API.
4750 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4752         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4753         when doing basic verification. 
4755         This check must be done since the runtime peeks into signatures in much
4756         more places than it does decoding so it makes sense to ensure that all
4757         pointers to blob objects are well formed.
4759 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4761         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4762         Use proper overflow dectection. Fix usage of it.
4764 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4766         * loader.c (field_from_memberref): Call into the verifier to check
4767         the signature.
4769         * loader.c (mono_method_get_signature_full): Same.
4771         * loader.c (method_from_memberref): Same.
4773         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4775         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4776         part of the internal API.
4778 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4780         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4781         or unloaded, still return an AsyncResult, but don't add it to the
4782         threadpool.
4784 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4786         * threads.c: fix missing colon when DEBUG is defined.
4788 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4790         * threadpool.c: Don't add new calls to a threadpool if the domain
4791         of the call is unloading or unloaded.  When dequeuing a job, null
4792         the reference in the queue.
4794 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4796         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4797         generation if an object was moved.
4799 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4801         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4802           parameters of type SAFEARRAY[VARIANT].
4804         * reflection.c (encode_marshal_blob): Properly generate element type
4805           (SafeArraySubType marshal attribute option).
4807         Code is contributed under MIT/X11 license.
4809 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4811         * reflection.c: in mono_method_clear_object () really ensure all the
4812         objects are removed.
4814 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4816         * loader.c (mono_method_signature): Call into the verifier to check
4817         the method signature.
4819         * metadata-verify.c (verify_method_table): Move signature verification
4820         to verify_method_table_full.
4822         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4824         * verify-internals.h: Export mono_verifier_verify_method_signature as
4825         part of the internal API.
4827 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4829         * loader.c (mono_method_get_header): Call into the verifier to
4830         check the method header.
4832         * metadata-verify.c: Add mono_verifier_verify_method_header.
4834         * verify-internals.h: Export mono_verifier_verify_method_header as
4835         part of the internal API.
4837 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4839         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4840         check the field signature. Replace an assert with an explicit check.
4842         * class.c (mono_class_setup_fields): Call into the verifier to check
4843         the field signature.
4845         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4847         * verify-internals.h: Export mono_verifier_verify_field_signature as
4848         part of the internal API.
4850 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4852         * class.c (mono_class_find_enum_basetype): Simplify this function
4853         by moving code outside of the loop and not decoding static fields.
4855 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4857         * metadata-verify.c (verify_typedef_table): Check the extends
4858         token here. Move to here a flags check from verify_typedef_table_full.
4860 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4862         * metadata-verify.c (is_valid_method_header): Fix a warning.
4864         * metadata-internals.h (MonoImage): Remove the unused 
4865         static_rgctx_invoke_wrapper_cache.
4867         * image.c marshal.c: Ditto.
4869 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4871         * image.c (do_mono_image_load): Enable table data verification.
4873 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4875         * metadata-verify.c (is_valid_constant): Fix nullref check.
4877 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4879         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4881 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4883         * sgen-gc.c: Managed allocation with pthreads TLS.
4885         * threads.c, threads-types.h: Functions for the JIT to tell the
4886         runtime whether it supports the MONO_TLS opcode.
4888 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4890         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4891         without methods.
4893 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4895         * metadata-verify.c (is_valid_constant): Fix the string length check.
4896         Use safe overflow checking. Add decent error messages.
4898 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4900         * metadata-verify.c: Move remaininh blob checks to the offline
4901         verification path.
4903 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4905         * metadata-verify.c: Move more blob checks to the offline verification
4906         path.
4908 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4910         * object-internals.h : Adding interrupt_on_stop field.
4912         * threads.c (mono_thread_request_interruption) : On Windows exit the
4913           thread if interrupt_on_stop is set.
4915         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4916          Removing old interrupt logic and setting the interrupt_on_stop for the
4917          thread when calling accept.
4919         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4920          setting the interrupt_on_stop for the thread when calling accept.
4922         Contributed under MIT/X11 license.
4924 2009-06-20  Martin Baulig  <martin@ximian.com>
4926         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4928 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4930         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4931         running in no-exec mode.
4933 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4935         * metadata-verify.c (verify_method_table): Move header
4936         checking to verify_method_table_full.
4938         * metata-verify.c (mono_verifier_verify_full_table_data):
4939         Call verify_method_table_full.
4941 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4943         * metadata-verify.c (verify_field_table): Move signature
4944         checking to verify_field_table_full.
4946         * metata-verify.c (mono_verifier_verify_full_table_data):
4947         Call verify_field_table_full.
4949 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4951         * metadata-verify.c (verify_typedef_table): Move remaining
4952         stuff to verify_typedef_table_full.
4954 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4956         * metadata-verify.c: Kill is_corlib from VerifyContext.
4957         It is only used by the offline mode.
4958         So we better remove it from the runtime path.
4960 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4962         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4963         function that perform the offline metadata verification steps.
4965         * metadata-verify.c (verify_typedef_table): Move some checks to
4966         verify_typedef_table_full and make it been called by new function
4967         mono_verifier_verify_full_table_data.
4969         * pedump.c: Call mono_verifier_verify_full_table_data.
4971         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4972         part of the internal API.
4974 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4976         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4977         check.
4979         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4980         flags bits. SupportLastError was confused as bit 7 instead of 6.
4982         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4983         to check against the module ref table instead of module.
4985         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4987         * pedump.c: Call mono_image_load_names.
4989 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4991         * image.c: Extract mono_image_load_names from do_mono_image_load.
4993         * metadata-internals.h: Export mono_image_load_names as part of
4994         the internal API.
4995         
4996 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4998         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4999         first, as it could reference data in the other caches.
5001 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5003         * metadata-verify.c: Finished with method header verification.
5005 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5007         * metadata-verify.c: Added more header verification code.
5008         Now only EH clauses are missing.
5010 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5012         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5013         for return values.
5015 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5017         * metadata-verify.c: Initial method header verification.
5019 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5021         * metadata-verify.c (verify_import_table): The IAT contents
5022         might end been patched by the windows DL when running with
5023         coree enabled.
5025 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5027         * class.c (mono_class_from_typeref): If the enclosing type is not
5028         found return null instead of crashing. Fixes #508487.
5030 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5032         * normalization-tables.h : updated to the latest unicode charcter
5033           data.
5034         * appdomain.c : bump corlib version.
5036 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5038         * class.c (mono_class_from_name): Fix support for assembly references
5039         in the EXPORTEDTYPE table. Fixes #511704.
5041 2009-06-13  Geoff Norton  <gnorton@novell.com>
5043         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5044         assembly in the target domain.
5046 2009-06-12  Robert Jordan  <robertj@gmx.net>
5048         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5049         because "this" of the managed signature has become an
5050         ordinary parameter in the unmanaged signature.
5052 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5054         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5055         field for owner-less generic containers.
5057         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5058         image field of the owner-less generic containers created here.
5060         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5061         contain is ownerless until the caller sets its owner.
5063         * metadata.c (type_in_image): Handle owner-less generic containers
5064         correctly.
5065         
5066 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5068         * image.c (mono_image_close): Support debug_assembly_unload for
5069         dynamic images too.
5071 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5073         * class.c: Fix some typos in comments.
5075 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5077         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5079         * threads.c (mono_thread_execute_interruption): Avoid creating the
5080         abort exception object while holding the synch_cs lock.
5082 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5084         * metadata-verify.c: Verify basic cattr content.
5086 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5088         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5089         nested types.
5090         
5091         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5092         support for nested types. Fixes #511704.
5094 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5096         * metadata-verify.c: Verify methodspec signatures.
5098 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5100         * metadata-verify.c: Verify typespec signatures.
5102 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5104         * metadata.c (free_inflated_method): Call 
5105         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5107 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5109         * mono-config.c: Small change to report the PPC64/ILP32 model.
5111 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5113         * metadata-verify.c (parse_type): Check szarray.
5115 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5117         * metadata-verify.c (parse_type): Check fnptr.
5119 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5121         * metadata-verify.c (parse_type): Check generic instances.
5123 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5125         * metadata-verify.c (parse_type): Check array shape.
5127 2009-06-05  Robert Jordan  <robertj@gmx.net>
5129         * class.c (mono_class_create_from_typedef): Check only for
5130         mscorlib's System.Array.
5132 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5134         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5135         and generic params. 
5137         * metadata-verify.c (parse_field): Check the signature.
5139 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5141         * metadata-verify.c: Implement locals signature check.
5143 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5145         * domain.c: Add .NET 4.0 Beta 1 version.
5147 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5149         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5150           For QueryInterface on CCWs consider the base class
5151           interfaces as well.
5153         Code is contributed under MIT/X11 license.
5155 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5157         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5159         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5160         used.
5162         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5163         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5165         * generic-sharing.c (inflate_other_data): Ditto.
5166         
5167 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5169         * metadata-verify.c: Implement property signature check.
5171 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5173         * sgen-gc.h: Register saving support for PPC.
5175 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5177         * sgen-gc.c: Fixed a pthread TLS screwup.
5179 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5181         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5182         supported.
5184 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5186         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5187         keyword is not supported.
5189 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5191         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5192         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5193         the inflated method is freed. Fixes #508389.
5195         The code is contributed under the MIT/X11 license.
5196         
5197 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5199         * marshal.c (get_wrapper_target_class): New helper function.
5200         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5201         the <Module> class of the image. Fixes #509049.
5203 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5205         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5206         Check if the thread was interrupted and proccess it straight away.
5207         Makes abortion much more responsive.
5209 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5211         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5212         MonoThread::interruption_requested to match it's counterpart.
5214         Fixes a hang in abort-stress-1 on a 2 core x86.
5216         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5217         Fix warning.
5219 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5221         Change MonoImage::name_cache to be protected by the image lock
5222         instead of the loader lock.
5224         * appdomain.c (deregister_reflection_info_roots): Protect access
5225         to name_cache.
5227         * class.c (mono_image_init_name_cache): Change from the loader lock
5228         to the image lock. Check if the cache wasn't already created.
5230         * class.c: Change from the loader to the image lock.
5232         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5233         the code to hold the image lock while iterating over name_cache and
5234         not go into mono_array_new holding it.
5236         * metadata-internals.h: Add a comment about this change.
5238 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5240         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5241         Under the 2.0 profile raise the loader error.
5243         Fixes #508532.
5245 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5247         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5248         of ldind opcode for generic instances so we don't fail for direct wrappers.
5249         This only affect direct calls.
5251 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5253         * reflection.c (create_dynamic_mono_image): Fix warnings.
5255         * generic-sharing.c (other_info_equal): Ditto.
5256         
5257 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5259         * metadata-verify.c: Implement field signature check.
5261 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5263         * metadata-verify.c: Implement standalone signature check.
5265 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5267         * metadata-verify.c: Implement methodref signature check.
5269 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5271         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5272         callbacks supplied by the runtime.
5274         * object.c (mono_install_callbacks): New internal function to install
5275         the callbacks.
5277         * object.c (mono_create_ftnptr): Move the implementation of this to
5278         mini/.
5280         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5282 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5284         * metadata-verify.c (parse_return_type): Proper byref check.
5285         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5286         generic signatures and method params.
5288 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5290         * metadata-verify.c (decode_signature_header): Fix bounds check.
5292         * metadata-verify.c (parse_custom_mods): Check custom mods.
5294         * metadata-verify.c (parse_type): Do initial basic verification
5295         of valid values.
5296         
5297         * metadata-verify.c (is_valid_method_signature): Parse the generic
5298         param count.
5300 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5302         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5303         discarded based on their most specific definition so we set the method_slots
5304         array before checking if the method is acceptable or not.
5306         Fixes #506757.
5308 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5310         * icall.c: Free the old array when resizing a mono_ptr_array.
5312 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5314         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5315         for the hashes whose keys are managed objects.
5317 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5319         * object-internals.h, threads.c: Set the execution context on
5320         thread start here, not in corlib.
5322         * appdomain.c: Bump corlib version.
5324 2009-05-27  Martin Baulig  <martin@ximian.com>
5326         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5327         if `_mono_debug_using_mono_debugger' is set to make things work
5328         properly when embedding Mono.
5330 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5332         * class.c (mono_class_setup_fields): Don't mark simd types as having
5333         16 bytes alignment as the whole runtime doesn't support.
5335 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5337         * metadata-verify.c (safe_read): Use endian safe read macros.
5339 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5341         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5342         it is read-only when using full aot.
5344 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5346         * metadata-verify.c (is_valid_method_signature): Verify parts
5347         of the return type. Provide an error message in case of failure.
5349 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5351         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5353 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5355         * metadata-verify.c: Include the size prefix in the bounds check.
5357 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5359         * icall.c: Remove warnings.
5361         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5362         prevent auto-detection based on GCC defines.
5364         Add PS3
5366         * metadata-verify.c: Do not include signal.h
5368         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5369         messages.  Not sure why the g_assert_not_reached is not enough to
5370         quiet the compiler.
5371         
5373         * appdomain.c: Remove code that is not used when
5374         DISABLE_SHADOW_COPY is set.
5376         * image.c: use g_getenv
5378 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5380         * reflection.c: Remove code that it not used with
5381         DISABLE_REFLECTION_EMIT is defined.
5383 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5385         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5386         invoke wrappers.
5388 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5390         * socket-io.c
5391         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5392         the ifdef here and instead put that on io-layer
5394 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5396         * metadata-verify.c: Verify the generic param constraint table.
5398 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5400         * metadata-verify.c (verify_generic_param_table): Fix
5401         thinko on the valid flags bits for generic params.
5403 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5405         * metadata-verify.c: Verify the methodspec table.
5407 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5409         * metadata-verify.c: Verify the generic param table.
5411 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5413         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5415 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5417         * sgen-gc.c: Use generation enum more consistently and use the
5418         correct generation in mono_gc_register_for_finalization().
5420 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5422         * metadata-verify.c: Verify the nested class table.
5424 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5426         * metadata-verify.c: Verify the manifest resource table.
5428 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5430         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5432 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5434         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5435         wrappers, this is now done in the JIT.
5436         
5437         * class.c (mono_set_generic_sharing_supported): New internal function.
5438         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5440 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5442         * metadata-verify.c: Verify the exported type table.
5444 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5446         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5448 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5450         * metadata-verify.c: Verify the file table.
5452 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5454         * metadata-verify.c (verify_assembly_table): Fix an error message.
5456         * metadata-verify.c: Verify the assemblyref table.
5458 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5460         * metadata-verify.c (verify_assembly_table): Fix the valid
5461         bits mask for flags.
5463 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5465         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5466         generic methods as well.
5468 2009-05-15  Geoff Norton  <gnorton@novell.com>
5470         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5471         use-case and is significantly more performant than the wapi layer.
5473 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5475         * metadata-verify.c: Verify the assembly table.
5477 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5479         * metadata-verify.c: Fix rows limit check.
5481 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5483         * metadata-verify.c: Verify the fieldrva table.
5485 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5487         * sgen.c: Speed up weak links and finalizers by grouping them by
5488         generation.
5490 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5492         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5493         free the old GCHandle (only applies to SGen).
5495 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5497         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5498         mono_metadata_load_generic_params () for non-generic methods.
5500 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5502         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5503         New function for returning a monitor's weak link if it has one.
5505         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5506         one) when clearing a domain.  These can still be around because
5507         the object might not have been collected.
5509 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5511         * gc.c: Fix a warning.
5513 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5515         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5516         prevous wait that resulted in a deadlock on Windows when initializing
5517         the runtime form DllMain. Also results in improved startup time.
5518         (finalizer_thread): Get rid of thread_started_event.
5519         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5520         resulting MonoThread.
5522         Contributed under MIT/X11 license.
5524 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5526         * metadata-verify.c: Verify the implmap table.
5527         Don't require that #US and #Strings be present.
5529 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5531         * security-core-clr.c: Delegate checks are done at creation time,
5532         not a invocation time. Fix exception for Telerik Silverlight demo
5534 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5536         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5537         case for the Thread class.
5539         * threads.c: Do clean-up of abort exception/state in
5540         thread_cleanup() instead of Thread.free_internal().  Also clean up
5541         current_appcontext.  The reason we have to do that is because
5542         those references might point into another domain and if that
5543         domain is unloaded before the thread is finalized, they point to
5544         invalid data.
5546 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5548         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5549         stub signatures.
5550         
5551         Contributed unter MIT/X11 license.
5553 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5555         * verify.c, metadata-verifier.c: Add support for disabling the
5556         verifier in some builds.
5558         [ Sorry, my previous commit accidentally commited some work in
5559         progress ]
5561 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5563         * class.c (mono_class_setup_fields): Set class->field.first for
5564         generic instances.
5566 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5568         * metadata-verify.c: Verify the typespec table.
5570 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5572         * metadata-verify.c: Verify the module table.
5574 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5576         * metadata-verify.c: Verify the methodimpl table.
5578 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5580         * metadata-verify.c: Verify the property table.
5582 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5584         * debug-helpers.c (mono_method_desc_match): Add support for generic
5585         glob patterns.
5587 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5589         * metadata-verify.c: Verify the propertymap table.
5591 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5593         * metadata-verify.c: Verify the event table.
5595         * metadata-verify.c (search_sorted_table): Fix offset
5596         calculation.
5598 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5600         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5602 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5604         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5605         because mono_delegate_free_ftnptr() needs it.
5607 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5609         * metadata-verify.c: Verify the eventmap table.
5611 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5613         * metadata-verify.c: Verify the standalonesig table.
5615 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5617         * metadata-verify.c: Verify the field layout table.
5619 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5621         * class.c (mono_type_get_name_recurse): Don't crash
5622         for ownerless generic params.
5624         * debug-helpers.c (mono_type_get_desc): Correct the format
5625         for ownerless generic params.
5627 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5629         * metadata-verify.c: Verify the class layout table.
5631 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5633         * metadata-verify.c: Verify the decl security table.
5635 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5637         * domain.c (mono_domain_set_internal_with_options): Don't do
5638         anything if the old domain is the same as the old one.  Fixes
5639         #499326.
5641 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5643         * appdomain.c: Deregister the reflection_info roots when unloading
5644         a domain.
5646         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5647         memory allocated by a domain and frees its disappearing links.
5649         * boehm-gc.c, null-gc.c: Empty implementation of
5650         mono_gc_clear_domain().
5652 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5654         * appdomain.c (clear_cached_vtable): Free the static fields memory
5655         block.
5657 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5659         * gc.c: Set the correct domain when invoking finalizers.
5661         * appdomain.c: Set the correct domain when creating threads.
5663 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5665         * sgen-gc.c: Fix skip size for vectors.
5667 2009-05-03  Martin Baulig  <martin@ximian.com>
5669         * mono-debug-debugger.c
5670         (mono_debugger_check_breakpoints): Check class init handlers even
5671         if we don't have any method load handers.
5673 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5675         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5676         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5678 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5680         * metadata-verify.c: Verify the field marshal table.
5682 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5684         * metadata-verify.c: Verify the custom attribute table.
5686 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5688         * metadata-verify.c: Verify the constant table.
5690 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5692         * metadata-verify.c: Verify the memberef table.
5694 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5696         * metadata-verify.c (get_coded_index_token): Remove
5697         dead argument.
5699 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5701         * metadata-verify.c: Verify the interfaceimpl table.
5703 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5705         * verify.c: Improve error message.
5707         * debug-helpers.c (mono_type_get_desc): Harden the code that
5708         deals with VAR and MVAR.
5710 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5712         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5713         part of #498692.
5715 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5717         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5718         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5720 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5722         * security-core-clr.c: Avoid redundant checks for platform code, 
5723         e.g. check for method and for class (very common) and check
5724         for class and outer class (less common)...
5726 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5728         * reflection.c: Avoid returning random cattrs for synthetic methods.
5729         Fixes #498545.
5731 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5733         * assembly.c: assemblies in the GAC should never be shadow-copied.
5735 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5737         * domain.c, domain-internals.h: Disable
5738         track_resurrection_{objects,handles}_hash in MonoDomain if using
5739         SGen.
5741 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5743         * metadata-verify.c: Verify the param table.
5745 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5747         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5748         MethodList.
5750         * metadata-verify.c (verify_method_table): Proper check the ParamList
5751         field.
5753 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5755         * metadata-verify.c (verify_method_table): Check for runtime
5756         implemented functions such as delegate .ctors. Remove spurious
5757         printf.
5758         
5759 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5761         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5763 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5765         Don't allocate MonoGenericInfo for ownerless generic params.
5766         * class-internals.h (MonoGenericParam::info): Move field to ...
5767         (MonoGenericParamFull): ... this.  New struct.
5768         (MonoGenericContainer::type_params): Change type to
5769         MonoGenericParamFull.
5770         (MonoGenericParam, MonoGenericContainer): Update accessors.
5771         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5772         'info' field for ownerless generic param.
5773         (mono_metadata_load_generic_params): Update to changes.
5774         * reflection.c (mono_reflection_create_generic_class): Likewise.
5775         (reflection_methodbuilder_to_mono_method): Likewise.
5776         (mono_reflection_initialize_generic_parameter): Likewise.
5778 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5780         Don't use MonoGenericParamInfo for ownerless generic params.
5781         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5782         use ParamInfo class at all.
5783         (mono_class_from_generic_parameter): Use them.
5784         (make_generic_param_class): Fix a couple of instances where 'pinfo
5785         == NULL' wasn't handle.
5787 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5789         * class.c (make_generic_param_class): Carve out of ...
5790         (mono_class_from_generic_parameter): ... here.
5792 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5794         Simplify mono_class_from_generic_parameter
5795         * class-internals.h (MonoGenericParamInfo::token): New field.
5796         * metadata.c (mono_metadata_load_generic_params): Initialize it
5797         from metadata.
5798         * class.c (mono_class_from_generic_parameter): Use it instead of
5799         searching through metadata.
5801 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5803         * metadata-verify.c: Add verification of the method table.
5805 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5807         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5808         Delegate::Invoke optimization.
5810 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5812         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5813         string returned by get_shadow_assembly_location_base.
5815         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5816         about caller's ownership.
5818 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5820         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5821         reflection memory on domain unload.
5823         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5824         reflection cleanup code do it.
5826         * domain-internals.h: Add mono_reflection_cleanup_domain.
5828         This fixes a memory leak for managed mirrors of reflection objects
5829         on domain unload. 
5831 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5833         * metadata-verify.c: Implement more verification of the field table.
5835 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5837         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5838         doesn't try to parse the input assembly, which can be broken.
5840 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5842         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5843         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5844         by using the lowest bit in the link to store whether the link is
5845         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5847 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5849         * Makefile.am: Split the console support in platform specific code
5850         and put together a framework for making this easy in the future so
5851         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5853 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5855         * pedump.c: Fix a warning.
5857 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5859         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5860         mono_class_from_mono_type to avoid bad interactions with the dual representation
5861         of the generic type definition.
5863 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5865         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5866         get the MonoClass for the call context type as it might be a generic
5867         instance.
5869         Fixes #491483.
5871 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5873         * object-internals.h: The Thread object has no execution_context
5874         member anymore.
5876         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5877         the execution context.
5879         * appdomain.c: Bump corlib version.
5881 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5883         * verify.c (do_newobj): Improve error message.
5885 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5887         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5888         is nested in the filter block.
5890         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5891         block is not fully nested.
5893         Fixes #495656.
5895 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5897         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5898         not MonoType to check for equality of valuetypes as the generic type
5899         definition allows for two different encodings: the generic type definition
5900         class or a generic instance over the GTD arguments.
5902         Fixes #496175.
5904 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5906         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5908         * verify.c (do_initobj): Improve error message.
5910 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5912         * metadata-verify.c: Enable pe verification as the issue with #496453
5913         is that the authenticode data directory have a different unspecified
5914         format. Ignore it for now.
5916         * pedump.c: Run the metadata verifier together with the IL verifier.
5918         Fixes ##496453.
5920 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5922         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5924 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5926         * class.c (can_access_type): Check visibility against
5927         the element type for pointers and arrays.
5929         Fixes #496150.
5931 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5933         * metadata-verify.c: Fix cli and table verification to use information
5934         from the MonoImage. A lot of duplicated code got killed.
5936 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5939         This patch starts to integrate the metadata verifier with the runtime code.
5941         This patch causes major regression in functionality for the metadata verifier
5942         as cli and table verification are disabled since they require to be ported to
5943         use MonoImage information.
5945         * image.c (do_mono_image_load): Split the code in this function
5946         into mono_image_load_pe_data and mono_image_load_cli_data.
5947         Add     care_about_pecoff parameter to not load pecoff data.
5948         Call into the metadata verifier for pecoff and cli verification.
5950         * image.c (mono_image_open_raw): New function that doesn't perform
5951         any parsing of the image contents.
5952         
5953         The reason for the 3 new functions is to give pedump better control
5954         into the interaction with the verifier.
5956         * metadata-internals.h: Add new functions from image.c as part of the
5957         internal mono API.
5959         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5960         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5961         to make those functions work together with the runtime.
5963         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5964         true if the image needs to be verified.
5966         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5968         * pedump.c: Use new metadata verifier API.
5970 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5972         * object.c (mono_install_vtable_trampoline): Make this receive a
5973         trampoline creation function instead of trampoline, allowing the JIT
5974         to use a different trampoline for each vtable.
5976 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5978         * object.c (mono_raise_exception): Don't reset the thread abort
5979         exception state here.
5981 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5983         * icall-def.h: New icall for getting the thread abort exception
5984         state for a thread.
5986         * object.c, thread.c, object-internals.h: A thread's abort
5987         exception state is now a GC handle.  To get the object it stands
5988         for, we must move it into the current app domain, if it's
5989         different than the one where it originated from.
5991         * appdomain.c: Bump corlib version.
5993         * domain.c, domain-internals.h: New function for setting the
5994         domain and migrate the thread abort exception or not.
5996 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5998         * metadata-verify.c: Add initial verification of the
5999         field table.
6001 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6003         * metadata-verify.c: Add a macro to conditionally enable
6004         dumping of verification information. Add  make_coded_token
6005         and search_sorted_table to enable search sorted tables
6006         by a given coded token.
6008 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6010         * metadata-verify.c: Add array mapping from table index
6011         to description offset. Add get_col_offset and get_col_size
6012         functions.
6014 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6016         * metadata-verify.c: Add remaining table descriptions offsets.
6017         Add remaining coded index descriptions.
6019 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6021         * metadata-verify.c: Fixed constant table description.
6022         Fixed calculation of HasCustomAttribute coded index size.
6023         Fixed calculation of size for many table indexes. 
6025 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6027         * pedump.c (dump_metadata): Dump table offset instead
6028         of useless pointer in memory.
6030 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6032         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6034 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6036         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6037         a missing of for interface types.
6039 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6041         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6042         the code is commented.
6044         * metadata-verify.c (verify_resources_table): Remove spurious printf
6045         and don't fail if there are unmanaged resources. Gmcs generates a useless
6046         one     for all assemblies - I bet it's some MS compatibility junk.
6048 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6050         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6052         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6054         * verify-internals.h: Same.
6056         * pedump.c: Fix for mono_image_verify new signature.
6058 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6060         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6061         flags combinations.
6063 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6065         * metadata-verify.c (verify_module_table): Ignore the generation field.
6067 2009-04-15  Martin Baulig  <martin@ximian.com>
6069         * debug-mono-symfile.c
6070         (mono_debug_symfile_lookup_location): Don't print a warning for
6071         unknown extended opcodes if they're within 0x40 and 0x7f.
6073 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6075         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6076         invoke signatures returning an enum. Fixes #494847.
6078 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6080         * metadata-verify.c: Initial code to verify the typedef table.
6082 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6084         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6085         with non empty stack happens before the beginning of a try block.
6087         Fixes #494812.
6089 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6091         * metadata-verify.c: Verify typename and typenamespace fields of
6092         the typeref table.
6094 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6096         * metadata-verify.c: Initial code to verify the typeref table.
6098 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6100         * verify.c (verify_delegate_compatibility): Fix error message.
6102 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6104         * security-core-clr.c: Fix typo
6106 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6108         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6109         a MonoGHashTable to keep its values alive.
6110         (emit_marshal_boolean): Fix a warning.
6112 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6114         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6115         not have any interface configured for IPv4/IPv6.
6117 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6119         * assembly.c: fix typo in error message.
6121 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6123         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6124         allocating the location holding the this argument to prevent
6125         'too many root sets' errors.
6127         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6128         to mark fields as special static.
6129         (mono_field_static_get_value): Handle special static fields.
6130         (mono_field_static_set_value): Ditto.
6132         * class-internals.h (struct _MonoClassField): Document this.
6134 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6136         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6137           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6138           case.  This will handle when managed code returns null to native code.
6140         Code is contributed under MIT/X11 license.
6142 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6144         * object.c (build_imt_slots): Changing a free to a g_free to match
6145           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6147         Code is contributed under MIT/X11 license.
6149 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6151         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6152           the correct TRUE value is passed through the marshaling layer.
6154         Code is contributed under MIT/X11 license.
6156 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6158         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6159         correctly. Fixes #492330.
6160         
6161         * marshal.c: Fix the embedding of object pointers into JITted code in
6162         the native-to-managed wrappers by allocating some GC tracked memory, and
6163         embedding the address of that.
6165 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6167         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6168         pointers into the vtable.
6170 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6172         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6174         * verify.c (verify_ldftn_delegate): Improve error message.
6176 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6178         * reflection.c (my_mono_class_from_mono_type): Remove.
6180 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6182         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6183         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6184         and constraints fields into ...
6185         (MonoGenericParamInfo): ... this.
6186         (mono_generic_param_info, mono_generic_container_get_param_info):
6187         New accessors.
6188         * class.c, debug-helpers.c, icall.c: Update to changes.
6189         * metadata.c, reflection.c, verify.c: Likewise.
6191 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6193         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6195         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6196         
6197         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6198         booleans with sbytes.
6200 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6202         * class.c (can_access_instantiation): Verify accesibility of element types
6203         for arrays and pointers.
6205         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6207         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6209         Fixes #493068.
6211 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6213         * verify.c (do_invoke_method): Improve error messages.
6215 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6217         * verify.c:  Fixing the MSVC build.
6219         Code is contributed under MIT/X11 license.
6221 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6223         * security-core-clr.c: Simplify get_reflection_caller not to call
6224         mono_method_get_last_managed (another stack walk) and adjust the
6225         callers to handle a (should not happen) NULL return value.
6227 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6229         Add accessors to some MonoGenericParam fields
6230         * class-internals.h (mono_generic_param_owner): New accessor.
6231         (mono_generic_param_num): Likewise.
6232         (mono_type_get_generic_param_owner): New helper.
6233         (mono_type_get_generic_param_num): New helper.
6234         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6236 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6238         * class-internals.h (mono_generic_container_get_param): New wrapper.
6239         * class.c, icall.c, metadata.c, verify.c: Use it.
6241 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6243         Fix gtest-252.cs
6244         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6245         the standard case/loop.  In particular, don't complain about
6246         references to generic type definitions.
6248 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6250         * debug-helpers.c (dis_one): Decode string arguments.
6252 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6254         * pedump.c (dump_verify_info): Dump type name correctly.
6256 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6258         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6259         are larger than code size.
6261         This can happen in valid code if the try/catch block is not followed by any instruction
6262         and do a backward branch on the leave instruction.
6264         Fixes #492494.
6266 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6268         * security-core-clr.c: Fix typo while comparing second method names
6269         in can_avoid_corlib_reflection_delegate_optimization
6271 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6273         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6275         Fixes #487738.
6277 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6279         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6280         a MVAR using a class context.
6282         Fixes #490335.
6284 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6286         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6288         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6290         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6291         functions supplied by the JIT for the SGEN GC.
6293         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6294         
6295 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6297         monitor.c (mono_monitor_try_enter_internal):
6298         Added calls to profile monitor contentions.
6299         Also duplicated a small piece of code (the "get the monitor" logic)
6300         from the fast path to the slow path, and changed the relevant goto
6301         statements, so that monitor acquisition events can be emitted from the
6302         slow path (this is by Paolo Molaro).
6304 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6306         * profiler.c, profiler.h, profiler-private.h:
6307         Added support for profiling monitor contentions.
6309 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6311         * metadata-verify.c: Verify the modules table.
6313 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6315         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6316         using the context of the method been verifier and not of the method been called.
6318         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6319         safely inflate generic types. 
6321 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6323         * security-core-clr.c: Change the strategy for checking the 
6324         "reflection using delegates optimization" to avoid unneeded 
6325         attributes in multiple class libraries.
6327 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6329         * sgen-gc.c: Remove object element in the disappearing link struct
6330         by storing the object pointer in the link.
6332 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6334         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6336 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6338         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6340         * verify.c (mono_method_verify): Do proper bounds checking of exception
6341         clause ranges.
6343 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6345         * loader.c (mono_field_from_token): Don't crash if the field parent could
6346         not be decoded.
6348 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6350         * sgen-gc.c: Execute critical finalizers after ordinary
6351         finalizers.
6353         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6354         mono_defaults.
6356 2009-03-31 Jb Evain <jbevain@novell.com>
6358         * verify.c (do_ldstr): don't check if a string is in the user strings
6359         heap if the current image is dynamic.
6361 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6363         * sgen-gc.c: Wait until the last finalizer has executed when
6364         returning from WaitForPendingFinalizers.
6366 2009-03-31  Martin Baulig  <martin@ximian.com>
6368         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6369         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6370         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6371         (mono_debugger_event_create_appdomain): New function.
6372         (mono_debugger_event_unload_appdomain): New function.
6374         * appdomain.c (mono_domain_create_appdomain_internal): Call
6375         mono_debugger_event_create_appdomain().
6377 2009-03-31  Martin Baulig  <martin@ximian.com>
6379         * mono-debug-debugger.c
6380         (mono_debugger_register_class_init_callback): Also register the
6381         class init callback if the class is already initialized to make
6382         things work with shadow copied assemblies.
6384 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6386         * security-core-clr.c
6387         (mono_security_core_clr_ensure_reflection_access_field): Let 
6388         critical code access the field (just like we do for methods). Use
6389         check_field_access helper.
6390         (mono_security_core_clr_ensure_reflection_access_method): Use 
6391         check_field_access helper.
6393 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6395         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6396         call the run-finalize function directly.
6398         * gc.c, gc-internal.h: Make run_finalize() non-static.
6400 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6402         * sgen-gc.c: Use a separate struct for disappearing links.
6404 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6406         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6407         * MaxIOVectorLength enabled, just ignore them.
6408         Fixes bug #349688.
6410 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6412         * metadata-verify.c: Fix eglib build.
6414 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6416         * threads-types.h: Fix the win32 build.
6418 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6420         * class.c: move coreclr inheritance/override checks to 
6421         security-core.clr.c
6422         * security-core.clr.c|h: add code from class.c with additional
6423         documentation. Fix override check when the method is not critical.
6425 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6427         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6428         (match_class): Ditto.
6430 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6432         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6434         * metadata-verify.c: Implement table layout row size calculation. Verify
6435         the total size of the tables.
6437 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6439         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6441 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6443         * appdomain.c:
6444         * console-io.[ch]: added new mono_console_init() to make sure that
6445         file descriptors 0, 1 and 2 are opened.
6446         Bug #489019 fixed.
6448 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6450         * appdomain.h: Export a new callback type and a new function to
6451         set this callback. This allow a mono host to provide it's own
6452         definition for "platform code".
6453         * metadata-internals.h: Add a core_clr_platform_code flag on 
6454         _MonoImage to (cache and) know if it is representing platform 
6455         code.
6456         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6457         on platform code images.
6458         * security-core-clr.c|h 
6459         (mono_security_set_core_clr_platform_callback): Allow the host
6460         to provide it's own platform check definition.
6461         (mono_security_core_clr_determine_platform_image): Detect if an 
6462         image is platform code (using the specified callback).
6463         (mono_security_core_clr_is_platform_image): Return cached value 
6464         for platform code.
6466 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6468         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6469         which has different parameter types for the 'tid' argument in windows and
6470         the io-layer.
6472         * appdomain.c attach.c threads.c: Use the new helper.
6474 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6476         * metadata-verify.c: Verify valid table bits.
6478 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6480         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6482         * metadata-verify.c: Add initial table schema verification.
6484 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6486         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6487         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6488         #488383.
6490         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6492         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6494 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6496         * security-core-clr.c: Add/update documentation
6498 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6500         * marshal.c (emit_marshal_object): Generate code to throw an exception
6501         instead of throwing it. Fixes #488670.
6503 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6505         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6506         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6507         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6508         and add a call to mono_security_core_clr_ensure_delegate_creation
6509         to do the extra checks required by CoreCLR.
6510         * security-core-clr.c|h: Add function to check delegate creation,
6511         both in the binding and accessibility, under CoreCLR.
6513 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6515         * reflection.c (mono_reflection_create_dynamic_method): when 
6516         coreclr is enabled make sure that every resolved object are
6517         checked (e.g. field and method access).
6518         * security-core-clr.c|h: Add function to check objects resolved
6519         when a dynamic method is created.
6521 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6523         * metadata-verify.c: Cache directory rva translations.
6525         * metadata-verify.c: Add cli-header and streams verification.
6527 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6529         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6530         the wrong offset (8 instead of 6).
6532 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6534         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6535         methods, return the native function address itself. Fixes
6536         #487758.
6538 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6540         * console-io.c: some of the values for control characters might not be
6541         present.
6543 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6545         * exception.c|h: Add helpers to create [Field|Method]AccessException
6546         * icall.c: Add required coreclr check calls for field reflection.
6547         Move the existing (method) check logic into security-core-clr.c
6548         * security-core-clr.c: Add functions to check if the access of a
6549         field or method is allowed when reflecting under coreclr. This is
6550         mostly done using a stack walk to find the "real" caller: i.e. the
6551         code that is calling the reflection
6553 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6555         * gc-internal.h: Change location of gc_wrapper.h
6557 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6559         * class.c: Simplification to coreclr checks for overrides that
6560         makes it easier to set breakpoints.
6562 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6564         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6565         mono_security_core_clr_method_level): Avoid potential 
6566         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6567         user/application code) and make it easier to set breakpoints
6569 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6571         * metadata-verify.c: Reject cli header tables that mono don't handle.
6573 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6575         * pedump.c: Fix CLI header dumping.
6577 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6579         * metadata-verify.c: More CLI header verification.
6581 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6583         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6585 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6587         * metadata-verify.c: Initial verification of the CLI header.
6589 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6591         * metadata-verify.c (verify_resources_table): Fix verification of zero
6592         sized resource section and id entries count.
6594 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6596         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6598 2009-03-17  Jb Evain  <jbevain@novell.com>
6600         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6602 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6604         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6605         (mono_gc_make_descr_for_array): Ditto.
6607 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6609         * verify.c (mono_verifier_is_class_full_trust): Add support for
6610         CoreCLR security mode where trusted assemblies are defined as
6611         "platform code".
6613 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6615         * metadata-verify.c: Add minimal PECOFF resource verification.
6617 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6619         * metadata-verify.c: Be less restrictive with some coff fields.
6621 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6623         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6624         params as boxed values on stack. Fixes #485706.
6626 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6628         * console-io.c: the termios values may vary in different flavors of unix.
6630 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6632         * console-io.[ch]: return the entire set of control characters when
6633         initializing the terminal.
6634         * appdomain.c: bump corlib version.
6636 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6638         * mono-perfcounters.c: added support for in-process custom
6639         performance counters.
6641 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6643         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6645 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6647         * metadata-verify.c: Verify the data pointed by the import table. 
6649 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6651         * metadata-verify.c (load_data_directories): Store data
6652         directory contents.
6654         * metadata-verify.c: Verify the import table. 
6656 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6658         * metadata-verify.c: Verify data directories.
6660 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6662         * metadata-verify.c: Check section header flags.
6664 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6666         * appdomain.c: if the assembly name is a shadow-copied file, return
6667         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6668         in mono_make_shadow_copy.
6669         * icall.c: if the assembly name is a shadow-copied file, replace it
6670         with the original assembly path.
6672         Bug #484244 fixed. NUnit tests for corlib can be run without
6673         --noshadow now.
6675 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6677         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6678         entries when the table is reallocated.
6680         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6681         mono_gc_alloc_fixed () since it contains GC refs.
6683 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6685         * reflection.c (ensure_complete_type): New helper function to call
6686         type resolve handlers for unfinished dynamic types.
6687         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6689 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6691         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6692         #483247.
6694 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6696         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6698 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6700         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6701         between GCHandles of type WeakTrackResurrection and the objects they
6702         point to.
6704         * gc.c: Partly implement the sematics of GCHandles of type 
6705         WeakTrackResurrection: these handles should only be cleared after the
6706         finalizer of the object they are pointing to has ran.
6708 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6710         * icall.c: Partially revert r126631 because using the jump
6711         trampolines for generic shared methods makes it superfluous.
6713 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6715         * threads.c (handle_store): Create the 'threads' hash table with the proper
6716         MONO_HASH_VALUE_GC type.
6718 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6720         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6721         FIRST_GC_TRACKED.
6723         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6724         and LAST_GC_TRACKED as a GC root.
6726         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6728         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6729         the static data even if it consists of 1 reference.
6731         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6732         if there is a GC descriptor.
6734         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6735         instead of through the GC since they contain no object references.
6737 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6739         * generic-sharing.c (instantiate_other_info): Always return a jump
6740         trampoline for method code.
6742 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6744         * culture-info-tables.h: generated to include the en-tt culture.
6746 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6748         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6749         capture the thread context.
6751         * object.c (mono_async_result_new): Cache the invoke wrappers to
6752         ExecutionContext::Capture.
6754 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6756         * marshal.h: Add a prototype for what mono_compile_method returns
6757         for invoke wrappers.
6759         * gc.c: Use the new prototype declaration.
6761 2009-03-04  Geoff Norton  <gnorton@novell.com>
6763         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6764         * gc-internal.h:
6765         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6767 2009-03-04  Martin Baulig  <martin@ximian.com>
6769         * mono-debug.h
6770         (mono_debugger_runtime_invoke): Removed.
6772         * mono-debug-debugger.c
6773         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6775 2009-03-02  Martin Baulig  <martin@ximian.com>
6777         * mono-debug.h
6778         (mono_debugger_unhandled_exception): Removed.
6779         (mono_debugger_handle_exception): Removed.
6780         (mono_debugger_throw_exception): Removed.
6782         * mono-debug.c
6783         (mono_debug_debugger_version): Bump to 5.
6785         * mono-debug-debugger.c: Moved the exception handling code to
6786         ../mini/debug-mini.c
6788 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6790         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6791         finalize_objects_hash.
6793         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6794         
6795         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6796         field.
6798         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6799         cache.
6801         * image.c (mono_image_close): Free it.
6802         
6803         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6804         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6805         on the this argument.
6807         * gc.c (run_finalize): Optimize the calling of the finalizers.
6809 2009-03-03  Martin Baulig  <martin@ximian.com>
6811         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6812         of the `MonoGenericInst' changes.
6814 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6816         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6817         mono_array_class_get_cached to reduce locking contention. Extract
6818         a domain var.
6820         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6821         intermediary managed arrays. Use caching version of mono_array_new
6822         to allocate the result array.
6824         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6826         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6828         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6829         to reduce locking contention.
6831 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6832                 
6833         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6834         thunk builder code for the non-interface case.
6836 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6838         * object.c (get_generic_virtual_entries): New helper function to collect
6839         the virtual generic method instances which need to be added to an IMT
6840         thunk.
6841         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6842         Instead of creating a new IMT thunk, reset the vtable slot to the
6843         trampoline, the thunk will be created the next time the trampoline is called.
6844         (build_imt_slots): Add support for virtual generic methods in interfaces by
6845         adding to the IMT thunk all the methods registered using 
6846         mono_method_add_generic_virtual_invocation ().
6848         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6849         (struct _MonoIMTCheckItem): Ditto.
6851         * object.c (mono_method_add_generic_virtual_invocation): Take a
6852         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6853         the IMT thunk to include all items.
6854         
6855         * object.c (mono_class_create_runtime_vtable): Add a missing
6856         mono_loader_unlock ().
6858 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6860         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6862         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6864 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6866         * object-internals.h: Rename _MonoReflectionEvent to
6867         MonoReflectionMonoEvent so it reflects the right managed type.
6868         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6870         * icall.c:
6871         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6872         type.
6874 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6876         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6877         intermediary managed arrays. Use caching version of mono_array_new
6878         to allocate the result array.
6880 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6882         * reflection.c: Use cached version of mono_array_new alongside
6883         the mono_reflection_get_custom_attrs_by_type call path.
6885 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6887         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6888         intermediary managed arrays. Use caching version of mono_array_new
6889         to allocate the result array.
6891         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6893 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6895         * icall.c: Add small implementation of a growable stack bound array.
6897         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6899         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6900         intermediary managed arrays. Use caching version of mono_array_new
6901         to allocate the result array.
6903 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6905         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6906         helps Enum::CompareTo to be implemented without reboxing all enums
6907         to their underlying type.
6908 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6910         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6911         since it acquires a global lock leading to scalability problems.
6913         * profiler.c: Make the stat profiler work with multiple appdomains, this
6914         currently only works when no appdomains are unloaded.
6916 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6918         * appdomain.c: make the check to avoid copying when the assembly is
6919         already shadow copied actually work.
6921 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6923         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6925         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6926         changes to the managed side.
6928 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6930         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6931         classes + a separate lock for it, as it is used frequently at runtime, not
6932         just during metadata loading/JIT compilation.
6934         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6935         for szarrays.
6936         
6937         * object-internals.h (mono_class_from_name_cached): New macro to cache
6938         the results of the lookup locally without having to declare a static
6939         variable to hold it.
6940         (mono_class_get_field_from_name_cached): Ditto.
6941         (mono_array_class_get_cached): Ditto.
6943         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6944         the new macros.
6945         
6946         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6947         slower search in metadata.
6949         * pedump.c: Fix a warning.
6951 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6953         * reflection.c (encode_locals): Add checks for user types.
6954         (method_encode_clauses): Ditto.
6955         (method_encode_code): Ditto.
6956         (mono_image_create_token): Ditto.
6958         * object-internals.h: Change the type of more fields from MonoReflectionType*
6959         to MonoObject*.
6961 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6963         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6964         the a thread does not suspend within 100ms.
6966         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6967         in addition to StopRequested as well.
6969         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6971         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6972         search the method_hash before inserting a new entry, to avoid crashes when
6973         the same method is inserted multiple times, causing the old 
6974         MonoDebugMethodInfo structure to be freed by the value dtor function.
6976 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6978         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6979         SO_EXLUSIVEADDRUSE where available.
6981 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6983         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6984         runtime invoke wrappers, this time it is string ctor wrappers, which
6985         pass a dummy string as 'this' instead of their obj argument. Fixes
6986         #478473.
6988 2009-02-21  Jb Evain  <jbevain@novell.com>
6990         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6991         only get create_culture once.
6993 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6995         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6996         check before the locking.
6997         
6998         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6999         (mono_reflection_create_runtime_class): Ditto.
7000         (mono_reflection_sighelper_get_signature_local): Ditto.
7001         (mono_reflection_sighelper_get_signature_field): Ditto.
7003         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7004         is a System.MonoType object or similar.
7005         (monotype_cast): New helper function to cast a MonoObject to a 
7006         MonoReflectionType object.
7008         * object-internals.h: Change MonoReflectionType* members in structures to
7009         MonoObject* members to force the usage of the monotype_cast () function.
7011         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7012         structures/arrays. This causes us to assert instead of crashing when 
7013         instances of user defined subclasses of System.Type are encountered.
7015 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7017         * cil-coff.h:
7018         * icall-def.h:
7019         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7020         win32 resource loaded from a PE file.
7022         * image.c: fix mono_image_lookup_resource.
7024 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7026         * icall-def.h:
7027         * threads-types.h:
7028         * threads.c: added internal call for WaitHandle.SignalAndWait.
7030 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7032         * cominterop.c : Adding cominterop_type_from_handle and 
7033           registering it as an icall.  Replacing all references
7034           to type_from_handle.
7036         Code is contributed under MIT/X11 license.
7038 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7040         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7042         * appdomain.c: Call the tracer init function.
7044         * domain-internals.h: Enable the tracer for the domain locks.
7046         * image.c: Enable the tracer for image locks.
7048         * loader.c: Enable the trace for the loader lock.
7050         * lock-tracer.h:
7051         * lock-tracer.c: Initial implementation of the lock trace utility.
7052         The tracer requires a compile time define to be enabled and a env var
7053         to be enabled at runtime.
7055 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7057         * domain.c (mono_domain_code_foreach): Improve documentation.
7059 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7061         * appdomain.c:
7062         * generic-sharing.c:
7063         * object.c:
7064         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7065         comes first.
7067 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7069         * domain.c: Add mono_domain_code_* functions that perform locking
7070         around the domain codeman.
7072         * domain-internals.h: Export those functions.
7074         * object.c: Use new functions instead of acquiring the domain lock.
7076 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7078         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7079         delegate. Fixes #477396.
7081 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7083         * reflection.c (create_custom_attr): Get rid of alloca.
7085 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7087         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7088           Adding exception handling for all CCW calls.
7090         Code is contributed under MIT/X11 license.
7092 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7094         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7096         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7097         native->managed marshalling code. Fixes #476247.
7099 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7101         * class.c (mono_class_get_vtable_entry): Move the addition of
7102         static rgctx invoke wrappers for vtable methods here, this simplifies
7103         a lot of code and causes fewer rgctx wrappers to be created.
7105         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7106         name of the statistics to begin with an uppercase.
7108 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7110         * reflection.c: Revert previous change as it breaks the build.
7111         
7112 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7114         * verify.c: Properly handle SZARRAY element type.
7116         Fixes #474271.
7118 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7120         * reflection.c (mono_image_create_method_token): Correctly encode
7121         MethodDef MemberRefParent token.
7123         Fixes #472845.
7125 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7127         * image.c (mono_image_close): Delete the critical section before
7128         freeing the memory holding it.
7130 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7132         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7133         Fixes #476257.
7135 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7137         * pedump.c (main): Call mono_marshal_init so pedump
7138         doesn't crash.
7140 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7142         * loader.c (method_from_memberref): Properly fix #474271 and
7143         don't break the runtime bad.
7145 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7147         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7148         (mono_domain_alloc0): Ditto.
7150 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7152         * loader.c (method_from_memberref): Don't abort if the array
7153         method is not found. A regular loader failure is more informative
7154         and correct.
7156         Fixes #474271.
7158 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7160         *loader.c: Guard MonoImage::method_cache/methodref_cache
7161         using the image lock instead of the loader lock.
7163         * metadata.h: Add comments about which fields are protected by
7164         the image lock.
7166 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7168         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7170         * generic-sharing.c (mono_method_construct_object_context): Remove the
7171         wrapper_type == NONE assert, it is not needed.
7173 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7175         * reflection.c (clear_cached_object): New helper function.
7176         (mono_method_clear_object): New function to clear the cached reflection
7177         objects for a dynamic method.
7179         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7180         Partly fixes # 463323.
7181         
7182 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7184         * class.c:
7185         * loader.c:
7186         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7188 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7190         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7191         take the image lock instead of the loader lock.
7193         * metadata-internals.h: Export new functions.
7195 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7197         * domain.c (app_config_parse): Remove another use of stat that is
7198         not necessary as g_file_get_contents already does the presence
7199         check. 
7201 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7203         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7205         * marshal.c: Move the bstr handling code to cominterop.c.
7207         * marshal.c: Remove some COM interop code missed previously.
7209 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7211         More Paolo patches from the Wii port:
7212         
7213         * security.c: Remove ves_icall_System_Environment_get_UserName
7214         from here.
7216         * icall.c: And put ves_icall_System_Environment_get_UserName
7217         here. 
7219         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7220         redundant call to stat that was only used to test for the file
7221         existence.   Patch from Paolo.
7223         * gc.c (run_finalize): If COM is disabled, do not link in
7224         mono_marshal_free_ccw.
7226         * generic-sharing.c: Use alloca.h here as well.
7228 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7230         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7232 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7234         * cominterop.c cominterop.h: New files.
7236         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7237         function/typedefs which are needed by cominterop.c global.
7239 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7241         * generic-sharing.c: Don't take the loader lock to guard image
7242         mempool allocs.
7244 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7246         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7247         called without the loader lock which is required to guard MonoImage:tokens.
7249 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7251         * class.c:
7252         * metadata.c:
7253         * method-builder.c:
7254         * marshal.c:
7255         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7257 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7259         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7260         Rework the code to use regular mono_image_alloc/0.
7262         * loader.c: Rework the code to use regular mono_image_alloc/0.
7264         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7266 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7268         * object-internals.h : Fixing a typo in the 
7269           MonoReflectionComVisibleAttribute struct.
7271         * marshal.c (cominterop_com_visible): Check the implemented 
7272           interfaces for ComImport.
7274         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7275           assume that bools should be treated as VARIANTBOOLs.
7277         * marshal.c (emit_marshal_boolean): Adding cases for 
7278           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7280         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7281           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7283         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7284           should be treated as VARIANTBOOLs.    
7286         Code is contributed under MIT/X11 license.
7288 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7290         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7291         allocation with the image lock.
7293 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7295         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7296         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7298         * object.c: Add mono_string_to_utf8_image.
7300         * object-internals.h: Export mono_string_to_utf8_image.
7302         * reflection.c: Rework all explicit references to the the image mempool to go thought
7303         the mono_image_alloc set of functions.
7305 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7307         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7308         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7309         and generics-sharing.c.
7311         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7312         as first argument. Note that this function remains broken as it doesn't perform locking around the
7313         mempool allocation.
7315         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7317         * image.c: Add g_slist_append_image.
7319         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7320         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7322         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7323         Fix all related code to do the same.
7325         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7327         * metadata-internals.h: Fix the signatures.
7329 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7331         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7332         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7333         and similar to work using MonoImage.
7335         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7336         MonoMemPool.
7338         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7340         * class.c (mono_metadata_signature_deep_dup): Same.
7342         * class.c (inflate_generic_type): Same.
7344         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7346         * metadata.c (mono_metadata_signature_dup_full): Same.
7348         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7349         mono_metadata_signature_dup_full.
7351         * metadata.c (mono_metadata_type_dup): Same.
7353         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7355         * reflection.c: Same.
7357         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7359         * metadata-internals.h: Fix the signatures.
7361         * class-internals.h: Same.
7363 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7365         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7366         and use mono_image_alloc set of functions instead. 
7368         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7369         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7370         of a MonoMemPool.
7372         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7374         * class.c (g_list_prepend_mempool): Removed.
7376         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7378         * image.c: Add g_list_prepend_image.
7380         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7382         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7385 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7387         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7388         mono_image_unlock.
7390         * image.c (mono_image_init): Init the lock field.
7392         * image.c (mono_image_init): Cleanup the lock field.
7394         * image.c: Add mono_image_(un)lock functions.
7396 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7398         * class.c, class-internals.h: mono_method_get_context_general()
7399         combines the functionality of mono_method_get_context() and
7400         mini_method_get_context().
7402         * generic-sharing.c, domain-internals.h:
7403         mono_method_construct_object_context() and
7404         mono_domain_lookup_shared_generic() moved from mini.
7406         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7407         method doesn't have the correct instantiation because it's shared
7408         generic code.  Fixes #473999.
7410 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7412         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7414         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7415         
7416 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7418         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7420         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7422         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7423         and recheck the cache for dups after it.
7425         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7427         Fixes one of the deadlocks found in #473150.
7429 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7431         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7432           For Win32, add additional break conditions for accept.
7434         Code is contributed under MIT/X11 license.
7436 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7438         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7439         lazily initialize the native wrapper cache.
7440         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7441         cache, since they are different from the normal wrappers.
7443         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7445         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7446         AOT compiled native wrappers.
7448 2009-02-09  Geoff Norton  <gnorton@novell.com>
7450         * appdomain.h:
7451         * security-core-clr.c: Allow enabling core-clr from the embedding
7452         API.
7454 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7456         * socket-io.c: when requesting all the local ips, if there are no
7457         interfaces up and running, MS returns 127.0.0.1.
7459 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7461         * mono-perfcounters-def.h: processor time is an inverse time.
7462         Fixes bug #468625.
7464 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7466         * socket-io.c: an empty host name returns the list of local IPs.
7467         Fixes bug #386637 part 1/2.
7469 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7471         * verify.c (mono_class_interface_implements_interface): Call
7472         mono_class_setup_interfaces ().
7473         (merge_stacks): Ditto.
7475 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7477         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7478         klass->interfaces.
7479         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7480         (mono_generic_class_get_class): Ditto.
7482 2009-02-06  U-QUACK\miguel  <miguel@quack>
7484         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7485         they live in security.c
7487         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7488         another bit from Paolo's code.
7490 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7492         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7493         methods which will be discarded by add_imt_builder_entry ().
7495         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7496         need to be boxed.
7498         * loader.c: Add a statistics for the size of the memberref signature cache.
7499         
7500         * loader.c (find_cached_memberref_sig): New helper function.
7501         (cache_memberref_sig): Ditto.
7503         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7504         they will be parsed again for every generic instantiation, leading to unbounded
7505         memory growth.
7507 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7509         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7510         parameters of generic methods.
7512         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7513         after the original method is copied to the inflated method.
7514         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7516         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7517         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7519         * class.c metadata.c: Update after the changes above.
7521 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7523         * metadata-verify.c: Simplified error handling and added
7524         section table validation.
7526 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7528         * class-internals.h (MonoClassExt): New structure containing rarely used
7529         fields of MonoClass.
7530         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7531         through a new 'ext' field.
7533         * class.c (mono_class_alloc_ext): New helper function to allocate 
7534         class->ext.
7536         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7538 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7540         * object.c (mono_object_get_virtual_method): Properly inflate
7541         generic methods.  Fixes #472692.
7543 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7545         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7546         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7547         for the parent type, the created type must be ready to be used on a generic
7548         instantiation.
7549         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7550         we won't have duplicated entries in generic_inst_cache.
7552         Fixes #469553.
7554 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7556         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7557         replace with plain BSD per the comments on the bug MONO77637.
7559 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7561         * class.c (mono_class_get_generic_class): New accessor function.
7562         (mono_class_get_generic_container): Ditto.
7564         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7565         fields, similar to the ones in MonoMethod.
7567         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7568         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7570         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7571         
7572         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7573         the same information as element_class->byval_arg.
7575         * class.c reflection.c: Remove references to class->byval_arg.
7577         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7578         klass->enum_basetype directly.
7580         * verify.c metadata.c object.c icall.c reflection.c: Use 
7581         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7582         directly.
7584 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7586         * icall-def.h: Remove internal calls for sockets when
7587         DISABLE_SOCKET is defined, file system writing features when the
7588         OS only support reading and not writing data and Policy support if
7589         the Policy is disabled.
7590         
7591         * image.c (do_mono_image_open): Apply Paolo's patches for using
7592         mono_file_map_ APIs here.
7594         * assembly.c: Add support for platforms to avoid prefix
7595         auto-detection. 
7597 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7599         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7600         warning.
7602         * class.c (mono_class_inflate_generic_class): New helper function.
7604         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7605         statistics for inflated methods/classes.
7607         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7609         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7610         the call is made from Delegate.CreateDelegate () for the invoke method of
7611         a delegate.
7613         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7615         * metadata.c (mono_metadata_signature_size): New helper function.
7617         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7618         generic instances.
7620         * metadata.c (inflated_method_in_image): Avoid calling 
7621         mono_method_signature () if the method does not already have a signature.
7623 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7625         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7626         valuetype is compatible with target type, check by inheritance as a
7627         VT is not really compatible with System.ValueType, for example.
7629         * verify.c (do_invoke_method): Improve error message.
7631         * verify.c (do_box_value): If boxing a nullable, use the type argument
7632         on stack instead.
7634         * verify.c (do_newobj): Improve error message.  
7636         Fixes #469549.
7638 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7640         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7642 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7644         * generic-sharing.c: Don't hold domain lock when calling
7645         instantiate_other_info().  Fixes #471958.
7647         * domain-internals.h, loader.c: Describe locking policy of domain
7648         lock vs loader lock.
7650 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7652         * verify.c (mono_delegate_signature_equal): Make it possible to check
7653         first-arg-bound delegates to static method.
7655         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7656         static methods with the first arg bound.
7658         Fixes #469529.
7660 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7662         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7663         errors.
7665         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7666         under strict mode. Any type, when boxed can be seen as a reference type.
7668         Fixes #469528.
7670 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7672         * object.h: The lower bound of an array is a signed integer value.
7673         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7674         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7676         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7677         calculate the upper bound.
7678         
7679         Fixes #471252.
7681 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7683         From Paolo's work, refactored, cleared up:
7684         
7685         * threadpool.c, icall.c: ifdef code that requires a working socket
7686         stack.
7688         * metadata.c (mono_metadata_field_info): Do not attempt to return
7689         a value from a function declared as void.
7691         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7692         from the console stack.
7694         * assembly.c: use strrchr instead of rindex.
7696         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7697         alloca.h on systems that have it.
7699         * environment.c: Avoid code that uses stuff from
7700         HAVE_SYS_UTSNAME_H
7701         
7702         * appdomain.c: Include sys/time.h.
7704         * console-io.c: include sys/ioctl.h if it is available.
7706 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7708         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7710         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7711         the method builder.
7713         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7714         after it was created and cached, as the later is not thread safe.
7715         
7716 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7718         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7719         called while the debugging module is not initialized. Fixes #471669.
7721 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7723         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7725         Fixes #471255.
7727 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7729         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7730         loader lock is not taken while the templates lock is held.  Fixes
7731         #471089.
7733 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7735         * metadata.c (type_in_image): Added a check to fix a monodis
7736         crash.
7738 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7740         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7741         nullable arguments.
7743         * object.c (mono_runtime_invoke_array): Ditto.
7744         
7745         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7746         freeing wrappers of dynamic methods.
7748         * loader.c (mono_free_method): Call it. Fixes #463323.
7749         
7750         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7751         methods taking vtype/byref arguments, to fix yet another bug caused by
7752         the sharing of runtime invoke wrappers. Partly fixes #471259.
7754 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7756         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7757         <first file in file table>:1 when the IL offset does not have an associated
7758         line number.
7760 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7762         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7763         variable info for a method.
7765         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7766         
7767 2009-01-30  Jb Evain  <jbevain@novell.com>
7769         * pedump.c: reuse code from monodis to make sure pedump honors
7770         MONO_PATH, which is needed to verify net_2_1 assemblies.
7772 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7774         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7775         there is no line number info.
7777 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7779         Avoid some MonoType allocations
7780         * reflection.c (mono_reflection_initialize_generic_parameter):
7781         Reuse MonoType from param->pklass rather than allocating one.
7782         (mono_dynamic_image_free): Update to changes.
7784 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7786         Rearrange some code to improve consistency
7787         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7788         (mono_reflection_initialize_generic_parameter): ... here.
7790 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7792         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7793         with type constraints as an experiment.
7795         * boehm-gc.c (on_gc_notification): Update mono_stats.
7797 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7799         Avoid some allocations
7800         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7801         pointer to tail array to avoid extra allocation.
7802         * metadata.c (free_generic_inst): Update to changes.
7803         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7804         on-stack struct.
7806 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7808         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7809         return TRUE if the two type objects are the same.
7811 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7813         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7814         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7815         klass->min_align, since klass->min_align contains the managed alignment,
7816         while the native alignment can be different, like for longs on x86.
7817         Fixes #469135.
7819         * class-internals.h (MonoMarshalType): Add a min_align field.
7821 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7823         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7824         the 1.0 format.
7826 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7828         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7829         some comments about the usage of the used_regs field.
7831         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7832         Fixes #469217.
7834 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7836         * appdomain.c: return NULL instead of throwing FileNotFoundException
7837         when LoadAssembly() fails.
7839 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7841         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7842         image if the owner is NULL.  Fixes the AOT failures.
7844 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7846         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7847         MonoGenericParam structure using memset so the image field is initialized
7848         as well.
7850 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7852         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7853         a plain store.
7855 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7857         * class.c (mono_class_setup_vtable_general): In the generic instance
7858         optimization, set method->slot for abstract virtual methods. Fixes part of
7859         #467834.
7861 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7863         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7864         which signals that the unloading has started but all appdomain services must
7865         remain operational.
7867         * appdomain.c (mono_domain_unload): The initial state for unloading now
7868         is unloading_start and we switch to unloading after the managed call to
7869         AppDomain::DomainUnload has finished.
7871         The new unloading state has to be created because managed code in the
7872         DomainUnload event can depend on things like the threadpool still working.
7873         The domain must remain fully functional while the event executes.
7875         This shown as an issue due to Process::WaitForExit, which waits for
7876         async reads of stdout and stderr to complete. Since those are processed
7877         in the threadpool the code deadlocks because the DomainUnload callback 
7878         waits for the async read finished event, which should have been set by a
7879         threadpool job but has been discarded due to the domain been in unload
7880         state.
7882 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7884         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7885         image must match.
7887 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7889         * reflection.c (resolve_object): For fields, inflate the class and
7890         then get the field in the inflated class.
7892 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7894         * object-internals.h (struct _MonoException): Added a comment
7895         explaining the new use of trace_ips.
7897 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7899         * generic-sharing.c (inflate_other_data): Inflate array methods
7900         correctly.
7902         * loader.c, class-internals.h: Rename search_in_array_class() to
7903         mono_method_search_in_array_class() and make it non-static.
7905 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7907         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7908         Hopefully fixes #458168.
7910 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7912         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7913         as it is performed elsewhere.
7915         Code is contributed under MIT/X11 license
7917 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7919         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7920         requests queued.
7921         * object.c (mono_raise_exception): Increment the exceptions total
7922         counter when an exception is thrown.
7923         * class-internals.h: Add a location for storing the total number of
7924         asp.net requests served.
7925         * mono-perfcounters.c: Implement update support for asp.net counters
7926         from the class libraries. Implement read support for asp.net counters
7927         and exceptions total counter.
7929 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7931         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7932         accessing klass->methods. Fixes #467385.
7934 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7936         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7937         for byval arguments without an [Out] attribute. Fixes #467212.
7939         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7940         Fix compilation under android.
7941         
7942         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7943         processed, scan them directly after they are copied, to achieve better locality
7944         and cache usage.
7946         * socket-io.c: Applied patch from Koushik Dutta
7947         (koush@koushikdutta.com). Disable IPV6 when running under android.
7949 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7951         * icall.c (ves_icall_InternalExecute): Add write barriers.
7953         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7954         the GC code.
7956         * sgen-gc.c: Implement write barriers in IL code.
7958 2009-01-17  Geoff Norton  <gnorton@novell.com>
7960         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7962 2009-01-17  Geoff Norton  <gnorton@novell.com>
7964         * image.c: When unloading the image->references table, there can be gaps
7965         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7966         when unloading an appdomain.
7968 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7970         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7971         speed up ptr-in-nursery checks.
7973         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7974         threads_lock () to prevent deadlocks.
7976         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7977         does not need to be scanned during minor collections, since writes to it
7978         must use write barriers.
7980 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7982         * metadata-verify.c: Add pe nt header verification.
7983         
7984 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7986         * gc.c: Fix a few warnings when using SGEN.
7988 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7990         * metadata-verify.c: Add pe optional header verification.
7992 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7994         * sgen-gc.c: Add support for user defined marker functions, used by
7995         MonoGHashTable to avoid registering a GC root for every hash node.
7997 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7999         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8000         non-pinned roots into separate hashes to avoid having to traverse them
8001         in functions which are only interested in one kind.
8003 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8005         * metadata-verify.c: Add pe header machine field verification.
8006         
8007 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8009         * metadata-verify.c: Add pe header size verification.
8011 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8013         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8014         using the GC, they don't contain references.
8016         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8018 2009-01-13  Geoff Norton  <gnorton@novell.com>
8020         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8021         AppDomains created on the native side can be cleaned up on the native side.
8023 2009-01-13  Geoff Norton  <gnorton@novell.com>
8025         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8026         as well as the managed api.
8028 2009-01-13  Geoff Norton  <gnorton@novell.com>
8030         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8031         with a MonoAppDomain initialized against it.
8033 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8035         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8036         
8037         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8039         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8040         into the wrapper caches. Fixes #465700.
8042         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8043         method builder.
8044         (mono_mb_create_method): Set the clauses from the method builder.
8046 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8048         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8049         Patch from Makoto Kishimoto.
8051 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8053         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8054         encoding them as ROOT_DESC_COMPLEX.
8055         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8057 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8059         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8060         no longer point to the nursery.
8062         * sgen-gc.c: Add a few comments/FIXMEs.
8063         
8064         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8066         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8067         initialization of the various _method variables thread safe. Fixes
8068         #465377.
8070 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8072         * domain.c, domain-internals.h: Remove the shared_generics_hash
8073         and its lookup functions.
8075 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8077         * socket-io.c:  Fixing the MSVC build. 
8079         Code is contributed under MIT/X11 license.
8081 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8083         * metadata-verify.c: Add pe header watermark verification.
8085 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8087         * metadata-verify.c: Add lfanew verification.
8089 2009-01-12  Jb Evain  <jbevain@novell.com>
8091         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8092         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8094 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8096         * socket-io.c: Fix the build.
8098         * environment.c: Fix an #ifdef.
8100 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8102         * threadpool.c (async_invoke_thread): Handle the wait function returning
8103         WAIT_IO_COMPLETION as well.
8104         (async_invoke_io_thread): Ditto.
8106 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8108         * threads.c: Fixing the Windows build.
8110         Code is contributed under MIT/X11 license.
8112 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8114         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8115         interrupt a wait.
8116         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8117         the thread to wait again.
8119 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8121         * metadata-verify.c: Initial skeleton of the metadata verifier.
8123         * pedump.c: Add support for the metadata verifier.
8125         * verify-internal.h: Export the whole assembly metadata verifier function.
8127 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8129         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8131 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8133         * Makefile.am: Upgrade dtrace-prelink.sh location.
8135 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8137         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8138         well. Otherwise the shutdown deadlock that happens on unix will can happen
8139         as well.
8140         If the main thread code finishes too fast it's possible that the finalizer
8141         thread won't have executed yet, won't record itself as the finalizer thread
8142         and the shutdown sequence will wait on it forever.
8144 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8146         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8147         with MSVC.
8149 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8151         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8152         Robert Jordan for pointing this out.
8154 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8156         * icall.c
8157         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8158         ves_icall_System_IO_DriveInfo_GetDriveType.
8160 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8162         * icall.c: Wrap calls to mono_strtod in CriticalSection
8163         invocations when using eglib, to work around #464316.
8165 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8167         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8168         return value of GetCurrentDirectory to never access unitialized memory.
8170 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8172         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8173         return value of GetCurrentDirectory and expand the buffer if needed.
8175         Fixes #459094.
8177 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8179         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8180           Adding a call to mono_init_com_types.
8182         Code is contributed under MIT/X11 license.
8184 2009-01-07  Geoff Norton  <gnorton@novell.com>
8186         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8187         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8188         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8189         be the value of the ip buffer.
8191 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8193         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8194         interfaces_packed here.
8196         Fixes part of #463294.
8198 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8200         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8202         Fixes part of #463294.
8204 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8206         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8207         is a boxed complex as well.
8209         Fixes part of #463294.
8211 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8213         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8214         control if a methodspec should be created for the generic method definition from external assemblies.
8215         Caching of methodspec is done using the handleref hash table.
8217         Fixes #462592.
8219 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8221         * loader.c (find_method): When searching the interfaces of a class
8222         check the transitive closure of implemented interfaces.
8224         Fixes #463303.
8226 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8228         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8229         
8230 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8232         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8233         interfaces calculation to fill_valuetype_array_derived_types.
8235         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8236         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8237         for example.
8239         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8240         interfaces for valuetypes if needed.    
8242         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8243         for their basetype as well. Types are array expanded if rank is > 0.
8245         Fixes #400716.
8247 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8249         * socket-io.h : Changing the signature of
8250           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8251           the blocking state.
8253         * icall-def.h :  Changing the signature of
8254           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8256         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8257           For Windows only.  Avoid blocking when calling accept by
8258           querying for a connection via select.  The loop also queries
8259           the thread state every 1000 micro seconds for the thread
8260           stop state.  This will avoid the process hanging on shutdown
8261           when using a TcpChannel that is never connected to.
8263         Code is contributed under MIT/X11 license.
8265 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8267         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8269 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8271         * class.c (get_implicit_generic_array_interfaces): Extract common
8272         code to a helper function making it a lot easier on the eyes.
8274 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8276         * class.c (get_implicit_generic_array_interfaces): If the internal
8277         enumerator is an interface inflate System.Object instead of itself.
8279         Fixes #461261.
8281 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8283         * object.c (mono_runtime_invoke_array): Don't assert with
8284         byref nullable types.
8286         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8287         byref nullables we unbox the object and store it on the
8288         stack. 
8289         We can't use the boxed object since it is the T of Nullable<T>
8290         and the boxed representation of a nullable it's underlying type
8291         or null.
8292         We could cheat and create a boxed nullable and use the same
8293         machinery of other byref VTs but this feels like a hack and
8294         using the stack has the bonus of reducing heap pressure.
8296         Fixes #461941.
8298 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8300         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8301         return value.
8303         Fixes #461867.
8305 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8307         * icall-def.h : Adding an internal call definition for 
8308           System.Environment.internalBroadcastSettingChange.
8310         * icall.c : Adding a Windows only implementation to broadcast a 
8311           WM_SETTINGCHANGE when an environment variable has changed.
8313         Code is contributed under MIT/X11 license.
8315 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8317         * class.c, class-internals.h: Made
8318         mono_class_has_parent_and_ignore_generics() non-static.
8320 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8322         * image.c: deal with the mmap failing when loading an image.
8324 2008-12-17  Geoff Norton  <gnorton@novell.com>
8326         * threadpool.c: Ensure that the io_queue_lock is initialized
8327         in all circumstances, as we always attempt to cleanup against it.
8329 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8331         * icall.c (ves_icall_System_Environment_get_Platform): For
8332         compatibility reasons for existing client code we will keep
8333         returning 4 for a while.   
8335         For how long will depend on the documentation being updated, and
8336         for us to give client code a chance to be updated.
8338         This reverts the original decison on #433108 since we did not
8339         catch roughly 33 instances of the broken code in our own source
8340         code base, we did not catch failures on the buildbots, and QA did
8341         not bring this as a problem.
8343         Only today I found some customer's code breaking due to our own
8344         class libraries not being fully updated and tracked it down to
8345         this change.  I am reverting it because if we could not even get
8346         our story straight in our own code base, how can we hope that our
8347         end user code be fixed?
8349         As of this morning, our Wiki page that documents how to detect
8350         Unix had not been fixed.    
8352 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8354         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8356         * class.c (mono_class_get_fields): Handle loading errors.
8358 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8360         * 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.
8361         
8362 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8364         * mono-perfcounters.c: avoid warning.
8366 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8368         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8369         make sure all interfaces have MonoClass::interface_id set.
8371         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8372         method table is property set.
8374 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8376         * class.c: New function mono_class_setup_interface_id that setup
8377         MonoClass::interface_id if needed.
8379         * class-internals.h: Export new function.
8381 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8383         * class.c: Add code to sanity check the vtable after setup_vtable_general
8384         has done it's work.
8386 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8388         * icall.c: make Assembly.GetExecutingAssembly work properly when
8389         reflection is used to invoke the method.
8390         Bug #321781 fixed.
8392 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8394         * metadata/generic-sharing.c: Look for constraints in all type
8395         arguments, not just the first one.
8397 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8399         * appdomain.c: return the correct CodeBase for an Assembly instance
8400         that was loaded from the shadow-copy directories.
8401         Bug #458190 fixed.
8403 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8405         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8407         * sgen-gc.c (check_object): New debugging helper function.
8409         * object.c: Fix calls to mono_value_copy_array ().
8411 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8413         * class.c (mono_class_setup_fields): If working on an inflated class
8414         first check if the generic definition did init with success.
8416         Fixes #445361.
8418 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8420         pedump.c (main): Fix a warning.
8422 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8424         * object-internals.h : Adding a definition for 
8425           MonoReflectionComVisibleAttribute.
8427         * marshal.c (cominterop_com_visible) :  Method added to check the 
8428           ComVisible attribute of a class.
8430         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8431           cominterop_raise_hr_exception added to consolidate common code 
8432           to raise hr exceptions.
8434         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8435           if a managed class should support IDispatch.
8437         * marshal.c 
8438           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8439           Added additional checks for managed object when getting 
8440           an IDispatch interface.
8442         Code is contributed under MIT/X11 license.
8444 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8446         pedump.c (main): Handle mono_get_method () returning NULL. 
8448 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8450         * marshal.h: Fix a warning.
8452 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8454         * marshal.c : Adding cominterop_release_all_rcws to release all
8455           runtime callable wrappers held by the runtime.
8457         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8458           
8459         Code is contributed under MIT/X11 license.
8461 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8463         * metadata.c (mono_image_alloc_lock): New helper function.
8464         (mono_image_alloc0_lock): Ditto.
8466         * metadata.c: Use the alloc_lock () helper functions for allocating
8467         memory from the image mempool.
8469 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8471         * class.c (mono_class_from_generic_parameter): Document it's
8472         locking behavior. Fix double checked locking here, we stored in
8473         param->pklass a partially initialized MonoClass and no membar was used.
8475 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8477         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8478         (3) functions are present in the C library use them to do the
8479         job. If they are absent, make sure that the sum of int_part and
8480         dec_part is rounded before returning. This is necessary due to the
8481         division of dec_part by the power of 10 before the final addition
8482         is performed - if the result is not rounded in some cases it will
8483         yield invalid results.
8485 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8487         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8488         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8489         instruction instead of a pointer constant.
8491 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8493         * loader.c (mono_method_get_header): Do most of the work outside the
8494         loader lock, to avoid assembly load hook deadlocks.
8496         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8497         (mono_metadata_parse_type_full): Ditto.
8499 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8501         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8502         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8503         funtions. Finally, use a lock to produce well ordered output.
8505         The lock looks silly, as all calls to the corlib mempool should be guarded
8506         with the loader lock, but for some reason this fact doesn't help. 
8508         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8510 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8512         * socket-io.c: 64 bit big-endian fixes.
8514 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8516         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8517         targets that require strict compatibility between the types.
8519         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8520         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8521         Kill the strict argument and create a new one valuetype_must_be_boxed.
8523         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8524         state that all valuetypes must be boxed.
8526         Fixes #448560.
8528 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8530         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8531         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8533         Contributed under MIT/X11 license.
8535 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8537         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8538         the inflate_generic_type machinery should handle it.
8540         This avoids a crash when the field's flags is zero and it's type is
8541         a primitive.
8542         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8543         is zero and will return one of the cached built-in primitive types. Since
8544         those types live in read-only memory, the code that copies it crashes.  
8546 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8548         * object.c: Don't put function descriptors into generalized IMT
8549         thunks.
8551 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8553         * class.c: Enable generic code sharing on PPC64.
8555 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8557         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8558         from mini/mini.c.
8560         * generic-sharing.c: Allocate the method template slists from the
8561         image mempool so it doesn't leak.
8563 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8565         * class.c (generic_array_methods): Release the linked list.
8567 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8569         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8570         invocation to g_utf16_to_utf8().
8572 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8574         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8575         arguments on big endian archs.
8577 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8579         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8580         the type name (test added in corlib).
8582 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8584         * pedump.c: initialize perf. counters. Fixes a segv.
8586 2008-11-25  Martin Baulig  <martin@ximian.com>
8588         * mono-debug-debugger.c
8589         (mono_debugger_runtime_invoke): Return the exception object if an
8590         exception was thrown.  Visual Studio displays the exception object
8591         in the locals window.
8593 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8595         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8596         ftnptr.
8598 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8600         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8601         MONO_TYPE_U are sizeof (gpointer), too.
8603 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8605         * marshal.c (mono_type_native_stack_size): Fixed size and
8606         alignment for reference types.
8608 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8610         * class.c (mono_class_generic_sharing_enabled): Disable generic
8611         code sharing for PPC64.
8613 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8615         * icall.c (mono_method_get_equivalent_method): Make sure
8616         method->klass->methods is inited before looping over it.
8618 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8620         * object.c: when calling ExecuteAssembly in a newly created domain,
8621         the configuration file and application base are already set up.
8622         Bug #446353 take 2 fixed.
8624 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8626         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8627         Fixes #444715. Fix a warning.
8629 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8631         * appdomain.c: write the full path of the assembly to the .ini file
8632         created when "shadow-copying"
8633         Bug #446353 fixed.
8635 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8637         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8638         if signature==FALSE.
8640 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8642         * marshal.h : Fix the cygwin build.
8643            marshal.c:12442: undefined reference to `_IID_IMarshal'
8644           
8645         Code is contributed under MIT/X11 license.
8647 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8649         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8650           free threaded marshaler when QueryInterface is called on a COM callable
8651           wrapper requesting the IMarshal interface.
8652           
8653         Code is contributed under MIT/X11 license.
8655 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8657         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8659         * reflection.c (mono_type_get_object): Special case the very common
8660         void type.
8662         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8663         hold typeof(void).
8665 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8667         * process.h : Adding method declaration for
8668           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8669           
8670         * process.c : Adding implementation for
8671           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8672           
8673         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8674           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8676         Code is contributed under MIT/X11 license.
8678 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8680         * appdomain.c (unload_thread_main): Clean up threadpool by
8681         calling mono_thread_pool_remove_domain_jobs.
8683         * domain-internals.h (struct _MonoDomain): Add new fields to
8684         help coordinate the cleanup of the threadpool.
8686         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8687         that cleans up the threadpool of all jobs associated with an appdomain.
8688         It does that by cleaning up the queues and making sure all active
8689         threads are accounted.
8691         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8692         unloaded or in the process of. Take this is such way that there is
8693         no race condition between another thread starting the unload and the
8694         current thread acknowledging it.
8696         * threadpool.c (async_invoke_thread): Same.
8698         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8699         firing the new thread.
8701         * threadpool.c (start_tpthread): Same.
8703         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8705         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8707 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8709         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8710         Add support for DuplicateHandle.
8711         
8712         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8713         Add support for DuplicateHandle.
8714         
8715         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8716         Add support for DuplicateHandle.
8718         Code is contributed under MIT/X11 license.
8720 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8722         * class-internals.h: Make min_align into a whole byte.
8724         * class.c: Set min_align for SIMD types to 16.
8726 2008-11-05  Geoff Norton  <gnorton@novell.com>
8728         * attach.c: Default the attacher to enabled for all cases including
8729         embedded.
8731 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8733         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8734         change r117650.
8736 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8738         * monitor.c, monitor.h: New function for querying offsets of
8739         members of MonoThreadsSync.
8741 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8743         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8744         to speed up this function and to avoid the boundless memory growth caused by
8745         the signature_dup () calls.
8747 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8749         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8750         wrapper.
8752         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8753         by 1 bit.
8755         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8757 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8759         * appdomain.c:
8760         * domain-internals.h: made mono_set_private_bin_path_from_config()
8761         "internal".
8762         * object.c: call the above function after setting the configuration
8763         file path for the root domain.
8764         Fixes bug #314478.
8766 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8768         * assembly.c: when the assembly is loaded from an absolute path, end
8769         basedir with a directory separator.
8770         Bug #440781 fixed.
8772 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8774         * monitor.c (mono_monitor_get_fast_enter_method): If
8775         CompareExchange is not available, don't create the fastpath
8776         instead of asserting.  (The method is missing in the 1.1 profile.)
8778 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8780         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8782         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8783         Monitor.Exit IL fastpaths.
8785 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8787         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8789 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8791         * class.c (mono_class_create_from_typedef): Added Vector2l.
8793 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8795         * class.c (mono_class_create_from_typedef): Added Vector2d.
8797 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8799         * appdomain.c: translate \ into / for cache_path.
8800         * domain-internals.h: new mono_is_shadow_copy_enabled().
8801         * icall.c: (fill_reflection_assembly_name) do the same path
8802         manipulations that get_code_base does.
8803         (get_code_base) use mono_is_shadow_copy_enabled.
8805 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8807         * appdomain.c: shadow-copied assemblies go to CachePath +
8808         ApplicationName when both are set. DynamicBase has nothing to do with
8809         shadow copies.
8810         Bug #406877 fixed.
8812 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8814         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8815         STANDALONESIG table.
8817         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8818         standalone signatures.
8820         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8821         comparison code: instead of comparing the signatures using a custom
8822         equals function, transform them to a common signature and compare that. This
8823         works better with AOT.
8825 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8827         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8829         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8830         call for generic instances.
8831         (mono_class_setup_properties): Call setup_properties () before accessing
8832         gklass->properties.
8834         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8835         over the virtual methods of a class using metadata if possible, avoiding the
8836         creation of MonoMethod's for non-virtual methods.
8837         
8838         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8839         get_virtual_methods () to iterate over the virtual methods of classes.
8841 2008-10-25  Martin Baulig  <martin@ximian.com>
8843         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8845 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8847         * class.c (mono_class_create_from_typedef): Added Vector4i.
8849 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8851         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8852         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8853         special-casing applies to eliminate the call completely.
8855 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8857         * class.c (mono_class_create_from_typedef): Added Vector8s.
8859 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8861         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8863 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8865         * icall.c: get rid of annoying warning.
8867 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8869         * threadpool.c: in 1.x, if you change the background status of the
8870         threadpool thread, it's not reset.
8871         Remove unnecessary calls to SetState.
8873 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8875         * threadpool.c: asynchronously create a set of idle threads upon first
8876         use of the threadpool. SetMinThreads will now start the appropriate
8877         number of idle threads if they are not already running. The default is
8878         1 threadpool thread per CPU. Increased the maximum number of threads
8879         per CPU to 10.
8881 2008-10-22  Martin Baulig  <martin@ximian.com>
8883         Revert r116521 from Zoltan, it breaks the debugger:
8885         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8886         over the virtual methods of a class using metadata if possible, avoiding the
8887         creation of MonoMethod's for non-virtual methods.
8888         
8889         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8890         get_virtual_methods () to iterate over the virtual methods of classes.
8892 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8894         * threads.c: when creating a threadpool thread, set its state to
8895         'background'.
8896         * threadpool.c: reset the background state of a threadpool thread
8897         after finishing each work item
8898         Bug #437888 fixed.
8900 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8902         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8903         
8904         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8905         generic instances which works by inflating the methods in the container
8906         class's vtable.
8908         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8909         variant which doesn't make a copy if no inflation was done.
8910         (mono_class_setup_fields): Use it.
8912         * metadata.c (mono_metadata_get_shared_type): New helper function to
8913         return a shared instance of a given MonoType.
8915         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8916         a copy of most non-generic types.
8918 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8920         * threadpool.c: remove one more GetSystemInfo () call.
8922 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8924         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8925         use the code in mono-proclib.h to get processor information.
8927 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8929         * appdomain.c: fixed the logic that determines whether assemblies in a
8930         directory are "shadow-copied" or not. Bug #433483 fixed.
8932 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8934         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8935         warning.
8937 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8939         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8940         returning a vtype.
8942         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8943         reflection.c: Use mono_field_get_name () for accessing a field's name.
8945         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8946         class.c
8948         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8949         field.
8951         * loader.c (find_method_in_class): Reenable the metadata optimization by
8952         not using it for generic instances.
8954         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8955         data/def_type fields from MonoClassField into a separate structure.
8956         (struct MonoClassField): Remove data/def_type fields.
8957         (struct _MonoClass): Add a 'field_def_values' array to store the default
8958         values/RVA for fields.
8960         * class.c reflection.c: Update after the changes.
8961         
8962         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8963         for accessing field->data.
8965         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8967         * loader.c (find_method_in_class): Revert the last change for now as
8968         it breaks Mono.C5 unit tests.
8970         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8971         'field_generic_types' and 'field_objects' which contain the information
8972         previously stored in MonoInflatedField.
8973         (MonoInflatedField): Delete.
8974         (struct _MonoClassField): Delete 'generic_info' field.
8976         * reflection.c: Store the information which was previously in 
8977         field->generic_info in MonoDynamicGenericClass instead.
8979         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8980         MonoClassField changes.
8982 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8984         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8985         store the value inside the data array of the MonoMethodWrapper.
8986         This saves memory, is faster and fixes the lifetime issues (methods
8987         were never removed from the hash previously). May also fix bug#436996.
8989 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8991         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8992         generic instances, compute the type from the generic definition instead of
8993         looking in field->generic_info.
8995         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8996         for inflated fields, the only user was get_fieldref_token () which no
8997         longer needs it.
8999         * class.c (mono_class_init): Revert the last change as it seems to cause
9000         crashes.
9002         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9003         bytes on 64 bit platforms.
9005         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9006         
9007         * object.c (mono_class_create_runtime_vtable): Don't initalize
9008         field->data/field->def_type here, it is done lazily by 
9009         mono_class_get_field_default_value ().
9011         * icall.c (ves_icall_get_enum_info): Call 
9012         mono_class_get_field_default_value () instead of directly accessing
9013         field->data and field->def_type.
9015         * object.c (get_default_field_value): Ditto.
9017         * class.c (mono_field_get_data): Ditto.
9018         
9019         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9020         call for generic instances.
9022         * loader.c (find_method_in_class): If klass != from_class, then inflate
9023         the method with the context of from_class, since the caller assumes this.
9025 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9027         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9028         for accessing method->slot.
9030 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9032         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9034 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9036         * class.c (mono_method_get_vtable_index): Use
9037         mono_method_get_vtable_slot () for accessing method->slot.
9039         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9040         accessing klass->methods.
9042         * class.c (mono_method_get_vtable_slot): New helper function.
9043         (mono_class_get_vtable_entry): Ditto.
9044         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9045         accessing method->slot.
9047         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9048         method to get_inflated_method ().
9050         * class.c (mono_class_get_inflated_method): New helper method to obtain
9051         a method of an inflated class without calling setup_methods ().
9052         (mono_class_get_cctor): Use get_inflated_method.
9054         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9055         
9056         * marshal.c image.c: Lazily create all the marshal caches.
9058         * image.c (mono_image_init): Move initialization of runtime_invoke
9059         caches to marshal.c.
9061         * marshal.c (get_cache): New helper function to lazily initialize a 
9062         wrapper cache.
9063         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9065         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9067 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9069         * loader.c: fixed check for interface type.
9071 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9073         * appdomain.c: check for NULL setup before it's referenced.
9076 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9078         * class.c: remove the unused old vtable setup code.
9080 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9082         * class.c: don't depend on interface order in
9083         setup_interface_offsets (bug #435777).
9084         * reflection.c: sort the InterfaceImpl table (patch from
9085         Jb Evain  <jbevain@novell.com>).
9087 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9089         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9090         the low level assemblies lock.
9092 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9094         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9095         object.c, reflection.c, socket-io.c, threads.c: introduced
9096         mono_framework_version () to return the major framewrok version,
9097         changed the code that was using more complex patterns to use it.
9098         Return the correct value for PlatformID for OSX.
9100 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9102         * icall-def.h, process.h, process.c: added an icall to get info about
9103         processes using mono-proclib.
9105 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9107         * mono-perfcounters.c: use the mono-proclib functions to
9108         access process information.
9110 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9112         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9113         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9114         reflection.c: remove rawbuffer usage: mmap support is more sanely
9115         provided by utils/mono-mmap.
9117 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9119         * gc.c: use posix semaphores when possible so that
9120         mono_gc_finalize_notify() is signal safe.
9122 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9124         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9125         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9126         be #ifdef-ed out, the linker will remove the rest.
9128         * marshal.c: Implement DISABLE_COM.
9130         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9132 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9134         * locales.c (string_invariant_compare_char): Optimization: do not
9135         call g_unichar_type unless we actually need the information.
9137 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9139         * object.c, class-internals.h: Also create remoting trampolines
9140         for generic methods.  Pass the domain to the remoting trampoline
9141         creation function, too.
9143 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9145         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9147 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9149         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9150         Vector4ui.
9152 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9154         * assembly.c:
9155         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9157 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9159         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9160         for the least possible amount of time (extending the fix in r113458).
9162 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9164         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9166 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9168         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9169         as possible simd intrinsic types.
9170         Optimized the test to check for the common prefix first.
9172 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9174         * class.c: back out part of a broken optimization committed on
9175         May 23th (bug #433908).
9177 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9179         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9180         Win32.  Should fix #432388 for most cases until we have the new
9181         profiler on Win32.
9183 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9185         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9186         instead of using inst->id so the hash is stable for AOT.
9188 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9190         * appdomain.c:
9191         * icall.c: create a .ini file for shadow-copied assemblies that
9192         contains the location of the original assembly. Use this to return the
9193         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9194         Also fix the number of '/' for windows when returning the CodeBase.
9195         Fixes bug #430920.
9197 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9199         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9201         Code is contributed under MIT/X11 license.
9203 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9205         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9206           if if the class vtable needs initialized.
9208         Code is contributed under MIT/X11 license.
9210 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9212         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9213           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9214           STRING->BSTR, and CLASS->INTERFACE.
9216         Code is contributed under MIT/X11 license.
9218 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9220         * sysmath.h: changed the declaration of the
9221         ves_icall_System_Math_Round2 icall by adding an extra
9222         away_from_zero parameter.
9224         * sysmath.c (ves_icall_System_Math_Round2): added support for
9225         away from zero rounding. The icall now takes an extra boolean
9226         parameter to signal that away from zero operation is requested.
9228 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9230         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9231         the delegate klass so it can work with full-aot.
9232         (mono_marshal_get_delegate_end_invoke): Ditto.
9233         (mono_marshal_get_delegate_invoke): Ditto.
9235 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9237         * gc.c, attach.h, attach.c: remove a bad pattern:
9238         add_finalizer_callback () is not implemented correctly, it can't
9239         without adding more overhead to the finalizer loop and it's not
9240         even needed, since we know exactly what we need to call, so there is
9241         no need to do so through an expensive function pointer.
9243 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9245         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9246         for the no-gc case.
9247         * attach.c (mono_attach_init): Remove the #ifdef.
9249 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9251         * attach.c (mono_attach_init): Don't use
9252         mono_gc_add_finalizer_thread_callback when compiling without GC.
9253         Fixes #432306.
9254         
9255         Code is contributed under MIT/X11 license.
9257 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9259         * class.c (mono_class_create_from_typedef): Remove the 
9260         #ifndef DISABLE_SIMD stuff.
9262 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9264         * class-internals.h (MonoClass): Added simd_type bit field.
9266         * class.c (mono_class_create_from_typedef): Check if type is a simd
9267         intrinsic.
9269 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9271         * object.c (mono_method_add_generic_virtual_invocation): Only add
9272         instantiations to the thunk whose count is at least as large as
9273         the threshold.
9275 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9277         * icall.c: changed the Type of the exception thrown when trying to
9278         invoke a constructor on an abstract class. Part of the fix for bug
9279         #324185.
9281 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9283         * class.c, class-internals.h (mono_method_get_vtable_index): New
9284         function which returns the index into the vtable and properly
9285         handles inflated virtual generic methods.
9287 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9289         * object.c, domain.c, object-internals.h, domain-internals.h:
9290         Generalize IMT thunk machinery to also handle thunks for virtual
9291         generic method invokes.  When a virtual generic method is invoked
9292         more than a number of times we insert it into the thunk so that it
9293         can be called without lookup in unmanaged code.
9295         * generic-sharing.c, class-internals.h: Fetching a
9296         MonoGenericInst* for a method from an (M)RGCTX.
9298 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9300         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9301         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9302         marshalling. Fixes #431304.
9304 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9306         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9307           handle when ref is specified without In or Out.
9309         Code is contributed under MIT/X11 license.
9311 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9313         * loader.c (mono_get_method_constrained): Don't expand method with
9314         the class's context, because it's already a method of that class.
9316 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9318         * attach.c : should be correct build fix.
9320 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9322         * attach.c: Fix the previous change.
9324 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9326         * attach.c : quick w32 build fix.
9328 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9330         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9331         crashes MonoDevelop: #430455.
9333 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9335         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9336         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9338         * domain.c: Remove initialization/cleanup of the removed fields.
9340 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9342         * class.c (mono_class_generic_sharing_enabled): Enable generic
9343         code sharing for PPC.
9345 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9347         * attach.c : Fixing the Windows builds.
9349         Code is contributed under MIT/X11 license.
9351 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9353         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9354         the default generic sharing mode to 'all'.
9356 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9358         * generic-sharing.c, class-internals.h: New function for checking
9359         whether a method needs a static RGCTX invoke wrapper.  A few
9360         funtions moved from mini/generic-sharing.c.
9362         * icall.c: New function used.
9364 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9366         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9367         Static RGCTX invoke wrapping applies to value type methods, too.
9369         * class.c (mono_class_setup_vtable_general): In generic-shared
9370         value types, wrap methods with a static RGCTX invoke wrapper.
9372 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9374         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9375         osx build.
9377 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9379         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9380         register a callback which is called when the finalizer thread is woken
9381         up.
9382         (finalizer_thread): Call the callback if it exists.
9384         * attach.h attach.c: New files, implementing the attach mechanism.
9386         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9387         
9388         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9389         by the previous change.
9391 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9393         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9394         loader.c, marshal.c, metadata-internals.h, metadata.c,
9395         method-builder.c, object.c, reflection.c: introduced specific functions
9396         to allocate from the domain and image mempools and cleaned up most of
9397         the code to use them (still missing a few in reflection.c).
9398         Keep the loader bytes counter updated.
9400 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9402         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9403         loader-related counters.
9405 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9407         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9408         added more MS-compatible counters.
9410 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9412         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9413         class->blittable. Fixes #428217.
9415 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9417         * reflection.c (mono_image_get_field_on_inst_token): Call 
9418         field_encode_signature () since that handles custom modifiers too.
9419         Fixes #424663.
9421 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9423         * reflection.c (add_custom_modifiers): New helper function to merge custom
9424         modifiers stored in objects to a MonoType.
9425         (fieldref_encode_signature): Encode custom modifiers.
9426         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9427         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9429 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9431         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9432         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9433         64-bit IL only images because imports are not resolved for IL only images.
9434         Special thanks to Bill Holmes for finding this bug and testing the patch.
9435         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9437         Contributed under MIT/X11 license.
9439 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9441         * mono-config.c (dllmap_start): Add support for the bits keyword
9442         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9444 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9446         * reflection.c (inflate_mono_method): When the class the method is
9447         to be inflated for is itself not inflated, just return the method.
9449 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9451         * mono-perfcounters.c: use more user friendly process instance names.
9453 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9455         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9456           handle "[in] ref" and "[in][out] ref" cases.
9458         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9459           to mono_mb_create_method.  This was causing problems calling native to
9460           managed passing Variants by value.
9462         Code is contributed under MIT/X11 license.
9464 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9466         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9467         before accessing the friend_assembly_names field.
9469         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9470         times.
9471         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9472         called lazily when it is needed.
9474         * metadata-internals.h (struct _MonoAssembly): Add 
9475         'friend_assembly_names_inited' flag.
9477 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9479         * mono-perfcounters-def.h: fix the types of a few counters.
9480         * mono-perfcounters.c: implemented the instance names getter
9481         and a few bugfixes.
9483 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9485         * culture-info-table.h : regenerated.
9487 2008-09-17  Robert Jordan  <robertj@gmx.net>
9489         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9490         context bound objects. Fixes #415577.
9492         Code is contributed under MIT/X11 license.
9494 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9496         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9497         implementation (bug #423582).
9499 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9501         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9502         is not set. Fixes #426309.
9504 2008-09-16  Jb Evain  <jbevain@novell.com>
9506         * class.c (mono_class_from_name): fix the exported type look up
9507         when the type is defined in a referenced assembly.
9509 2008-09-16  Jb Evain  <jbevain@novell.com>
9511         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9512         increment the next index counter on each iteration to make that work
9513         for more than one type forwarder. Unmanaged part to fix #422929.
9515 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9517         * object-internals.h: enum ComInterfaceType in
9518         MonoInterfaceTypeAttribute is guint32, not guint16.
9520 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9522         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9523         writing code.
9525 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9527         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9528         not gboolean.
9530 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9532         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9533         Endianness fixes for MonoSymbolFileOffsetTable.
9535 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9537         * process.c (complete_path) : Removing quotes from the 
9538           input path.  The glib file routines do not handle file paths
9539           that have quotes around them.
9541         Code is contributed under MIT/X11 license.
9543 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9545         * socket-io.h : Adding a comment to provide locations where 
9546           changes to MonoSocketAsyncResult need to be synced.
9548         Code is contributed under MIT/X11 license.
9550 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9552         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9553         parameters as well. Fixes #425001.
9555 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9557         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9558         windows build.
9560 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9562         * console-io.c: Add support for tracking the window size if it
9563         changes.
9565         The setup is very simple: the TtySetup function will now return a
9566         pointer to a location in memory that tracks the current console
9567         size.  The managed code checks its current value every time its
9568         queried against the last value set, and updates accordingly.
9570         With this setup we can work with multiple consoles, and we do not
9571         require to poke into managed code from a signal handler.
9573         Additionally, the environment for COLUMNS and LINES is now handled
9574         in unmanaged code.
9576         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9578 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9580         * marshal.c (mono_type_native_stack_size): Treat
9581         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9583 2008-09-04  Jb Evain  <jbevain@novell.com>
9585         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9586         to nullables.
9588 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9590         * verify.c (verify_type_compatibility_full): Revert change
9591         to allow converting a native int to unmanaged pointer be verifiable
9592         under non-strict mode.
9593         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9595         * verify.c: Added some TODOs.
9597 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9599         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9600           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9601           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9603         Code is contributed under MIT/X11 license.
9605 2008-09-02  Jb Evain  <jbevain@novell.com>
9607         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9609 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9611         reflection.c (typebuilder_setup_fields): Handle classes with
9612         explicit size.
9614 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9616         class.c (mono_class_setup_events): Add memory barrier due to
9617         double checked locking.
9618         
9619         class.c (mono_class_setup_properties): Same.
9621 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9623         * class.c (mono_class_is_assignable_from): Fix the build.
9624         
9625         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9626         before accessing klass->interface_bitmap. Fixes #421744.
9628 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9630         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9631         the runtime into no-exec mode, useful when running the AOT compiler.
9633         * appdomain.c gc.c object.c: Avoid executing managed code when running
9634         in no-exec mode.
9635         
9636         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9638         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9639         special case when the mono_assembly_loaded () returns NULL because the 
9640         search hook is not installed.
9642 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9644         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9645         crashes in bstr marshalling on linux.
9647 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9649         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9650         with more than one parameter.
9652 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9654         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9655         start/stop flow control as well when turning off ICANON (allows
9656         C-s and C-q to be read by Console.ReadKey).
9658 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9660         * class.c (mono_class_init): Move the initialization of nested classes
9661         into mono_class_get_nested_types (). Fixes #418433.
9663         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9664         flag.
9666         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9667         iterating tough the nested classes of a class.
9669 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9671         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9672         on arm.
9674 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9676         * console-io.c (sigcont_handler): Support signal chaining for
9677         SIGCONT.
9679         (console_set_signal_handlers): Use best practices with sigaction,
9680         clear the structure before using it. 
9682 2008-08-22  Robert Jordan  <robertj@gmx.net>
9684         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9685         Fix the Windows build.
9687 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9689         * class.c (mono_class_generic_sharing_enabled): Make the default
9690         sharing mode 'corlib'.
9692 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9694         * console-io.c (console_set_signal_handlers): Fix a warning.
9696         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9697         method normally, the JIT will take care of avoiding recursion.
9699 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9701         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9703         Code is contributed under MIT/X11 license.
9705 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9707         * console-io.c (sigcont_handler): We need to restore the entire
9708         termios state, not only the original settings, as things like echo
9709         can be controlled after this (Booish exposes this issue with its
9710         own ReadLine implementation).
9712         Additionally, we need to set the terminal back into keypad_xmit
9713         mode.
9714         
9715         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9716         string as a paramter as well.   Otherwise we get different
9717         keyboard sequences.
9719 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9721         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9722         delegates with byref out parameter passing. Fixes #351520.
9724         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9725         a generic context.
9726         (mono_type_get_desc): Add the type arguments for GENERICINST.
9727         (mono_method_full_name): Stringify the class name using mono_type_full_name
9728         so it picks up generic arguments.
9730 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9732         * console-io.c: Removed debug output.
9734 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9736         reflection.c (mono_reflection_create_runtime_class): Alloc
9737         the nested classes linked list using the dynamic image mempool.
9738         Fixes leak in corlib compilation.
9740 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9742         * console-io.c: Fix incredibly annoying behavior on the console
9743         after resuming execution after control-z.   This affected every
9744         console application.
9746 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9748         * mempool-internals.h: Header for mono private mempool functions. The first
9749         two function are for allocating glib linked lists using pools.
9751         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9753         * Makefile.am: Added mempool-internals.h.
9755 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9757         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9758         (mono_domain_free): Ditto.
9760         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9761         be used by the JIT to store its domain-specific information, instead of putting
9762         it directly into MonoDomain.
9764         * domain.c (mono_install_create_domain_hook): New helper function to install
9765         a hook which initializes domain->runtime_info.
9767         * domain.c (mono_install_free_domain_hook): Ditto.
9768         
9769 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9771         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9772         asserting if the ares parameter is null.
9774         * mono-perfcounters.c: Fix warnings.
9776         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9777         is not needed, don't check for interruptions either.
9778         (mono_marshal_get_delegate_end_invoke): Ditto.
9780 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9782         * mono-perfcounters.c (predef_readonly_counter): added support for
9783         reading the ASP.NET Requests Queued counter from another process.
9785 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9787         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9788         MonoImage to simplify the AOT code.
9790 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9792         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9793         marshalling. Fixes #416078.
9795 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9796         
9797         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9798         it is set, looking up the icall address is deferred to the JIT, since 
9799         in embedded scenarios, the icall might not be registered in the runtime
9800         doing the AOT compilation. Backported from the 2.0 branch.
9802 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9804         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9805         Fixes #415621.
9807 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9809         * Makefile.am: added support for cross-compilation.
9811 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9813         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9815 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9817         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9819 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9821         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9822         mono-perfcounters.c: performance counters implementation.
9824 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9826         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9827         to gpointer, letting the AOT code decide what to store in it.
9829 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9831         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9832           mono_class_setup_methods if the methods are not initialized.
9834         Code is contributed under MIT/X11 license.
9836 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9838         * verify.c: Remove some debug code I commited by accident.
9840         * verify.c (mono_method_is_valid_in_context): Change the return value
9841         to make possible to distinguish between invalid and unverifiable.
9843         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9844         methods.
9846 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9848         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9849         constraints. Fixes regression in gtest-253.
9851 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9853         * verify.c (mono_verifier_verify_class): Don't allow generic types
9854         with explicit layout.
9856         * verify.c (mono_method_verify): Check locals and argument types.
9858 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9860         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9861         wait if the thread is in StopRequested state.
9863         * class.c (mono_class_from_name): Refactor the module searching code into
9864         a separate function so it can be reused in the AOT case too.
9866 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9868         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9869         Check both the type and it's generic type definition for loader errors.
9870         
9871         * verify.c (mono_method_is_valid_in_context): Don't generate another
9872         error when a type errors occur, this leads to the wrong exception been
9873         thrown.
9875 2008-07-28  Dick Porter  <dick@ximian.com>
9877         * icall-def.h
9878         * process.c
9879         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9880         New internal calls to duplicate and close a process handle.
9882 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9884         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9886 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9888         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9890 2008-07-27  Robert Jordan  <robertj@gmx.net>
9892         * class.c (mono_class_init): Don't compute class.has_finalize for
9893         valuetypes. Fixes #412477.
9895 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9897         * verify.c: Implement constraint equivalence checking.
9898         This is required when a generic parameter is used as
9899         argument to a constrained one.
9901         Fixes #410637.
9903 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9905         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9907         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9909         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9910         synch with managed object layout.
9912 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9914         * verify.c (do_branch_op): Handle valuetypes and generic
9915         arguments properly.
9917         * verify.c (do_cmp_op): Same.
9919         Fixes #410383.
9921 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9923         * generic-sharing.c: Fix memory leaks.
9925         * class.c, class-internals.h: Make
9926         mono_class_inflate_generic_type_with_mempool() non-static.
9928 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9930         * pedump.c (dump_verify_info): Dump full class name.
9932 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9934         * generic-sharing.c: Removed some old code that didn't do anything.
9936 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9937         * profiler.c: Added runtime_initialized_event,
9938         mono_profiler_install_runtime_initialized and
9939         mono_profiler_runtime_initialized. This new hook tells the profiler
9940         when the runtime is sufficiently initialized to be able to call
9941         mono_thread_attach on the root appdomain.
9942         * profiler.h, profiler-private.h: Likewise.
9944 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9946         * verify.c (do_cast): Do boxing for generic arguments as well.
9948         * class.c (is_nesting_type): Drop generic instantiations before
9949         checking for nesting.
9951         * class.c (can_access_instantiation): Allow access to generic
9952         arguments.
9954 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9956         * verify.c (verify_class_for_overlapping_reference_fields):
9957         On some cases, the field size might be zero, guard against that.
9958         Fix the explicit layout check to work as expected.
9960 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9962         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9963         mono_thread_resume () during shutdown, since the thread we want to abort
9964         might be suspended.
9966 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9968         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9969         warning.
9971         * debug-mono-symfile.c: Fix a warning.
9973         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9975         * object.c (mono_class_vtable): Check if exception_type is set, and return
9976         NULL as defined by the function comments.
9978 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9980         * mempool.c: Use malloc for every single mempool allocation if the
9981         configure option is set.  This makes it easier to track mempool
9982         allocations with tools like Valgrind.
9984 2008-07-22  Jb Evain  <jbevain@novell.com>
9986         * reflection.c (create_dynamic_mono_image): emit the same
9987         metadata version that SL2 does when creating a SL2 image.
9989 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9991         * icall-def.h:
9992         * icall.c: New icall System.Enum:get_hashcode. This function
9993         avoids the overhead of boxing the enum to the underlying type.
9995 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9997         * reflection.c (mono_method_get_object): Don't let static RGCTX
9998         invoke wrappers get into MonoReflectionMethods.
10000 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10002         * object-internals.h:
10003         * object.c: New mono_runtime_class_init_full function
10004         that makes throwing the exception optinal.
10006         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10007         for the case where the exception object is supplied.
10009 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10011         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10012         old ld versions.
10014         Contributed under MIT/X11 license.
10016 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10018         * string-icalls.c (ves_icall_System_String_InternalSplit):
10019         Optimize array allocation by caching the MonoClass of the
10020         array type.
10022         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10024         * reflection.c (mono_param_get_objects): Same.
10026 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10028         * icall-def.h:
10029         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10030         It inflates the given type using the class context.
10032 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10034         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10035         the vtable if it already exists.
10037         * object-internals.h: Add mono_class_try_get_vtable as part of the
10038         internal API.
10040         * reflection.c (mono_type_get_object): Use the MonoObject from the
10041         vtable when possible. Reduces locking contention on reflection heavy
10042         code.
10044 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10046         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10047         g_bit_nth_msf () since that macro is not implemented in eglib.
10049 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10051         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10052         on platforms which do not support it.
10054 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10056         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10058 2008-07-11  Martin Baulig  <martin@ximian.com>
10060         * mono-debug-debugger.h
10061         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10063         * mono-debug-debugger.c
10064         (_mono_debugger_interruption_request): New global volatile variable.
10065         (mono_debugger_check_interruption): New public function.
10067         * threads.c
10068         (mono_thread_current_check_pending_interrupt): Call
10069         mono_debugger_check_interruption().
10070         (mono_thread_interruption_checkpoint_request): Likewise.
10072 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10074         * verify.c: Add more type checks for loaded types. Verify the result
10075         handle from ldtoken.
10077 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10079         * loader.c (field_from_memberref): Don't crash if the field
10080         wasn't found.
10082 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10084         * verify.c: Verify if type and method instantiations
10085         don't have invalid VAR or MVAR arguments.
10087 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10089         * verify.c: Fix double free of function pointer list.
10091 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10093         * object.c (mono_string_to_utf8): Comment the new code as it
10094         breaks under eglib.
10096 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10098         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10100 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10102         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10103           is not throw too many times.
10105         Code is contributed under MIT/X11 license.
10107 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10109         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10110         debugging is turned off.
10112 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10114         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10116 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10118         * class-internals.h, class.c: Added new generic sharing option:
10119         Share only stuff in System.Collections.Generic, which is now the
10120         default.
10122 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10124         * generic-sharing.c, class-internals.h: New function for getting a
10125         generic method in a generic class given the corresponding method
10126         for a different instantiation of the class.  Partly refactored
10127         from mini-trampolines.c.
10129         * class.c: Make sure generic methods have a class_inst if they are
10130         part of a generic class.
10132         * metadata.c (mono_type_stack_size_internal): Handle type
10133         variables.
10135 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10137         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10138         Signifies whether information on the this/vtable/mrgctx variable
10139         is available.
10141 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10143         * object.c, object-internals.h, icall.c: New function
10144         mono_delegate_ctor_with_method(), which does the same as
10145         mono_delegate_ctor(), but takes an explicit method argument
10146         instead of taking the method from the jit info.
10148         * marshal.c: When creating a delegate with an inflated method take
10149         the "this" argument as the target class for the castclass.
10151 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10153         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10154         mono_jit_info_table_find() to perform very badly in some cases.
10156 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10158         * icall.c (type_from_typename): Handle 'string'.
10160         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10161         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10163 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10165         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10167         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10168         number of available managed allocator types.
10170         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10171         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10173 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10175         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10176         which is a low level lock protecting just the 'jit_code_hash' hash table.
10178         * domain.c: Initialize+cleanup jit_code_hash_lock.
10179         
10180 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10182         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10183         after initialization.
10185         * coree.h: Make MonoFixupExe internal.
10187         Contributed under MIT/X11 license.
10189 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10191         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10192         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10193         as well.
10194         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10195         image being loaded is a CLI image and _CorValidateImage gets called.
10197         * coree.h: Add MonoLoadImage.
10199         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10200         instead of LoadLibrary.
10202         Contributed under MIT/X11 license.
10204 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10206         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10207         for any primitive type.
10209 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10211         * object.c (mono_array_new_specific): Optimize this and the other allocation
10212         functions a bit.
10213         
10214         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10215         domains too if mono_dont_free_domains is set.
10217         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10218         whenever to free appdomain data after it has been unloaded.
10220         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10221         
10222 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10224         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10225         (mono_method_get_equivalent_method): Fix a warning.
10227         * object.c (mono_message_init): Avoid looking up array types for each call.
10229 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10231         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10232         call.
10234         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10235         even more.
10237         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10238         each iteration.
10240         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10241         fields of an enum.
10243 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10245         * object.c (mono_value_box): Fix boxing of nullables.
10247 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10249         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10250         mono_module_handle that is defined by the linker; no initialization required.
10251         * coree.h: Remove mono_module_handle, add __ImageBase, update
10252         mono_image_open_from_module_handle.
10253         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10254         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10255         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10256         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10257         to 4 GB away from image base address. IA64 version is not tested but was very
10258         easy to implement and should work if we ever need it.
10259         * domain.c (mono_init_internal): Avoid system error message boxes.
10260         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10261         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10262         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10263         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10264         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10266         Contributed under MIT/X11 license.
10268 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10270         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10271         as part of the private mono API.
10272         
10273         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10274         Do proper argument checking for methods that belong to generic classes.
10275         Do proper type resolution for GMFH/2.
10276         Fixes #377324.
10277         
10278 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10280         * verify.c (do_switch): Fix a memory corruption bug with
10281         the jump index is out of bound.
10283 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10285         * verify.c: Disable debug code.
10287 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10289         * reflection.c (mono_image_get_methodbuilder_token): Use
10290         mono_image_get_methodspec_token_for_generic_method_definition
10291         instead of mono_image_get_memberref_token. We cache more memberef
10292         entries now.
10294 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10296         * verify.c: Inflate exception clause types.
10297         Fixes #402606.
10298         
10299 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10301         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10302         name.
10304         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10306         * reflection.c (mono_image_create_method_token): Same.
10308 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10310         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10311         It does the same as mono_image_get_methodref_token but works on
10312         MethodBuilder.
10314         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10315         and always generate a methodspec. This follows the old behavior and fixes
10316         the regressions in System.Core. 
10318 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10320         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10321         don't event mono_class_get () succeeds. Fixes #402182.
10323 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10325         * metadata-internals.h: Added MonoDynamicImage::methodspec
10326         hashtable to store methodspec tokens created for MethodBuilders.
10328         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10329         MethodBuilders as open instantiations if a methodspec was requested.
10331         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10333         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10335         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10337         Fixes bug #349190.
10339 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10341         * loader.c (method_from_methodspec): Avoid crashing if the
10342         method lookup fails.
10344 2008-06-20  Dick Porter  <dick@ximian.com>
10346         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10347         classes being in a different assembly.  Fixes bug 399184.
10349 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10351         * loader.c (mono_loader_init): Make this callable multiple times.
10352         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10353         the runtime is initialized. Fixes #401755.
10355 2008-06-19  Dick Porter  <dick@ximian.com>
10357         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10358         Fixes bug 349688.
10360 2008-06-19  Dick Porter  <dick@ximian.com>
10362         * socket-io.c:
10363         * icall-def.h: Implement Socket generic Send() and Receive()
10364         methods.  Fixes bug 395168.
10366 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10368         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10370         Contributed under MIT/X11 license.
10372 2008-06-18  Martin Baulig  <martin@ximian.com>
10374         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10375         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10376         set to 80.0.  The debugger <-> runtime interface is now frozen as
10377         well.   
10379         * mono-debug.c
10380         (mono_debug_debugger_version): Bump to 4.
10382 2008-06-18  Martin Baulig  <martin@ximian.com>
10384         * debug-mono-symfile.c
10385         (load_symfile): Don't check the minor version.
10387         * debug-mono-symfile.h: Bump the version number to 50.0.
10389 2008-06-18  Martin Baulig  <martin@ximian.com>
10391         * debug-mono-symfile.c
10392         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10393         minimum required version.
10395 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10397         * reflection.c (mono_custom_attrs_from_property): Fix support for
10398         retriveving cattrs of dynamic inflated generic types.
10400         * reflection.c (mono_custom_attrs_from_event): Same.
10402         * reflection.c (mono_custom_attrs_from_field): Same;
10404         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10406         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10407         Moved to metadata.c.
10409         * metadata.c: New functions to retrive the equivalent field, event
10410         of property from the generic type definition.
10412         * metadata-internals.h: Added new functions from metadata.c.
10414 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10416         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10417         to cached in a mempool is used.
10419         * metadata.c (free_generic_class): In some situations field generic_info type
10420         is not properly dup'ed and leads to double free'ing.
10422         Fixes #400643.
10424 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10426         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10427         this arguments (will be needed later for generic methods).
10428         Collect stats.
10430 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10432         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10433         Create a static RGCTX invoke wrapper for methods which require it.
10435 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10437         * object.c, class-internals.h: New function for checking whether
10438         an individual field is special static.
10440 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10442         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10443         linear search since the table is sorted.
10445         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10446         Fixes #324180.
10448 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10450         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10451         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10453         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10455         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10456         
10457         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10458         InterlockedCompareExchange to query and modify 
10459         thread->interruption_requested.
10461         * object-internals.h (struct _MonoThread): Change interruption_requested
10462         to a gint32 so it can be modified by atomic operations. Add 
10463         'critical_region_level' from the managed side, change small_id to a guint32,
10464         add new set of 'unused' fields.
10466         * appdomain.c: Bump corlib version.
10468 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10470         * class.c (mono_class_from_name): Search modules as well. Fixes
10471         #322332.
10473 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10475         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10476         templates.  Templates are generalized with an additional type_argc
10477         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10478         have type_argc>0.
10480         * domain-internals.h, domain.c: New hash table for looking up
10481         MRGCTXs.
10483         * metadata.c, metadata-internals.h: Rename hash and equal
10484         functions for MonoGenericInst's and make them public.
10486         * class-internals.h: New data structures for the MRGCTX.  Macros
10487         for distinguishing slots in the RGCTX and the MRGCTX.
10489 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10491         * object.c (mono_method_get_imt_slot): Put the same methods of
10492         different instantiations of the same generic interface in the same
10493         IMT slots, to make generic sharing simpler.
10495 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10497         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10499         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10500         This function works just like mono_metadata_field_info, but
10501         accept a mempool as argument to be used allocating memory.
10503         * marshal.c (mono_marshal_load_type_info): Use new function
10504         to load marshal data into image mempool.
10506 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10508         * class.c (mono_class_inflate_generic_type_with_mempool):
10509         This function allows to inflate a generic type using
10510         a mempool.
10512         * class.c (inflate_generic_type): Take a mempool as argument
10513         and use it to do type dup'ing.
10515         * class.c (mono_class_setup_fields): Field type for generic
10516         generic classes are allocated from the image mempool.
10518         * metadata.c (free_generic_class): Inflated field type is
10519         now allocated in the image mempool.
10521 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10523         * threads.c (thread_cleanup): Free MonoThread::name.
10525 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10527         * appdomain.c (ensure_directory_exists): avoid unnecessary
10528         mkdir(2) calls when the shadow directory already exists.
10529         (mono_make_shadow_copy): copy also satellite assemblies from the
10530         private bin directories.
10532 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10534         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10535         
10536         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10537         a page boundary. Fixes #396219.
10539 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10541         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10542         due to double-checked locking.
10544 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10546         * assembly.c (build_assembly_name): Release memory on failure.
10548         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10550 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10552         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10553         memory on failure.
10555 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10557         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10558         memory on failure.
10560 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10562         * loader.c (field_from_memberref): Check if field signature type is equal
10563         to the non-inflated type of the field. Fixes #398980.
10565 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10567         * assembly.c (mono_assembly_load_from_full): Call 
10568         mono_assembly_load_friends () outside the assemblies lock, since it can
10569         acquire the loader lock. Fixes #323696.
10571         * reflection.c (resolve_object): Inflate the inst with the context for
10572         FieldOnTypeBuilderInst. Fixes #399010.
10574 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10576         * reflection.c (mono_image_get_field_on_inst_token): Don't
10577         inflate the field to encode it's signature. If it's a
10578         VAR or MVAR it should stay that way in the signature.
10579         Fixes #399047.
10581 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10583         * reflection.c (resolve_object): Release memory of inflated types.
10585 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10587         * loader.c (mono_method_get_signature_full): Remove assert about
10588         loading a methodspec to a generic method. We have such methods, such as
10589         System.Threading.Interlocked::CompareExchange<T>.
10590         This assert was removed since it crashes the verifier when it checks
10591         methods calling CompareExchange<T>.
10593 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10595         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10596         of Type array and not MonoType.
10598 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10600         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10601         <lupus@ximian.com>
10603 2008-06-10  Martin Baulig  <martin@ximian.com>
10605         * debug-mono-symfile.h
10606         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10607         changes to the file format, but we were generating incorrect
10608         source file indices in the line number table due to a bug, which
10609         made backtraces report an incorrect source file.
10611 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10613         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10614         mini/debug-mini.c to here.
10616         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10618         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10619         use it to release structs returned by mono_debug_find_method.
10621 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10623         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10624         since it needs to set method->slot for all interface methods.
10626 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10628         * class-internals.h: Forgot to add.
10630 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10632         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10634         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10635         Lookup the custom attributes from property_hash.
10637         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10638         in property_hash. Allocate all data using the image mempool.
10640         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10641         for dynamic_custom_attrs to checks if the image is dynamic.
10643 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10645         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10646         assemblies array.
10647         
10648         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10649         runtime functions while holding the domain assemblies lock.
10651 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10653         * verify.c: Reapplied the last bit of the reverted changes.
10655 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10657         * verify.c: Reapplied more of the reverted changes.
10659 2008-06-09  Martin Baulig  <martin@ximian.com>
10661         * debug-mono-symfile.c (load_symfile): Check the major version
10662         first; if it's wrong, don't print the minor version in the error message.
10664 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10666         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10667         lock instead of the domain lock to avoid deadlocks, since the thread might
10668         already hold the loader lock.
10670         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10671         (mono_thread_attach): Ditto.
10673         * monitor.c: Use a TLS variable for holding the current thread id instead
10674         of calling pthread_self ().
10675         (mono_monitor_init_tls): New internal function to initialize the TLS
10676         variable.
10677         (mono_monitor_try_enter_internal): Put the owner == id check after the
10678         owner == 0 check.
10680         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10681         missed optimizations when using gcc-4.3.
10683 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10685         * reflection.c (mono_dynamic_image_free): Free the memory
10686         used by MonoGenericParam in MonoDynamicImage::gen_param.
10688         * reflection.c (mono_reflection_setup_generic_class): Allocate
10689         container from mempool.
10691         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10692         container from mempool.
10694 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10696         * threads.c (mono_set_pending_exception): New internal function to set the
10697         pending exception of the current thread.
10698         (mono_thread_get_and_clear_pending_exception): Check for 
10699         thread->pending_exception as well.
10701         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10703         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10704         it can trigger a collection.
10706 2008-06-06  Martin Baulig  <martin@ximian.com>
10708         Merged the `debugger-kahalo' branch.
10710         * mono-debug.h
10711         (MONO_DEBUGGER_VERSION): Bumped to 72.
10713         * debug-mono-symfile.h
10714         (MonoSymbolFileMethodIndexEntry): Removed.
10715         (MonoSymbolFileMethodEntry): New public typedef.
10716         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10717         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10718         `data_offset'.
10719         (MonoSymbolFileMethodEntry): Removed.
10720         (MonoSymbolFileLexicalBlockEntry): Removed.
10721         (MonoSymbolFileLineNumberEntry): Removed.
10722         (MonoDebugLexicalBlockEntry): Removed.
10723         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10724         removed `num_il_offsets' and `il_offsets'.
10725         (MonoSymbolFile): Replace `version' with `major_version' and
10726         `minor_version'.
10727         (MONO_SYMBOL_FILE_VERSION): Replace with
10728         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10729         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10731         * debug-mono-symfile.c
10732         (mono_debug_symfile_lookup_location): Add support for the new line
10733         number table format.
10735 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10737         * metadata.c (free_generic_class): Release the inflated
10738         MonoClass of dynamic generic classes if it's not a generic
10739         type definition.
10741 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10743         * verify.c: Reapplied more of the reverted changes.
10745 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10747         * reflection.c (lookup_custom_attr): Clean the cached flag or
10748         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10749         for SRE types.
10751 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10753         * verify.c: Reapplied a small part of the reverted changes.
10755 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10757         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10759         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10760         previously in managed code.
10761         (mono_monitor_exit): Ditto.
10762         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10764         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10765         the managed definition.
10767 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10769         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10771 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10773         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10774         
10775         * monitor.c: Add some micro optimizations.
10777         * icall.c (type_from_typename): Handle 'bool'.
10779 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10781         * verify.c: Implement constructor verification per P III 1.8.1.4.
10782         Fixes #396716.
10784 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10786         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10787         holding the assemblies lock here too.
10789 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10791         * verify.c: Kill stack_top function.
10793 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10795         * verify.c: Kill stack_get function.
10797 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10799         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10801 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10803         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10804         more reliable.
10806         * verify.c (mono_method_verify): Inflate params and locals to avoid
10807         mismatch when checking for compatibility.
10809 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10811         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10812         Length prefix should be size in bytes. Fix bug #339530.
10813         
10814         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10815         Length prefix should be size in bytes. Fix bug #339530.
10817         Code is contributed under MIT/X11 license.
10819 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10821         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10823         Contributed under MIT/X11 license.
10825 2008-06-05  Martin Baulig  <martin@ximian.com>
10827         * mono-debug-debugger.c
10828         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10830 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10832         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10833         while holding the assemblies lock to prevent deadlocks. Handle the case
10834         where the search hook returns NULL but the assembly was still loaded.
10835         Fixes #323696.
10837         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10838         modify domain state.
10840 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10842         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10843         * Makefile.am (pedump_LDADD): Post-process object files and
10844         add dtrace-generated object file, if necessary.
10846         Code is contributed under MIT/X11 license.
10848 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10850         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10852 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10854         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10856 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10858         * threads.c: Try to free everything from the delayed free table
10859         when shutting down threads, and set the variable to NULL after the
10860         table is freed so that calling
10861         mono_thread_hazardous_try_free_all() when shutting down the root
10862         domain doesn't crash.
10864 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10866         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10867         the caller if resulting type was inflated.
10869         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10870         was inflated.
10872         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10875 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10877         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10878         class library tests.
10880         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10881         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10882         #396989.
10884 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10886         * domain.c, domain-internals.h: The JIT infos are now freed by the
10887         JIT info table code.  They are freed immediately if there only a
10888         single JIT info table in circulation.  If there is more, the free
10889         is delayed via a queue.
10891         * threads.c, threads-types.h: New hazard pointer function for
10892         freeing all freeable delayed items in one sitting.
10894 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10896         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10898         * reflection.c (typebuilder_setup_properties): Same.
10900         * reflection.c (typebuilder_setup_events): Same.
10902 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10904         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10905         and use it for allocating memory.
10907         * reflection.c (mono_marshal_spec_from_builder): Same.
10909         * reflection.c: Change code to use new signatures.
10911         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10913 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10915         * decimal.c (rescale128): Put back one line which was accidently commented
10916         out.
10917         
10918         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10919         to cause crashes.
10921 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10923         * reflection.c (mono_reflection_generic_class_initialize): Name must
10924         be always malloc'ed so we can free it later on. Do this for field, property
10925         and event.
10927         * metadata.c (free_generic_class): Free field, property and event names.
10929 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10931         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10932         instead of g_memdup.
10934         * reflection.c (typebuilder_setup_fields): Same.
10936 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10938         * decimal.c (rescale128): Optimize this function a bit more.
10940 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10942         * metadata.c (free_generic_class): Release some memory from
10943         SRE generic classes.
10945 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10947         * reflection.c (mono_image_get_generic_field_token): No reference
10948         to name is kept, free it.
10950         * reflection.c (mono_reflection_generic_class_initialize): Free
10951         more memory of the inflated field.
10953 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10955         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10956         code.
10958 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10960         * reflection.c (mono_dynamic_image_free): Release memory used by
10961         MonoDynamicImage::array_methods elements.
10963         * reflection.c (assembly_add_win32_resources): Release memory after
10964         encoding.
10966 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10968         * decimal.c (log2_32): Use an optimized version for this function too.
10969         
10970         * decimal.c (log2_64): Fix this on 32 bit machines.
10972 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10974         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10976         * class.c (mono_metadata_signature_deep_dup): Same.
10978         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10979         a mempool.
10981         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10983         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10985         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10987         * class-internals.h: Update signatures to take a MonoMemPool.
10989 2008-06-02  Dick Porter  <dick@ximian.com>
10991         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10992         * icall-def.h: Add
10993         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10994         FormatMessage API to get the error text.  Fixes bug 321827.
10996 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10998         * decimal.c: Add some micro optimizations to make decimal operations faster.
11000 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11002         * reflection.c (method_encode_clauses): Take a mempool
11003         as parameter and use it to allocate the clause array.
11005         * reflection.c (mono_image_get_field_on_inst_token): Free
11006         the inflated type after encoding it.
11008         * reflection.c (mono_dynamic_image_free): Free each element
11009         of MonoDynamicImage::gen_params.
11011         * reflection.c (reflection_methodbuilder_to_mono_method):
11012         Allocate the generic param array from the mempool.
11013         Allocate signature params from the mempool.
11015         * reflection.c (mono_reflection_generic_class_initialize):
11016         Free inflated fields after been used.
11018 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11020         * icall.c: Reapply the memory leak fixes as they no
11021         longer make mono crash.
11023 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11025         * reflection.c (mono_type_get_object): Don't store the suplied
11026         MonoType with type_hash. A caller which pass a type that
11027         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11028         might end with a pointer to freed memory.
11029         The solution is to use byval_arg or this_arg from the associated
11030         MonoClass of the supplied type.
11032 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11034         * icall.c: Revert the rest of the last change as it breaks the build too.
11036 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11038         * icall.c: Revert a leak fix as it's breaking the build.
11040 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11042         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11044 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11046         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11048 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11050         * icall.c: Fix some memory leaks.
11052 2008-05-29  Dick Porter  <dick@ximian.com>
11054         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11055         async socket operations from the pending list when a socket
11056         closes.  Leaving it until the threadpool services the event
11057         exposes a race condition when a socket descriptor is reused.
11058         Fixes bug 377589.
11060 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11062         * object.c: Fix negative index check for array alocation.
11064 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11066         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11067         This check is performed by the verifier for IL created delegates
11068         and by Delegate::CreateDelegate for programatically created ones.
11069         Fixes #372406.
11071 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11073         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11074         Fix code to use mono_array_size_t instead of int.
11076         Based on patch by Luis F. Ortiz.
11077         Contributed under X11 license.
11078         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11080 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11082         * icall.c: Added ves_icall_System_Array_GetLongLength and
11083         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11084         arrays.
11086         * icall.h: Export both new functions.
11088         Based on patch by Luis F. Ortiz.
11089         Contributed under X11 license.
11090         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11092 2008-05-28  Martin Baulig  <martin@ximian.com>
11094         The debugger now requires exactly r103463.
11096         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11097         This version is not supported by the debugger, wait for 72.
11099 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11101         * object.h: Changed array related functions to use
11102         mono_array_size_t instead of guint32. Forgot to commit this file.
11104         Patch by Luis F. Ortiz.
11105         Contributed under X11 license.
11106         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11109 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11111         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11112         don't define it. Use the number literal instead.
11114 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11116         * icall.c: Changed array related functions to use
11117         mono_array_size_t instead of guint32.
11119         * icall.c (ves_icall_System_Array_GetLength): Check for length
11120         overflow under MONO_BIG_ARRAYS.
11122         Based on patch by Luis F. Ortiz.
11123         Contributed under X11 license.
11124         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11126 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11128         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11130         Based on patch by Luis F. Ortiz.
11131         Contributed under X11 license.
11132         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11134 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11136         * object.c, object.h: Changed array related functions to use
11137         mono_array_size_t instead of guint32.
11139         Patch by Luis F. Ortiz.
11140         Contributed under X11 license.
11141         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11143 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11145         * object.h: Introduced mono_array_size_t typedef. This must be used
11146         in all places an array length is expected. This is 64bits wide if
11147         MONO_BIG_ARRAYS is enabled.
11149         Patch by Luis F. Ortiz.
11150         Contributed under X11 license.
11151         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11153 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11155         * security-manager.c class.c: Set the class exception info by calling
11156         mono_class_set_failure ().
11158         * class.c (mono_class_get_exception_data): New accessor function.
11159         (mono_class_set_failure): Store exception_data in the property hash.
11161         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11162         the struct as a property.
11164         * loader.c (mono_get_method_full): Store the lookup result for method
11165         tokens in method_cache, the others in methodref_cache to decrease the memory
11166         usage of hash tables.
11168         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11169         (mono_image_init): method_cache is lazy inited now.
11171         * metadata-internals.h (struct _MonoImage): Change method_cache to
11172         a MonoValueHashTable, add a separate methodref_cache.
11174 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11176         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11177           Double.ToString as exposed by Bug #383531.
11179 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11181         * number-formatter.h: Make some tables static.
11183         * class.c (mono_method_set_generic_container): New accessor function.
11184         (mono_method_get_generic_container): Ditto.
11186         * class-internals.h (struct _MonoMethod): Remove rarely used 
11187         'generic_container' field, store it in the property hash instead. Add 
11188         'is_generic' boolean field instead.
11190         * image.c (mono_image_init): Initialize property_hash.
11191         (mono_image_close): Destroy property_hash.
11193         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11194         hold rarely used fields of runtime structures belonging to this image.
11196         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11197         to get/set method->generic_container.
11199         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11200         generic methods.
11202 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11204         * class.c (mono_class_inflate_generic_method_full): Don't increase
11205         mono_stats.inflated_method_count for methods found in the cache.
11207         * threads.c (mono_thread_request_interruption): Add a comment about 
11208         QueueUserAPC ().
11210 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11212         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11213         interface_offsets_packed table.
11214         
11215         * class.c (mono_class_init): Remove some dead code.
11217         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11218         mono_class_setup_vtable () when CAS is active to detect security problems.
11220 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11222         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11224         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11225         parameters as it's irrelevant for delegate checking.
11227 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11229         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11231         * class.c (mono_class_init): Control the creation of a generic vtable using
11232         a global which is true by default, but set to false by the runtime startup code.
11233         
11234         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11235         Disabled for now since it breaks the embedding API.
11236         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11237         (mono_class_setup_methods): Add a memory barrier.
11239         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11240         when mono_class_init () doesn't compute the generic vtable.
11241         
11242 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11243         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11244         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11245         to support call chains (backtrace) in the stat profiler.
11246         * profiler.c, profiler-private.h: Likewise.
11248 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11250         * generic-sharing.c: Init generic class when a method of it is
11251         requested via a runtime generic context.
11253 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11255         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11257         * reflection.c (mono_type_get_object): Add a FIXME.
11259         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11261         * class.c (mono_class_get_method_by_index): New helper function, returning an
11262         entry in the class->methods array.
11264 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11266         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11267         Avoid creating a generic vtable for generic instances as well.
11268         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11269         generic instances.
11271 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11273         * loader.c (mono_get_method_constrained): Inflate the signature
11274         with class context. Fix #325283.
11276 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11278         * object.c (mono_class_create_runtime_vtable): Add a comment.
11280         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11281         where needed.
11282         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11283         (mono_class_setup_vtable_general): Add an assert.
11284         (mono_class_init): Avoid creating a generic vtable for arrays.
11286         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11287         here, let mono_class_init () do that.
11289         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11290         interfaces in mscorlib.
11292         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11293         interfaces. Add some comments.
11294         (mono_class_init): Call mono_class_setup_methods () here since it is no
11295         longer called by mono_class_setup_vtable ().
11297         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11298         not set in class->vtable.
11299         (mono_class_create_runtime_vtable): Reenable the disabled code.
11301         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11302         now as it causes some test failures.
11304         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11305         if using the vtable trampoline. Also remove some strange code which put the
11306         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11307         stuff as it is no longer needed.
11309 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11311         * pedump.c: Give make --verify all option check code as well.
11312         Using --verify code won't check for metadata now.
11314 2008-05-19  Martin Baulig  <martin@ximian.com>
11316         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11318         * mono-debug.c
11319         (_mono_debug_using_mono_debugger): New global variable; it's set
11320         directly by the debugger, so mono_debug_using_mono_debugger() also
11321         works after attaching.
11323 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11325         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11326         as we do double checked locking on MonoClass::runtime_info and
11327         MonoClassRuntimeInfo::domain_vtables.
11329 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11331         * debug-helpers.c (print_field_value): Fix a warning.
11333 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11335         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11336         set in the AOT case.
11338 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11340         * class.c (mono_class_setup_vtable_general): Use memory barriers
11341         as we do double checked locking on MonoClass::vtable.
11343 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11345         * reflection.c (resolve_object): Inflate only if the generic context
11346         is not null. Fixes #389886.
11348 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11350         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11351         instead of g_free.
11353         Code is contributed under MIT/X11 license.
11355 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11357         * class.c: Revert unrelated change.
11359 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11361         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11362         a generic instantiation, use mono_class_from_mono_type instead of playing
11363         with MonoType directly.
11365 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11367         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11368         checks must ignore generic instantiations, so mono_class_has_parent is not
11369         suitable. Fixes #390128.
11371 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11373         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11374         it to avoid registering tokens during metadata generation. Fixes #390023.
11376 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11378         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11379         consistent.
11381         Contributed under MIT/X11 license.
11383 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11385         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11386         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11387         to fixup the EXE image.
11388         (mono_cleanup): Use mono_close_exe_image.
11389         (mono_close_exe_image): New function.
11390         * image.c: Include "marshal.h".
11391         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11392         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11393         counting when the image is loaded outside of mono_image_open_full. Set status
11394         based on GetLastError.
11395         * coree.c: Include required headers. Add init_from_coree.
11396         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11397         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11398         (_CorExeMain): Set init_from_coree.
11399         (CorExitProcess): Only call ExitProcess for now.
11400         (CorBindToRuntimeEx): New stub implementation.
11401         (CorBindToRuntime): New function.
11402         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11403         (MonoFixupExe): ILONLY executables require no fixups.
11404         (mono_set_act_ctx): New function to set activation context.
11405         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11406         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11407         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11408         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11409         as MONO_INTERNAL.
11410         * domain-internals.h: Add mono_close_exe_image.
11412         Contributed under MIT/X11 license.
11414 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11416         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11417         size for generic param and event tables. Fixes #388977.
11419 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11421         * loader.c (mono_method_signature): Use memory barriers because of the double
11422         checked locking pattern.
11424         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11425         aborting or aborted as well. Fixes #376391.
11426         
11427         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11428         existing runtime state in the Suspend handler during shutdown.
11430 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11432         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11434         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11435         which are starting up or shutting down.
11437         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11438         this function never returns if the runtime is already shutting down.
11440         * icall.c (ves_icall_System_Environment_Exit): Update after 
11441         mono_threads_set_shutting_down () signature change.
11442         
11443 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11445         * class.c: Added can_access_instantiation to verify if the instantiation
11446         is visible. Fix access check for nested types as they returned TRUE
11447         before doing type and generic instantiation visibility checks.
11449 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11451         * reflection.c (mono_reflection_create_generic_class): The created type
11452         must have a different container from its TypeBuilder. Otherwise they
11453         will end sharing generic arguments, which is wrong.
11455         Due to the sharing, making a generic instance of the created type using
11456         the TypeBuider generic arguments resulted in the generic type definition
11457         been returned, which is wrong as well.
11459         As a bonus the code was leaking the type_params array. This memory should
11460         be allocated from the image mempool.
11462         This fixes bug #354047.
11464 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11466         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11467         to here         as they are now used in assembly.c new code.
11468         Added a skipverification flag to MonoAssembly.
11469         New internal function mono_assembly_has_skip_verification.
11471         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11472         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11473         part of #387274.
11475 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11477         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11478         needed. Fixes #387034.
11480         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11482 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11484         * assembly.c (mono_assembly_load_reference): Prevent crash while
11485         disassembling Silverlight 2.0 executables while we still do not
11486         have GACed libraries.
11488 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11490         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11492 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11494         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11495         of the dynamic case. Fixes #387404.
11497 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11499         *verify.c (mono_verifier_is_class_full_trust): If under
11500         verify_all and the verifier mode was not set, only
11501         gac and corlib types are fulltrust. This makes --verify-all
11502         usable to detect unverifiable code, which is the expected
11503         use case.
11505 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11507         * verify.h: Ops, commited the header with debug
11508         enabled.
11510 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11512         * verify.c (merge_stack): Use the new value on unverifiable
11513         stack merges.
11515         * verify.c (verify_type_compatibility_full): Comparison
11516         of nullable types can't use mono_class_is_assignable_from.
11518         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11519         that makes all verification errors be reported.
11521         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11522         mono_method_verify.
11524 2008-05-05  Robert Jordan  <robertj@gmx.net>
11526         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11527         support for value types. See #386415.
11529         * object.c: comments.
11531         Code is contributed under MIT/X11 license.
11533 2008-05-05  Martin Baulig  <martin@ximian.com>
11535         * debug-mono-symfile.h
11536         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11537         for old pre-terrania symbol files.
11539 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11541         * mono-config.c: Add ppc64 architecture.
11543         Code is contributed under MIT/X11 license.
11545 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11547         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11548           PPC64 uses function descriptors as well.
11550         Code is contributed under MIT/X11 license.
11552 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11554         * object.c (compute_class_bitmap): Ignore literal static fields.
11556         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11557         var has an invalid format.
11558         (describe_ptr): Add some sanity checks for the vtable.
11559         (add_nursery_frag): Clear unused nursery fragments.
11560         (major_collection): Clear all remaining nursery fragments.
11562 2008-05-03  Robert Jordan  <robertj@gmx.net>
11564         * image.c, metadata-internals.h: add thunk_invoke_cache.
11566         * marshal.c, marshal.h: implement
11567         mono_marshal_get_thunk_invoke_wrapper ().
11569         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11571         Code is contributed under MIT/X11 license.
11573 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11575         * verify.c (do_leave): Empty the stack.
11577 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11579         * class.c (mono_class_is_assignable_from): Variance
11580         doesn't work between reference and value types. For example,
11581         given type C<T+>, C<int32> is not assignable to C<object>.
11582         Break the argument checking loop on first error. 
11584 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11586         * icall.c : base64_to_byte_array() needs some more strict
11587           check for sequence of '=' characters. Patch by Santa
11588           Marta (http://deee.g.hatena.ne.jp/santamarta).
11590           Contributed under MIT/X11 license.
11591           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11593 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11595         * domain.c: Disable LoadLibrary support to fix Win32 build.
11597         Code is contributed under MIT/X11 license.
11599 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11601         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11602         to help with cache behaviour.
11604 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11606         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11607         method. 
11609 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11611         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11613 2008-05-01  Dick Porter  <dick@ximian.com>
11615         * process.c (process_get_fileversion): Only pass 16 bits of
11616         language ID to VerLanguageName.  Fixes bug 381204.
11618 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11620         * verify.c (mono_method_verify): Fix the comparison
11621         operator for code bounds check.
11623 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11625         * verify.c (mono_method_verify): Check the bounds of
11626         all access of the code array.
11628 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11630         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11632 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11634         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11635         not valid.
11637 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11639         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11640         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11641         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11642         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11643         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11644         mono_runtime_load.
11645         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11646         runtime initialization from metadata.
11647         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11648         (mono_set_rootdir): Use mono_get_module_file_name.
11649         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11650         handles.
11651         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11652         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11653         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11654         MonoCLIImageInfo. Add support for module handles.
11655         (load_cli_header): Update mono_cli_rva_image_map signature.
11656         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11657         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11658         (mono_image_rva_map): Add support for module handles.
11659         (mono_image_ensure_section_idx): Add support for module handles.
11660         (mono_image_close): Add support for module handles.
11661         (do_load_header): Add support for module handles.
11662         (mono_image_open_from_module_handle): New function for internal use.
11663         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11664         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11665         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11666         handles.
11667         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11668         * image.h: Add mono_image_fixup_vtable.
11669         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11670         support.
11671         * coree.h: New file.
11672         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11673         unsupported native code.
11674         (mono_marshal_set_callconv_from_modopt): New function splitted from
11675         mono_marshal_get_managed_wrapper.
11676         (mono_marshal_get_managed_wrapper): Use
11677         mono_marshal_set_callconv_from_modopt.
11678         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11679         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11680         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11681         that results in a deadlock when the runtime is loaded in _CorDllMain.
11682         * Makefile.am: Add coree.c and coree.h.
11684         Contributed under MIT/X11 license.
11686 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11688         * generic-sharing.c: Search for type arguments in array element
11689         types as well.
11691 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11693         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11695         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11697         * object.c: Don't setup the RGCTX when the vtable is created,
11698         because we're setting it up lazily now.
11700 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11702         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11703         64 bit support.
11705 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11707         * verify.c (verify_class_for_overlapping_reference_fields): 
11708         If class is under fulltrust allow reference types to overllap
11709         if they have the same RVA.
11711 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11713         * pedump.c: Added new flag valid-only, that makes the verifier
11714         behaves just like --security=validil. It won't fail type load
11715         due to unverifiable restrictions.
11717 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11719         * class-internals.h (struct MonoMethod): Added a verification_success
11720         field to cache verifier executions. Reduced MonoMethod:slot size by
11721         one bit.
11723 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11725         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11726         instead of a 'vt' argument to save an indirection and to allow these to be used
11727         for valuetypes.
11728         (scan_vtype): New helper function to scan an area using a gc descriptor.
11729         (mono_gc_wbarrier_value_copy): Implement this.
11730         (handle_remset): Add support for REMSET_VTYPE.
11731         (find_in_remset_loc): Ditto.
11732         (mono_gc_base_init): Allow some debugging options to be controlled through the
11733         use of the MONO_GC_DEBUG env variable.
11734         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11735         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11737 2008-04-23  Martin Baulig  <martin@ximian.com>
11739         * domain.c (mono_domain_create): Move the call to
11740         mono_debug_domain_create() down, after allocating the domain id.
11742 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11744         verify.c (verify_class_for_overlapping_reference_fields): Skip
11745         static fields while verifying for overlapping fields as they
11746         don't matter at all.
11748 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11750         * domain-internals.h: added a declaration of
11751         mono_make_shadow_copy.
11753         * assembly.c (mono_assembly_open_full): shadow copying of
11754         assemblies moved to here, so that all the assemblies within the
11755         application domain's private binary directories can be
11756         processed. Fixes bug #380546
11758         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11759         mono_make_shadow_copy and made non-static. The decision whether
11760         to shadow-copy an assembly is made based on its location - it's
11761         copied if it's in one of the private application domain binary
11762         directories and its different to the target file in the shadow
11763         directory. Fixes bug #380546
11765 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11767         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11769         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11770         types.
11772         * reflection.c (mono_image_create_token): Handle 
11773         Method/ConstructorOnTypeBuilderInst.
11774         (resolve_object): Ditto.
11775         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11776         so it can be called from resolve_object. Also handle the case when the inflated
11777         class already has its methods setup.
11779 2008-04-21  Martin Baulig  <martin@ximian.com>
11781         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11783 2008-04-20  Geoff Norton  <gnorton@novell.com>
11785         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11786         pointer dereference.
11788 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11790         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11791         portability API to look up the assembly file. Fixes behavior in
11792         situations when the application has a bin/ directory, but the
11793         assembly search patch refers to Bin/ (and thus the requested file
11794         name is Bin/SomeLibrary.dll). Fixes bug #379888
11796 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11798         verify.c (mono_type_is_generic_argument): Extracted this check
11799         from a dozen places to here.
11801         verify.c: Fixed all issues related to boxing generic arguments
11802         and their constraints.
11804 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11806         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11808 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11810         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11811         isn't finished yet. Fixes #363447.
11813 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11815         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11816         Fixes #346419.
11818 2008-04-13  Jb Evain  <jbevain@novell.com>
11820         * domain.c: update the 2.1 profile versions.
11821         Merged from the Moonlight 2 branch.
11823 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11825         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11826         mscorlibs for the non-refonly case as well.
11828         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11829         in mono_assembly_load_from_full (). Fixes #378924.
11831 2008-04-11  Geoff Norton  <gnorton@novell.com>
11833         * icall.c: The global extern environ doesn't exist on Mac.  We
11834         need to call NSGetEnviron instead.
11836 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11838         verify.c: Add generic method constraint verification.
11840 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11842         class.c (mono_class_inflate_generic_method_full): Add a long
11843         explanation to the is_mb_open hack. Remove the FIXME.
11845 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11847         * verify.c (mono_method_verify): Mark all unknown opcodes
11848         as invalid. Mark jmp as unverifiable.
11850 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11852         * verify.c: Add code to do type constraint verification on class instances.
11854         * verify.c (mono_verifier_verify_class): Use the type constraint 
11855         verification code.
11857 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11859         * class.c (mono_class_get_field_default_value): Don't pass cindex
11860         as hint to mono_metadata_get_constant_index. The local is not initialized
11861         and should contain garbage most of the time. This could only work
11862         with a lot of luck.
11864 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11866         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11868 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11870         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11872         * class.c (mono_class_from_generic_parameter): Save the token of the
11873         generic param in MonoClass::sizes.generic_param_token.
11875         * reflection.c (mono_custom_attrs_from_class): If the class type is
11876         VAR or MVAR retrieve the attributes of the generic param.
11878 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11880         * class.c (mono_class_init): Do class verification if the verifier
11881         is enabled.
11883 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11885         * verify-internal.h: Added mono_verifier_verify_class.
11887         * verify.c: Added mono_verifier_verify_class. It checks for
11888         classes with explicit layout that have overlapping reference fields.
11890         * pedump.c: Init the verifier state prior to verification. Fixed
11891         command line arguments.
11893 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11895         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11897 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11899         * verify-internals.h: Fix a warning.
11901 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11903         * verify-internals.h: New header with the verifier configuration
11904         extracted from mini.c.
11906         * verify.c: Implemented the new functions exported by verify-internals.h.
11908 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11910         * verify.c: Add proper verification of ckfinite.
11912 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11914         * verify.c (do_conversion): Improved error message to something
11915         more meanfull.
11917         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11918         with primitive types.
11920 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11922         * verify.c: Added tail prefix checking. Marked icall
11923         as unverifible.
11925 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11927         * verify.c: Fix the detection of branches to the middle
11928         of an instruction.
11930 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11932         * verify.c: Implemented verification of volatile. and
11933         unaligned. prefix. Check if a type is valid after retrieving it.
11935 2008-04-01  Dick Porter  <dick@ximian.com>
11937         * process.c (process_get_fileversion): If there's no string block,
11938         set the file language to en_US.  Fixes the other new part of bug
11939         374600.
11941 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11943         * class.c: New functions mono_method_can_access_field_full and
11944         mono_method_can_access_method_full. They perform type visibility
11945         and type site check.
11947         * class-internal.h: Added exported functions.
11949         * verify.c: Use new functions to implement proper visibility checks.
11951 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11953         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11955 2008-03-28  Dick Porter  <dick@ximian.com>
11957         * process.c (process_get_fileversion): Use the first language ID
11958         we see, rather than insisting on an invariant language.  Fixes bug
11959         374600.
11961 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11963         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11964         the streams to fix reading of invalid memory later.
11966         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11967         to ease debugging.
11969 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11971         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11972         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11974 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11975         * threads.h: Added MonoThreadManageCallback type and
11976         mono_thread_set_manage_callback prototype
11977         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11978         (used to store the mono_thread_manage callback).
11979         * threads.c: Added mono_thread_set_manage_callback, and handle
11980         "MonoThread->manage_callback" in build_wait_tids.
11982 2008-03-26  Dick Porter  <dick@ximian.com>
11984         * process.c (process_get_fileversion): Set FileVersionInfo strings
11985         to Empty when the resource doesn't have the particular info.
11986         Fixes bug 355717.
11988 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11990         * verify.c (mono_method_verify): Proper prefix validation.
11992 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11994         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11995         itself in a separate argument instead of throwing them. Fixes #373448.
11997         * appdomain.c: Bump corlib version.
11999 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12001         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12003 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12005         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12006         version macros.
12008 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12010         * generic-sharing.c, class-internals.h: Code for putting
12011         reflection types into the runtime generic context.
12013 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12015         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12016         Fixes #340662. 
12019 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12021         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12023         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12025         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12027         * verify.c (do_cast): Let the result value keep the boxed status.
12029         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12031 2008-03-17  Jb Evain  <jbevain@novell.com>
12033         * reflection.c: when running on a 2.0 runtime, emit
12034         unconditionally the #~ header version as 2.0, and the
12035         CLI header version as 2.5, for symmetry's sake with csc.
12037 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12039         * class.c: Remove the unused cache_interface_offsets stuff.
12041         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12042         profiler.c: Fix warnings.
12044 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12046         * generic-sharing.c, class-internals.h: Support for putting
12047         methods into the runtime generic context.
12049 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12051         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12052         classes which are generic instances of not-yet finished typebuilders. Fixes
12053         #351172.
12055         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12057 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12059         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12061         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12062         field, replace it with a hash table in MonoDynamicImage.
12064         * reflection.c (inflate_mono_method): Access the generic definition object from
12065         image->generic_def_objects instead of imethod->reflection_info.
12067         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12069         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12070         
12071         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12072         function in reflection.c so it is easier to keep in sync with the dynamic image
12073         creation code.
12075         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12076         mono_image_close ().
12078 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12080         * class.c (mono_class_generic_sharing_enabled): Disable generic
12081         sharing for all architectures except AMD64 and x86 to fix build.
12083 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12085         * verify.c: Use the generic definition MonoGenericContext when available.
12086         Remove code for checking generics instance compatibility in favor of
12087         mono_class_is_assignable_from.
12089 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12091         * marshal.c, marshal.h, metadata-internals.h, image.c,
12092         wrapper-types.h: New wrapper for invoking a shared static method
12093         without having to pass the runtime generic context argument.
12095 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12097         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12099 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12101         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12102         
12103         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12104         create a token from a FieldOnTypeBuilderInst.
12105         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12106         (resolve_object): Ditto.
12108         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12109         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12111 2008-03-14  Martin Baulig  <martin@ximian.com>
12113         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12115         * debug-mono-symfile.h
12116         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12117         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12119 2008-03-10  Martin Baulig  <martin@ximian.com>
12121         * debug-mono-symfile.h
12122         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12123         `lexical_block_table_offset'.
12124         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12125         `lexical_blocks'.
12126         (MonoSymbolFile): Added `version'.
12128         * mono-debug.h
12129         (MonoDebugLexicalBlockEntry): Removed.
12130         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12131         `lexical_blocks'.
12133         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12134         blocks here; the debugger now does this internally.
12136 2008-02-27  Martin Baulig  <martin@ximian.com>
12138         * object.c (mono_runtime_exec_main): Call
12139         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12140         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12142 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12144         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12145         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12147 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12149         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12150         ldftn with a virtual method.
12152 2008-03-13  Geoff Norton  <gnorton@novell.com>
12154         * decimal.c:  Only include memory.h if the platform has it.
12156 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12158         * assembly.c, class.c, metadata-internals.h: make sure public key
12159         tokesns are compared in a case-insensitive way. Also, all
12160         the lookups in the GAC use a lowercase public key token
12161         (gaacutil already does the lowercasing on install). Fixes
12162         bug #369541.
12164 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12166         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12167         and return value.
12169 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12171         * image.c: when someone loads a mscorlib from a file, return the
12172         currently loaded mscorlib (fixes bug #369253).
12174 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12176         * class.c: handle types with no parents by forcing them to have
12177         System.Object as a parent and marking them as broken (this currently
12178         allows the first part of bug #369173 to work as well, likely because
12179         we don't check for typeload exceptions everywhere yet).
12181 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12183         * class.c: more complete check that types belong to corlib
12184         (fixes second part of bug #369173).
12186 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12188         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12189           "inline" to "__inline" before including mono-membar.h.
12190           
12191         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12192           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12193           MSVC builds.
12195         Contributed under MIT/X11 license.
12197 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12199         * verify.c (do_invoke_method): Remove return type validation.
12201         * verify.c (do_ret): Do return type validation at return site instead of
12202         call site.
12204 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12206         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12208         * verify.c: Some todos cleaned and improved a few error messages.
12210 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12212         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12214 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12216         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12217         system types correctly.
12219         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12220         function.
12222 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12224         * assembly.c (build_assembly_name): Fix a warning.
12226 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12228         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12229         the called function takes an object type argument. Fixes storing or
12230         valuetypes across remoting as well as reducing memory usage.
12231         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12232         stfld_remote wrapper caches.
12234 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12236         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12237         is not found.
12239         * reflection.c (mono_image_register_token): New helper function to save
12240         a token->object mapping.        
12242         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12243         managed code.
12245         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12246         one dimension arrays. Fixes #367670.
12247         (mono_reflection_get_type_internal): Ditto.
12249 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12251         * marshal.c: mono_load_remote_field_new() always returns object.
12252         so use the proper signature (fixes bug #366445).
12254 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12255         
12256         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12257         add an 'inline_failure' flag instead.
12259 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12261         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12262         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12263         contains the location of "this", used for exception handling.
12265 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12267         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12268         their size on all platforms for perf reasons.
12270 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12272         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12273         object-internal.h
12275         * object-internal.h: Same.
12277 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12279         * reflection.h: Fix the build I just broke.
12281 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12283         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12284         Test if a token is valid, this remove explicit usage of 
12285         MonoDynamicImage::tokens from the verifier code.
12287         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12289         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12290         instead of direct access to MonoDynamicImage::tokens.
12292 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12294         * verify.c (token_bounds_check): Fix the build I just broke.
12296 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12298         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12300         * verify.c (verifier_load_method): Fixed the errors message.
12302         * verify.c (mono_method_verify): Fixed a debug message.
12304 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12306         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12307         mono-perfcounters.h, class-internals.h: support for predefined
12308         writable counters, query of categories and counters, bugfixes.
12310 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12312         * verify.c (do_refanytype): Verify the refanytype opcode.
12314         * verify.c (mono_method_verify): Use do_refanytype.
12316 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12318         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12320         * verify.c (mono_method_verify): Use do_mkrefany.
12322 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12324         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12325         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12326         implementation.
12328 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12330         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12331         the type load exception.
12333 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12335         * verify.c: Added a few FIXME for method signatures
12337         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12338         of mono_method_get_signature and get vararg call working. Removed unused
12339         checks for return value.
12341         * verify.c (do_refanyval): Verify the refanyval opcode.
12343         * verify.c (mono_method_verify): Implemented verification of arglist and
12344         use do_refanyval.
12346 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12348         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12349         vtypes to marshal.c.
12351         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12352         it works for AOT as well.
12354 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12356         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12357         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12358         the system time is adjusted.
12360 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12362         * icall.c, icall-def.h: use the new time functions (fixes the
12363         non-monotonic behaviour of TickCount).
12365 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12367         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12368         it breaks the build.
12369         
12370         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12371         cattr is not finished yet.
12373 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12375         * verify.c: Proper token validation for field, method and type.
12377 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12379         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12381         * loader.c (method_from_memberref): Generate type load error instead of method missing
12382         if the type is not found.
12384 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12386         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12387         some of the conversions caused the generation of a marshal directive exception.
12389 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12391         verify.c: Report which exception should be thrown by the JIT.
12392         Added a lot of FIXME notes.
12394 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12396         * generic-sharing.c: Runtime generic context slots are not
12397         instantiated on init anymore.  Instead, provide function to do the
12398         instantiating on demand.
12400         * class-internals.h: Added vtable to runtime generic context.
12401         Macros for encoding direct and indirect slot offsets in one
12402         guint32.
12404 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12406         * object.c, generic-sharing.c: Moved some generic sharing code
12407         from object.c to generic-sharing.c.
12409         * generic-sharing.c: Added support for extensible runtime generic
12410         context.
12412         * metadata-internals.h: Two new hash tables in MonoImage for
12413         extensible runtime generic context support.
12415         * domain.c: Unregister generic vtables upon domain unloading.
12417         * image.c: Destroy new hash tables upon image unloading.
12419         * metadata.c: Unregister generic subclasses upon image unloading.
12421         * class-internals.h: New data structure for runtime generic
12422         context template.  New fields in the runtime generic context for
12423         extensible part.
12425         * Makefile.am: Added generic-sharing.c.
12427 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12429         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12430         there is a pending loader exception, raise it.
12432         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12433         same.
12435         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12436         same.
12438         Fixes #363450.
12440 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12442         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12444         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12445         
12446         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12447         ref-only requests for compatibility with MS.
12449 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12451         * reflection.c (mono_custom_attrs_from_method): Don't silently
12452         return an empty list for generic method instances.
12453         (mono_custom_attrs_from_param): Likewise.
12455 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12456             Raja R Harinath  <harinath@hurrynot.org>
12458         Fix #354757
12459         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12460         * class.c (mono_class_inflate_generic_method_full): Initialize it
12461         when a fully-open method is instantiated.
12462         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12463         to new field.
12464         * reflection.c (inflate_mono_method): Don't create a temporary context.
12466 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12468         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12469         Compute correct value, to prepare for imethod->reflection_info going away.
12471 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12473         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12475 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12477         * verify.c: Implement skip visibility flag.
12479 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12481         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12482         which contains an extra field to tell the kind of exception that should be thrown.
12484         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12486 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12488         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12489         'method' is updated.
12491 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12493         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12494         explicit layout as well. Fixes #360375.
12496 2008-02-11  Geoff Norton  <gnorton@novell.com>
12498         * loader.c: Guard and dereference against inflated generic methods
12500 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12502         * class.c: Include Retargetable spec in assembly name.
12503         * assembly.c: Always include PublicKeyToken spec in assembly name
12504         (with value "null" if assembly is not signed), and include
12505         Retargetable spec.
12506         * icall-def.h: Added icall for Assembly.get_fullname.
12507         * icall.c: Added icall returning the fullname of an assembly.
12509 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12511         * class.c (mono_class_setup_vtable_general): Add a missing call to
12512         mono_class_setup_methods () which is needed in the AOT case.
12514 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12516         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12517         stack type of the given MonoType.
12519         * verify.c (verify_type_compatibility_full): Handle the void type.
12521         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12522         way stack merging works.
12524         * verify.c (store_local): Improved verification message.
12526         * verify.c (do_branch_op): If the merging is invalid, the method
12527         is unverifiable and not invalid. Improved error message.
12529         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12530         a reference type diferent than System.Object. Improved error
12531         message.
12533 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12535         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12537         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12538         type of an enum even if the argument is byref.
12540         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12541         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12543         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12545         *verify.c (verify_type_compatibility_full): Make enum types
12546         compatible with their base types.
12548         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12549         types are compatible for the special case of a boxed valuetype and
12550         System.Object.
12552         * verify.c (verify_stack_type_compatibility): The function
12553         is_compatible_boxed_valuetype was extracted from here.
12555         * verify.c (push_arg): Only set ctx->has_this_store if the method
12556         is not static.
12558         * verify.c (do_ldelem): Fixed a typo in an error message and added
12559         strict check for mixing int32 and native int as the array type
12560         and ldelem type.
12562         * verify.c (merge_stacks): Consider boxed valuetypes in the
12563         compatibility checks.
12565 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12566         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12568 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12569         *class.c: use_new_interface_vtable_code: renamed the env var to have
12570         a "MONO_" prefix, and fix the logic to enable it by default.
12572 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12573         *class.c:
12574         mono_class_setup_vtable_general: rewrote the way in which interface
12575         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12576         makes the code more maintainable.
12577         For now the old code is still there, and can be activated setting
12578         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12580 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12582         * verify.c: guarded some debug functions around and #ifdef.
12584         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12586 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12588         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12589         changes for now since they seem to break too many things.
12591 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12593         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12594         mono_marshal_find_nonzero_bit_offset): Added macro and function
12595         for finding the byte- and bit-offset of a bitfield within a
12596         struct.
12598 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12600         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12601         (mono_marshal_get_struct_to_ptr): Ditto.
12603         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12604         cctor_signature.
12606 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12608         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12609         between methods for non-corlib types.
12611 2008-02-02  Geoff Norton  <gnorton@novell.com>
12613         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12614         generic parameters as well. (Fixes #342536)
12616 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12618         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12620         * verify.c (do_invoke_method): Fix for calling with byref structs.
12622         * verify.c (do_cast): push a boxed value type based on the type token and not
12623         the type of stack.
12625 2008-01-31  William Holmes  <billholmes54@gmail.com>
12627         * process.c (process_module_string_read): Check the size returned form 
12628           VerQueryValue to avoid out of memory exception. 
12630 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12632         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12633         Handle properly modules which are not in the moduleref table. Fixes
12634         #356938.
12636 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12638         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12639         the dynamic case which is now in managed code.
12640         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12642         * marshal.c (mono_string_to_bstr): Fix a warning.
12643         (init_com_provider_ms): Ditto.
12645         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12647         * exception.c (mono_get_exception_out_of_memory): New helper function.
12649 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12651         * marshal.c: Add support for BSTR marshalling
12652         using other COM systems.
12654         Code is contributed under MIT/X11 license.
12656 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12658         * object.c (mono_runtime_invoke_array): reverted previous
12659         commit as it breaks the build.
12661 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12663         * object.c (mono_runtime_invoke_array): Verify arguments for
12664         invalid types. Fixes #348522.
12666 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12668         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12669         non-final virtual calls using call. 
12671         * verify.c (do_invoke): fixed some TODOs.
12673         * verify.c (push_arg): set has_this_store for "ldarga 0".
12675 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12677         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12678         which belong to an inflated class. Fixes #356531.
12680 2008-01-26  Robert Jordan  <robertj@gmx.net>
12682         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12683         which resort to FindFirstFile when a certain error condition
12684         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12685         Code is contributed under MIT/X11 license.
12687 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12689         * marshal.c (emit_marshal_string): Fix out string marshalling
12690         to use specified encoding. Fixes #323900.
12692         Code is contributed under MIT/X11 license.
12694 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12696         * class.c (mono_class_inflate_generic_method_full): Don't modify
12697         iresult->context after cache check.
12699 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12701         * class.c (mono_class_inflate_generic_method_full): Change the
12702         struct assignments to memcpy for better visibility and add some comments.
12704 2008-01-23  Dick Porter  <dick@ximian.com>
12706         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12707         procedure, and make it work on windows.
12709 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12711         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12712         a MonoReflectionTypeBuilder since it is always of that type.
12714         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12716         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12718         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12719         
12720         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12722         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12724         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12725         instantiations from the type cache.
12727 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12729         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12731         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12733 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12735         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12737         * verify.c (mono_method_verify): removed old TODO
12739 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12741         * verify.c (do_newobj): add visibility check.
12743 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12745         * verify.c (do_load_function_ptr): add visibility check.
12747 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12748         *class.c:
12749         mono_generic_class_get_class: hook profiler events.
12750         mono_field_get_offset: added to support heap-shot in the new profiler.
12751         *class.h: exported mono_field_get_offset.
12752         * reflection.c:
12753         mono_reflection_setup_internal_class: hook profiler events.
12755 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12757         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12758         argument here too and use it to avoid checking for pending exceptions if 
12759         possible.
12761 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12763         * assembly.c (build_assembly_name): add arg for passing the assembly
12764         flags. Do not consider a PublicKey with value "null" valid.
12765         (mono_assembly_name_parse_full): added boolean argument that will be
12766         set if the assembly name contains a PublicKeyToken spec. Added support
12767         for the Retargetable spec for which only Yes or No are allowed as valid
12768         value. Consider assembly name invalid if Retargetable spec is set, but
12769         either version, culture or public key (token) are not specified.
12770         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12771         with implementation in assembly.c.
12772         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12773         from MonoAssemblyName.
12774         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12775         introduced argument for mono_assembly_name_parse_full to know if the
12776         assembly name has a PublicKeyToken spec, and if it has instruct
12777         fill_reflection_assembly_name to use default value for keyToken (if
12778         PublicKeyToken is null).
12780 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12782         * verify.c (mono_method_verify): fixed ovf ops with
12783         float values. They are unverifiable now.
12785 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12787         * class.c (set_failure_from_loader_error): add BadImageException to the
12788         list of exceptions that can cause a type to fail to load.
12790         * class.c (mono_class_get_exception_for_failure): same.
12792 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12794         * verify.c (in_any_exception_block): added, check if offset
12795         is part of any exception handling clause.
12797         * verify.c (get_stack_type): added VAR and MVAR types.
12799         * verify.c (do_stobj): better error messages.
12801         * verify.c (do_cpobj): added, check cpobj.
12803         * verify.c (do_initobj): added, check initobj.
12805         * verify.c (do_sizeof): added, check sizeof.
12807         * verify.c (do_localloc): added, check localloc.
12809         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12811 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12813         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12814         save_lmf/restore_lmf opcodes.
12816         * threads.c (mono_threads_install_notify_pending_exc): New function to
12817         install a callback notifying the JIT there is a pending exception on a thread.
12818         (mono_thread_request_interruption): Call the new callback.
12819         (mono_thread_get_and_clear_pending_exception): New function to return the
12820         exception pending on a thread.
12822         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12823         to turn off checking for pending exceptions.
12824         (mono_marshal_get_native_wrapper): Ditto.
12826 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12828         * threads-types.h: Get rid of the unnecessary extern declarations.
12830 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12832         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12833         return field from parent class if not private.
12834         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12835         returns fields from parent class if they are not private.
12836         (method_nonpublic): added function to determine if a given method
12837         should be considered non-public. Returns false for private methods
12838         on parent class, and internal methods from parent on the 1.0 profile.
12839         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12840         use method_nonpublic function to determine whether method should be
12841         returned.
12842         (property_accessor_public): use newly introduced method_nonpublic
12843         function to determine whether accessor is non-public. 
12844         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12845         event from parent class if not private. Only return static event if
12846         Static flag is set, and only return static event from parent class if
12847         FlattenHierarchy flag is set.
12848         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12849         include non-private events from parent class.
12851 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12853         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12854         warning.
12856 2008-01-16  Wade Berrier <wberrier@novell.com>
12858         * security.c: Add assembly.h header to appease some warnings
12860 2008-01-16  Dick Porter  <dick@ximian.com>
12862         * process.c (process_module_string_read): Remove trailing null
12863         when saving string.
12865 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12867         * class-internals.h: A new data structure describing the layout of
12868         a runtime generic context (MonoRuntimeGenericContextTemplate).
12870         * metadata-internals.h: Added a hash table to MonoDomain that maps
12871         from open generic classes to their runtime generic context
12872         templates.
12874         * object.c: Building of the runtime generic context, including
12875         proper handling of generic type arguments of superclasses.
12876         Building of the runtime generic context according to the template.
12878 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12880         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12881         Fixes #350856.
12883         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12884         mono_portability_find_file (). Fixes #325466.
12885         (mono_image_get_public_key): Fix a warning.
12887 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12889         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12890         Fixes #353550.
12891         (mono_class_from_name_case): Ditto.
12893 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12895         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12896           common storage for the tables used in the System/NumberFormatter class.
12898 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12900         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12902 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12904         * verify.c (get_boxable_mono_type): check if the token is valid.
12906         * verify.c (set_stack_value): changed to add an error if an
12907         invalid type is set on stack. Changed all callers due to signature change.
12909         * verify.c (do_stobj): implement stobj validation.
12911 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12913         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12914         set container->is_method, it was set earlier.
12916         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12917         generic methods.
12919         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12920         is_method of the generic container to TRUE for methods.
12922 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12924         * metadata.c (type_in_image): Handle type parameters properly.
12926         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12927         memory ownership of this structure.
12929 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12931         * verify.c (get_boxable_mono_type): make typedref types been just
12932         unverifiable. check for void type.
12934         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12936         * verify.c (do_load_function_ptr): accept method spec tokens.
12938 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12940         * marshal.c (mono_class_native_size): Always set *align even if this is called
12941         recursively.
12943 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12945         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12946         out-of-date.
12948 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12950         * verify.c: removed some old unused tables. A huge bunch of small fixes
12951         to things found while testing the verifier with mono basic.
12953         * verify.c (dump_stack_value): dump null literal flag to.
12955         * verify.c (verify_type_compatibility_full): fix comparison
12956         for types that have a generic super type.
12958         * verify.c (verify_stack_type_compatibility): fix compatibility
12959         between null literals and reference types. fix compatibility between
12960         boxed valuetypes and object. fix corner case test for enums.
12962         * verify.c (do_cmp_op): proper verification of cgt.un in case
12963         of reference types.
12965         * verify.c (do_invoke_method): fix error message.
12967         * verify.c (do_store_indirect
12969         * verify.c (check_is_valid_type_for_field_ops): proper verification
12970         of managed pointers to valuetypes and boxed valuetypes. proper verification
12971         of null literals.
12973         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12974         allow token to be a reference type.
12976         * verify.c (do_cast): proper handling of boxes valuetypes.
12978         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12979         in object[].
12981         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12982         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12983         fixed the decoding of unbox_any
12985 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12987         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12989 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12991         * verify.c (do_newobj): do delegate verification.
12993         * verify.c (verify_delegate_compatibility): perform delegate
12994         verification.
12996         * verify.c (verify_ldftn_delegate): perform tests related to
12997         ldftn delegates.
12999         * verify.c (mono_delegate_signature_equal): perform the
13000         slightly diferent signature comparison required by delegates.
13002         * metadata.c (mono_metadata_type_equal_full): added and exported
13003         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13004         allows signature only comparison.
13006         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13007         as MONO_INTERNAL.
13009 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13011         * verify.c: added a bunch of stack_slot_* functions to
13012         make access to stack slot type easier. This is required to
13013         allow optional flags, like null literal, boxed value and
13014         this pointer.
13015         All access paths to IlStackDesc::stype have been changed 
13016         to use these new funcions.
13017         Removed a bunch of unused functions and cleared all warnings.
13018         This patch introduces the usage of the this pointer and 
13019         boxed value flags.
13021 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13023         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13025 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13027         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13028         match managed version.
13030         * appdomain.c: Bump corlib version.
13031         
13032         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13033         argument.
13035 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13037         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13038         Set public key token to zero-length byte array if assembly is not
13039         strongnamed.
13041 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13043         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13044         writing a vtype array elem.
13046 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13048         * assembly.c (build_assembly_name): return FALSE if length of token is
13049         not 16 (if not "null").
13050         (mono_assembly_name_parse_full): return FALSE if value of version,
13051         culture, token or key is 0.
13052         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13053         specify whether public key and public key token must be set to default
13054         value (zero-length byte array) if not available. Set versioncompat to
13055         SameMachine. If public key is available or the default is set, then
13056         set PublicKey flag.
13057         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13058         is available, use empty byte array as default value. On the 2.0
13059         profile, use default value for public key token if not set.
13060         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13061         profile, use default value for public key if not set. On the 2.0
13062         profile, use default value for public key token if not set.
13063         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13064         default values for public key and public key token.
13066 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13068         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13069         field to keep it in synch with the managed object.
13071         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13072         delegates. Fixes #351520.
13074         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13075         contains defined memory.
13076         
13077         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13079         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13080         
13081         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13082         of the GC data structures.
13084         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13086         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13087         
13088         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13089         barrier.
13090         (mono_array_clone_in_domain): Ditto.
13091         (mono_array_clone_in_domain): Ditto.
13093         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13094         (cache_culture): Use a write barrier.
13096         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13097         (ves_icall_get_property_info): Ditto.
13099         * object.h (MONO_STRUCT_SETREF): New macro.
13101         * class-internals.h (MonoStats): Add some GC statistics.
13103         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13105 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13107         * exception.c (mono_exception_from_name_two_strings):
13108         Break from loop after method is found.
13110 2008-01-04  Dick Porter  <dick@ximian.com>
13112         * process.c (process_module_string_read): Rename variable to
13113         reflect correct usage, after fixing bug 345972.
13115 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13117         * verify.c (mono_type_create_fnptr_from_mono_method): 
13118         created a MonoType function pointer instance to be used during
13119         verification. The verifier releases this memory at end.
13121         * verify.c (mono_method_is_constructor): extracted repeated
13122         checks for constructor into a single class.
13124         * verify.c (do_push_field): use new extracted method
13125         for constructor check.
13127         * verify.c (do_newobj): same.
13129         * verify.c (do_ldftn): renamed to do_load_function_ptr
13130         and make it verify ldvirtftn too.
13132         * verify.c (mono_method_verify: proper verification
13133         of ldvirtftn. release created MonoMethod instances.
13135 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13137         * verify.c (token_bounds_check): added.
13139         * verify.c (do_ldftn): added.
13141         * verify.c (mono_method_verify): proper verificartion of ldftn.
13143 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13145         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13146         than the table row count. It's the resposibility of the caller to
13147         make the bounds check and raise the correct error.
13149         * metadata.c (mono_metadata_decode_row_col): Same.
13151         * loader.c (mono_get_method_from_token): perform bounds check
13152         on token for methoddef table.
13154 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13156         * icall.c
13157         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13158         assert into a negative result, the managed code already coped with
13159         that.
13161         Some folks on Windows reported this error. 
13163 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13165         * appdomain.c: Bump corlib version.
13166         * icall.c:
13167         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13168         CultureInfo.CreateCulture to create CultureInfo for name.
13169         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13170         create CultureInfo for name. Fixes bug #347174.
13172 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13174         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13175         flags.
13177         * verify.c (is_valid_branch_instruction): allow branching to the
13178         first instruction of the protected block.
13180         * verify.c (is_valid_cmp_branch_instruction): same.
13182         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13183         avoid double initialization.
13185         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13186         detect which cases the eval stack should just be copied.
13188         * verify.c (mono_method_verify): check if the eval stack
13189         is empty when entering a protected block.
13191 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13193         * verify.c: added is_clause_in_range, is_clause_inside_range,
13194         is_clause_nested and verify_clause_relationship. They perform
13195         the verifications stated in P1 12.4.2.7.
13197         * verify.c (mono_method_verify): remove some unused variables,
13198         add the new exception clause checks, add instruction border
13199         checks for protected block start/end, improved some error 
13200         messages and fixed a bug in the way invalid instruction access
13201         is detected.
13203 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13205         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13206         from GC 7.0 if available.
13208         * object.c: Remove an unused define.
13209         
13210         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13212         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13214         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13216         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13218         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13219         to take the same arguments as the other make_descr functions.
13221         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13223         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13224         directly.
13226         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13227         mini.c.
13229         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13230         call to boehm-gc.c.
13232         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13234         * null-gc.c (mono_gc_register_root): Fix a warning.
13236         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13238         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13239         (mono_gc_base_init): Call GC_init ().
13241         * null-gc.c: Define mono_gc_register_root () as a no-op.
13243         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13245 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13247         * verify.c: add prototype for merge_stacks at top
13249         * verify.c (do_switch): added.
13251         * verify.c (merge_stacks): on some cases the stack merging
13252         was not happening properly. Unequal stack sizes at merge
13253         points should be invalid.
13255         * verify.c (mono_method_verify): added more debug info on stack state.
13256         verify switch properly.
13258 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13260         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13261         marshal.h.
13263         * boehm-gc.c marshal.c: Include method-builder.h.
13265         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13267         * marshal.c: Remove some code which is now in method-builder.c.
13269 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13271         * method-builder.c: New file, extraction of the method builder functionality 
13272         from marshal.c.
13274         * marshal.c: Move the mb functions into method-builder.c.
13276         * marshal.h marshal.c: Export some mono_mb_... functions.
13278         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13280         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13281         the caller.
13283         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13285         * loader.c (mono_field_from_token): Ditto.      
13287         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13288         type as well.
13289         
13290         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13291         Fixes #342565.
13293         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13294         a helper function for setting it.
13296         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13298         
13299         * assembly.c: Significally simplify code now that referenced assemblies are 
13300         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13302         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13303         #349952.
13305 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13307         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13308         instructions that were target of branches or are at protected block boundaries.
13310         * verify.c (in_same_block): handle filter clauses.
13312         * verify.c (is_valid_branch_instruction): added. checks the target of
13313         instructions br or brtrue/false.
13315         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13316         binary branch instructions such as beq and bge.
13318         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13319         and made it pin the instruction as been part of the exception block.
13321         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13322         of in_same_block.
13324         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13325         of in_same_block.
13327         * verify.c (do_ret): ret from a protected block is unverifiable and
13328         not invalid.
13330         * verify.c (do_static_branch): verify br and br.s instructions.
13332         * verify.c (merge_stacks): add extra param to support detection
13333         of branches in the middle of instructions.
13334         
13335         * verify.c (mono_method_verify): verify branches and exception blocks
13336         that target the middle of instructions. Proper verification of br and br.s.
13338 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13340         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13341         skip_visibility field.
13342         (reflection_methodbuilder_from_dynamic_method): Ditto.
13344         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13345         registrations. Fixes #348193.
13347         * threads.h: Move the internal mono_thread_get_pending_exception () to
13348         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13350 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13352         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13353         icall registration. Fixes #348193.
13355         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13356         for corlib classes into object. Fixes #349621.
13358 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13360         * icall.c (property_accessor_nonpublic): new function to determine
13361         whether an accessor allows a property to be considered non-public.
13362         Returns false for private accessor(s) from parent class, and internal
13363         accessor(s) from parent on 2.0 profile (and higher).
13364         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13365         to determine whether property should be included if NonPublic flag
13366         is set. Fixes bug #349078.
13368 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13370         * verify.c (init_stack_with_value): added.
13372         * verify.c (mono_method_verify): extracted common
13373         code for exception initialization into init_stack_with_value.
13375         * verify.c (mono_method_verify): initialize the exception
13376         for handler clauses as well.
13378         * verify.c (mono_method_verify): fix the exception clause
13379         ordering rules, it should use handler end offset and not
13380         start offset.
13382 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13384         * rawbuffer.c: remove useless warning.
13386 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13388         * threads.h, threads-types.h: move functions to the correct header
13389         (fixes bug#349952).
13391 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13393         * verify.c (mono_method_verify): proper verification
13394         of exception handling clauses ranges and fallthru in
13395         and out of protected blocks.
13397 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13399         * verify.c (mono_method_verify): fixed compilation issue.
13401 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13403         * verify.c (mono_method_verify): a printf slipped in, changed
13404         to use verifier debug macro.
13406 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13408         * verify.c (is_correct_leave): check for filter clauses.
13410         * verify.c (do_filter): added.
13412         * verify.c (mono_method_verify): property verification of leave.
13415 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13417         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13418         Win32 build, until we figure out how to do the proper thing on
13419         Win32.
13421 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13423         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13424         by the previous patch.
13425         
13426         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13427         the assembly resolve handler for refonly assemblies.
13429 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13431         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13432         Make sure only one thread is allowed to commence shutdown, and
13433         don't allow new threads to be started once shutdown is in
13434         progress.
13436 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13438         * verify.c (is_correct_endfilter): added.
13440         * verify.c (is_unverifiable_endfilter): added.
13442         * verify.c (do_endfilter): added.
13444         * verify.c (mono_method_verify): property verification of endfilter
13445         and fixed a corner case or endfinally.
13447 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13449         * verify.h: new flags to support fail fast of unverifiable code and
13450         do non-strict verification. Non-strict verification is required to
13451         have MS runtime compatibility. There are a huge amount of unverifiable
13452         code that it accepts as verifiable. The strict mode verifies the code
13453         as the specs says.
13454         Non-strict mode will be required in cases where code needs to be
13455         accepted as verifiable but fails under strict mode.
13457         * pedump.c: added support to fail fast and non-strict verification.
13459         * verify.c: added support for both fail fast and non-strict verification.
13461 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13463         * verify.c (is_correct_endfinally): added.
13465         * verify.c (mono_method_verify): property verification of endfinally.
13467 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13469         * verify.c (in_any_block): check for filter clauses.
13471         * verify.c (is_correct_rethrow): added.
13473         * verify.c (mono_method_verify): property verification of rethrow.
13475         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13477 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13479         * verify.c (do_throw): added.
13481         * verify.c (mono_method_verify): property verification of throw
13483 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13485         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13486         assemblies. Fixes #346425.
13488 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13490         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13491         FieldBuilders.
13493         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13495         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13496         prevent asserts when this is called with a token which might not be valid.
13498         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13499         lookup_dynamic_token_class with valid_token == FALSE.
13501         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13503         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13505         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13506         
13507 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13509         * gc.c: Don't delay threadpool thread finalization unless Mono is
13510         shutting down.
13512 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13514         * threads.c: turn an assert into a non-fatal warning.
13516 2007-12-09  Robert Jordan  <robertj@gmx.net>
13518         * icall.c (GetVirtualMethod): Add missing argument validation.
13520 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13522         * verify.c (do_cast): added.
13524         * verify.c (mono_method_verify): property verification of castclass and isinst.
13527 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13529         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13531         * verify.c (do_stelem): added.
13533         * verify.c (mono_method_verify): property verification of stelem.X.
13535 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13537         * class.c, class-internals.h: Introduce an environment variable
13538         (MONO_GENERIC_SHARING) through which the extent of generic code
13539         sharing can be controlled (share all classes, share only corlib
13540         classes, or share nothing).
13542         * object.c: Only create runtime generic context for classes for
13543         which sharing is enabled.
13545 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13547         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13549         * verify.c (mono_method_verify): property verification of ldelem.any.
13551 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13553         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13554         added ldelem.X opcodes.
13556         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13558         * verify.c: proper verification of ldelem.X 
13560 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13562         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13564 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13566         * verify.c (mono_method_verify): null literal requires special handling,
13567         the value pushed on stack need to be flagged as so.
13569         * verify.c (do_ldelema): Verify ldelema properly.
13571 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13573         * verify.c: Verify ldlen properly.
13575 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13577         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13578         to the target object's type. Fixes #346160.
13580 2007-12-05  Dick Porter  <dick@ximian.com>
13582         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13583         Solaris needs the same workaround as BSD-derived systems.  Fixes
13584         bug 323524, patch by Burkhard Linke
13585         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13587 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13589         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13590         handle to use when error dialog is shown; otherwise, update mask
13591         to show no error dialog when an error occurs.
13593 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13595         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13597         * class.c (mono_class_get_field_default_value): New helper function to initialize
13598         field->def_type and field->data.
13600 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13602         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13603         the general one.
13605         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13607         * marshal.c: Avoid depending on delegate->method_info being set.
13609         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13610         
13611         * object.c (mono_delegate_ctor): Set delegate->method.
13613         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13615         * appdomain.c: Bump corlib version.
13617 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13619         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13620         equality check if we're comparing canonicalized MonoGenericInsts.
13622 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13624         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13625         accessing class->methods.
13627 2007-11-22  Dick Porter  <dick@ximian.com>
13629         * threads.c: Ensure that the synch_cs is set before trying to use
13630         it.
13632 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13634         * profiler.c: r89126 broke the statistial profiler, unbreak.
13636 2007-11-22  Martin Baulig  <martin@ximian.com>
13638         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13640         * mono-debug.c
13641         (mono_debug_debugger_version): Bump to 3.
13642         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13643         -> mono_debugger_class_initialized().
13645         * mono-debug-debugger.c
13646         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13648         * class.c
13649         (mono_debugger_start_class_init_func): Removed.
13650         (mono_debugger_class_loaded_methods_func): Added.
13651         (mono_class_setup_methods): Call it here.
13653 2007-11-22  Martin Baulig  <martin@ximian.com>
13655         * mono-debug.c
13656         (mono_debug_add_delegate_trampoline): New public method.
13657         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13659         * mono-debug.h
13660         (MonoSymbolTable): Added `global_data_table'.
13661         (MonoDebuggerTypeKind): Removed.
13663 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13665         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13666         these methods.
13668         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13669         
13670 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13672         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13674 2007-11-20  Martin Baulig  <martin@ximian.com>
13676         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13678         * mono-debug-debugger.c
13679         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13680         (mono_debugger_remove_breakpoint): Likewise.
13681         (mono_debugger_check_breakpoints): Likewise.
13682         (mono_debugger_register_class_init_callback): New public method.
13683         (mono_debugger_remove_class_init_callback): Likewise.
13684         (mono_debugger_add_type): Likewise.
13686         * mono-debug-debugger.h
13687         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13689 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13691         * class.c: more interface implementations needed for the
13692         array enumerator (fixes bug #341112).
13694 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13696         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13697         fix ParamName of ArgumentNullExceptions.
13699 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13701         * reflection.c (mono_reflection_encode_sighelper): Generate the
13702         modopts and modreqs.   I have a useless test that crashes monodis,
13703         but that shows the code working.
13705 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13707         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13708         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13710 2007-11-15  Dick Porter  <dick@ximian.com>
13712         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13713         When joining a thread, it's the thread that's calling Join that
13714         gets WaitSleepJoin state not the target.  Fixes the standalone
13715         test case in bug 334740, and hopefully the whole bug too.
13717 2007-11-15  Dick Porter  <dick@ximian.com>
13719         * process.c: Read file version info from the files pointed at by
13720         process modules, not the current process.  Fixes bug 315969.
13722         Use windows typedef names in some places to fix warnings on the
13723         windows build.
13725 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13727         * image.c, metadata-internals.h: Added a generic_class_cache hash
13728         to MonoImage for looking up generic classes when sharing generics.
13730 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13732         * sgen-gc.c: warning cleanups.
13734 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13736         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13737         inherited properties.
13739 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13741         * object.c, class-internals.h: Added more information to the
13742         runtime generic context.
13744 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13746         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13747         instead of just the target method. Generalize the abstract method handling to
13748         handle any non-static method.
13750         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13751         mono_marshal_get_delegate_invoke () signature change.
13753 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13755         * class.c, class-internals.h: Made
13756         mono_type_get_basic_type_from_generic () public.  Fixed member
13757         access check for shared generics.
13759         * loader.c: Don't insert field into field cache if it's part of a
13760         non-inflated generic class.
13762         * domain.c, domain-internals.h: The generic sharing context is now
13763         part of the jit info data structure.  Added two accessor
13764         functions.
13766 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13768         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13769         the array Get/Set/Address methods, since the JIT inlines them.
13771         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13773         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13774         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13776         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13777         mono_marshal_get_delegate_invoke signature change.
13779         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13780         an additional argument. Add support for invoking abstract methods.
13782         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13784         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13786 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13788         * class.c: Do field layout for open generic classes as well.
13790 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13792         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13793         other objects, because the threadpool is still around.  Put them
13794         in a list instead and after finalizing all other objects in the
13795         root domain shut down the thread pool and then finalize the
13796         threads.  Fixes bug #337383.
13798         * threads.c, thread-types.h: New mono_thread_create_internal()
13799         function for marking a thread with the threadpool flag before it
13800         started.  Set synch_cs to NULL after freeing it.
13802         * threadpool.c: Mark threadpool threads before they start.
13804 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13806         * reflection.h, reflection.c: don't export random functions
13807         and lazy load dbnull and missing objects.
13809 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13811         * class.c: Initialize COM types if COM interfaces
13812         are present (not just COM classes).
13813         
13814         Code is contributed under MIT/X11 license.
13816 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13817         * reflection.c:
13818         create_dynamic_mono_image: hook module profiler events (dynamic case).
13819         mono_image_basic_init: hook assembly profiler events (dynamic case).
13821 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13822         * profiler.c:
13823         simple_appdomain_unload: completely terminate the profiler
13824         instead of only processing the statistical samples.
13825         simple_shutdown: make sure this is really called exactly once,
13826         even in multithreaded applications, and always listen to
13827         appdomain events.
13828         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13829         here, the "[un]load" functions will do it.
13830         Fixes bugs #333791 and #325261.
13832 2007-11-07  Geoff Norton  <gnorton@novell.com>
13834         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13835         rather than depend on __APPLE__.
13837 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13839         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13841 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13843         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13844         UTF16 MonoString. Fix the crash from bug #335488
13846 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13848         * marshal.c: Correct (for non-Win32 OS) length != size in 
13849         mono_string_from_bstr. Fix #339530.
13851 2007-11-06  Geoff Norton  <gnorton@novell.com>
13853         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13854         to succeed
13856 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13858         * process.c: Added run-time GetProcessId API detection for Windows.
13860 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13862         * reflection.c  (mono_param_get_objects): If a parameter has the
13863         attribute [System.Runtime.InteropServices.Optional] we should
13864         set the DefaultValue of the ParameterInfo to be
13865         System.Reflection.Missing instead of DBNull.
13867         See bug #339013.
13869         (mono_get_reflection_missing_object): New method,
13870         returns the System.Reflection.Missing.Value singleton instance.
13872 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13874         * culture-info-table.h : regenerated.
13876 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13878         * icall.c: Use GetEnvironmentStrings on windows
13879         so we are using the same environment block as 
13880         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13881         #333740.
13882         
13883         Code is contributed under MIT/X11 license.
13885 2007-10-31  Martin Baulig  <martin@ximian.com>
13887         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13889         * mono-debug-debugger.h
13890         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13892 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13894         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13895         classes.
13897 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13899         * culture-info-table.h : regenerated.
13901 2007-10-30  Robert Jordan  <robertj@gmx.net>
13903         * icall-def.h, icall.c:
13904         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13906         Code is contributed under MIT/X11 license.
13908 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13910         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13911         inflated class instead of inflating them again.
13912         
13913         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13914         dynamic case.
13916         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13917         Call setup_supertypes () after klass->parent is set.
13918         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13920         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13921         for inflated instances of not yet created dynamic generic classes.
13922         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13923         times from inflated_method.
13924         (methodbuilder_to_mono_method): Ditto.
13926 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13928         * gc.c: code cleanup and removed old untested option of not creating the
13929         finalizer thread.
13931 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13933         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13934         creating a jump trampoline for dynamic methods.
13936 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13938         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13939         generic TypeBuilders when called from another method of the same type (bug #335131).
13942 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13944         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13945         doesn't seem to work perfectly.
13946         
13947         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13948         called multiple times.
13949         (methodbuilder_to_mono_method): Ditto.
13950         (resolve_object): Inflate FieldBuilder's.
13952 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13954         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13955         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13956         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13958 2007-10-26  Dick Porter  <dick@ximian.com>
13960         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13961         Thread initialisation changes
13963 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13965         * verify.c: fix compatibility check between arrays and System.Array
13967 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13969         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13970         too. Fixes #336999.
13972 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13974         * object.c (mono_value_box): Use typed allocation here.
13976 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13978         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13979         trampoline instead of compiling the method right away.
13981         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13983 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13985         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13986         related fields for dynamic classes. Fixes #334493.
13988 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13990         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13991         
13992         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13994         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13995         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13997         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13999         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14000         if needed.
14001         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14003 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14005         * marshal.c: Use correct key when removing item
14006         from ccw_hash.
14007         
14008         Code is contributed under MIT/X11 license.
14010 2007-10-17  William Holmes  <billholmes54@gmail.com>
14012         *marshal.c: Adding a case to marshal booleans to U1
14014         Code is contributed under MIT/X11 license.
14016 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14018         * class.c (mono_class_from_name): Search the modules compromising dynamic
14019         assemblies. Fixes #331601.
14021 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14023         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14024         exception if the type name contains an assembly component. Fixes #334203.
14026         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14027         modules inside dynamic assemblies. Fixes #334200.
14028         
14029         * reflection.c: Set image->public_key and image->public_key_length;
14031         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14032         fields.
14034         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14035         
14036 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14038         * metadata.c: Implemented correct comparing of generic classes.
14039         An inflated generic class can be equal to a non-inflated one if it
14040         is inflated with generic type variables as type arguments.  Fixes
14041         bug #333798.
14043 2007-10-15  Dick Porter  <dick@ximian.com>
14045         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14046         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14047         81646.
14049         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14050         instead of a monitor lock.  This means that monitor_try_enter and
14051         co can set the thread state safely.
14052         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14053         thread_interrupt_requested, so interrupt actually works.
14055         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14056         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14057         state accessor function
14059 2007-10-15  Martin Baulig  <martin@ximian.com>
14061         * mono-debug.h
14062         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14063         the debugger with the current runtime.
14065 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14067         * object.c, object-internals.h: added the ability to set a single
14068         trampoline for all the slots in a vtable.
14070 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14072         * marshal.c: deal with a possible race condition during multicast
14073         delegate invocation.
14075 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14077         * class.c: ensure value type methods don't have the synchronized
14078         flag set.
14080 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14082         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14083         breaks the build.
14085 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14087         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14088         to take an options parameter so that empty entries can be removed during
14089         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14091 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14093         * marshal.c: make sure we don't store the signature from a dynamic
14094         method into the runtime invoke cache (bug #327189).
14096 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14098         * marshal.c: make sure the wrapper methods are properly initialized.
14100 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14102         * metadata.c, metadata-internals.h: Generalized
14103         mono_type_stack_size() to mono_type_stack_size_internal() which
14104         takes an additional argument specifying whether it allows open
14105         types.
14107 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14109         * verify.c (do_invoke_method): handle typedbyref params
14110         correctly and check for unverifiable return values.
14112         * verify.c (do_newobj): fix a warning.
14114 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14116         * verify.c: don't tread typedbyref as allways unverifable,
14117         so uses, like (ld/st)loc.0 are valid. verify for the cases
14118         that it matters, like boxing related operations.
14120 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14122         * verify.c: add verification of the newobj opcode. verification
14123         of delegate instantation still missing due ldftn and virldftn not
14124         pushing the function type on stack
14126 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14128         * class-internals.h: Runtime generic context data structure
14129         definition.
14131         * object.c: Initialization of runtime generic context at runtime
14132         vtable creation time.
14134 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14135         * class.c (mono_class_create_from_typedef,
14136         mono_class_from_generic_parameter, mono_ptr_class_get,
14137         mono_fnptr_class_get, mono_bounded_array_class_get)
14138         * domain.c (mono_domain_create, mono_domain_free)
14139         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14140         * image.c (do_mono_image_load, mono_image_close):
14141         Hooked up load-unload profiler events.
14143 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14145         * domain.c: track statistics about the actual amount of native code
14146         allocated.
14148 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14150         * class.c: the valuetype enumerators don't have the additional
14151         supertypes interfaces.
14153 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14155         * class.c: need more interfaces setup for the IEnumerator<T>
14156         object created for arrays (tests/ienumerator-interfaces.2.cs).
14158 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14160         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14162 2007-10-05  Alp Toker  <alp@atoker.com>
14164         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14165         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14166         #315863.
14168 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14170         * verify.c (verify_type_compatibility_full): verification of
14171         compatibility improved, validates correctly non-strict checks between
14172         native int and I4 types different than (unsigned)int32.
14174         * verify.c (do_store_indirect): added, do all verification of
14175         ldind.X opcodes. 
14177         * verify.c (get_load_indirect_mono_type): renamed to
14178         get_indirect_op_mono_type, as it now returns the MonoType for 
14179         ldind.X and stind.X opcodes.
14181 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14183         * reflection.c: Fix the encoding of generic type definition for
14184         TypeBuilders.
14186         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14187         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14188         be made. Typespec check is done prior to typeref cache lookup.
14190         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14191         mono_image_typedef_or_ref_full.
14193         * reflection.c (encode_generic_class): encode the generic class
14194         directly instead of calling encode_type.
14196         * reflection.c (encode_type): encode the generic type definition
14197         MonoClass as a generic instantiation.
14199         * reflection.c (create_typespec): cache typespec tokens in
14200         the assembly->typespec cache. Don't create typespec for a generic
14201         instance MonoClass. Create typespec for the generic type defintion.
14203         * reflection.c (create_generic_typespec): encode the generic
14204         class directly instead of calling encode_type.
14206         * reflection.c (mono_image_create_token): encode the generic
14207         type definition not using a typespec for MonoType instances.
14210 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14212         Fix #328812
14213         * class.c (mono_image_init_name_cache): Don't return nested
14214         'protected internal' classes.
14215         (mono_class_from_name_case): Likewise.
14217 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14219         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14220           common function used by both DefaultConfig in System.dll and
14221           InternalConfigurationHost in System.Configuration.dll.
14223 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14225         * class.c: automatically add to vectors only a few essential explicit
14226         generic interfaces. The rest of the interfaces that arrays should
14227         provide are currently implicitly added (but still not lazily, see the
14228         design in the discussion of bug#325495 for the details of what is
14229         needed for that). Additionally, implicit interfaces are assigned the
14230         same vtable slot as the explicit interfaces (as they are compatible):
14231         this enables huge memory savings since we don't need to instantiate
14232         as many memthods and as large vtables anymore. Also, Since
14233         GetEnumerator<T> returns an instance of a type that is required to
14234         support a similarly large set of interfaces as arrays, we add
14235         implicit interfaces and interface offset sharing support to those
14236         types, too. This change adds all the required interfaces so that
14237         the anonarray.cs test case in the bug report works (we don't add
14238         all the interfaces to arrays of arrays 3-level deep and more because
14239         of the memory requirements explained in the bug and since they are much
14240         less common: the lazy-loading support will enabled them to work, too).
14242 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14244         * verify.c (merge_stacks): major clean up, all type compatibility
14245         checks are done by verify_type_compatibility. This fix my earlier lack
14246         of understanding of the CLR type system and merge_stacks no longer looks
14247         scary.
14249         * verify.c: fixed some bad spelling.
14251 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14253         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14254         a given stack slock.
14255         
14256         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14257         verify_type_compatibility_full. This removed a near indentical function and fixed
14258         handling of Int32 and IntPtr across all opcodes.
14260 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14262         * class.c: only vectors have the additional generic interfaces.
14264 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14266         * mono-config.c: Use g_strcasecmp instead of
14267         strcasecmp like everywhere else to fix
14268         compilation with MSVC.
14269         
14270         Code is contributed under MIT/X11 license.
14272 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14274         * object.c, object-internals.h: refactored the IMT code to enable
14275         building a single slot at a time and lazily creating the IMT trampolines
14276         and thunks.
14278 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14280         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14282         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14283         Fixes #328501.
14284         
14285 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14287         * loader.c (method_from_methodspec): Rearrange to avoid
14288         un-necessary exposition.  Don't assert out if the method's
14289         declaring type is a generic type definition.
14291 2007-09-28  Martin Baulig  <martin@ximian.com>
14293         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14295 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14297         * class-internals.h: optimize field layout of MonoClass to
14298         requires less cachelines at runtime and save a few bytes on 64 bit
14299         systems.
14301 2007-09-28  Jb Evain  <jbevain@novell.com>
14303         * reflection.c: when encoding type names in custom attributes,
14304         if the type is a closed generic type, its generic arguments
14305         have to be serialized as AssemblyQualifiedName, so that when
14306         they are deserialized, it's possible to re-create them properly.
14307         Fixes #329450.
14310 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14312         * object.c, class-internals.h: added delegate-creation counter.
14314 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14316         * class.c: cleanup of the code that synthetizes interfaces for
14317         arrays in 2.0: saves quit a bit of corlib mempool memory.
14318         Code to fix bug #325495 ifdeffed out for now until the issues
14319         with memory usage and O(n^2) behaviour are fixed.
14321 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14323         * marshal.c: when possible, do not duplicate the name of the methods
14324         in the method builder and in the generated MonoMethod.
14326 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14327         * verify.c: added support for type checking ldind_* opcodes.
14329 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14331         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14332         which is used to distinguish the fully open instantiation of a TypeBuilder
14333         with the rest. This temporary hack is required to restore the property that
14334         the fully open instantiation is the same type of the generic type definition.
14336         * class-internals.h (mono_generic_class_is_generic_type_definition):
14337         new function as part of the internal API.
14339         * class.c (inflate_generic_type): return NULL when the generic inst is
14340         fully open. The fully open generic type is now the same as the generic type
14341         definition for non TypeBuilder types.
14343         * class.c (mono_generic_class_get_class): removed assert since it is
14344         no longer valid, gklass->cached_class can point to the generic type definition.
14346         * class.c (mono_generic_class_is_generic_type_definition): new.
14348         * metadata.c (mono_generic_class_hash): added is_tb_open field
14349         to the hash calculation.
14351         * metadata.c (free_generic_class): if the generic class is associated
14352         with the generic type definition, its field will come from the mempool and
14353         must not be freed.
14355         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14356         new, this function identifies the corner case of a TypeBuilder fully open
14357         instantiation.
14359         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14360         for lookup. Set gclass->cached_class to be the container class in case of
14361         the fully open instantiation of non TypeBuilder types.
14363         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14364         to compare generic classes.
14366         * reflection.c (method_encode_methodspec): remove assert that
14367         no longer is valid.
14369         * reflection.c (mono_reflection_generic_class_initialize): add
14370         an aditional assert to ensure the proper type is used.
14372 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14374         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14375         to enjoy it.
14377 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14379         * verify.c (push_arg): Fixed support for ldarga
14380         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14381         MonoType used as first arg in case of instance calls.
14383 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14385         * verify.c: Support for verifying VAR and MVAR types, 
14387 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14389         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14390         accessors correctly.
14392 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14394         * threads.c: support OSX and other systems in
14395         mono_thread_get_stack_bounds (bug #328026).
14397 2007-09-25  Martin Baulig  <martin@ximian.com>
14399         * mono-debug.h
14400         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14402 2007-09-24  Martin Baulig  <martin@ximian.com>
14404         * mono-debug.h
14405         (MonoDebugClassEntry): Moved the definition of this struct into
14406         mono-debug.c to make it private.
14408         * mono-debug.c
14409         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14410         type table per symbol file, we don't need to store the symfile id
14411         any longer.
14413 2007-09-24  Martin Baulig  <martin@ximian.com>
14415         Create one type table per symbol file, since a `MonoClass *' gets
14416         invalid when its image is unloaded.
14418         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14419         (MonoDebugHandle): Added `type_table'.
14421 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14423         * mempool.c, mempool.h: added mono_mempool_new_size () API
14424         to be able to specify a smaller initial size for the pool.
14425         Adjusted the code to slowly increase pool size before using
14426         the previous default size.
14427         * image.c: use a small initial size for image mempools.
14429 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14431         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14432         Fixes ##320990.
14434         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14435         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14437 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14439         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14440         free. Fixes #327438.
14442 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14444         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14445         generic instantiations, etc.
14446         <MONO_TYPE_ARRAY>: Likewise.
14448 2007-09-21  Martin Baulig  <martin@ximian.com>
14450         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14451         these structs were never defined.
14452         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14454 2007-09-21  Martin Baulig  <martin@ximian.com>
14456         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14458 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14460         * image.c: removed the guid hash tables: we can get the same info
14461         without the additional memory usage hit (partially fixes also bug #327052).
14463 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14465         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14466         event to handle unloading methods. After the event is called, the
14467         corresponding MonoMethod* must be considered invalid.
14468         * loader.c (mono_free_method): call the new mono_profiler_method_free
14469         event.
14471 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14473         * domain-internals.h: New flag in MonoJitInfo which marks shared
14474         generic methods.  New hash table (shared_generics_hash) in
14475         MonoDomain to keep track of shared generic methods.  Prototypes
14476         for functions to register and lookup shared generic methods.
14478         * domain.c: Support for registering and looking up shared generic
14479         methods via a hash table (shared_generics_hash) in MonoDomain.
14481         * class-internals.h: New exception to signal failure of shared
14482         compilation of a generic method.  New counters for generics
14483         sharing in MonoStats.
14485 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14487         * image.c, metadata-internals.h: don't keep a file descriptor open
14488         for loaded assemblies (bug#325988).
14490 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14492         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14493         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14494         use the corresponding datatypes.
14495         (type_in_image): Update to changes.
14496         (CleanForImageUserData): Simplify.
14497         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14498         Avoid quadratic behaviour in handling the "stolen" list by
14499         separating the filter predicate out, and by prepending the stolen
14500         items rather than appending them.
14501         (steal_ginst_in_image): Likewise.
14502         (mono_metadata_clean_for_image): Update to changes.
14504 2007-09-19  Martin Baulig  <martin@ximian.com>
14506         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14508 2007-09-19  Martin Baulig  <martin@ximian.com>
14510         * mono-debug.c (mono_debug_cleanup): Don't call
14511         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14513 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14515         Fix crash on 'make run-test' in mcs/errors
14516         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14517         Avoid more potential allocations in mono_class_from_mono_type.
14518         (ginst_in_image): Update to changes.
14519         (gclass_in_image): Rearrange slightly.
14521 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14523         * class.c (mono_class_init): Move the code that sets up class->methods to 
14524         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14526         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14527         canonical instance of an inflated generic signature.
14528         (mono_type_create_from_typespec): Remove an invalid free.
14530         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14532 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14534         * domain-internals.h: added a declaration of the
14535         mono_assembly_load_full_nosearch internal function.
14537         * assembly.c (mono_assembly_load_with_partial_name): use
14538         mono_try_assembly_resolve return value properly.
14539         (mono_assembly_load_full_nosearch): copied the function body from
14540         mono_assembly_load_full, without the code to invoke assembly
14541         search hooks.
14542         (mono_assembly_load_full): calls the above new function and if the
14543         assembly is not resolved, invokes the search hooks.
14545         * appdomain.c (mono_runtime_init): restore the global postload
14546         assembly search handlers.
14548 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14550         * class.c (mono_class_init): Make sure class->methods and class->properties
14551         are never NULL in the generics case.
14553         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14555 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14557         * metadata.c (free_generic_class): Disable some code to fix the build.
14559         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14561         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14562         from the image mempool.
14564         * metadata.c (free_generic_class): Free more data from the inflated class.
14566         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14568         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14569         mempool.
14570         (mono_type_create_from_typespec): Ditto.
14572         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14573         MonoImage to the caller.
14574         (mono_init_internal): Save the opened image in a global variable.
14575         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14577         * reflection.c (resolve_object): Fix a leak.
14579         * metadata.c: Fix the freeing of data in the generics caches.
14580         
14581         * metadata.c (free_generic_inst): Comment this out to fix the build.
14582         (free_generic_class): Ditto.
14584         * metadata.c: Free cached generic methods, instantinations and classes when
14585         they are removed from the caches.
14586         (mono_metadata_free_type): Free the type itself.
14588         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14589         places.
14591 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14593         * boehm-gc.c: restrict managed allocs to __thread supporting
14594         architectures.
14596 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14598         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14599         (mono_generic_class_get_class): Fix a leak.
14601         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14602         mono_metadata_free_type ().
14603         (mono_metadata_inflate_generic_inst): Fix a leak.
14605 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14607         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14609         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14610         mempool.
14612         * mono-debug.c (mono_debug_close_image): Fix call to 
14613         g_hash_table_remove ().
14615 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14617         * icall-def.h: redirect all the string ctor to the managed
14618         CreateString () methods.
14619         * string-icalls.c, string-icalls.h: removed dead code for string
14620         ctors and icalls.
14622 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14624         * mono-debug.c: Fix memory leaks.
14626 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14628         * threads-types.h: Implement mono_hazard_pointer_set and 
14629         mono_hazard_pointer_clear macros using do/while(0) to fix
14630         compilation with MSVC.
14631         
14632         Code is contributed under MIT/X11 license.
14634 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14636         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14637         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14639 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14641         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14642         icalls.
14644 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14646         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14647         managed-code allocated as well.
14649 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14651         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14653 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14655         * boehm-gc.c: fixed the build after the AOT changes.
14657 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14659         * wrapper-types.h: Add an ALLOC wrapper type.
14661         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14662         reference managed allocator methods.
14664 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14666         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14667         of Type array and not MonoType, a fix suggested by Hari.
14668         
14669 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14671         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14672         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14673         
14674         Code is contributed under MIT/X11 license.
14676 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14678         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14680 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14682         * image.c (do_mono_image_open): if assembly file fails to open and
14683         MONO_IOMAP is in effect, try to find the path in a
14684         case-insensitive way.
14686         * appdomain.c (mono_runtime_init): do not install postload hooks -
14687         tests show that MS.NET doesn't use anything of that sort to
14688         trigger the AppDomain.AssemblyResolve event.
14689         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14690         made non-static.
14691         (mono_runtime_init): init portability helpers here.
14693         * assembly.c (mono_assembly_load_with_partial_name): if other   
14694         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14695         to resolve the assembly.
14697         * domain-internals.h: added mono_try_assembly_resolve and marked
14698         it as internal.
14700 2007-09-11  Jb Evain  <jbevain@novell.com>
14702         * object-internals.h (MonoReflectionDynamicMethod): add
14703         a `MonoReflectionType *owner` field. The owner is used
14704         * reflection.c:
14705         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14706         method as the class declaring the dynamic method.
14707         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14708         dynamic method to the declaring type of the methodbuilder.
14710 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14712         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14713         rules for calling methods via reflection.
14715 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14717         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14718         Inflate MonoType's.
14720 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14722         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14723         provide a managed method that does fast allocations without needing
14724         a managed->unmanaged transition. Boehm GC implementation currently
14725         enabled for ptrfree objects on sane architectures.
14727 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14729         * marshal.c, marshal.h: exported a couple of useful functions and
14730         added mono_mb_get_label () to easily handle backward branches.
14732 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14734         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14736 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14738         * loader.c (find_method): Fixed the regression introduced while
14739         fixing bug #81466.
14741 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14743         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14744         well.
14745         
14746         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14747         icall.c reflection.c: Pass a MonoGenericContext argument to 
14748         mono_lookup_dynamic_token ().
14750         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14751         #82744.
14752         
14753 2007-09-09  Robert Jordan  <robertj@gmx.net>
14755         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14756         for generic methods.
14758         * object.c (mono_object_get_virtual_method): Handle generic methods.
14759         Fixes bug #78882.
14761         Code is contributed under MIT/X11 license.
14763 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14765         * image.c: fix locking in mono_image_load_file_for_image ().
14767 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14769         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14770         used only as a cache: added an icall to fill it.
14772 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14774         * reflection.h: exposed mono_reflection_free_type_info
14775         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14776         since mono_reflection_bind_generic_parameters makes a copy of it.
14777         * reflection.c (free_type_info): subinfos should be freed.
14778         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14779         made non static.
14780         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14781         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14782         this fixes #82695 and #81726.
14783    
14785 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14787         * process.h, process.c:  added support for user profile/info in
14788           ProcessStartInfo. For now only Windows works.
14790 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14792         * metadata.c: consider the generic arguments when comparing
14793         signatures (bug #82614).
14795 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14797         * cil-coff.h, image.c: updated assembly loader to cope with the
14798         PE32+ 64 bit file format.
14800 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14802         * assembly.c, class.c, domain.c, loader.c: remove useless
14803         inclusion of cil-coff.h.
14805 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14807         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14808         if interface is marked with CoClassAttribute. 
14809    
14810         Code is contributed under MIT/X11 license.
14812 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14814         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14815         if it's seen twice in major collections.
14817 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14819         * sgen-gc.c: big objects are not copied to the gray area, but they
14820         need to be considered for scanning, too, if they are brought alive
14821         by an object ready for finalizations or a survived one.
14823 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14825         * sgen-gc.c: properly account the number of disappearing links when
14826         they are nullified.
14828 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14830         * sgen-gc.c: share the code to scan the registered roots between the
14831         different types of collections.
14833 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14835         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14837 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14839         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14840         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14842 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14844         * security-manager.c (mono_security_manager_get_methods):
14845         LinkDemandSecurityException now has 2 arguments instead of 3.
14847 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14849         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14850         platforms which need it.
14852 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14854         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14855         dtor.
14857 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14859         * threads.c: free the thread static data on thread exit.
14861 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14863         * class.c: walk the hierarchy to find the generic definition for
14864         a class (fixes runtime part of bug #82498).
14866 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14868         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14869         ...
14871         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14873 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14875         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14877 2007-08-24  Robert Jordan  <robertj@gmx.net>
14879         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14881 2007-08-24  Jb Evain  <jbevain@novell.com>
14883         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14884         for byref types.
14886 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14888         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14889         #82286.
14891 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14893         * assembly.c: Fix a warning.
14894         
14895 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14897         * appdomain.c: parse the <runtime> section looking for the probing
14898         element with the 'privatePath' attribute, which sets additional
14899         directories in which the runtime should look for assemblies.
14901 2007-08-23  Robert Jordan  <robertj@gmx.net>
14903         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14904         Fixes #82499.
14906 2007-08-23  Martin Baulig  <martin@ximian.com>
14908         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14909         _mono_debug_init_corlib() and remove it from the header file.
14911 2007-08-23  Martin Baulig  <martin@ximian.com>
14913         * mono-debug-debugger.c
14914         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14915         don't notify the debugger about it.
14917         * mono-debug-debugger.h
14918         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14920 2007-08-23  Robert Jordan  <robertj@gmx.net>
14922         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14923         Code is contributed under MIT/X11 license.
14925 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14927         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14929 2007-08-22  Martin Baulig  <martin@ximian.com>
14931         * mono-debug.c: Store debugging info on a per-domain basis and
14932         free it on domain unload.  Add support for unloading symbol files.
14934         * mono-debug.h
14935         (MonoDebugList): New typedef.
14936         (MonoSymbolTable):
14937         - add `data_tables and `type_table'.
14938         - replace 'symbol_files' and `num_symbol_files' with a
14939           `MonoDebugList *'.
14940         (mono_debug_data_table): Removed.
14941         (mono_debug_list_add): New public function.
14942         (mono_debug_list_remove): New public function.
14943         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14944         (mono_debug_init_2_memory): Renamed into
14945         mono_debug_open_image_from_memory().
14946         (mono_debug_close_image): New public function.
14947         (mono_debug_domain_create): Likewise.
14948         (mono_debug_domain_unload): Likewise.
14949         (MONO_DEBUGGER_VERSION): Bump to 60.
14951         * mono-debug-debugger.h
14952         (MonoDebuggerEvent):
14953         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14954         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14955         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14956         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14957           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14958         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14959           meaning.
14960         (mono_debugger_add_symbol_file): Removed.
14961         (mono_debugger_add_type): Removed.
14962         (mono_debugger_lookup_type): Removed.
14963         (mono_debugger_lookup_assembly): Removed.
14965         * domain.c
14966         (mono_domain_create): Call mono_debug_domain_create().
14967         (mono_init_internal): Call mono_debug_init_corlib().
14969         * assembly.c
14970         (mono_assembly_close): Call mono_debug_close_image().
14972 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14974         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14975         mmap call.
14977 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14979         * sgen-gc.c: ensure section->pin_queue_end is initialized
14980         correctly when non pinning objects in the section have been found.
14982 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14984         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14985         containing a list of directories separated by ':'. MSDN docs say
14986         the directories should be separated with ';'. Part of a bugfix for
14987         bug #81446
14989 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14991         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14992         it should MonoType and not MonoClass.
14994 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14996         * culture-info-table.h : regenerated.
14998 2007-08-20  William Holmes  <billholmes54@gmail.com>
15000         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15001          to call ReplaceFile Kernel32 on windows or in io-layer.
15002         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15003         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15004          as an internal call.
15006         Code is contributed under MIT/X11 license.
15008 2007-08-20  Jb Evain  <jbevain@novell.com>
15010         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15011         and MONO_EXCEPTION_FIELD_ACCESS.
15013         * debug-helpers.[c|h]: new mono_field_full_name function.
15015 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15017         * class.c: Removed class_security_level() and moved it to
15018         security-core-clr.c.
15020         * security-core-clr.c, security-core-clr.h: class_security_level()
15021         is now public and renamed to mono_security_core_clr_class_level().
15022         It also looks for security attributes in the classes a class is
15023         nested in.
15025 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15027         * security-core-clr.c, security-core-clr.h: CoreCLR security
15028         utility functions.
15030         * Makefile.am: Added security-core-clr.[ch].
15032         * security-manager.c, security-manager.h: Functions and enum for
15033         setting and getting the security mode.
15035         * class.c: CoreCLR security checks.
15037 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15039         * icall-def.h, process.c, process.h: implemented icall to get
15040         user/system processor times.
15042 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15044         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15045         reader-lock-free jit_info_table.
15047 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15049         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15051         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15053         * object-internals.h (MonoException): Add missing _data member.
15055 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15057         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15058         checking that only methods with matching qname or fqname are picked
15059         from implemented interfaces.
15061 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15063         * verify.c (do_newarr):added, do type verification of
15064         newarr ops, push the right value on the eval stack.
15065         * verify.c (mono_method_verify): use do_newarr
15068 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15070         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15071         factored the common code into get_boxable_mono_type, which
15072         is now using mono_type_get_full, this fixed byref related tests.
15074 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15076         * class.c: added mono_type_get_full, this function has the same
15077         behavior of mono_class_get_full but the returned MonoType has
15078         all metadata of the associated token in case of a typespec token.
15079         * class.c: added mono_type_retrieve_from_typespec, used by 
15080         mono_type_get_full to retrieve the token type.
15081         * class.c (mono_class_create_from_typespec): changed to use
15082         mono_type_retrieve_from_typespec.
15083         * class.c (mono_ldtoken): changed to use mono_type_get_full
15084         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15085         * class-internals.h: exported mono_type_get_full for internal use.
15087 2007-08-16  Jb Evain  <jbevain@novell.com>
15089         * domain.c (supported_runtimes): add entry for
15090         the 'moonlight' runtime version.
15092 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15094         * verify.c (mono_method_verify): small typo sliped in.  
15096 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15098         * verify.c (do_unbox_value): added, do type verification of
15099         unboxing ops
15100         * verify.c (mono_method_verify): use do_unbox_value
15103 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15105         * verify.c (dump_stack_value): fixed typo, was printing string
15106         instead of object on stack.
15107         * verify.c (do_box_value): moved the byref check up as it leads
15108         to invalid code and should be done earlier.
15109         * verify.c: improved error messages for and ldobj
15111 2007-08-15  William Holmes  <billholmes54@gmail.com>
15113         * marshal.c (emit_marshal_custom): Omit the call to 
15114           marshal_native_to_managed when calling native to managed 
15115           and the argument is specified as an out argument.
15117         Code is contributed under MIT/X11 license.
15119 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15121         * verify.c: fixed the type checks for generics, function pointers and vectors.
15122         Added type verification for ldobj and ldtoken. The verifier
15123         would segfault if header or signature of a method contained references
15124         to non-existant types.
15126 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15128         * marshal.c (cominterop_get_ccw): Patch from
15129         Bill Holmes to no walk up interface hierarchy. 
15130         All parent methods should be present in the interface for COM.
15131    
15132         Code is contributed under MIT/X11 license.
15134 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15136         * marshal.c (emit_marshal_com_interface): Patch from
15137         Bill Holmes to handle COM Interfaces as return values
15138         for native->managed calls.
15139    
15140         Code is contributed under MIT/X11 license.
15142 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15144         * marshal.c (cominterop_get_idispatch_for_object): Implement
15145         for runtime callable wrappers.
15146    
15147         Code is contributed under MIT/X11 license.
15149 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15151         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15152         so 2.0 types are accessible
15155 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15157         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15158         once we load mscorlib.   Due to the order in which we initialize,
15159         the mono_assembly_load_full routine that loads mscorlib did not
15160         load friends.   We now load it once we load the
15161         mono_defaults.internals_visible_class class. 
15163         * assembly.c: Expose the mono_load_friend_assemblies method.
15165 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15167         * verify.c: improved the handling of boxing, better
15168         type checking for unary ops and conversion. Fix bug
15169         regarding managed pointer compatibility checking
15171 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15173         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15175         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15177 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15179         * reflection.c (dup_type): Remove.
15180         * class.c (dup_type): Remove.
15181         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15182         instead of the dodgy 'dup_type'.
15183         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15184         handle the case where 'dup_type' needed the second argument.
15186 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15188         * domain.c: Fix a warning.
15190 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15192         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15193         checking that methods with the same fqname are not overridden
15194         with a method from an ancestor.
15196 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15198         * threads.c (free_thread_static_data_helper): Avoid a crash if
15199         thread->static_data is not yet set.
15201 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15203         * marshal.c: Use correct image when emitting
15204         native wrapper for COM calls.
15205    
15206         Code is contributed under MIT/X11 license.
15208 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15210         * icall-def.h, security.c, security.h :
15211           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15213 2007-08-07  Martin Baulig  <martin@ximian.com>
15215         * mono-debug-debugger.h
15216         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15218         * domain.c (mono_domain_free): Call
15219         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15221 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15223         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15224         * verify.c (in_same_block): code should test if either offset is inside the clauses
15225         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15226         and filter blocks
15228 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15230         * image.c (mono_image_close): Fix a leak.
15232         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15234         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15236 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15238         * domain.c, threads.c, threads-types.h: fix memory retention issue
15239         with thread static variables not being cleared on domain unload.
15240         Reuse thread static slots after domain unload.
15242 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15244         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15245         nullable type.
15247         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15248         now done in mono_runtime_invoke_array.
15250         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15251         receiver is a nullable type.
15253         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15254         generic parameter.
15256 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15258         * marshal.c: Implement COM Objects as return type for 
15259         managed->unmanaged calls. Added Release calls for COM Object
15260         out/return values in managed->unmanaged calls.
15262         Code is contributed under MIT/X11 license.
15264 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15266         * threads.h, threads-type.h: move the hazard pointer declarations
15267         to the private header.
15269 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15271         * file-io.c, appdomain.c: memory leak fixes.
15273 2007-08-02  Dick Porter  <dick@ximian.com>
15275         * socket-io.c
15276         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15277         SO_REUSEADDR setting into io-layer/sockets.c.
15279 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15281         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15282         from Object when called on a generic parameter. Fixes #82211.
15284 2007-08-01  Dick Porter  <dick@ximian.com>
15286         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15287         Fixes bug 79250 yet again.
15289 2007-07-30  Martin Baulig  <martin@ximian.com>
15291         Merged the `debugger-dublin' branch.
15293         * mono-debug.h
15294         (MonoDebugDataTable): New typedef.
15295         (MonoDebugMethodAddressList): New typedef.
15296         (MonoDebugWrapperData): Removed.
15297         (MonoDebugSymbolTable): Removed `current_data_table',
15298         `current_data_table_size', `current_data_table_offset'.
15299         (MonoDebugDataItemType): Moved into mono-debug.c.
15300         (MonoDebugMethodJitInfo): Remove `address'.
15301         (mono_debug_data_table): New global variable.
15302         (mono_debug_lookup_method_addresses): New public function.
15303         (mono_debug_find_method): Take a `MonoMethod *', not a
15304         `MonoDebugMethodInfo *'.
15306         * mono-debug.c: Drop support for the old symbol tables.
15308 2007-06-28  Martin Baulig  <martin@ximian.com>
15310         * mono-debug.c (mono_debug_debugger_version): New public variable.
15312 2007-07-31  William Holmes  <billholmes54@gmail.com>
15314         * metadata.c Changed mono_type_create_from_typespec to not insert
15315           the type into the hash map until after
15316           do_mono_metadata_parse_type has completed.
15317         Fixes Bug #82194
15318         Code is contributed under MIT/X11 license.
15320 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15322         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15323         generic parameter. Fixes #82211.
15325 2007-07-27  Jb Evain  <jbevain@novell.com>
15327         * pedump.c (dump_metadata, dump_metadata_header): dump
15328         versions contained in the metadata header.
15330 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15332         * threads.c: register small_id_table with the GC.
15334 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15336         * threads.c, threads.h, class-internals.h, object-internals.h:
15337         Hazard pointers, to be used by lock-free parallel algorithms.
15339 2007-07-26  Dick Porter  <dick@ximian.com>
15341         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15342         routine on non-windows platforms, as I've not managed to think of
15343         a non-kludgy way of doing this.  Finishes off bug 78739.
15345 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15347         * object.c: properly setup interface_bitmap in proxy vtables.
15349 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15351         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15352         to create unique shadow copy target directories, use the domain's
15353         serial number instead. Each domain gets a unique target directory
15354         that way.
15356         * domain.c (mono_domain_create): added code to increment domain
15357         shadow copy serial number and cache the value in the current
15358         domain structure.
15360         * domain-internals.h (struct _MonoDomain): added a new field -
15361         shadow_serial to hold the serial number used in generation of
15362         shadow-copy directories. This is to make sure that the directory
15363         name is unique for each and every domain created. We avoid a race
15364         condition with overriding assemblies already in use by other app
15365         domains.
15367 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15369         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15370         binding generic parameters.
15372 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15374         * metadata.c (do_mono_metadata_parse_generic_class): Use
15375         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15376         error.
15378 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15380         * loader.c, class-internals.h, reflection.c: removed the per-method
15381         generics hashtable: we use the global one through the call of
15382         mono_class_inflate_generic_method ().
15384 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15386         * class.c, metadata.c, class-internals.h: introduce yet another
15387         generics global cache for inflated methods (fixes 98% of the perf
15388         issue in bug #81806).
15390 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15392         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15393         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15394         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15395         return a MonoGenericInst containing (a copy) of those types.
15396         (mono_metadata_inflate_generic_inst): Update to changes.
15397         (mono_metadata_parse_generic_inst): Likewise.
15398         (mono_get_shared_generic_inst): Likewise.
15399         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15400         (mono_reflection_bind_generic_method_parameters): Likewise.
15401         * metadata-internals.h: Likewise.
15402         * icall.c (free_generic_context): Kill.
15403         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15405         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15406         mono_metadata_type_dup.
15407         * marshal.c (mono_mb_create_method): Likewise.
15409         * metadata.c (mono_metadata_type_dup): Rename from
15410         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15411         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15412         * marshal.c, metadata-internals.h: Update to changes.
15414 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15416         * class.c: fixed a small leak for array classes and removed warning.
15418 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15420         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15421         Return 0x8000000 for return parameters. Fixes #82161.
15423 2007-07-21  Marek Habersack  <grendello@gmail.com>
15425         * appdomain.c (get_shadow_assembly_location): append the current
15426         ticks value to the path. Avoids overwriting the same assemblies by
15427         several threads at the same time.
15429 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15430         and Raja R Harinath  <rharinath@novell.com>
15432         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15433         Simplify slightly.
15434         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15435         property for testing if a method is a generic method definition.
15437 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15439         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15441 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15443         * verify.c: used function from private branch, reverted to the one in class.h 
15445 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15447         * verify.c: a typo slipped in and the code wont compile
15449 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15451         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15452         disabled box instruction as it is doing the wrong thing
15453         improved stack dump messages, now it is easier to debug type related issues
15456 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15458         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15460 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15462         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15463         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15464         grouped with class and valuetype. This change will simply 
15465         the code as it should be handled just like unmanaged pointers.
15467 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15469         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15471 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15473         * verify.c: several stack merge issues fixed, reference comparisons now
15474         check the type size. strict type check now works correctly.
15475         added more uses of IS_MANAGED_POINTER macro.
15476         fixed issues pointed by running the test suite against .net.
15477         
15479 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15481         * class.c, loader.c, class-internals.h: Removed the
15482         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15483         defines.
15485         * icall.c: Better error checking in some internal reflection
15486         methods.
15488 2007-07-18  William Holmes  <billholmes54@gmail.com>
15490         * filewatcher.c : removed unused variable 'filename' in 
15491           ves_icall_System_IO_FSW_SupportsFSW
15493 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15495         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15496         obsolete, removed.
15498 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15500         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15501         
15502         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15504 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15506         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15507         Implement generics support.
15508         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15510         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15511         type_args and method_args arguments.
15512         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15513         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15514         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15516 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15518         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15519           It adds a rootimage parameter to mono_reflection_get_type_internal,
15520           adds new function mono_reflection_get_type_with_rootimage and use
15521           the rootimage to resolve the types instead of the current image
15523 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15525         * culture-info-table.h: Forgot to update after r78304.
15527 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15529         * class.c (mono_class_is_open_constructed_type)
15530         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15532 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15534         * class.c (mono_bounded_array_class_get):  method fails if used with
15535         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15536         avoiding calculating the size for such array as it cannot be instantiated.
15537         Fix bug #82015
15539 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15541         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15542         field.
15543         * metadata.c, reflection.c: Update to changes.
15545 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15547         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15548         mono_class_is_valid_enum, they are used to valide a enum when loading.
15549         * reflection.c: used new functions to throw TypeLoadException when and
15550         invalid enum is build with TypeBuilder. Fixes #82018
15551   
15552 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15554         * object.c: forgot commit of mono_class_setup_methods () to access
15555         iface->methods.
15556         * object-internals.h: added a few more handy fields to
15557         MonoIMTCheckItem.
15559 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15561         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15562         iface->methods.
15564 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15566         * class-internals.h, object-internals.h, object.c: IMT-based
15567         interface invocation core from Massimiliano Mantione
15568         (massi@ximian.com) with a reworked arch-specific interface,
15569         bsearch implementation and a few bugfixes and memory savings by me.
15571 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15573         * class.c (mono_class_create_from_typedef): mono would segfault if 
15574         an enum did not have a __value field. It now throws a TypeLoadException
15575         for such cases. Fix bug #82022
15577 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15579         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15581 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15583         * class.c (mono_class_init): If a class is already inited but has
15584         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15586 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15588         * class.c: Properly handle the case of an unimplemented interface
15589         method.  Fixes: 81673.
15591 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15593         * class-internals.h, object.c: cleanup patch from massi: use
15594         MonoVTable->interface_bitmap since the vtable interfaces offset array
15595         is going away.
15597 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15599         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15600         GetMDStreamVersion icall instead.
15602 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15604         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15605         not use mono_dl_build_path() with a full library name: makes
15606         fallbacks to libgaim and libfam work.
15608 2007-07-06  William Holmes  <billholmes54@gmail.com>
15610         * assembly.c: Added a continue statement in probe_for_partial_name when
15611          parse_assembly_directory_name fails.  Fixes : 82002
15613 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15615         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15616         and added a verification  for TYPEDBYREF.
15617         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15618         make native int interchangeable with int32 and some small cleanup and formating.
15619         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15620         handle byref of byref.
15621         * verify.c (push_local): handle byref of byref.
15622         * verify.c (do_binop): invalid mix of values is unverifiable
15623         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15624         added visibility checks
15625         * verify.c (field related method): added visibility checks
15626         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15628 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15630         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15631         string.
15633 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15635         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15637         * marshal.c (emit_marshal_string): When returning a string from managed code,
15638         allways make a copy even for unicode strings. Fixes #81990.
15640 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15642         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15643         of byref generic inst types (bug #81997).
15645 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15647         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15648         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15650 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15652         * marshal.c (emit_marshal_string): Add support for unicode strings in
15653         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15655 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15657         * verify.c: field load/store are now verified, missing only access checks now
15659 2007-06-28  Martin Baulig  <martin@ximian.com>
15661         * mono-debug.c (mono_debug_debugger_version): New public variable.
15663 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15665         * locales.c: When constructing DateTimeFormat or NumberFormat for
15666         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15667         MonoCultureInfo contructed from the current locale is always
15668         read-only and has UseUserOverride set to true. All MonoCultureInfo
15669         instances returned for GetCultures have both IsReadOnly and
15670         UseUserOverride set to true. Fixes part of bug #81930.
15672 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15674        * icall-def.h: Update System.__ComObject icalls
15675        * marshal.c: Avoid managed transition (and object creation)
15676        when looking up COM interface in RCW.
15677        * marshal.h: Ditto.
15678        
15679        Code is contributed under MIT/X11 license.
15681 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15683         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15684         to avoid crashes during assembly unloading.
15686 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15688         Fix MethodInfo.IsGenericMethodDefinition
15689         * reflection.c (mono_reflection_bind_generic_method_parameters):
15690         Rearrange code to ensure we always uses a generic method definition.
15691         * class.c (mono_class_inflate_generic_method_full): Set
15692         'generic_container' field only for generic method definitions.
15693         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15694         Use presense of 'generic_container' field as indication of being a
15695         generic method definition.
15697 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15699         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15701         * object-internals.h: Reflect changes in the layout of the managed Delegate
15702         class.
15703         
15704         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15705         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15706         runtime memory used by the dynamic method. Fixes #77146.
15708 2007-06-21  Dick Porter  <dick@ximian.com>
15710         * file-io.h: 
15711         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15712         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15713         81767.
15715 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15717         * reflection.c (method_encode_methodspec): Add a tripwire.
15718         * class.c (inflate_generic_type): The fully open generic type is
15719         not the same as the generic type definition.
15721 2007-06-21  Martin Baulig  <martin@ximian.com>
15723         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15725         * mono-debug-debugger.h
15726         (MonoDebuggerBreakpointInfo): Removed.
15727         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15728         (mono_debugger_remove_breakpoint): Likewise.
15729         (mono_debugger_breakpoint_callback): Likewise.
15730         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15732 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15734         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15735         generic type is not the same as the generic type definition.
15736         * class.c (mono_generic_class_get_class): Likewise.
15738 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15740         * icall.c: The second argument to 
15741         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15742         is a MonoType not a MonoClass.
15744 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15746         * verify.c: support for function pointers in the verifier
15748 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15750         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15752 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15754         * assembly.c: removed Mono.Data.SqliteClient from the list of
15755         forward-compatible assemblies as it breaks the ABI (bug #81899).
15757 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15759         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15760         lookup/update with the loader lock.
15761         * reflection.c (mono_class_bind_generic_parameters): No need to
15762         protect mono_metadata_lookup_* with the loader lock.
15763         * class.c (inflate_generic_type): Likewise.
15764         
15765         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15766         on a generic instantiated type.
15768 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15770         *verify.c: produce meanfull error messages on verification error
15771         *verify.c: fixed some cases of verification errors reported as validation errors
15772         *pedump.c: fixed the error name array, now it shows validation errors properly
15773         *verify.h: fixed the contant that should be used for verification errors
15775 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15777         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15778         for bug #77596, 81858 and 80743 (generics data structures on domain
15779         unload).
15781 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15783         Avoid allocating 'MonoGenericContext' on the heap.
15784         * class-internals (_MonoMethodInflated::context): Make field
15785         inline, not a pointer.
15786         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15787         stack.  Use the context embedded within the inflated method as the
15788         hash key, rather than 'new_context'.
15789         * class.c (inflate_generic_context): Simplify.  Return a struct
15790         rather than allocating on the heap.
15791         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15792         doesn't salt away a copy of the context -- simplifying the
15793         lifetime rules of a 'MonoGenericContext *'.
15794         (mono_method_get_context): Return pointer to embedded context.
15795         (setup_generic_array_ifaces): Allocate temporary context on stack.
15796         * reflection.c (inflate_mono_method): Likewise.
15797         (mono_reflection_bind_generic_method_parameters): Likewise.
15798         Use the context embedded within the inflated method as the hash key.
15800         Avoid a source of allocation of 'MonoGenericContext'.
15801         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15802         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15803         * class.c: Update to changes.
15804         (mono_generic_class_get_context): Simplify drastically.  Now just
15805         returns a pointer to the field.
15806         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15807         argument as a const pointer.
15808         (mono_metadata_generic_context_equal): Likewise.
15809         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15810         Update to changes.
15812 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15814         * verify.c improved the handling of brtrue/brfalse, factored out common code
15816 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15818         Kill MonoGenericMethod.
15819         * class-internals.h (MonoGenericContext::method_inst): Rename from
15820         'gmethod' and convert to a MonoGenericInst.
15821         (MonoGenericMethod): Remove.
15822         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15823         * loader.c (method_from_methodspec): Update to changes.  Use a
15824         MonoGenericContext as the key to the hashtable.
15825         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15826         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15827         (mono_metadata_generic_context_hash): Likewise from
15828         'mono_metadata_generic_method_hash'.  Change hash function.
15829         (mono_metadata_load_generic_params): Update to changes.
15830         (mono_get_shared_generic_method): Remove.
15831         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15832         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15833         (inflate_generic_context): Likewise.
15834         (mono_class_inflate_generic_method_full): Likewise.
15835         (setup_generic_array_ifaces): Likewise.
15836         (mono_class_create_from_typespec): Likewise.
15837         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15838         (method_encode_methodspec): Update callsite.
15839         (reflection_methodbuilder_to_mono_method): Update to changes.
15840         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15841         MonoGenericContext as the key to the hashtable.
15842         (inflate_mono_method): Update to changes.
15844         * class-internals.h (MonoGenericMethod::container): Remove.
15845         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15847 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15849         * profiler-private.h, profiler.c, profiler.h: added API to profile
15850         exception events.
15852 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15854         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15856 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15858         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15859         Fixed overflow and underflow not aborting the verification process.
15861 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15863         * class-internals.h (MonoStats): Added stats entries for dynamic
15864         code allocations.
15866 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15868         * loader.c (mono_free_method): Free header->locals and header->clauses.
15870         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15871         dynamic case.
15873         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15875         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15877 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15879         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15880         the tables.
15882 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15884         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15886 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15888         MonoGenericMethod on a diet
15889         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15890         here ...
15891         (_MonoGenericMethod::reflection_info): ... from here.
15892         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15893         Update to changes.
15894         * reflection.c (inflate_mono_method): Likewise.
15895         (mono_reflection_bind_generic_method_parameters): Likewise.
15897 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15899         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15900         *verify.c: factored long ldarg forms to share code with short forms
15902 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15904         *verify.c: fixed code formating factored some duplicate code
15905         into a new function
15907         *verify.h: fixed binary incompatibility introduced earlier
15909         *pedump.c: fixed formating
15911 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15913         Fix assertion when disassembling Mono.C5.dll
15914         * loader.c (method_from_methodspec): Avoid inflating a method
15915         twice with the same context.  If the methodref is inflated, use
15916         the declaring method instead.
15918         * class.c (mono_class_from_generic_parameter): Fix case similar to
15919         bug #81830 handled below, but for method containers.
15921 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15923         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15924         get_shared_generic_class.  Directly inflate the instance.
15925         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15926         (inflate_generic_class): Delete.
15927         (get_shared_generic_class): Delete.  Move setting of
15928         'cached_class' and 'cached_context' ...
15929         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15931         * metadata.c (mono_metadata_lookup_generic_class): Change
15932         signature to take the components of a MonoGenericClass rather than
15933         an allocated MonoGenericClass.  Change semantics to be intern-like.
15934         * reflection.c (mono_class_bind_generic_parameters): Update to
15935         changes.  Make locking region tighter.
15936         * class.c (inflate_generic_class): Update to changes.
15937         (get_shared_generic_class): Likewise.
15938         * metadata-internals.h: Likewise.
15940         * reflection.c (mono_class_bind_generic_parameters): Take and
15941         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15942         (mono_reflection_bind_generic_parameters): Use
15943         'mono_class_bind_generic_parameters' rather than duplicate the code.
15944         * class.c (mono_bounded_array_class_get): Update to changes.
15945         * object-internals.h: Likewise.
15947         * reflection.c (mono_class_bind_generic_parameters): Only support
15948         parameterizing generic type definitions.  Remove support for other
15949         open types.
15951 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15953         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15955         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15956         in the dynamic case.
15958 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15960         * threads.c: When cleaning up thread, reset the Background bit.
15961         Fixes bug #81720.
15963 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15965        * metadata.c: Move variable declarations to top of scope.
15966        * verify.c: Move variable declarations to top of scope.
15968        Code is contributed under MIT/X11 license.
15970 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15972         * reflection.c (mono_class_bind_generic_parameters): Replace
15973         open-coded loop with mono_metadata_inflate_generic_inst.
15975         * class.c (get_shared_generic_class): Don't call
15976         mono_get_shared_generic_inst.  Use the container's own
15977         'class_inst'.
15979         * metadata.c (mono_metadata_load_generic_params): Move
15980         initialization of 'context' field here from ...
15981         * class.c (mono_class_create_from_typedef): ... here, and ...
15982         * loader.c (mono_get_method_from_token): ... here.
15984         * class.c (get_shared_generic_class): Rename from
15985         mono_get_shared_generic_class and make static.
15986         (mono_get_shared_generic_inst): Move to metadata.c.
15987         * loader.c (mono_get_shared_generic_method): Likewise.
15988         * class-internals.h, metadata-internals.h: Update to changes.
15990         Fix #81830
15991         * class.c (mono_class_from_generic_parameter): Don't assume a
15992         generic container owner exists.  Generic containers from monodis
15993         don't have any.
15995 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15997         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15998         * verify.h: new typedefs to returns the non-verifiable status
15999         * verify.c: initial implementation of generics, stack merging and object compatibility check
16001 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16003         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16004         a MonoInternalHashTable again (fixed bug in internal hash table
16005         code).
16007 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16009         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16010         MonoInternalHashTable again (fixed bug in internal hash table
16011         code).
16013 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16015         * class.c, image.c, class-internals.h, domain.c,
16016         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16017         changes.  Have to figure out what makes them break the SWF
16018         regression.
16020 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16022         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16023         a MonoInternalHashTable now.
16025 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16027         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16028         MonoInternalHashTable now.
16030 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16032         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16033         invoke_impl code.
16035         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16037         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16038         dependent trampoline.
16040         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16042         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16044 2007-05-29  Robert Jordan  <robertj@gmx.net>
16046         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16048 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16050         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16052 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16054        * marshal.c: Fix interface lookup loops for
16055        cominterop_get_com_slot_for_method and 
16056        cominterop_get_method_interface. Only need to lookup
16057        if type is a class, else use interface type method is on.
16059        Code is contributed under MIT/X11 license.
16061 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16063         * reflection.c: HasSecurity can be present even if no specially 
16064         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16065         SecurityAttribute). Fix CAS regression tests on buildbot.
16067 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16069        * appdomain.c: Add configure checks for header files.
16070        * image.c: Add configure checks for header files.
16071        * file-io.c: Add configure checks for header files.
16072        * debug-mono-symfile.c: Add configure checks for header files.
16073        * threadpool.c: Add configure checks for header files.
16074        * console-io.c: Add configure checks for header files.
16075        * profiler.c: Add configure checks for header files.
16076        * rawbuffer.c: Add configure checks for header files.
16077        * icall.c: Add configure checks for header files.
16078        * rand.c: Add configure checks for header files.
16079        * socket-io.c: Add configure checks for header files.
16081        Code is contributed under MIT/X11 license.
16083 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16085         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16086         assertion as it breaks the build.
16087         
16088         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16090         * reflection.c (lookup_custom_attr): Make a copy here too.
16092         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16093         dynamic images.
16095         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16096         images.
16098         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16099         info.
16101 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16103         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16104         (load_cattr_value): Ditto.
16106 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16108         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16110 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16112         * threads.c: In "start_wrapper", set apartment_state to MTA if
16113         apartment_state is Unknown and we're running on 2.0 profile or
16114         higher.
16115         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16116         to main method, then set apartment_state to Unknown on 1.0 profile,
16117         and MTA on 2.0 profile.
16119 2007-05-16  Jb Evain  <jb@nurv.fr>
16121         * class-internals.h (MonoDefaults): Add an attribute_class and
16122           customattribute_data_class.
16123         * domain.c (mono_init_internal): Populate them.
16124         * reflection.c: Use them to remove duplicates. Make a vew
16125         MonoClass variables `static'.
16127 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16129         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16130         step in implementing IMT, so that all isinst checks now can go
16131         through the bitmap.
16132         This was needed because vtables for TransparentProxy need to look
16133         like the vtable of the "target" class, so they need to point to
16134         its interface bitmap directly.
16136         * object.c: inside "mono_class_create_runtime_vtable" and
16137         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16139 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16141         * object-internals.h
16142           culture-info.h : added territory field in MonoCulture and
16143           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16144         * locales.c : fill territory field above too.
16145         * culture-info-table.h : regenerated.
16147 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16149         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16150         Fixes #81599.
16152 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16154         * object.c: Always initialize apartment, even if 
16155         there is no custom attributes on entry point.
16156         
16157         Code is contributed under MIT/X11 license.
16159 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16161         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16162         * metadata.c: If no encoding is set, check for unicode
16163         on class.
16164         
16165         Code is contributed under MIT/X11 license.
16167 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16169         * threads.c: Handle if mono_thread_current returns NULL 
16170         
16171         Code is contributed under MIT/X11 license.
16173 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16175         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16176         in start_wrapper. Added mono_thread_init_apartment_state and
16177         mono_thread_cleanup_apartment_state.
16178         * object.c: Initialize thread apartment state on main thread
16179         by checking for STAThreadAttribute on entry point.
16180         * object-internals.h: Add apartment_state field to MonoThread.
16181         * threads-types.h: Add unmanaged definition of 
16182         System.Threading.ApartmentState, MonoThreadApartmentState.
16183         
16184         Code is contributed under MIT/X11 license.
16185         
16186 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16188         * class.c: Fix windows build.
16189         * class-internals.h: Fix windows build.
16190         
16191         Code is contributed under MIT/X11 license.
16193 2007-05-08  Robert Jordan  <robertj@gmx.net>
16195         * process.c (CreateProcess_internal):
16196         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16197         .CreateNoWindow was specified. Fixes #81496.
16199 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16201         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16202         step in implementing IMT, replaced it with two compact arrays
16203         (interfaces_packed and interface_offsets_packed) and a bitmap that
16204         is used for isinst checks (interface_bitmap).
16206         * class.c: (compare_interface_ids): compare function to pass to
16207         bsearch when looking for an interface with a given id.
16208         (mono_class_interface_offset): reimplemented using bsearch on
16209         interfaces_packed, getting the offset from interface_offsets_packed.
16210         (print_implemented_interfaces): utility debugging function.
16211         (setup_interface_offsets): reworked to initialize interfaces_packed,
16212         interface_offsets_packed and interface_bitmap.
16214         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16215         with uses of interfaces_packed and interface_offsets_packed.
16217 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16219         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16220         mono_class_interface_offset prototype to wrap all accesses to
16221         "MonoClass.interface_offsets".
16223         * class.c: Implemented mono_class_interface_offset, and wrapped all
16224         accesses to "MonoClass.interface_offsets".
16226         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16227         "MonoClass.interface_offsets".
16229 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16231         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16232         GetMethodFromHandle overloads (bug #78637).
16234 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16236         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16237         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16239 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16241         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16242         #81498.
16244         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16245         gracefully.
16246         (mono_custom_attrs_from_index): Ditto.
16248         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16249         Fixes #81501.
16251 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16253         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16254         is now allocated from a mempool.
16256 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16258         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16259         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16261 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16263         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16264         mono_loader_clear_error () too late. Fixes #81463.
16266 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16268         * culture-info-table.h : regenerated.
16270 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16272         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16273         is missing.
16275 2007-04-25  Dick Porter  <dick@ximian.com>
16277         * Makefile.am: Put the mingw enforced-optimisation back into the
16278         PLATFORM_WIN32 section.
16280 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16282         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16283         patch.
16285         * image.c (mono_image_load_module): New API function to load a module reference.
16287         * image.c (load_modules): Load modules lazily. Fixes #80812.
16289         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16290         
16291         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16293         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16294         to mono_image_load_module_dynamic.
16296 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16298         * marshal.c: Fix calling convention for CCW on non-windows
16299         platforms. STDCALL on windows, CDECL everywhere else to work 
16300         with XPCOM and MainWin COM.
16301         
16302         Code is contributed under MIT/X11 license.
16304 2007-04-23  Martin Baulig  <martin@ximian.com>
16306         Fix #80969.
16308         * loader.c
16309         (method_from_memberref): Added `gboolean *used_context' argument.
16310         (mono_get_method_from_token): Likewise.
16311         (mono_get_method_full): Don't insert the method in the cache when
16312         `used_context' is true.
16314 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16316         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16318         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16319         create new MonoTypes for returned types.
16320         * class.c (mono_generic_class_get_class): Export mono-internal.
16321         * class-internals.h: Update to changes.
16323 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16325         * threadpool.c, threadpool.h, icall-def.h: patch from
16326         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16328 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16330         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16331         
16332         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16334         * threads.c (mono_thread_get_stack_bounds): New helper function.
16336         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16337         Correctly compute stack bounds when attaching. Fixes #81394.
16339 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16341         * reflection.c: fix handling of doubles in custom attributes
16342         for the arm-fpa format (bug #81368).
16344 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16346         * reflection.c (assembly_add_win32_resources): Mildly relax an
16347         bounds check to let the end pointer point just past the end of the
16348         allocated buffer.  (may fix #81384)
16350 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16352         * culture-info-table.h : regenerated.
16354 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16356         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16357         the thread is aborted early.
16359 2007-04-05  Dick Porter  <dick@ximian.com>
16361         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16362         FindFirstFile()/FindNextFile() to find entries.  This lets the
16363         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16364         81038.
16366         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16367         the parameters of
16368         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16370 2007-04-04  Martin Baulig  <martin@ximian.com>
16372         * debug-helpers.c
16373         (mono_method_desc_full_match): Add support for nested classes.
16375 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16377         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16379 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16381         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16382         waiting for too many threads.
16384 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16386         * environment.c: Fix return value check on uname so we can get the 
16387         executing version on Solaris operating systems.
16389 2007-03-28  Jb Evain  <jbevain@gmail.com>
16391         * class.c (mono_type_get_name_recurse): Complete the
16392         fix for the creation of assembly qualified names for
16393         pointer types. Fixes #81208.
16395 2007-03-27  Dick Porter  <dick@ximian.com>
16397         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16398         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16399         changed.
16401         * threads.c
16402         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16403         the value of ReleaseMutex().
16405 2007-03-27  Dick Porter  <dick@ximian.com>
16407         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16408         in little-endian order, not network endian, so must be converted
16409         to host endian here.  Fixes bug 80593.
16411 2007-03-22  Jb Evain  <jbevain@gmail.com>
16413         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16414         qualified names for pointer types. Fixes #81208.
16416 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16418         * marshal.c: Add support for PreserveSigAttribute. 
16419         
16420         Code is contributed under MIT/X11 license.
16422 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16424         * process.c: Fix endianness issues. Fixes #81126.
16426         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16427         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16429         * image.c (mono_image_lookup_resource): Make this work on big-endian
16430         machines.Change API contract so the caller needs to free the return value.
16431         
16432         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16433         API change.
16434         
16435 2007-03-14  Martin Baulig  <martin@ximian.com>
16437         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16438         mono_type_get_desc() as well.
16440 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16442         * icall.c:  Fix environ access in VS.  
16443         
16444 2007-03-13  Alp Toker  <alp@atoker.com>
16446         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16447         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16448         #63841.
16450 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16452         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16453         circular references among dynamic methods. Fixes #81091.
16455         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16457 2007-03-09  Martin Baulig  <martin@ximian.com>
16459         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16461 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16463         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16464         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16465         
16466         Code is contributed under MIT/X11 license.
16467         
16468 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16470         * loader.c: Reapply patch for bug #79424.
16472 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16474         * metadata.c (mono_type_to_unmanaged): Only convert object to
16475         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16477 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16479         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16480         (and incorrectly set) is_reference field from MonoGenericInst.
16482 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16484         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16485         a little earlier.
16487         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16489         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16491 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16493         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16494         FileOptions.1 value to mean "temporary", map that to
16495         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16497         Fixes 80688
16499 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16501         * appdomain.c: implement MS .Net style shadow copying. Copies of
16502         the assemblies are made in a subdirectory of the dynamic base
16503         directory, the assembly names are preserved.
16504         Copy .mdb and .config files along with the assemblies being shadowed.
16506 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16508         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16509         (emit_marshal_handleref): Ditto.
16511         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16512         on Visual C++. Fixes #80671.
16514 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16516         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16517         for clone operations.
16519 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16521         * marshal.c: Fix warnings.
16523 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16525         * loader.c: allow case-insensitive matching of the dll name
16526         in dllmap handling when prefixed with "i:".
16528 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16530         * threads.c: Fix #ifdef for dummy_apc function for VS.
16532 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16534         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16536 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16537         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16538         giving precedence to the methods with a fully qualified name
16539         (InterfaceName.MethodName) when building the interface sections
16540         of the vtable.
16542 2007-02-16  Dick Porter  <dick@ximian.com>
16544         * threadpool.c (append_job): Fix fast-path array handling, so it's
16545         less likely the array will grow exponentially when the load is
16546         heavy.
16548 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16550         * metadata-internals.h, loader.c: fix dllmap lookup order
16551         for non-function maps, too, and prepare for fallback code.
16553 2007-02-12  Robert Jordan  <robertj@gmx.net>
16555         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16556         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16557         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16558         GlobalFree. Fixes a part of bug #77075.
16560 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16562         * loader.c: implemented typedef parent in field memberref.
16564 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16566         * marshal.c: Fix warnings and remember to call Release on
16567         IUnknown of RCW.
16568         
16569         Code is contributed under MIT/X11 license.
16571 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16573         * class-internals.h: Add MonoHandleRef definition, and
16574         handleref_class to mono_defaults. 
16576         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16577         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16579         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16580         (do nothing on this stage)
16581         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16582         (emit_marshal_handleref): New method, used for argument handling
16583         of HandleRefs. 
16585 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16587         * class.c (mono_class_setup_parent): Lazily init com types.
16588         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16589         init com types.
16590         * object.c (mono_remote_class_vtable): Lazily init com types.
16591         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16592         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16593         * domain-internals.h: Expose mono_init_com_types.
16594         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16595         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16596         Add support for COM Callable Wrapper marshalling.
16597         * marshal.h: Add icall definitions.
16598         * gc.c: Handle freeing of CCWs in finalizer code.
16599         
16600         Code is contributed under MIT/X11 license.
16602 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16604         * reflection.c: changed all the signature encoding code to use
16605         a variable-sized buffer.
16607 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16609         * marshal.c: locking fixes: never take the loader lock
16610         or other runtime locks when holding the marshal lock
16611         (fixes bug#80664).
16613 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16615         * marshal.c: make the delegate function pointer mapping
16616         work for the moving GC.
16618 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16620         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16621         for bug #80618.
16623 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16625         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16626         gmodule.
16628 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16630         * threadpool.c: made the code moving-GC safe.
16632 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16634         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16635         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16636         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16637         warning cleanup.
16638         * reflection.c: warning cleanup, some threading and moving GC fixes.
16640 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16642         * class.c, loader.c: create the needed Set/Get/Address array methods
16643         as well as the .ctors in mono_class_init (), fixes bug #80567.
16645 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16647         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16648         we doesn't decrease its alignment. Should fix the sparc build.
16650 2007-01-24  Dick Porter  <dick@ximian.com>
16652         * socket-io.c
16653         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16654         Create the returned object if we need to ignore an unsupported
16655         socket option.  Fixes a segfault reported by Atsushi.
16657 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16659         * class.c, object.c: restrict GC-tracked fields to
16660         UIntPtr fields used inside corlib, so we provide better
16661         type info to the GC and also allow broken packing as in
16662         bug #80580.
16664 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16666         * sgen-gc.c: removed duplicated function.
16668 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16670         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16671         value that means that the value is not supported, but that we
16672         should not return a failure, but instead report this as a
16673         successful operation.
16675 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16677         Fix tests/bug79956.2.il
16678         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16679         (mono_generic_class_get_class): If the generic definition in an
16680         enum, copy over other fields related to it.
16682 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16684         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16685         genericinst enums (bug #79215).
16687 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16688         * class.c: Fix bug 80307.
16690 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16692         * image.c: if the file table is not present, try to load
16693         all the modules, since we don't have info about them
16694         having or not metadata (bug #80517).
16695         * assembly.c: allow mono_assembly_load_references () to
16696         work for netmodules.
16698 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16700         * image.c, metadata-internals.h, object.c: execute module
16701         cctors when running on the 2 runtime if present (bug #80487).
16703 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16705         * icall.c: optimized InitializeArray() on bigendian.
16707 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16709         * icall.c: fix for the broken ARM FPA double format.
16711 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16713         * icall.c: handle endian issues for r4 and r8 types, too, in
16714         the InitializeArray() icall.
16716 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16718         * loader.c (mono_loader_error_prepare_exception): Clear the error
16719         once we have extracted the information from it, do this before we
16720         call into the JIT's class loading mechanisms.
16722         * object.c (mono_class_create_runtime_vtable): Do not clear the
16723         loader error before calling mono_class_get_exception_for_failure
16724         as the loader error is needed inside
16725         mono_class_get_exception_for_failure to throw the error (thinko).
16727         Fixes #80521
16728         
16729 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16731         * reflection.c: align fields rva data so it's faster to load at
16732         runtime.
16734 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16736         Prepare to simplify GenericMethod handling.
16737         * class-internals.h (mono_method_get_context): New accessor function.
16738         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16739         rather than directly accessing '->context' field.
16741         * class-internals.h (_MonoGenericParam.method): Move ...
16742         (_MonoGenericContainer): ... here.  Add into union with klass field.
16743         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16744         Update to changes.
16746 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16748         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16749         the wrapper type enum and reduce relocations.
16751 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16753         * reflection.c (inflate_mono_method): Reuse method instantiation
16754         from the generic method, if available.
16756 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16758         * marshal.c (emit_marshal_variant): Fix conv_arg
16759         type in last commit, based on whether parameter is byref.
16760         
16761 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16763         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16764         marshalling.
16765         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16766         MONO_TYPE_OBJECT back for VARIANT support.
16768 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16770         * marshal.c, marshal.h, icall-def.h: Implement 
16771         Marshal.ReAllocCoTaskMem.
16773 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16775         * marshal.c: memory retention fixes: use the proper
16776         image cache for runtime_invoke method lookups.
16778 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16780         * mempool.c: added code to help debug mempool allocations.
16782 2007-01-11  Dick Porter  <dick@ximian.com>
16784         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16785         support (experimenting with faking it with IP_MTU_DISCOVER for
16786         systems that don't have IP_DONTFRAGMENT.)
16787         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16788         icall.
16790         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16792         * socket-io.h: Add new fields to MonoSocketAsyncResult
16793         corresponding to the new ones in Socket.cs.
16795 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16797         Fix IronPython regression mentioned in #80249
16798         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16799         'cached_context' field, since it may have been initialized as a
16800         side-effect of metadata parsing.
16802         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16803         (_MonoGenericClass.cached_class): Move here and rename from lone
16804         remaining field of ...
16805         (_MonoInflatedGenericClass): ... this.  Remove.
16806         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16807         to changes.
16809         Fix mcs/tests/test-128.cs regression.
16810         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16811         2007-01-10 change below.
16812         [MONO_TYPE_OBJECT]: Recurse into array case.
16814 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16816         * class-internals.h (mono_get_inflated_generic_class): Remove.
16817         * class.c (mono_get_inflated_generic_class): Remove.
16818         (mono_generic_class_get_class): Rename from
16819         mono_class_create_generic.
16820         (mono_class_from_mono_type) [GENERICINST]: Use it.
16821         * reflection.c, metadata.c: Update to changes.  Use
16822         'mono_class_from_mono_type'.
16824 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16826         * reflection.c: use passed type when encoding an array element
16827         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16829 2007-01-09  Robert Jordan  <robertj@gmx.net>
16831         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16832         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16833         Fixes bug #80392.
16835 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16837         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16839         * object.c (set_value): Avoid aliasing between type->data.klass
16840         and type->data.generic_class.
16842         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16844 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16846         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16847         between type->data.klass and type->data.generic_class.
16849 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16851         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16852         value in out parameters.
16854 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16856         Simplify invariant for MonoGenericClass::klass field.
16857         * class.c (mono_class_create_generic): Verify 'klass' is null.
16858         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16859         initialize 'klass' field.
16861 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16863         Ongoing work to avoid redundant data and simplify invariants.
16864         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16865         'generic_class', and change type to a GenericInst.
16866         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16867         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16869 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16871         * class.c : skip io-layer under PLATFORM_WIN32.
16873 2007-01-03  Tor Lillqvist  <tml@novell.com>
16875         Fix #80305: In a bundled executable, look in the bundled exe
16876         assembly to determine the runtime version. Add the possibility to
16877         bundle also the machine.config file.
16878         
16879         * assembly.c (mono_assembly_open_from_bundle): Make
16880         non-static. Allow being called even if we have no bundled
16881         assemblies, and return NULL right away in that case.
16883         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16884         here.
16886         * domain.c (app_config_parse): Take an assembly exe file name as
16887         parameter instead of a config file name. Check for a bundled
16888         config file for that assembly by calling
16889         mono_config_string_for_assembly_file() (see below) before looking
16890         for one in the file system.
16891         (get_runtimes_from_exe): Corrsponding change to call of
16892         app_config_parse().
16893         (get_runtimes_from_exe): Check for bundled assembly exe file first
16894         by calling mono_assembly_open_from_bundle(). If no bundled
16895         assembly exe file is found, call mono_image_open() as before to
16896         look it up in the file system.
16898         * mono-config.c: Add variable bundled_machinec_onfig.
16899         (mono_config_string_for_assembly_file): New function.
16900         (mono_config_for_assembly): Move code snippet that looks for a
16901         bundled assembly .config file into the above new function. Call
16902         it.
16903         (mono_register_machine_config, mono_get_machine_config): New
16904         functions to set and retrieve
16906         * assembly.h: Declare mono_register_machine_config().
16908         * mono-config.h: Declare mono_get_machine_config() and
16909         mono_config_string_for_assembly_file().
16911         * icall.c: No declaration of environ necessary on Win32. It is
16912         declared (as a macro expanding to a function call) in stdlib.h.
16913         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16914         New internal mono function. Returns the value of
16915         mono_get_machine_config() as a Mono string.
16917         * icall-def.h: Add get_bundled_machine_config().
16919 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16921         Remove redundant field
16922         * class-internals.h (_MonoGenericContext.container): Remove field.
16923         * loader.c (mono_method_get_signature_full): Don't parse a
16924         "container" for a signature parse when the signature is inflated
16925         immediately.
16926         (method_from_methodspec): Likewise, for a generic_inst.
16927         * class.c, metadata.c, reflection.c: Update to changes.
16929 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16931         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16932         'cached_context', and change semantics -- it starts off NULL, and
16933         is initialized on demand.
16934         * class.c (mono_generic_class_get_context): New accessor to
16935         replace 'context' field accesses.
16936         (mono_class_get_context): New helper.
16937         (*): Update to changes.
16938         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16940 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16942         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16943         before the memcpy.   Fixes Marshal2 regression.
16945 2007-01-02  Jb Evain  <jbevain@gmail.com>
16947         * blob.h: add a MONO_TYPE_ENUM definition
16948         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16949         fix the encoding of arrays of enums in custom attributes.
16951         Fixes #79666.
16953 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16955         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16956         string is null terminated, but only cut the string short if it
16957         overflows the buffer.   
16958         
16959         (mono_string_to_byvalstr): Also fix this routine.   The code here
16960         was not properly terminating a string (it was only terminated
16961         because of the previous catch-all memset). 
16963         I left the memset, because I do not know if applications expect
16964         the runtime to clear this region. 
16966         Fixes #79944.
16968         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16969         Clear the error before returning to unmanaged code to prevent the
16970         runtime from being confused later on (fixes  80420).
16971         (ves_icall_type_from_name): Always call mono_loader_clear_error
16972         after parsing a type that could have failed.
16973         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16975         * loader.c (mono_loader_clear_error): Fix indentation.
16977 2006-12-28  Martin Baulig  <martin@ximian.com>
16979         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16981 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16983         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16984         getting a token for an EnumBuilder.
16986 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16988         * reflection.c: be more careful in case resource generation
16989         fails to create the data array.
16991 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16993         * sgen-gc.c: write barrier for clone and fix unregister handles.
16995 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16997         * reflection.c: some fixes needed in the generics code for the moving GC.
16999 2006-12-22  Robert Jordan  <robertj@gmx.net>
17001         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17002         account. Fixes bug #80299.
17004 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17006         Fix WaitHandle usage in delegates.
17007         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17008         * object.c (mono_wait_handle_new): Use the property set method to
17009         initialize the handle.
17010         (mono_wait_handle_get_handle): New.
17011         * threadpool.c (mono_async_invoke): Use it.
17012         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17013         Likewise.
17014         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17016 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17018         * marshal.c (emit_marshal): Call emit_marshal_variant and
17019         emit_marshal_com_interface when applicable.
17020         (emit_marshal_variant, emit_marshal_com_interface): Add
17021         methods for this case and remove if's from emit_marshal_object.
17022         
17023 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17025         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17027 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17029         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17030         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17031         and GlobalFree on Windows. Remove FIXME.
17033 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17035         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17036         implementation for managed objects.
17038 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17040         * object.c: implemented code to be used for checking
17041         that no reference field overlaps with non-references.
17043 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17045         * threadpool.c: fix queue code to be compatible with the
17046         moving GC.
17048 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17050         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17051         in structures by throwing ArgumentNullException.
17053         (emit_marshal_safehandle): Also when they are null parameters.
17055         (emit_marshal_safehandle): Add support for ref
17056         SafeHandles parameters
17058 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17060         * profiler.c: updated to use the mono-dl API instead of
17061         gmodule.
17063 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17065         * profiler.c: updated to use the mono-dl dynamic loading
17066         API instead of gmodule.
17068 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17070         * profiler.c: use readlink, older versions of glib don't have
17071         g_file_read_link ().
17073 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17075         * profiler.c: try to detect the path to mono if libc fails to provide
17076         a useful name (bug #80286).
17078 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17080         Fix #80242
17081         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17082         instance, use the generic type definition instead.
17083         (ves_icall_Type_GetNestedTypes): Likewise.
17084         * class.c (mono_class_create_generic): Always set the
17085         nested_classes of a generic instance to NULL, even if the generic
17086         type definition has nested types.
17088 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17090         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17091         and fix on Linux.
17092         
17093 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17095         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17096         my arguments were in the wrong order.   I also fixed the Windows
17097         version which seems to have had the same issue.
17099         (mono_free_bstr): On Unix, this is g_free.
17100         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17101         conversions (for the tests in corlib to pass).
17103 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17105         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17106         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17107         exception if a ref SafeHandle in a struct has changed).
17108         
17109         (emit_struct_conv): Do not perform layout checks for classes
17110         derived from SafeHandle, as those are specially handled. 
17112         (emit_object_to_ptr_conv): Add support for
17113         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17115         (emit_marshal_safehandle): Implement conversion of return values
17116         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17117         
17118         * threads.c: WaitHandle now is compiled with two different handles
17119         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17120         for 2.0.
17121         
17122         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17123         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17124         these routines to cope with both kinds of fields.
17126 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17128         * metadata.c (mono_type_to_unmanaged): Handle the case where
17129         type->data.klass is a SafeHandle, and in that case, return the
17130         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17131         MONO_MARSHAL_CONV_SAFEHANDLE. 
17133 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17135         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17136         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17137         calling emit_marshal_object.
17139         (emit_marshal_safehandle): Implement marshalling of
17140         SafeHandle parameters (no ref support yet).
17142         (MarshalAction): Document the defines as I implement
17143         them for SafeHandle.
17145         (emit_marshal_object): indentation police.
17147         * class-internals.h: Define MonoSafeHandle.
17148         Add safehandle_class to MonoDefaults type.
17150         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17151         list of classes to check for fields. 
17153         * domain.c (mono_init_internal): Add SafeHandle to the list of
17154         mono_defaults loaded.
17156 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17158         Fix #80253
17159         * reflection.c (mono_reflection_bind_generic_parameters): If the
17160         generic type definition is a type builder, ensure that it is fully
17161         initialized before instantiating it.  Kill some dead code.
17163 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17165         * object.c: clear the loader_error () before loading
17166         more metadata stuff (bug #80258).
17168 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17170         * icall.c, icall-defs.h: type modifiers icalls for
17171         parameters and properties.
17173 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17175         * object.c, icall.c: fixed warnings.
17177 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17179         * marshal.c: fixed a couple of leaks and coding style in a few places.
17181 2006-12-08  Dick Porter  <dick@ximian.com>
17183         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17184         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17185         80173.
17187 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17189         * process.c: ProcessStartInfo may have only filename set and
17190         arguments can be NULL.
17192 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17194         * icall.c: fix leak found by Robert Jordan.
17196 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17198         * marshal.c, marshal.h: generate managed method to access an element
17199         of a multi-dimensional array.
17201 2006-11-30  Paolo Molaro (lupus@ximian.com)
17203         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17205 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17207         * icall.c: back out GetFields () fix until the serialization code is
17208         fixed to not depend on the incorrect behaviour.
17210 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17212         * profiler.c: provide defaults if none are set.
17214 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17216         * Makefile.am, attrdefs.h: new public header file with
17217         constants for attributes for use by embedders.
17219 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17221         * icall.c: GetFields () fix for bug #80064.
17223 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17225         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17226         removed long unused icalls.
17228 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17229   
17230         * marshal.c: 
17231                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17232                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17233                 can be generated without a delegate class.
17234                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17235         
17236         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17238 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17240         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17241         #80069.
17243 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17245         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17246         icall-def.h: added icalls needed by System.GC.
17248 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17250         * loader.c: ensure the class in catch clauses is handled
17251         correctly for generics methods (fixes bug#79980).
17253 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17255         * monitor.h, monitor.c: added mono_locks_dump () function
17256         to help debug deadlocks involving managed locks.
17258 2006-11-13  Dick Porter  <dick@ximian.com>
17260         * file-io.c (get_file_attributes): If the file is a symlink try
17261         and get the stat data for the target, but also add the
17262         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17263         the specs for the windows symlink support, but will probably have
17264         to be reworked when I have test data from a vista machine.  Fixes
17265         bug 79887.
17267 2006-11-13  Dick Porter  <dick@ximian.com>
17269         * gc.c (mono_domain_finalize): 
17270         * marshal.c (mono_delegate_begin_invoke): 
17271         * threadpool.c (socket_io_init, mono_thread_pool_init)
17272         (mono_thread_pool_finish): 
17273         * monitor.c (mono_monitor_try_enter_internal): 
17274         * threads.c (mono_thread_resume, mono_thread_init)
17275         (mono_thread_suspend_all_other_threads)
17276         (mono_thread_execute_interruption): 
17277         * appdomain.c (mono_domain_unload): Check for NULL error returns
17278         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17279         75733.
17281 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17283         * process.c
17284         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17285         Only close the handle if the value of the handle is not
17286         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17287         robust.
17289         Improvement for #75733, so that we do not run into this problem. 
17291         
17292         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17293         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17294         internal variables.  Fixes #79462 
17295         
17297 2006-11-09  Dick Porter  <dick@ximian.com>
17299         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17300         Use poll() not select().  Fixes bug 79397.
17302 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17304         Fix #79872
17305         * assembly.c (mono_assembly_load_from_full): Check that the given
17306         image has an assembly manifest.
17308 2006-11-09  Ankit Jain  <jankit@novell.com>
17310         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17311         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17312         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17314 2006-11-07  Dick Porter  <dick@ximian.com>
17316         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17317         Put the old resolver behaviour back for pre-2.0 profiles.
17319 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17321         * threadpool.c: precise GC and locking fixes.
17323 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17325         * class.c: don't load types that have an explicit unaligned
17326         managed reference. Provide better info in the TypeLoad exception.
17327         Part of the fix for bug #79744.
17328         * object.c: use the correct check for class type load issues.
17330 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17332         * class.c: enforce alignment of fields with managed references
17333         even when Pack=1 is forced by the user (bug #77788).
17335 2006-11-03  Dick Porter  <dick@ximian.com>
17337         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17338         If the address reverse lookup fails, return it as the hostname
17339         anyway.  Fixes bug 79721.
17341 2006-11-03  Dick Porter  <dick@ximian.com>
17343         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17344         Fix build on Windows.
17346 2006-11-02  Dick Porter  <dick@ximian.com>
17348         * icall-def.h: 
17349         * object-internals.h: 
17350         * exception.c (mono_get_exception_thread_interrupted): 
17351         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17352         Fixes bug 74525.
17354         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17355         Check for pending Thread.Interrupt.
17357 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17358         * loader.c: Fixed bug 79684.
17360 2006-10-27  Dick Porter  <dick@ximian.com>
17362         * file-io.c (get_file_attributes): Force symlinks to directories
17363         to be returned as a regular file.  Fixes bug 79733.
17364 2006-10-26  Dick Porter  <dick@ximian.com>
17366         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17367         CreateFile to open a directory then we need to set the
17368         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17370 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17372         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17373         friends.
17375 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17377         * sgengc.c: small cleanup of timer code.
17379 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17381         * sgen-gc.c: fix some warnings and start adding support for
17382         complete object removal on domain unload.
17384 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17386         * assembly.c: build_assembly_name should not consider a version
17387         number without build or revision number invalid. Fixes bug #79715.
17389 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17391         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17392         call kernel32 function OutputDebugString directly.
17393         
17394         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17395         
17396 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17398         * reflection.c: small cleanup, using a function to insert a MonoString
17399         in the string heap.
17401 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17403         * reflection.c: moving GC fixes.
17405 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17407         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17408         all the objects with finalizers belonging to an unloading appdomain.
17410 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17412         * sgen-gc.c: added ability to allocate even when the nursery is fully
17413         pinned and fixed a couple of bugs.
17415 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17417         * threads.h: Revert the last change for now.
17419         * threads.h (mono_thread_get_pending_exception): Rename this to
17420         mono_thread_get_undeniable_exception ().
17422 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17424         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17425         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17426         when fname does not refer to valid assembly. This result in a more
17427         meaningful error message.
17428         * exception.c: added mono_get_exception_bad_image_format2 which 
17429         constructs a BadImageFormatException using the ctor taking a custom
17430         message and the file name. Passing in a NULL msg results in a default
17431         message.
17432         * exception.h: define mono_get_exception_bad_image_format2 function.
17433         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17434         when file name pointed to an invalid IL image. Use 
17435         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17436         as this results in a more meaningful error message.
17438 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17440         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17441         #79465.
17443 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17445         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17446         consistency with the other _size functions.
17447         (mono_type_stack_size): Ditto.
17449         * class.c object.c icall.c: Fix warnings caused by the above change.
17451         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17453         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17455         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17457 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17459         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17460         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17461         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17462         threadpool.h, threads-types.h: mark more internal functions.
17464 2006-10-11  Dick Porter  <dick@ximian.com>
17466         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17467         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17468         reproduce the bug even before applying the fix.)
17470 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17472         * reflection.c: allow retrieving attributes for arguments in generic
17473         methods (bug #79241).
17475 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17477         * debug-mono-symfile.c: properly check fopen () result (found by
17478         coverity).
17480 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17482         * reflection.c: make error message clearer and fixed two
17483         issuelets found by Coverity.
17485 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17487         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17489 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17491         * object-internals.h, gc-internal.h, profiler-private.h:
17492         mark internal functions.
17494 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17496         * reflection.c: put data in the text section.
17497         * icall.c: recognize more types in type_from_typename ().
17498         * process.c, marshal.c: added some GC FIXMEs.
17500 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17502         * loader.c: check for NULL before initializing.
17504 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17506         * gc.c (finalizer_thread): Use a non-alertable wait here.
17508         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17509         until the correct solution is found.
17511 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17513         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17514         modules with no metadata. Fixes #79596.
17516         * image.c (load_metadata_ptrs): Put back the error message when
17517         the #- heap is encountered since the support is not complete yet.
17519 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17521         * gc.c: do not allow the user to SuppressFinalize () a
17522         delegate because it would leak the trampoline if present.
17524 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17526         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17527         PropertyPtr table.
17529 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17531         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17533         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17535         * row-indexes.h: Add definitions for *Ptr tables.
17537         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17539         * metadata.c (mono_metadata_translate_token_index): New helper function to
17540         translate table indexes used in uncompressed metadata.
17541         (mono_metadata_decode_table_row): Ditto.
17542         (mono_metadata_decode_table_row_col): Ditto.
17544         * metadata.c: Add table schema for *Ptr tables.
17546         * class.c loader.c: Use the new helper function to access the affected metadata
17547         tables.
17548         
17549         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17550         #38532.
17551         
17552 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17554         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17555         sequences which can be unbounded in size. Fixes #79583.
17557 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17559         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17560         static initialization.
17562         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17564         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17566         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17568         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17569         ctor fails, i.e. throw the same exception on subsequent accesses.
17570         
17571 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17573         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17574         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17575         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17576         Handle marshalling of interfaces and VARIANTs contained in structs.
17577         
17578         Code is contributed under MIT/X11 license.
17579         
17580 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17582         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17583         
17584         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17585         mempool.
17587 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17589         * console-io.c: ignore previous SIGINT handler.
17591 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17593         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17594         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17595         #79460, #79461, #79485.
17597         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17599         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17600         #79217.
17602 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17604         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17605         could be generated from it.
17607 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17609         * rand.c: fix read loop to correctly handle EINTR.
17611 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17613         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17614         internal calls are defined to keep methods closer to the declaring
17615         type and allow a significant reduction in runtime relocations and
17616         memory usage.
17618 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17620         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17621         exception message to have FileNotFoundException use the default
17622         assembly load error message. Fixes bug #79426.
17623         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17625 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17627         * threadpool.c: (start_thread_or_queue) use the root domain when
17628         creating the thread instead of the async object one.
17630 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17632         * class.c, object.c, class-internals.h, reflection.c:
17633         for arrays, store element_size inside MonoClass (speedup
17634         for array object creation).
17636 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17638         * icall.c: fixed CodeBase to use the file name and not the module
17639         name (bug #79365).
17641 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17643         * mono-debug.c, mono-debug.h: export find_method as
17644         mono_debug_find_method ().
17646 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17648         * debug-helpers.c, class-internals.h: added a few functions useful
17649         when debugging under gdb.
17651 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17653         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17654         characters that need special handling.
17656 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17658         * mono-config.c: make the os/cpu specification more flexible,
17659         allowing lists and negation.
17661 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17663         * marshal.c: COM Interop fixes. Handle case where method->klass.
17664         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17665         calling convention on non-windows platforms. This is for
17666         compatibility with XPCOM and MainWin COM.
17667         
17668         Code is contributed under MIT/X11 license.
17669         
17671 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17673         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17674         correctly. Fixes #79217.
17676         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17678 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17680         * mono-config.c: allow both an os and cpu attribute for dllmap
17681         and dllentry elemnets to enable a single config file to be used
17682         for multiple architectures.
17684 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17686         * loader.c: MonoLoaderError was cleared too soon on load failure.
17687         Fixes bug #79424.
17689 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17691         * icall.c: use the defining class vtable when accessing a
17692         static field, not a pobblibly derived class.
17694 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17696         * icall.c string-icalls.c: Remove references to unicode.h.
17698         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17700         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17702         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17703         indicating the image where custom marshaller types should be looked up.
17704         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17705         custom marshallers, instead of corlib. Fixes #79425.
17707 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17709         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17711 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17713         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17714         Implement Environment.ProcessorCount.
17715         
17716         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17717         Implement Environment.ProcessorCount.
17718         
17719         * icall.c: 
17720         Add Environment.ProcessorCount icall.
17721         
17722         Patch by Jason McFall.
17724 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17726         * assembly.c: don't append .exe/.dll when the filename already contains
17727         one of those extensions.
17729 2006-09-12  Martin Baulig  <martin@ximian.com>
17731         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17732         to array interfaces.
17734 2006-09-11  Martin Baulig  <martin@ximian.com>
17736         * reflection.c (mono_image_build_metadata): Create the
17737         MethodImpl's after emitting all types and methods, so we don't
17738         need another fixup pass for them.
17740 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17742         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17743         change.
17745 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17747         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17748         unload.
17750 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17752         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17753         args is not set. Fixes #78926.
17755 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17757         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17759         * image.c (load_class_names): Move this to class.c, and rename it to 
17760         'mono_image_init_name_cache'.
17761         (load_modules): Fix a warning.
17763         * class.c icall.c image.c: Initialize image->name_cache lazily.
17765         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17766         on its name using information in the AOT file.
17768         * class.c (mono_class_from_name): Use the new hook function.
17770 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17772         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17773         correctly.
17775         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17776         Fixes #79289.
17777         
17778 2006-09-06  Martin Baulig  <martin@ximian.com>
17780         * icall.c (mono_lookup_internal_call): Small fix.
17782 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17784         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17785         double g_free.
17787 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17789         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17790         when --debug is specified.
17792 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17794         * class.c (setup_generic_array_ifaces): Fix a warning.
17796 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17798         * Temporarily remove the patch to assemly.c that checks the
17799         assembly versions as it breaks our gacutil.
17801 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17803         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17805         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17806         a net 1.0 runtime.
17808         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17809         created using the default ctor. Fixes #79152.
17810         (mono_string_builder_to_utf16): Ditto.
17812 2006-09-01  Martin Baulig  <martin@ximian.com>
17814         Fix handling of the generic array interfaces.
17816         * class-internals.h
17817         (MonoDefaults): Removed `generic_array_class' and added
17818         `generic_ilist' class.
17820         * class.c
17821         (mono_bounded_array_class_get): Add the new generic array interfaces.
17822         (setup_generic_array_ifaces): New static method; create vtable
17823         entries for each method in the generic array interfaces.
17825         * metadata.c
17826         (select_container): Allow "parent-less" generic methods.
17828         * marshal.c
17829         (mono_marshal_get_generic_array_helper): New public method.
17831         * icall.c
17832         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17833         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17834         moved the interncall into System.Array.
17836 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17838         A few more cases of avoiding work on types with ->byref set.
17839         Has the real fix for #79238
17840         * icall.c (is_generic_parameter): New helper.
17841         (ves_icall_Type_GetGenericParameterPosition): Use it.
17842         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17843         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17844         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17845         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17846         reference types.
17847         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17848         reference types.
17849         (ves_icall_Type_get_IsGenericInstance): Likewise.
17850         (ves_icall_Type_get_IsGenericType): Likewise.
17852 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17854         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17855         class if possible.
17857         * mempool.h (mono_mempool_get_allocated): New helper function.
17859         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17860         change.
17862         * mempool.c: Fix warnings and the calculation of stats.
17864         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17866         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17868         * loader.c (mono_get_method_from_token): Update method_count stat.
17870         * class-internals.h (MonoStats): Add some stats.
17872 2006-08-31 Robert Jordan  <robertj@gmx.net>
17874         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17875         with managed variants.
17876         All code is contributed under the MIT/X11 license.
17877         
17878 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17880         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17881         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17883         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17885         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17886         with cycles in classes.
17888         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17890         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17891         missing a [MarshalAs] directive. Fixes #79203.
17893         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17894         klass->marshal_info. Fixes #79217.
17896 2006-08-30  Martin Baulig  <martin@ximian.com>
17898         Committing a patch from Joachim Ante <joe@otee.dk>:
17899         Add support for binary data symbol stores.
17901         * debug-mono-symfile.c
17902         (mono_debug_open_mono_symbol_file): Renamed into
17903         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17904         arguments.
17906         * mono-debug.c
17907         (mono_debug_open_image): Added `raw_contents' and `size' args.
17908         (mono_debug_init_2_memory): New public function.
17910 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17912         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17914 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17916         * appdomain.c: implement support for ShadowCopyFiles.
17918 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17920         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17921         when value is NULL (and should remove CID #51).
17923 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17925         * image.c: moved 2 functions to ../utils.
17927 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17929         * gc.c: cope with the target object of a GC handle being NULL
17930         (bug #78877).
17932 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17934         * class.c: recursively check parent's explicit implementations
17935         of interface methods (fixes bug #79125).
17937 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17939         * filewatcher.c: Avoid warnings when building, do not redefine
17940         constants that are defined.
17942         Remove warnings.
17944 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17946         * image.c: don't fail when the link points to an absolute path.
17948 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17950         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17951         Fix CID #3.
17953 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17955         * image.c (full_path): A new method used to obtain the actual path
17956         of an assembly even in the presence of symbolic links.  
17958         This is necessary for the case where we are running a binary that
17959         has been GACed, but we are using the "published" path name
17960         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17961         file in the GAC.
17963         This was the source of the failure for the `xsp' command with the
17964         recent AppDomain changes, as far as the runtime was concerned,
17965         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17966         $prefix/mono/gac/blah/version/blah.exe.
17968         (do_mono_image_open): use full path
17970 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17972         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17974 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17976         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17977         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17979 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17981         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17982         small structures. Fixes #78990.
17984 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17986         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17988         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17990 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17992         * appdomain.c:
17993         * marshal.c: don't load all the assemblies from a domain into newly
17994         created ones. The new domains might have different rules and load
17995         assemblies from different locations. Fixes bug #76757.
17997         Patch by Lluis. Conflicts resolved by Brian Crowell.
17999 2006-08-16  Alp Toker  <alp@atoker.com>
18001         * socket-io.c: First half of the fix for #79084.
18002         Set sa_size to the length of the content, not that of the struct.
18003         Don't add NULL suffix to the content, this should be done in
18004         managed code if needed.
18006 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18008         Fix part of #79012
18009         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18010         mono_metadata_parse_type returns NULL.
18012 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18014         * normalization-tables.h : new file for string normalization data.
18015         * locales.c, locales.h, icall.c :
18016           added load_normalization_resource() for string normalization,
18017           and icall as well.
18018         * Makefile.am : added normalization-tables.h to the sources.
18020 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18022         * marshal.c: Add more helper functions to reduce code duplication and use them
18023         everywhere.
18025 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18027         * marshal.c: Fix non-x86 stdcall warnings.
18028         
18029         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18030         them everywhere.
18032 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18034         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18035         type check on multi-dimensional arrays. Fixes #79000.
18037 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18039         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18040         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18041         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18042         * class-internals.h: add is_com_object to class structure.
18043         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18044         null checks to COM object marshalling. Fix .ctor call on RCW.
18045         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18046         
18047         All code is contributed under the MIT/X11 license.
18049 2006-08-09  Dick Porter  <dick@ximian.com>
18051         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18052         racing mono_monitor_allocator_lock() somewhere, so don't delete
18053         the critical section for now.  Found by running and exiting
18054         monodevelop.
18056 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18058         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18059         (ves_icall_System_ComObject_FindInterface): Ditto.
18060         (ves_icall_System_ComObject_CacheInterface): Ditto.
18062         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18063         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18065 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18067         * threadpool.c: treat pipes from process asynchronous reads as sockets
18068         when reading from them, so we get select/poll or epoll to wait for
18069         data.
18071 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18073         * loader.c: Fix a typo (CID #233) in the null check.
18075 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18077         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18078         Hopefully fixes #78949.
18079         
18080         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18081         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18082         bytes. Fixes #78972.
18084 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18086         * filewatcher.c: we need to set errno here.
18088 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18090         * filewatcher.c: let Win32Exception get the error value.
18092 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18094         * filewatcher.c: translate errno into win32 errors for Win32Exception
18095         to know what happened.
18097 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18099         * threadpool.c: Fix more warnings.
18101         * assembly.c (search_loaded): Fix warnings.
18103         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18104         (mono_async_invoke): Ditto.
18106 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18108         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18109         entries for __ComObject type in addition to ComImport types.
18110         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18111         about hash table.
18112         
18113         All code is contributed under the MIT/X11 license.
18115 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18117         * image.c: avoid tentative loading of modulerefs that contain
18118         no metadata (P/Invoke library names).
18120 2006-07-28  Dick Porter  <dick@ximian.com>
18122         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18123         mono_loader_lock() somewhere, so don't delete the critical section
18124         for now.  Found by running and exiting monodevelop.
18126 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18128         * filewatcher.c: define the inotify syscalls when we're building on
18129         linux and have sys/syscall.h. The build system might not have support
18130         for inotify but the target system might have it.
18132 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18134         * domain.c: Documentation updates.
18136         * loader.c (mono_free_method): Do not release the method
18137         information if we are being profiled, as profilers will use this
18138         information at shut down to present some data to the user.
18140         This is needed so that the profiler does not crash, as the
18141         profiler tends to keep MonoMethods around, and they might become
18142         invalid if we free these.
18144         (mono_get_method_constrained): Return the original CIL stream
18145         method as well, so verification can be performed against it.
18147 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18149         * filewatcher.[ch]: support for inotify file system watcher.
18150         * icall.c: add new internal calls for the inotify file system watcher.
18152 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18154         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18155         #78888.
18157 2006-07-20  Dick Porter  <dick@ximian.com>
18159         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18160         warning.
18162 2006-07-20  Dick Porter  <dick@ximian.com>
18164         * threads.c (start_wrapper): Do the thread cleanup while we still
18165         hold a reference to its object.  Fixes bug 78123.
18167 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18169         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18170         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18171           "managed-to-managed".
18172         * icall.c: Redirect string constructors that take sbyte* to
18173           ves_icall_System_String_ctor_RedirectToCreateString.
18174         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18175           to CreateString () methods with matching signature.
18176         * reflection.c: Use original security informations for
18177           MONO_WRAPPER_MANAGED_TO_MANAGED.
18178         * security-manager.c: Use original security informations for
18179           MONO_WRAPPER_MANAGED_TO_MANAGED.
18180         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18181           that is a placeholder and only its address should be used.
18182         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18183           that is a placeholder and only its address should be used.
18185 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18187         Begin implementing COM Interop.
18188         * appdomain.c: Increment corlib version.
18189         * class.c: Set ComImport classes' parent to __ComObject.
18190         * loader.c: Mark cominterop methods as such.
18191         * domain.c: Add __ComObject class to MonoDefaults structure.
18192         * image.c: Add 2 hashtables to the image for COM Interop related methods
18193         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18194         using the mempool allocator
18195         
18196         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18197         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18198         declaration for mono_metadata_type_dup_mp.
18199         
18200         * debug-helpers.c: Added strings for two additional wrapper types
18201         * object.c: Create proxy objects for ComImport classes
18202         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18203         and added __ComObject class to MonoDefaults structure.
18204         
18205         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18206         MonoComInteropProxy and MonoComObject.
18207         
18208         * marshal.c: Added support for COM Interop
18209         (signature_cominterop): Converts managed signature to corresponding
18210         unmanaged COM signature.
18211         (cominterop_get_function_pointer): gets unmanaged function pointer via
18212         COM object vtable
18213         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18214         (cominterop_get_method_interface): returns interface type that method is defined on
18215         (mono_mb_emit_cominterop_call): emits native call to function pointer
18216         gotten from vtable
18217         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18218         that matches signature of unmanaged function.
18219         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18220         (cominterop_get_invoke): forwards call from proxy to __ComObject
18221         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18222         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18223         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18224         
18225         * marshal.h: Added Marshal icall declarations.
18226         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18227         so we can access them in finalizer
18228         
18229 2006-07-14  Dick Porter  <dick@ximian.com>
18231         * object.c (mono_type_initialization_cleanup): Fix a race
18232         condition by temporarily commenting out the critical section
18233         deletion.
18235 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18237         * reflection.c (create_custom_attr): Fix some warnings.
18238         (create_custom_attr_data): Ditto.
18239         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18240         types. Fixes #78855.
18242 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18244         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18246         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18248 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18250         * reflection.c (resolve_object): Add support for DynamicMethod.
18252         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18253         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18255 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18257         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18258         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18260 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18262         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18263         Fixes #77888.
18265 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18267         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18268         slightly: remove a shadow local variable.
18270 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18272         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18273         definition that introduces the virtual function slot.
18274         Also fix Coverity #105.
18276 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18278         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18279         for dynamic assemblies. Fixes #78724.
18281 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18283         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18284         Fixes #78722.
18286 2006-06-21  Martin Baulig  <martin@ximian.com>
18288         * reflection.c
18289         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18290         fixes #76484.
18292 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18294         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18296 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18298         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18299         nor TYPEREFs.
18300         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18301         Inflate result if necessary.
18302         (mono_class_get_full): Remove old version.  Rename from
18303         'mono_class_get' and add 'context' argument.  Pass it to
18304         ..._create_from_typespec.
18305         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18306         (mono_ldtoken): Revert change below.
18308 2006-06-20  Martin Baulig  <martin@ximian.com>
18310         * class.c (mono_ldtoken): Don't pass the generic context to
18311         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18313 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18315         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18316         and later freeing it. Fixes #78638.
18318 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18320         * icall.c (mono_class_get_throw): Revert over-zealous error
18321         throwing, the caller for mono_class_get_throw will cope with
18322         errors when classes are not properly initialized already.
18324         The code still copes with loader exceptions though.
18326         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18327         
18328 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18330         Fixes the `make run1' version of RuntimeAbort (to be commited,
18331         source is in Bugzilla).
18332         
18333         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18334         FALSE on class loading failure instead of returning true.
18336         * class.c (mono_class_create_from_typedef): It is possible for
18337         mono_metadata_interfaces_from_typedef_full to fail if a class is
18338         not found, cope with this.
18339         
18341 2006-06-14  Dick Porter  <dick@ximian.com>
18343         * socket-io.c: 
18344         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18345         4.1.1
18347 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18349         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18351 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18353         * icall.c: Another fix for building mono in Visual Studio.
18355 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18357         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18358         
18359 2006-06-09  Martin Baulig  <martin@ximian.com>
18361         * debug-mono-symfile.c: Put this back and really fix it this
18362         time. Sorry for all the trouble.
18364 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18366         * icall.c (mono_class_get_throw): Fix a warning.
18367         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18368         ReflectionTypeLoadException if needed. Fixes #78606.
18370         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18371         (mono_class_init): Ditto.
18373         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18374         ref_only exceptions.
18375         (mono_loader_clear_error): Make this work even if there is no error.
18377 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18379         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18380         Marshal.GetComSlotForMethodInfo using internal call.
18382 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18384         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18385         a function for signalling it.
18387         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18388         a referenced assembly is not found.
18390         * loader.c (mono_loader_error_prepare_exception): Add support for 
18391         LOADER_ERROR_ASSEMBLY. Fix formatting.
18393 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18395         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18396         for VARIANT marshalling on windows and increment corlib version
18397         since Variant struct was added.
18399 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18401         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18402         stack trace line information:
18404         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18405         (Martin) when looking up B which is between A and C, return A not C.
18407         Bug is #78573.
18409         Thanks to Alexander Olk for tracking this down.
18411 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18413         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18414         
18415         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18416         avoid clobbering its value.
18417         (mono_string_to_lpstr): Fix a warning on windows.
18419 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18421         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18423         * reflection.c loader.c: Removed references to 'dummy' flag.
18425         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18427         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18428         it gets GC tracking.
18430         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18431         GC tracking.
18432         
18433         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18435         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18437         * appdomain.c: Bump corlib version.
18439 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18441         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18442         CEE_STIND_REF when working with object references.
18444 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18446         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18447         Fixes #78539.
18449 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18451         * loader.c (method_from_memberref): Fix argument value for
18452         mono_loader_set_error_method_load (I was passing the MonoClass
18453         instead of the class name char *).
18455 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18457         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18458         CEE_STIND_REF when working with object references.
18460 2006-05-30  Martin Baulig  <martin@ximian.com>
18462         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18463         mono_method_full_name() change and replace the ':' with a '.'
18464         here.
18466 2006-05-30  Martin Baulig  <martin@ximian.com>
18468         * debug-mono-symfile.c
18469         (mono_debug_symfile_lookup_location): Fix the algorithm:
18470         when looking up B which is between A and C, return A not C.
18472 2006-05-29  Martin Baulig  <martin@ximian.com>
18474         * mono-debug.h
18475         (MonoDebugMethodInfo): Make the typedef public.
18476         (MonoDebugSourceLocation): New public struct.
18478         * mono-debug.c
18479         (mono_debug_source_location_from_address): Removed.
18480         (mono_debug_source_location_from_il_offset): Removed.
18481         (mono_debug_il_offset_from_address): Removed.
18482         (mono_debug_address_from_il_offset): Removed.
18483         (mono_debug_lookup_method): New public function.
18484         (mono_debug_lookup_source_location): New public function; replaces
18485         the old mono_debug_source_location_from_*() functions; see the
18486         inline documentation.
18487         (mono_debug_free_source_location): New public function.
18488         (mono_debug_print_stack_frame): New public function; see the
18489         inline documentation.
18491         * debug-mono-symfile.c
18492         (mono_debug_find_source_location): Renamed into
18493         mono_debug_symfile_lookup_location(); only take a
18494         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18495         documentation.
18496         (mono_debug_find_method): Renamed into
18497         mono_debug_symfile_lookup_method().
18499 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18501         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18502         returned by mono_image_open_full ().
18504         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18505         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18506         #78517.
18508         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18509         #78518.
18511 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18513         * class.c (mono_class_from_typeref): handle missing images
18514         earlier, deals with bug #78418.   Refactor code; 
18516         Fix a warning introduced in my previous commit (some stale code
18517         from before I revisited my patch).
18519         * class.c (mono_class_create_from_typedef): On failure, remove the
18520         class from the MonoImage->class_cache as the class is not
18521         initialized;   Fixes the leak pointed out by Paolo.
18523 2006-05-25  Dick Porter  <dick@ximian.com>
18525         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18526         DeleteCriticalSections until I figure out which one may still be
18527         sometimes locked when mono_thread_cleanup is called.
18529 2006-05-24  Dick Porter  <dick@ximian.com>
18531         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18532         of mono_thread_manage and back into its own function, so it can be
18533         called after the finalizer thread has finished.
18535         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18537 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18539         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18540         Fixes #78495.
18542         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18543         with non-blittable elements.
18544         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18546 2006-05-24  Martin Baulig  <martin@ximian.com>
18548         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18549         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18551         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18552         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18553         `mono_debugger_event_handler' to NULL.
18555 2006-05-24  Martin Baulig  <martin@ximian.com>
18557         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18559 2006-05-24  Martin Baulig  <martin@ximian.com>
18561         * mono-debug-debugger.h
18562         (mono_debugger_create_notification_function): Added
18563         `MonoCodeManager *' argument.
18565 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18567         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18569 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18571         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18572         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18573         implementation.
18575 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18577         * icall.c: precise GC support: objects can't be stored in unmanaged
18578         memory anymore, even if they are kept alive by other references: since
18579         they can move the GC needs to be able to always find them.
18581 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18583         * object.c: precise GC support for static fields. Support
18584         for moving GCs: write barriers and pinned allocation for interned
18585         strings.
18587 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18589         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18590         structure.
18592 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18594         * class.c, gc.c: sgen and precise GC updates.
18596 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18598         * marshal.h, marshal.c: added write barrier wrapper and precise type
18599         fixes.
18601 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18603         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18604         support.
18606 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18608         * reflection.c: precise and sgen GC updates.
18610 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18612         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18614 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18616         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18618 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18620         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18621         MONO_TYPE_OBJECT. Fixes #78462.
18623 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18625         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18626         and blittable types.
18628 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18630         * class.c (mono_class_get_exception_for_failure): Implement parts
18631         of a TODO: if the loader error is set (instead of the class
18632         error), we return a Loader exception that can be properly thrown
18633         elsewhere.
18635         This was exposed by some Winforms 2.0 code that I tried to run
18636         (Atsushi pointed me to it).
18638 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18640         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18641         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18642         
18643         * marshal.c (emit_marshal_vtype): Add limited support for 
18644         UnmanagedType.LPStruct. Fixes #78427.
18646         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18647         Applied a patch from kangaroo to fix #77523.
18649 2006-05-17  Martin Baulig  <martin@ximian.com>
18651         * threads.c
18652         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18653         (debugger_thread_created): Removed.
18654         (debugger_thread_exited): Removed.
18656 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18658         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18660         * object-internals.h (MonoReflectionResource): Sync with managed version.
18662 2006-05-12  Wade Berrier <wberrier@novell.com>
18664         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18666 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18668         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18669         functions try to allocate from the image mempool.
18671 2006-05-12  Dick Porter  <dick@ximian.com>
18673         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18675 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18677         * object.c: The FieldGetter and FieldSetter methods require the full
18678         name of the class, not only the name. Fixes bug #78277.
18680 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18682         * loader.c (method_from_memberref): Do not pass the NULL klass to
18683         mono_loader_set_error_() methods.  Pass the non-NULL value
18684         (class). 
18686 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18688         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18689         (mono_assembly_close): Null out assembly->image->references after freeing it.
18691         * image.c (mono_image_close): Free image->references.
18692         
18693         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18695 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18697         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18698         before checking if it's NULL (g_assert).
18700 2006-05-10  Martin Baulig  <martin@ximian.com>
18702         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18703         I thought I already killed that two months ago, but now it somehow reappeared.
18705 2006-05-10  Martin Baulig  <martin@ximian.com>
18707         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18709 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18711         * reflection.c: Allocate memory for dynamically created methods in the image
18712         mempools.
18714 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18716         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18717         don't use the ad pointer before checking if it's NULL (g_assert).
18719 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18721         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18722         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18724         * marshal.c: Allocate all signatures from mempools.
18726         * marshal.c: Allocate some more signatures from mempools.
18728 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18730         * object.c (mono_load_remote_field): The code used to provide a
18731         temporary variable for returning results if the user did not
18732         provide a result pointer.  But our temporary variable was allocted
18733         on the satck.
18735         Fix calling code to always pass a result area.   Coverity ID 103.
18737 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18739         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18740         value, not the old. Fixes #78312.
18741         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18743         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18744         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18745         per-image cache.
18747         * assembly.c (mono_assembly_close): Free image->references.
18749         * assembly.c (mono_assembly_names_equal): Fix a warning.
18750         (mono_assemblies_cleanup): Cleanup more global data.
18752         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18754         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18755         ptr_cache and image->modules.
18757         * image.c (mono_image_init): Allocate array_cache lazily.
18758         
18759 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18761         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18762         behavior was changed recently and has bad side effects.
18764 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18766         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18767         
18768         * assembly.c (mono_assembly_close): Remove a debug printf.
18770         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18772         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18773         to also allow for temporary references between mono_image_open ()/close ().
18775         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18777 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18779         * marshal.c: Fix support for dynamic methods.
18781         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18783         * marshal.c (mono_marshal_cleanup): New cleanup function.
18785         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18786         image mempools.
18788         * class.c (mono_class_init): Fix leaking class->nested_classes.
18790         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18792         * image.c (mono_image_init): Initialize the new cashes.
18794         * image.c (mono_image_close): Destroy the new cashes.
18796         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18798         * mempool.c (mono_mempool_strdup): New helper function.
18800         * class-internals.h: Add prototype for mono_loader_unlock ().
18802         * domain.c (mono_jit_info_table_find): Fix a warning.
18803         (mono_debugger_check_runtime_version): Ditto.
18805         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18806         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18807         functions to these modules.
18809         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18810         metadata modules.
18811         
18812         * marshal.c (mono_free_bstr): Fix a warning.
18814         * assembly.c (mono_assembly_open_full): Fix another small leak.
18816         * object.c: Fix some unload leaks in the remoting code.
18818         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18819         function.
18821         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18823         * reflection.c: Fix some unload leaks in dynamic assemblies.
18825 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18827         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18828         * marshal.h: Add BSTR support on Win32
18829         * icall.c: Add BSTR icalls
18830         * metadata.h: Add BSTR enums
18832 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18834         Work to catch the crash from #76795 and turn it into an
18835         exception.   As I stubbed out pieces of the VisualBasic support,
18836         I found a number of places where the code was failing and I added
18837         checks to those places. 
18838         
18839         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18840         function return a status code.  If we fail to parse the signature
18841         from mono_metadata_parse_generic_inst, return FALSE.
18843         * loader.c (mono_get_method_from_token): If we fail to load the
18844         method (mono_class_get) return NULL.   
18846         * (method_from_memberref): Return NULL if we are unable to parse
18847         the method signature
18849         (mono_loader_error_prepare_exception): Since we now use the
18850         loader_error flag internally to stop processing, and obtaining
18851         exceptions that might be thrown will walk this code path the
18852         proper way of going from a MonoLoaderError into a
18853         MonoException was convoluted.   This new routine encapsulates the
18854         process of turning the error into an exception and *clearing* the
18855         error afterwards.
18856         
18857 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18859         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18860         with missing assemblies), and to cope with:
18862                 * Missing fieldref from a non-existing assembly.
18863                 * Missing methodref from a non-existing assembly.
18865         The first batch of work to address *some* of the issues from 76661.
18866         
18867         * object.c (mono_class_create_runtime_vtable): If we fail to
18868         initialize the class raise the exception here. 
18870         * metadata.c (mono_class_get_overrides_full): If any methods fail
18871         to load return the failure to the caller.
18873         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18874         flagging assemblies that failed to load.   
18876         Do not crash if we are unable to load the assembly.
18878         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18879         assemblies. 
18881         * loader.c (mono_loader_set_error_type_load): Change the
18882         convention to always pass unallocated strings, so we make our own
18883         copies (I know our own code had duplicated strings before, but
18884         this keeps the normal conventions).
18885         (method_from_memberref): Call mono_loader_set_error_method_load
18886         for all possible failures of loading the class. 
18887         Remove assert, turn into a loader error.
18889         (mono_loader_error_to_exception): Move this routine from mini
18890         (mini_loader_error_to_exception) there was no need to have that in
18891         mini. 
18893         * class.c (mono_class_from_typeref): If we were not able to load
18894         the assembly with mono_assembly_load_reference, call the
18895         mono_loader_set_error_type_load to register the problem.
18897         (mono_class_setup_fields): If we fail to load the type from
18898         mono_metadata_parse_type_full, call mono_class_set_failure and
18899         break from the loop.
18901         If class->exception_type is set, we do not layout the fields as
18902         that might crash the runtime, and instead return (from breaking
18903         from the previous loop).
18905         (mono_class_setup_vtable): This now returns a boolean indicating
18906         whether the table was properly setup.   The decision is driven by
18907         mono_class_get_overrides_full which might run into non-existing
18908         methods. 
18909         
18910         (mono_class_init): Returns TRUE on success or FALSE if there was a
18911         problem in loading the type (incorrect assemblies, missing
18912         assemblies, methods, etc).
18914         When we call mono_class_setup_fields we also check for a potential
18915         error inside this call (either a class exception or a general
18916         loader exception).
18918         (mono_class_create_from_typedef): If the parent fails to load
18919         (calling mono_class_get_full) return NULL.
18920         
18921         ** Important **
18923         calls to mono_metadata_parse_type_full should be checked
18924         everywhere and set the mono_class_set_failure
18925         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18927         The current patch checks the places where my manually constructed
18928         tests show the errors are showing up, but we should do it
18929         everywhere. 
18931         ** Important2 **
18933         mono_class_init return values should be tested everywhere, like
18934         the previous case this is something that we should audit
18935         everywhere and not only on the cases exposed by the tests I
18936         created. 
18938 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18940         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18941         boolean parameter and instead pass the information on `options'
18942         parameter (FileOptions).
18944         * icall.c: Register the new signature for MonoIO.Open.
18946         * debug-helpers.c (dis_one): Trying to understand how coverity
18947         works.  Fix Run 5, item 78.
18949 2006-04-26  Dick Porter  <dick@ximian.com>
18951         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18952         dereference.
18954 2006-04-25  Martin Baulig  <martin@ximian.com>
18956         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18958         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18959         debugger_thread_created().
18960         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18961         special way.
18962         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18963         (mono_debugger_finalize_threads): New function; undo the effects
18964         of mono_debugger_init_threads().
18965         (mono_debugger_create_all_threads): Removed.
18967 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18969         * image.c (mono_image_close): Tidy up trace messages.
18971         * assembly.c (mono_assembly_close): Ditto.
18973         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18974         no longer references an already freed assembly. Fixes #78168.
18976 2006-04-21  Dick Porter  <dick@ximian.com>
18978         * threads.c (mono_thread_detach): Fix reference counting when
18979         detaching threads.
18981 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18983         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18984         #78155.
18986 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18988         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18989         (mono_type_to_stind): Ditto.
18991         * marshal.c: Use the new helper functions to simplify code.
18993         * image.c (mono_image_close): Add some code for help debug assembly unloading
18994         problems.
18996         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18997         image mempool.
18999         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19000         assembly was already loaded in another appdomain. Fixes #78083.
19002 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19004         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19005         referenced assemblies.
19006         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19008         * domain.c (mono_domain_free): Add a trace message.
19010         * appdomain.c (add_assemblies_to_domain): Ditto.        
19012         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19013         field.  
19015 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19017         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19019 2006-04-12  Martin Baulig  <martin@ximian.com>
19021         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19022         `USE_INCLUDED_LIBGC'.   
19024 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19026         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19027         the patch contains ../ and a small directory name later. Hopefully fixes
19028         #78035.
19030 2006-04-10  Martin Baulig  <martin@ximian.com>
19032         Clean up the debugger's thread-handling code.
19034         The debugger's thread-handling code has been moved from
19035         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19036         over the `threads' hash, keep track of exiting threads and also
19037         use proper locking.
19039         We can now debug XSP and XSP based applications with the debugger.
19041         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19043         * threads.h
19044         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19045         (mono_install_thread_callbacks): Likewise.      
19047         * threads.c (mono_thread_callbacks): Removed.
19048         (debugger_thread_created, debugger_thread_exited): New static functions.
19049         (start_wrapper): Call debugger_thread_created().
19050         (thread_cleanup): Call debugger_thread_exited().
19051         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19052         (mono_debugger_init_threads): New public function.
19053         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19054         iterate directly over the `threads' hash and also use proper locking.
19056         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19058         * mono-debug-debugger.h
19059         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19061 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19063         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19064         argument type=array. Fixes #78057.
19066 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19068         * culture-info-table.h : regenerated. Fixed bug #69652.
19070 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19072         * loader.c metadata.c: Reapply a variant r59116.
19073         
19074         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19076         * class.c (mono_class_setup_interface_offsets): New internal function.
19078         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19079         interfaces too. Fixes #77398.
19081         * reflection.c (encode_cattr_value): Add support for 
19082         parameter type=object, argument type=array.
19083         (load_cattr_value): Ditto. Fixes #77916.
19085         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19086         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19088         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19089         a byval char array and CharSet is Ansi.
19091         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19093 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19095         * metadata.c: Add some locking comments.
19096         
19097         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19098         mempool.
19099         (mono_metadata_free_method_signature): Don't free the signature itself.
19101         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19103         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19104         reference the same MonoImage.
19105         (mono_assembly_load_from_full): Add an assert.
19107 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19109         * image.c (mono_image_close): Don't put the image we are about to free into the
19110         loaded_images_guid_hash.
19112         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19113         to reduce code duplication.
19115         * marshal.c: Register the native functions called by this module as icalls, to
19116         somewhat centralize the creation of MonoMethodSignature's.
19118         * loader.c (mono_method_signature): Add a cache for method signatures.
19120         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19121         the parameter attributes of a method.
19122         (mono_metadata_parse_method_signature_full): Refactored the computation of
19123         parameter attributes into a separate function. Also avoid one allocation in
19124         most cases.
19126         * assembly.c (mono_assembly_close): Ditto.
19128         * image.c (mono_image_close): Log trace messages with INFO level.
19130         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19132         * image.c reflection.c: Correct reference counting of image modules.
19133         
19134         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19135         of this function from the image mempool.
19136         
19137         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19138         to allow more cached types to be used.
19140         * mono-debug.c (mono_debug_add_method): Appled patch from
19141         David S. Miller  <davem@sunset.davemloft.net>: Access 
19142         minfo->lexical_blocks[] entry elements using read32().
19144 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19146         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19147         methods as it is allocated from the mempool.
19149         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19150         image mempool.
19152         * metadata-internals.h: Add comments describing the reference counting scheme
19153         used for MonoImage and MonoAssembly.
19155         * image.c assembly.c reflection.c: Rework reference counting of images and 
19156         assemblies so they are freed when the runtime is shut down. Free some 
19157         additional memory structures when an image is unloaded.
19158         
19159 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19161         * class.c loader.c reflection.c: Allocate more data structures in
19162         the image mempool.
19164 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19166         * icall.c
19167         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19168         build on pre glib 2.4 systems.
19170 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19172         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19174         * icall.c: Fix some warnings.
19176 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19178         * culture-info-table.h : regenerated.
19180 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19182         * threads.c, object-internals.h, verify.c: changed the culture caching
19183         code to use a normal MonoArray for storage so the GC can keep track of
19184         them easily. Fixed bits of the cache logic, too and simplified the
19185         code.
19187 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19189         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19190         thread for non-Boehm GCs.
19192 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19194         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19195         needed to keep track of the data for static fields.
19197 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19199         Fix #75172
19200         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19201         for interface classes.  Use 'num_methods' instead.
19202         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19203         before using '->vtable_size' field.
19205 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19207         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19208         doesn't contain managed pointers, so use a normal hashtable.
19210 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19212         * reflection.c, class-internals.h, domain.c: fixed handling of types
19213         used as values for objects in custom attributes (bug #77915):
19215 2006-03-24  Martin Baulig  <martin@ximian.com>
19217         * class.c (mono_class_setup_fields): Added support for generic
19218         instances; fixes #77580.
19220 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19222         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19224 2006-03-24  Dick Porter  <dick@ximian.com>
19226         * file-io.c (get_file_attributes): More stat macro breakage.
19227         Fixes bug 77759.
19229 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19231         * profiler.c: added the file=filename option in the default profiler
19232         to output the profile data to filename.
19234 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19236         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19237         bug #77877.
19239 2006-03-22  Martin Baulig  <martin@ximian.com>
19241         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19242         allocated `MonoClassField *' in `fb->handle'.
19244 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19246         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19247         allocate interface ID to save memory and allow better ID reuse on
19248         appdomain unload. setup_generic_vtable () removal from Martin.
19250 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19252         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19253         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19254         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19255         write barriers for reference stores with managed objects accessed with
19256         C structures in the runtime and in embedding programs.
19258 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19260         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19261         'interface_id' and 'max_interface_id' fields of MonoClasses
19262         representing open generic types.
19264 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19266         * object.h, object.c, icall.c: added functions to deal with
19267         storing valuetypes that contain references in managed objects.
19268         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19269         fixes and comments around uses of mono_array_addr ().
19271 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19273         * object.h, icall.c, monitor.c: object.GetHashCode ()
19274         implementation that supports the moving garbage collector.
19276 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19278         * icall.c, threads-types.h, threads.c: implemented finalizer for
19279         LocalDataStoreSlot.
19281 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19283         * metadata.c (mono_type_size): Add a fixme.
19284         (mono_type_stack_size): Ditto.
19286         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19287         'type_forwarders' field.
19289         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19290         attribute from net 2.0.
19292         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19293         from class.c.
19295         * class.c (mono_class_setup_fields): Fix a warning.
19296         
19297         * class.c (mono_class_from_name): Add support for assemblyref entries
19298         in the EXPORTEDTYPE table.
19300         * reflection.c: Add support for handling type forwarders under net 2.0.
19302         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19303         
19304 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19306         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19307         overwriting entries in ModuleBuild->types, also clean up the code
19308         a little. Fixes #77774.
19310 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19312         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19313         load friend assembly info when present.
19315 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19317         Fix crasher on gtest-158.cs.
19318         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19319         the return value if the MonoClass we want is yet in an
19320         inconsistent state.
19321         * class.c (mono_class_create_from_typedef): Add an comment
19322         explaining an order dependency between mono_class_setup_parent and
19323         mono_class_setup_mono_type.
19325 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19327         * class.c: documentation updates and events bug fix.
19329 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19331         * class.c: some cleanup, locking fixes.
19333 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19335         * class.c: fix the generics code to setup nested
19336         type info to the instantiated type (bug #77770).
19338 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19340         * marshal.c: fixed a few type correctness issues.
19342 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19344         * loader.c: the Set/Get/Addrtess array methods should be public.
19346 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19348         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19349         
19350         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19351         info->wrapper.
19353 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19355         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19357         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19359         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19360         (mono_mempool_alloc0): Ditto.
19362 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19364         * socket-io.c:
19365         (create_object_from_sockaddr): it was allocating 4 extra bytes
19366         for the AF_UNIX data. Fixes bug #77747.
19368 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19370         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19372 2006-03-09  Dick Porter  <dick@ximian.com>
19374         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19375         Fixes bug 76966 again.
19377 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19379         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19380         names from r57532
19381         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19383 2006-03-07  Martin Baulig  <martin@ximian.com>
19385         * object.c
19386         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19388 2006-03-07  Martin Baulig  <martin@ximian.com>
19390         * class.c
19391         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19392         regression introduced in r56970; see gtest-252.cs.
19394         * loader.c (mono_get_method_constrained): Correctly handle generic
19395         methods; see gtest-253.cs.
19397 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19399         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19401 2006-03-04  Martin Baulig  <martin@ximian.com>
19403         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19404         compute the parent type at runtime, just like we're already doing
19405         it for interfaces.
19407         * reflection.c
19408         (mono_reflection_bind_generic_parameters): Don't compute the
19409         parent type anymore.
19411         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19413 2006-03-04  Martin Baulig  <martin@ximian.com>
19415         * mono-debug-debugger.h
19416         (mono_debugger_create_notification_function): Allocate memory at
19417         runtime and return a pointer to it.
19419 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19421         * assembly.c: Fix windows build.
19422         
19423         * assembly.c: Fix build.
19425         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19427         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19428         
19429 2006-03-03  Dick Porter  <dick@ximian.com>
19431         * process.c
19432         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19433         Check parameters before dereferencing them.  Fixes Aaron's part of
19434         bug 77393.
19436 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19438         Fix performance regression.
19439         * loader.c (find_method_in_class): Add 'from_class' argument.
19440         Rename 'klass' argument to 'in_class'.  The signature is compared
19441         against the method in 'in_class', and the corresponding method is
19442         returned from 'from_class'.
19443         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19444         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19445         type definition and generic instantiation in parallel.
19446         (mono_get_method_constrained): Update to changes.
19448 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19450         * threads.c: make sure the domain is correct, too when doing
19451         mono_thread_attach ().
19453 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19455         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19456         windows. Fixes #77683.
19458 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19460         * object.h, *: introduced specific way to set elements of an array
19461         of references to be used as write barrier. Still need to audit the
19462         uses of mono_array_addr.
19464 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19466         * object-internals.h: New field to cache the assmebly name, patch
19467         from Tambet Ingo (tambet@ximian.com)
19469 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19471         * decimal.h, class-internals.h, metadata-internals.h,
19472         file-io.h: mark a few function declarations as internal, to
19473         reduce the number of PLT entries.
19475 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19477         * file-io.c: fix typo in warning message.
19479 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19481         * loader.c: on unix, lookup the "*A" version of a function
19482         if charset is auto as a second option before failing.
19484 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19486         * class.h (mono_class_inflate_generic_method): Revert to two
19487         argument version.
19488         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19489         (mono_class_inflate_generic_method_full): Add.
19490         * class.c (mono_class_inflate_generic_method_full): Rename from
19491         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19492         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19493         * loader.c, reflection.c: Update to changes.
19495 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19497         * icall.c: const fixes and small improvements.
19499 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19501         * threadpool.c: for asynchronous connect(), enable the same workaround
19502         for BSD 6 as for the Mac. Fixes bug #77637.
19504 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19506         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19507         formatted classes. Fixes #77524.
19509 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19511         * class.c (inflate_generic_type): Add a couple more
19512         micro-optimizations.
19513         (inflate_generic_context): Don't use the 'gmethod' from
19514         'inflate_with'.
19515         (mono_class_inflate_generic_method): If the method has generic
19516         parameters, but the passed-in context doesn't have a 'gmethod',
19517         create one.  Use the possibly simplified generic instantiation
19518         from the declaring class instead of the one passed in.
19520 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19522         Make generic method signature and method header handling lazy.
19523         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19524         (inflate_generic_header): Likewise.
19525         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19526         parameter to avoid inflating types.
19527         (mono_get_inflated_method): Empty out.
19528         * class.h (mono_class_inflate_generic_method): Update to changes.
19529         * loader.c (mono_get_method_from_token): Don't parse signature for
19530         generic methods, nor methods of generic classes.
19531         (mono_method_signature): Rename from 'mono_method_signature'.
19532         Inflate signature on demand.
19533         (mono_method_get_header): Inflate method header on demand.
19534         * reflection.c: Update to changes.
19536 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19538         * metadata.c (mono_metadata_inflate_generic_inst): If the
19539         instantiation is closed, don't bother expanding it in the new
19540         context.
19541         * class.c (inflate_generic_class): If the generic instantiation
19542         doesn't change after inflation, return the argument itself.
19543         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19544         Add bounds checks.
19545         (inflate_generic_context): If neither the generic class nor the
19546         generic method instantiations change, return the original context.
19547         * reflection.c (mono_method_get_object): Do
19548         'mono_get_inflated_method' before accessing the ->klass field.
19549         (inflate_mono_method): Don't create a MonoGenericMethod unless
19550         necessary.
19551         (inflate_method): Don't pass a constructed type as the declaring
19552         type of a methodbuilder.
19554 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19556         * object.c: fix memory overwrite.
19558 2006-02-22  Dick Porter  <dick@ximian.com>
19560         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19561         it doesn't work any more.
19562         (mono_threads_request_thread_dump): Fix unused variable warnings.
19564 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19566         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19567         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19568         the public header file.
19570 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19572         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19574 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19576         * class-internals.h, object.c: reduce the size of MonoVTable
19577         and store the interface_offsets array at negative offsets.
19579 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19581         * metadata.c: tweak table descriptors data structures to reduce
19582         size and runtime relocations.
19584 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19586         * marshal.c: fix some types and opcodes to be type-safe
19587         in marshaling wrappers.
19589 2006-02-21  Ankit Jain  <jankit@novell.com>
19591         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19593 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19595         * metadata.c (get_constraints): Relax debugging checks for monodis.
19597 2006-02-21  Ankit Jain  <jankit@novell.com>
19599         * metadata.c (mono_metadata_load_generic_params): Move the code
19600         checking for ambiguous generic params from here to mono/dis/get.c
19601         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19603 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19605         Fix assertion triggered when compiling nemerle.
19606         * class.c (mono_get_shared_generic_inst): Rename from
19607         get_shared_inst and make non-static.
19608         * loader.c (mono_get_shared_generic_method): New.  Used to create
19609         the MonoGenericContext-equivalent of a MonoGenericContainer.
19610         (mono_get_method_from_token): Initialize the 'context' field of
19611         the created MonoGenericContainer.
19612         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19613         * metadata.c (get_constraints): Add sanity check.
19614         * class-internals.h: Add new internal methods.
19616         * reflection.c (verify_safe_for_managed_space): New sanity check.
19617         Currently checks that owner-less generic parameters aren't allowed
19618         in managed space.
19619         (mono_type_get_object): Use it.
19620         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19621         that are now in mono_type_get_object.
19622         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19624 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19626         * metadata.c (mono_type_create_from_typespec): Rename from
19627         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19628         argument and caching of types in the generic container.
19629         (unwrap_arrays, find_generic_param): Remove.
19630         * metadata-internals.h: Update.
19631         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19633 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19635         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19637         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19638         return values. Fixes #77581.
19640         * class.c (mono_fnptr_class_get): Switch name and name_space.
19642         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19643         classes and add support for [In, Out] attributes.
19644         (mono_marshal_free_asany): Ditto. Fixes #77524.
19646 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19648         * class.c (mono_class_from_generic_parameter): Make more robust to
19649         incomplete MonoGenericContainers from monodis.
19651 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19653         * class-internals.h: added some more exception types.
19654         * class.c, metadata.c: added a few checks to handle missing
19655         types.
19657 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19659         Use owner-less generic-params some more.
19660         * class.c (my_mono_class_from_generic_parameter): Remove.
19661         (mono_class_from_generic_parameter): Handle null image,
19662         param->name and param->owner.
19663         (mono_class_from_mono_type): Update.
19664         (mono_class_create_from_typespec): Remove 'container' parameter.
19665         If that parameter is non-null, the result is always inflated by
19666         'mono_class_get_full' anyway.
19667         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19668         parameter.
19669         (mono_class_get_full): Update.
19671         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19672         instance is not open, don't bother inflating.
19673         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19674         parse metadata for inflated classes.
19675         (_mono_class_get): Change GenericContext* parameter to
19676         GenericContainer*.
19677         (mono_class_create_from_typespec): Likewise.  Simplify, and
19678         implement trivially.  All the cases are handled in
19679         mono_class_from_mono_type.  Don't inflate returned class.
19680         (mono_class_get_full): Delegate GENERICINST optimization to
19681         inflate_generic_type.
19682         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19684 2006-02-16  Dick Porter  <dick@ximian.com>
19686         * socket-io.c (create_object_from_sockaddr): Fix typo.
19687         (create_sockaddr_from_object): Check array lengths before
19688         potentially accessing items off the end.
19689         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19690         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19691         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19692         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19693         length checks to avoid wraparound overflows.
19694         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19695         contents of the array of sockets
19696         (hostent_to_IPHostEntry2)
19697         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19698         Check return value of inet_ntop ().
19699         (addrinfo_to_IPHostEntry): Fix typo
19701 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19703         Type metadata parsing doesn't use generic-instantiation information.
19704         * metadata.c (mono_metadata_parse_array_full): Change
19705         MonoGenericContext* parameter to MonoGenericContainer*.
19706         (mono_metadata_parse_type_full): Likewise.
19707         (mono_type_create_from_typespec_full): Likewise.
19708         (mono_metadata_parse_mh_full): Likewise.
19709         (mono_metadata_parse_generic_inst): Likewise.
19710         (do_mono_metadata_parse_generic_class): Likewise.
19711         (do_mono_metadata_parse_type): Likewise.
19712         * metadata-internals.h: Update to changes.
19713         * class.c (mono_class_find_enum_basetype): Likewise.
19714         (mono_class_setup_fields): Likewise.
19715         (mono_class_create_from_typespec): Likewise.
19716         * loader.c (method_from_methodspec): Likewise.
19717         (mono_get_method_from_token): Likewise.
19718         (mono_method_get_header): Likewise.
19720 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19722         * marshal.c: handle additional GENERICINST case (patch from
19723         Thong Nguyen <tum@veridicus.com>).
19724         Fix a few cases where LDIND_I/STIND_I was used for references.
19726 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19728         * reflection.c (mono_reflection_get_token): Remove unused variable.
19730 2006-02-16  Martin Baulig  <martin@ximian.com>
19732         * reflection.c (mono_reflection_get_token): Add support for fields
19733         in instantiated generic types.
19735         * icall.c
19736         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19738 2006-02-15  Martin Baulig  <martin@ximian.com>
19740         * icall.c
19741         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19742         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19743         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19744         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19746 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19748         * class.c, metadata.c, metadata.h, object.c, icall.c,
19749         marshal.c: changed mono_type_get_underlying_type () to do
19750         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19751         Fixed handling of instantiated generic valuetypes (bug #75479).
19753 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19755         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19756         Delegate to mono_metadata_decode_value, and work on the returned value.
19758         * icall.c (ves_icall_MonoType_GetGenericArguments):
19759         Add consistency check here too.
19760         
19761 2006-02-15  Ankit Jain  <jankit@novell.com>
19763         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19764         char/short etc.
19766 2006-02-15  Ankit Jain  <jankit@novell.com>
19768         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19769         signed values, used only for representing lower bounds of arrays.
19770         (mono_metadata_parse_array_full): Use new
19771         mono_metadata_decode_signed_value to decode lower bounds.
19773 2006-02-14  Martin Baulig  <martin@ximian.com>
19775         * reflection.c
19776         (mono_reflection_get_token): Support "MonoGenericMethod" and
19777         "MonoGenericCMethod" and allow generic instances / methods.
19779 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19781         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19782         to obtain the terminal size using an ioctl.
19784         * object.c (mono_nullable_init): Revert this as nullable reference
19785         types are not valid.
19786         (mono_nullable_box): Ditto.
19788 2006-02-09  Dick Porter  <dick@ximian.com>
19790         * threads.c (mono_thread_detach): Drop a reference to the thread
19791         we're detaching.
19793 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19795         * object.c (mono_nullable_init): Handle nullable reference types.
19796         (mono_nullable_box): Ditto. Fixes #77446.
19798 2006-02-07  Martin Baulig  <martin@ximian.com>
19800         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19802 2006-02-07  Ankit Jain  <jankit@novell.com>
19804         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19805         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19806         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19807         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19808         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19809         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19811 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19813         * class.c (mono_class_create_generic): Set type_token as well.
19815         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19816         compatible with MS.
19818 2006-02-02  Martin Baulig  <martin@ximian.com>
19820         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19821         has never been used so far.
19823 2006-02-02  Martin Baulig  <martin@ximian.com>
19825         * mono-debug-debugger.h: Changed comment at the top of this file;
19826         the header is not installed, but it's safe to #include it from
19827         within the JIT.
19829         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19830         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19832 2006-02-02  Martin Baulig  <martin@ximian.com>
19834         * mono-debug.h
19835         (MonoSymbolTable): Removed the `metadata_info' field.
19837         * mono-debug.c
19838         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19840         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19841         (mono_debugger_add_builtin_types): Removed.
19842         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19843         (mono_debugger_create_notification_function): We now operate on a
19844         pre-allocated area; take a `gpointer' and return `void'.
19846         * mono-debug-debugger.c
19847         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19848         (mono_debugger_add_builtin_types): Removed.
19850 2006-02-02  Martin Baulig  <martin@ximian.com>
19852         * threads.c (mono_debugger_create_all_threads): New public method.
19854 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19856         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19857         breaks on several platforms.
19859 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19861         * assembly.c: the VS.NET build doesn't supply default values for
19862         MONO_ASSEMBLIES and MONO_CFG_DIR.
19864 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19866         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19867         helper function.
19869         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19871         * loader.c (method_from_memberref): Fix a warning.
19873         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19875         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19876         with explicit layout. Fixes #77433.
19878 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19880         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19881         max_interface_id is initialized before using it. Fixes #77398.
19882         (ves_icall_Type_GetInterfaces): Ditto.
19884 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19886         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19887         allocate memory for parameter attributes when parsing memberref
19888         signatures.
19889         * loader.c (mono_loader_set_error_method_load): Don't warn.
19890         (method_from_memberref): Ensure MissingMethodException gets thrown
19891         if method is not found.  Make warning more informative.
19893 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19895         Fix #77397
19896         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19897         return true if is byref.
19898         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19899         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19900         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19902 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19904         Fix tests/find-method.2.il
19905         * loader.c (find_method, find_method_in_class): Remove is_inflated
19906         argument.  Revert 2006-01-18 change.
19907         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19908         is generic, search for method in its generic definition.
19909         * class.c (mono_class_setup_vtable_general): Print generic
19910         arguments of generic types in debugging printf.
19912 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19914         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19916         * threads.c (mono_threads_request_thread_dump): New helper function.
19918 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19920         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19922 2006-01-25  Ankit Jain  <jankit@novell.com>
19924         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19925         move definition to ..
19926         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19927         
19928 2006-01-25  Ankit Jain  <jankit@novell.com>
19929             Raja R Harinath  <rharinath@novell.com>
19931         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19932         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19933         as necessary.
19935 2006-01-25  Martin Baulig  <martin@ximian.com>
19937         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19938         `MonoDebuggerThread' into debug-debugger.c.
19940 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19942         * profiler.c: fix printing of data.
19944 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19946         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19947           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19949 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19951         * object.c: fix deadlock related to string interning.
19953 2006-01-23  Martin Baulig  <martin@ximian.com>
19955         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19957         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19959 2006-01-23  Martin Baulig  <martin@ximian.com>
19961         * mono-debug.h: Moved the prototypes of some functions which are
19962         used by the JIT here from mono-debug-debugger.h.
19964 2006-01-21  Martin Baulig  <martin@ximian.com>
19966         * Makefile.am: Don't install mono-debug-debugger.h.
19968 2006-01-21  Martin Baulig  <martin@ximian.com>
19970         * mono-debug-debugger.h: Enforce the private status of this header
19971         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19972         Moved some stuff from mono-debugger-jit-wrapper.h here.
19974 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19976         * class.c (mono_class_from_typeref): Add a sanity test to help
19977         catch lack of assembly load/search hooks.
19979 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19981         * marshal.c (emit_struct_conv): Relax the fields with same offset
19982         check even more. Fixes #77230.
19984 2006-01-18  Martin Baulig  <martin@ximian.com>
19986         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19987         argument; if false, we compare the uninstantiated signatures.
19988         (method_from_memberref): Compare the uninstantiated signatures;
19989         fixes #76417.
19991 2006-01-18  Robert Jordan  <robertj@gmx.net>
19993         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19994         Clear the weak link. Fixes bug #77170.
19996         * gc.c (mono_gchandle_free):
19997         Reflect *-gc.c changes (tiny optimization).
19999 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20001         * metadata.c (mono_metadata_signature_dup): Applied patch from
20002         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20003         Fixes #77288.
20005 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20007         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20008         marshalling from native to managed code. Fixes #77230.
20010 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20012         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20013         connect. Fixes bug #77020.
20015 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20017         * class.c: fixed id assignement for nested interfaces (bug #77275).
20018         Added also better info for --print-vtable debugging.
20020 2006-01-12  Martin Baulig  <martin@ximian.com>
20022         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20023         interfaces on-the-fly; fixes #76625.
20025         * class-internals.h
20026         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20027         don't need that anymore.
20029 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20031         * socket-io.c
20032         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20033         To avoid initing the nested_classes when not needed I turned the
20034         PeerCredData as a toplevel internal class, as it has to be shared
20035         anyways. 
20037         Fixes the CASA issue.
20039 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20041         * domain.c: Accessors for MonoJitInfo
20043         * profiler-private.h: Add jitinfo to the end jit hook
20045         * profiler.[ch]: Define new hooks, called after jitting which give
20046         the MonoJitInfo that was compiled
20048 2006-01-10  Martin Baulig  <martin@ximian.com>
20050         * class.c (mono_class_setup_events): Add support for generic
20051         classes; fixes #76440.
20053 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20055         Fix #77160.
20056         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20057         on passed-in method.
20059 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20061         * object.c (mono_runtime_invoke_array): Add Nullable support.
20063         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20065 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20067         * file-io.c: Don't consider sockets as directory and avoid an endless
20068         loop. Fix bug #76966.
20070 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20072         * object.c (mono_nullable_init): New helper function.
20073         (mono_nullable_box): Ditto.
20075         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20077         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20079         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20080         
20081 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20083         * class.c (mono_class_is_assignable_from): Make T assignable to 
20084         Nullable<T>.
20086 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20088         * appdomain.c: Bump corlib version to 46.
20089         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20090         serialization purpose) and changed ves_icall_System_Reflection_
20091         Assembly_get_code_base signature to accept a boolean (to escape, or 
20092         not, the assembly code base).
20094 2005-12-23  Dick Porter  <dick@ximian.com>
20096         * icall.c: 
20097         * threads-types.h: 
20098         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20099         CreateEvent icall now returns "created" boolean parameter.
20101 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20103         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20104         #76967.
20106         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20107         when attr_klass is an interface. Fixes #77045.
20109 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20111         * marshal.c (emit_struct_conv): Fix previous patch.
20112         
20113         * marshal.c (emit_struct_conv): Add a check for fields with the same
20114         offset.
20116 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20118         Fix regression in Mono.C5.
20119         * class.c (mono_class_create_generic): If 'klass' is an interface
20120         set up the interface offsets.
20121         (mono_class_is_assignable_from): Don't throw away generic arguments.
20123 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20125         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20126         type parameters.
20128 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20130         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20131         dead store.
20132         (do_mono_metadata_parse_generic_class): Don't pass the current
20133         generic context when parsing the type being instantiated: it
20134         cannot use it, anyway.
20136         * loader.c (method_from_memberref): Don't inflate a signature if
20137         it doesn't contain any type parameters.
20139 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20141         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20143 2005-12-14  Martin Baulig  <martin@ximian.com>
20145         * class.c
20146         (mono_type_get_name_recurse): Don't return null for type
20147         parameters and open generic classes.
20148         (mono_class_setup_methods): Don't exclude generic instances.
20149         (mono_get_unique_iid): Use different IDs for different
20150         instantiations of the same generic type.
20151         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20152         open generic instances; create a normal vtable for closed generic
20153         instances.
20154         (mono_class_setup_vtable_general): We're now also called for
20155         closed generic instances.
20157         * reflection.c
20158         (mono_reflection_bind_generic_parameters): Correctly use
20159         mono_metadata_lookup_generic_inst() everywhere.
20161 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20163         * object.c (mono_class_create_runtime_vtable): Call 
20164         mono_class_setup_vtable ().
20166         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20167         function.
20168         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20169         #76959.
20171         * loader.c (mono_loader_set_error_type_load): Print the type load
20172         warnings to the console so they are more visible to the user.
20173         (mono_loader_set_error_method_load): Ditto.
20175         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20176         is still broken.
20177         
20178         * reflection.c (ensure_runtime_vtable): Fix build.
20180         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20181         doesn't work in all cases.
20183 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20185         * object.c (mono_array_new_full): Treat a single dimensional array
20186         with 0 lower bounds as an szarray. Fixes #76973.
20188         * reflection.c (custom_attr_visible): Really fix this.
20190 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20192         * reflection.c (custom_attr_visible): Allow nested public attributes
20193         as well.
20195         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20196         interface check.
20198 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20200         * class.c (set_generic_param_owner): Delete.
20201         (mono_class_create_from_typedef): Don't set ->owner field of
20202         generic parameters to "param containers" of enclosing classes.
20203         * reflection.c (mono_reflection_initialize_generic_parameter):
20204         Likewise.
20206 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20208         * reflection.c (custom_attr_visible): Fix build.
20210 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20212         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20213         private attributes.
20214         
20215         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20216         handling of null parameter defaults.
20218 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20220         * class.c (mono_class_from_generic_parameter): Don't set
20221         klass->generic_container.
20222         (my_mono_class_from_generic_parameter): Likewise.
20224 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20226         * reflection.c (load_public_key): Fix a warning.
20227         (method_encode_code): Fix unaligned accesses.
20229 2005-12-07  Martin Baulig  <martin@ximian.com>
20231         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20233         * reflection.c
20234         (write_generic_param_entry): Encode our custom attrs.
20236         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20238 2005-12-07  Martin Baulig  <martin@ximian.com>
20240         * reflection.c (encode_new_constraint): Removed; we don't use the
20241         `NewConstraintAttribute' anymore.
20243 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20245         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20246         not fire a TypeResolve event when Assembly.GetType () is called.
20248 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20250         Beginning of support for nullable types in the runtime. Parts of
20251         this patch are from Martin.
20253         * appdomain.c (MONO_CORLIB_VERSION): Bump
20255         * domain.c (mono_init_internal): get the nullable type
20257         * class.c (mono_class_is_nullable): New method
20258         (mono_class_get_nullable_param): New mehod
20259         (mono_class_create_generic): In types T? set cast_class to T
20261         * class-internals.h (MonoDefaults): new nullable default class
20262         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20263         new methods.
20265 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20267         * metadata.c (select_container): New.  Refactor code to select the
20268         appropriate GenericContainer given the type of generic parameter
20269         we are looking for.
20270         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20271         not a MonoGenericContext.  Use select_container.  Update parameters.
20272         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20273         and MONO_TYPE_MVAR.
20274         (unwrap_arrays): Remove duplicate tests.
20275         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20276         generic instantiated class to find any arguments that are generic
20277         parameters.
20278         (mono_type_create_from_typespec_full): Use find_generic_param to
20279         avoid evicting some generic instantiations from the typespec
20280         cache.
20282 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20284         * reflection.c: fixed writing of doubles on ARM FPA.
20286 2005-12-02  Robert Jordan  <robertj@gmx.net>
20288         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20290 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20292         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20293         least on SUSE 10 they are not the same (on debian, they are just the
20294         same thing).
20296 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20298         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20299         DeclaringType for VARs and MVARs.
20300         * class.c (set_generic_param_owner): Fix initialization of owner
20301         fields.
20303 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20305         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20307 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20309         * threadpool.c: workaround for a bug that shows up on the Mac:
20310         select()+connect() on a blocking socket is not like it should
20311         be, so we proceed to connect() in that case, wasting the I/O
20312         threadpool thread until connect succeedes. Fixes bug #75436.
20314 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20316         * threadpool.c: fix typo when setting file descriptor states.
20318 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20320         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20321         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20322         create a temporary signature container.
20323         (mono_metadata_parse_generic_param): Update to changes.
20324         (mono_type_create_from_typespec_full): Update to changes.
20325         * loader.c (method_from_memberref): Don't use a
20326         MonoGenericContainer while parsing a memberref signature.
20327         (method_from_methodspec): Remove dead-store of the 'container'
20328         variable.  It's overwritten before use.
20330         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20331         checks tighter.
20332         (mono_metadata_parse_generic_param): Likewise.
20333         * loader.c (find_method_in_class): Does not need a
20334         MonoGenericContainer.  Use 'mono_method_signature' rather than
20335         'mono_method_signature_full'.
20336         (find_method, mono_get_method_constrained, method_from_memberref):
20337         Update to changes.
20339         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20340         owner-less generic-parameters are never evicted from the typespec
20341         cache.
20343         * loader.c (method_from_memberref): Don't use the current context
20344         when parsing signatures.
20345         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20347         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20348         side-effects in g_assert.
20349         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20350         that we don't potentially lose information.
20352 2005-11-26  Dick Porter  <dick@ximian.com>
20354         * icall.c:
20355         * threads.c: icalls to implement basic (ie, not named)
20356         System.Threading.Semaphore.
20358 2005-11-24  Dick Porter  <dick@ximian.com>
20360         * process.c
20361         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20362         Use GetProcessId() if it's available.
20364 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20366         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20368 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20369             Ankit Jain  <jankit@novell.com>
20371         * loader.c (mono_get_method_from_token): Initialize 'method' field
20372         of all generic parameters before parsing the signature.  Remove
20373         code that "fixed"-up MVAR references.
20375 2005-11-23  Ankit Jain  <jankit@novell.com>
20377         * metadata.c (mono_metadata_has_generic_params):
20378         (mono_metadata_load_generic_param_constraints):
20379         (mono_metadata_load_generic_params): Move duplicate code ...
20380         (mono_metadata_get_generic_param_row): ... here. Returns the
20381         first row-id in GenericParam table for a given owner (token).
20382         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20383         prototype.
20385 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20386             Ankit Jain  <jankit@novell.com>
20388         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20389         comparing VARs too.
20390         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20391         type->data.generic_param only if the type is an MVAR.
20392         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20393         leak owner-less VARs and MVARs into managed space.
20395 2005-11-21  Martin Baulig  <martin@ximian.com>
20397         * class-internals.h
20398         (MonoMethod): Moved the `generic_container' here from
20399         `MonoMethodNormal' since we now also need it for
20400         `MonoMethodPInvoke';
20401         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20402         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20403         an union containing both `MonoMethodNormal' and
20404         `MonoMethodPInvoke'.
20406         * loader.c
20407         (mono_get_method_from_token): Allow implementing generic methods
20408         as interncalls.
20410         * threads.c
20411         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20412         icall.
20414 2005-11-17  Dick Porter  <dick@ximian.com>
20416         * icall.c: 
20417         * process.h: 
20418         * process.c: Split the Process Start_internal icall into
20419         ShellExecuteEx_internal and CreateProcess_internal, which are
20420         called depending on whether UseShellExecute is true.  Fixes bug
20421         76670.
20423         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20425 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20427         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20428         'msize' parameters, use the information in 'mspec' instead.
20429         (emit_object_to_ptr_conv): Ditto.
20431         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20432         fields out of order. Fixes #76733.
20434 2005-11-17  Ankit Jain  <jankit@novell.com>
20436         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20438 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20440         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20441           bug #76575.
20443 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20445         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20446         for types with non-auto layout. Fixes #76717.
20448 2005-11-16  Ankit Jain  <jankit@novell.com>
20450         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20451         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20452         if generic_context is null.
20453           (mono_metadata_generic_param_equal): param->owner can be null.
20454           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20455         null.
20457 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20459         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20460         the correct value.
20462 2005-11-15  Martin Baulig  <martin@ximian.com>
20464         * object.c (set_value): Use mono_class_from_mono_type() instead of
20465         the hack for generic instances; fixes #76136.
20467 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20469         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20470         fields.
20472         * image.c (load_metadata_ptrs): Initialize the new fields.
20474         * reflection.c (create_dynamic_mono_image): Ditto.
20476         * reflection.c (build_compressed_metadata): Use the new fields.
20478         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20479         icall.
20481         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20482         icall.
20483         
20484 2005-11-15  Ankit Jain  <jankit@novell.com>
20485             Raja R Harinath  <harinath@gmail.com>
20487         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20488         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20489         new per-generic_container cache if the cached MonoType's context matches
20490         the current context.
20491           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20492         to the expected context.
20493           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20495 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20497         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20498         we changed the signature of an icall.
20499         * icall.c: Modify to mono_double_ParseImpl return true/false 
20500         depending on the success, instead of throwing the exception. This will
20501         help us in Double.TryParse methods.
20502         
20503 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20505         * marshal.c (emit_marshal_object): Throw an exception when
20506         marshalling 'object' instead of crashing. Fixes #76696.
20508 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20510         * class-internals.h: Add prototype for mono_type_get_full_name ().
20512 2005-11-11  Dick Porter  <dick@ximian.com>
20514         * threads.c (mono_thread_manage): Make sure the main thread has
20515         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20517 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20519         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20520         console about the missing type.
20521         (mono_loader_set_error_method_load): Ditto.
20523 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20525         * mono-config.c (mono_get_config_dir): Set the system defaults if
20526         none is specified.
20528         * assembly.c (mono_set_dirs): New API entry point to set the
20529         assembly and the config directory in one call
20531 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20533         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20534         the ftnptr was created from a delegate in a domain other than the
20535         current domain. Fixes #75377.
20537         * exception.h exception.c: Add mono_get_exception_not_supported ().
20539 2005-11-08  Martin Baulig  <martin@ximian.com>
20541         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20543 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20545         * security-manager.h: Added definitions to deal with strongname key 
20546         pairs bigger (and smaller) than 1024 bits.
20547         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20548         adjust wrt the public key length being used.
20550 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20552         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20553           Windows build (r51396-51397).
20555 2005-11-03  Martin Baulig  <martin@ximian.com>
20557         * class.c (mono_class_setup_vtable_general): Also add generic
20558         methods to the vtable; fixes #76581.
20560 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20562         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20563         sure that we lookup GetString method from the System.Text.Encoding
20564         class, not the derived class or we get an empty method.
20566         Fixed class #76612.
20568 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20570         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20571         if it has been previously set (embedders). 
20573         Make mono_set_rootdir available also on Unix.
20575 005-10-24  Robert Jordan  <robertj@gmx.net>
20577         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20579 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20581         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20582         only calls which are made to native code use this flag.
20584         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20586 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20588         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20589         Add support for FieldBuilders.
20591 2005-10-29  Martin Baulig  <martin@ximian.com>
20593         * mono-debug.c
20594         (mono_debug_using_mono_debugger): New public method; returns
20595         whether we're running inside the debugger.
20597 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20599         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20600         for Method/Constructor/FieldBuilders.
20602 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20604         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20605         and fields as well.
20607 2005-10-26  Martin Baulig  <martin@ximian.com>
20609         * mono-debug-debugger.c
20610         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20612 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20614         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20615         integer to isspace.
20617 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20619         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20620         when passing valuetypes byref. Fixes #76502.
20622 2005-10-19  Jackson Harper  <jackson@ximian.com>
20624         * profiler.c: Don't put a . in front of types that are not in a
20625         namespace.
20627 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20629         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20631 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20633         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20634         #76436.
20635         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20637 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20639         * assembly.c metadata-internals.h icall.c: Define an additional
20640         parameter for mono_assembly_name_parse_full, so we can avoid creating
20641         S.R.AssemblyName.Version when no version info wasn't passed.
20642         
20643 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20645         * class.c (mono_type_get_full_name): Reimplement method that was
20646         removed. 
20648         * image.c: Some docs
20650 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20652         * profiler.c (output_newobj_profile): Fix printing of Total memory
20653         on x86.
20655 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20657         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20659 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20661         * threads.c: remove debug output.
20663 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20665         * threads.c (mono_thread_manage): Fix crashes if more than 64
20666         threads need to be aborted. Hopefully fixes #75899.
20668         * assembly.c (mono_stringify_assembly_name): New helper function.
20670         * class.c: Use mono_stringify_assembly_name instead of the similar
20671         static function.
20673         * assembly.h assembly.c: Add support for calling a postload search 
20674         hook if an assembly cannot be loaded.
20676         * appdomain.c: Register new search hooks which call the AssemblyResolve
20677         events in AppDomain. Fixes #75231
20679 2005-10-07  Martin Baulig  <martin@ximian.com>
20681         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20682         methods without debug info.
20684 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20686         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20687         wrappers.
20689 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20691         * file-io.c: now that we return symlinks, use lstat and, when the file
20692         is a symbolic link, stat, to get the file attributes. Also avoid the
20693         conversion to/from utf16/external.
20695 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20697         * class.c (mono_class_layout_fields): Compute klass->has_references
20698         correctly if an embedded valuetype is not yet initialized. Fixes
20699         #76331.
20701 2005-10-04  Martin Baulig  <martin@ximian.com>
20703         * metadata.c
20704         (mono_metadata_load_generic_param_constraints): New public
20705         function; splitted the constraints loading out from
20706         mono_metadata_load_generic_params().
20708         * class.c (mono_class_create_from_typedef): Call
20709         mono_metadata_load_generic_param_constraints() after setting up
20710         the type and creating our parent; fixes #75329.
20712 2005-10-04  Martin Baulig  <martin@ximian.com>
20714         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20715         non-dynamic parent classes.
20717 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20719         * file-io.c : win32 build fix (ETXTBSY seems not found).
20721 2005-10-04  Martin Baulig  <martin@ximian.com>
20723         * reflection.c
20724         (mono_image_get_methodspec_token): Make the cache actually work;
20725         fixes #75974.
20727 2005-10-04  Martin Baulig  <martin@ximian.com>
20729         * class.c (mono_class_name_from_token): Removed the unneccessary
20730         `MonoGenericContext *' argument.
20732 2005-10-04  Martin Baulig  <martin@ximian.com>
20734         * loader.c
20735         (method_from_methodspec): Make the caching work again; fixes the
20736         performance regression from #76262.
20738 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20740         * file-io.c:
20741         * file-io.h:
20742         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20743         GetFileSystemEntries that performs the same work but without going
20744         into io-layer, locking, etc.
20746 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20748         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20749         ThreadState_Stopped as well. Fixes #76047.
20751 2005-09-29  Martin Baulig  <martin@ximian.com>
20753         * class.c
20754         (inflate_generic_context): If the new context has a `gmethod', set
20755         its `container' that that gmethod's `container'.
20757         * metadata.c
20758         (mono_metadata_parse_generic_param): Simplify things;
20759         `generic_container = generic_context->container;' is just fine.
20761         * loader.c (method_from_methodspec): Code cleanups.
20763 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20765         * decimal.c: fix warning (and let gcc generate correct
20766         code on ARM with optimizations).
20768 2005-09-28  Martin Baulig  <martin@ximian.com>
20770         * loader.c
20771         (method_from_memberref): Added `MonoGenericContext *class_context'
20772         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20773         (method_from_methodspec): If we're a memberref, use the enclosing
20774         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20776 2005-09-28  Martin Baulig  <martin@ximian.com>
20778         * object.c (mono_runtime_invoke_array): Added support for
20779         MONO_TYPE_GENERICINST; fixes #75917.
20781 2005-09-27  Martin Baulig  <martin@ximian.com>
20783         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20784         `k->byval_arg.type' to determine the actual type.
20786         * loader.c (method_from_methodspec): Removed some hacks.
20788 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20790         * class-internals.h (mono_field_is_deleted): Do the test for
20791         rtspecialname before we check the actual name of the field. This
20792         prevents us from dereferencing a pointer into the string table,
20793         saving us from accessing a few pages
20795         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20796         macros. This will allow a deadlock debugger to easily be plugged
20797         in.
20799 2005-09-27  Martin Baulig  <martin@ximian.com>
20801         * loader.c (method_from_methodspec): Create a "signature"
20802         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20804 2005-09-27  Martin Baulig  <martin@ximian.com>
20806         * class.c
20807         (inflate_generic_class): Correctly set the new context's
20808         container.
20810         * loader.c
20811         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20812         instead of a `MonoGenericContext *'.
20813         (mono_method_signature_full): Take a `MonoGenericContainer *'
20814         instead of a `MonoGenericContext *'.
20816         * metadata.c
20817         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20818         instead of a `MonoGenericContext *'.
20819         (mono_metadata_parse_method_signature_full): Likewise.
20821 2005-09-26  Martin Baulig  <martin@ximian.com>
20823         * class.c
20824         (mono_class_from_generic_parameter): Set `klass->generic_container'
20825         (mono_class_from_generic_parameter): Likewise.
20826         (mono_bounded_array_class_get): We inherit the generic container
20827         from the element class.
20829         * loader.c
20830         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20831         argument rather than computing it here.
20832         (method_from_memberref): Correctly set the generic context before
20833         parsing the signature.  Fixes #75681.
20835 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20837         * object.c (mono_class_has_special_static_fields): Fix warnings.
20839 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20841         * assembly.c: Add parse_public_key function, to
20842         par the public keys. Also added mono_assembly_name_parse_full,
20843         to define it the parsed key should be freed or not.
20844         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20845         to parse a long format assembly name.
20846         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20847         private, since calling it to preserve the key requires
20848         freeing it manually.
20849         
20850 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20852         * locales.c : removed HAVE_ICU part.
20854 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20856         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20857         field_is_special_static if the klass has no special static fields.
20859         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20860         (MonoCachedClassInfo): Likewise.
20862         * object.c (mono_class_has_special_static_fields): New helper function.
20864 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20866         * class.c (mono_class_create_from_typedef): Don't call 
20867         interfaces_from_typedef_full for enums.
20868         (mono_class_create_from_typedef): Compute the base types of enums directly
20869         without calling mono_class_setup_fields ().
20870         (mono_class_find_enum_basetype): New helper function.
20872         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20873         one place inside the string heap.
20874         
20875 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20877         * class.c: locking fixes, code cleanups, some docs added.
20878         Allocate some data structures in the image mempool.
20880 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20882         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20883         the example code.
20884         
20885 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20887         * class-internals.h, class.c, reflection.c: reduce memory taken by
20888         MonoClass.
20890 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20892         * metadata.c, metadata.h, loader.h: documentation updates, code and
20893         API cleanups.
20895 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20897         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20898         the example code.
20900         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20901         page faults caused by the runtime while reading metadata.
20903 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20905         * socket-io.c: the field names were changed 3 months ago and no one
20906         realized until bug #76077 got filed!
20908 2005-09-20  Martin Baulig  <martin@ximian.com>
20910         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20912 2005-09-20  Martin Baulig  <martin@ximian.com>
20914         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20915         write the rank into the class entry.
20917 2005-09-20  Martin Baulig  <martin@ximian.com>
20919         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20921 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20923         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20925         * icall.c (custom_attrs_defined_internal): New icall.
20927         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20928         function.
20929         (mono_custom_attrs_construct_by_type): New helper function.
20931 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20933         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20934         terminate the resulting string. Fixes #76123.
20936 2005-09-16  Martin Baulig  <martin@ximian.com>
20938         * mono-debug.c
20939         (mono_debug_add_method): Ignore inflated methods for the moment.
20941 2005-09-14  Martin Baulig  <martin@ximian.com>
20943         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20945 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20947         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20948         return a success/failure indication.
20949         (mono_metadata_interfaces_from_typedef_full): Ditto.
20950         (get_constraints): Ditto.
20952 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20954         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20955         
20956         * marshal.c (emit_marshal_array): Add support for returning string
20957         arrays from delegates. Fixes #76063.
20959         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20961 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20963         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20964         icall.
20966 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20968         * reflection.c icall.c: Fix after mono_get_exception_type_load
20969         signature change.
20971         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20972         (mono_assembly_load_reference): Use the new helper.
20974         * class-internals.h (MonoLoaderError): New structure containing 
20975         information about type loading errors.
20977         * class-internals.h loader.c: Add APIs to store per-thread loader
20978         error information.
20980         * loader.c class.c: Set the loader error if needed.
20982         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20984 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20986         * decimal.c: fixed to handle the broken ARM fp format.
20988 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20990         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20991         broken.
20993 2005-09-06  Martin Baulig  <martin@ximian.com>
20995         * domain.c (supported_runtimes): Added v2.0.50727.
20997 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20999         * culture-info.h: reduce the size of some structures.
21001 2005-09-05  Martin Baulig  <martin@ximian.com>
21003         Reflect latest API changes in the August CTP.
21005         * icall.c
21006         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21007         ("MonoType.HasGenericArguments"): Removed.
21008         ("MonoMethod.BindGenericParameters"): Renamed to
21009         "MakeGenericMethod".
21010         ("MethodBuilder.BindGenericParameters"): Renamed to
21011         "MakeGenericMethod".    
21013 2005-09-05  Martin Baulig  <martin@ximian.com>
21015         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21017 2005-09-05  Martin Baulig  <martin@ximian.com>
21019         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21021         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21022         generic_container is non-NULL.
21024 2005-09-05  Martin Baulig  <martin@ximian.com>
21026         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21028         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21030 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21032         * reflection.c (encode_locals,
21033         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21034         for large generic types.
21036 2005-09-05  Martin Baulig  <martin@ximian.com>
21038         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21040         * class.c (mono_dup_array_type): New public method.
21041         (mono_metadata_signature_deep_dup): New public method.
21042         (dup_type): Correctly duplicate array and function types.
21044 2005-09-05  Martin Baulig  <martin@ximian.com>
21046         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21048         * reflection.c (get_default_param_value_blobs): Handle generic types
21049         and generic methods.
21051 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21053         * class.c: Fixed error reporting (method/class were inversed) for 
21054         inheritance demands.
21055         * security-manager.c|h: Added the AppDomain when calling the managed
21056         System.Security.SecurityManager.InheritanceDemand method.
21058 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21060         * reflection.c (encode_marshal_blob): 'marshaltype' and
21061         'marshaltyperef' are alternate sources for the custom marshaler
21062         name.
21064 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21066         * class.c: fix creation of array classes with rank == 1
21067         (patch by Ankit Jain <jankit@novell.com>).
21069 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21071         * object.c: fix check for creating the bound data for arrays vs
21072         szarrays.
21074 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21076         * object.c: configuration file name is now based on the executable name,
21077         not the image name. Fixes bug #75931.
21079 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21081         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21082         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21084 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21086         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21088 2005-08-24  Ankit Jain  <jankit@novell.com>
21089             Raja R Harinath  <rharinath@novell.com>
21091         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21092           called by it recursively.
21093           (mono_class_init): Remove special case in pending_init handling, since it's
21094           superseded by the fix to mono_class_from_typeref.
21096 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21098         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21099         BROKEN_THREAD_START stuff.
21101 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21103         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21104         trampoline.
21106         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21107         
21108         * object.c (mono_delegate_ctor): Replace the original function address with
21109         a delegate trampoline.
21111 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21113         * icall.c: add boolean argument to base64_to_byte_array and 
21114         InternalFromBase64String to control whether a whitespace-only string
21115         is allowed (or should casue a FormatException to be thrown). We need
21116         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21117         to match the MS behaviour in both profiles.
21118         * appdomain.c: Bump corlib version.
21120 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21122         This patch implements a big portion of publisher policy
21123         support, used to bind assembly versions and redirect
21124         one assembly from version A to version B.
21126         * assembly.c:
21127         New GSList loaded_assembly_bindings, for storing the cached
21128         assembly bindings.
21129         (assembly_binding_maps_name): New static function for checking if a 
21130         assembly binding information maps an assembly name.
21131         (mono_assembly_binding_info_free): New function for freeing
21132         assembly binding information resources.
21133         (get_publisher_policy_info): New static function for retrieving 
21134         assembly binding information from a MonoImage.
21135         (compare_versions): New static function for comparing an assembly
21136         binding information data and the version of an assembly name.
21137         (check_policy_versions): New static function for checking if an
21138         assembly binding info mapping an assembly name is valid for it.
21139         (mono_assembly_load_publisher_policy): New static function for
21140         loading the 'policy.major.minor.MyAssembly' image for an assembly
21141         with an assembly name 'aname'.
21142         (mono_assembly_bind_version): New static function for updating
21143         assembly redirection.
21144         (mono_assembly_apply_binding): New static function for applying
21145         assembly binding.
21146         (search_binding_loaded): New static function for searching 
21147         loaded assembly binding infos in the cache domain.
21148         (mono_assembly_load_full): Don't apply assembly binding for
21149         reflection only assemblies.
21151         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21152         which contains information about assembly binding. Also
21153         declare signature for mono_config_parse_publisher_policy ()
21154         function, used to retrieve pub policy info.
21155         
21156         * mono-config.c:
21157         (publisher_policy_start): New static function used to parse publisher 
21158         policy config files.
21159         (publisher_policy_parser): New static MonoParseHandler containing 
21160         the functions used when parsing config files.
21161         (mono_config_parse_publisher_policy): New function for parsing
21162         publisher policy files.
21163         
21164 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21166         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21168         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21170         * object.c (mono_get_addr_from_ftnptr): New helper function.
21172         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21174         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21176 2005-08-19  Dick Porter  <dick@ximian.com>
21178         * threads.c, threads.h, appdomain.c, appdomain.h,
21179         profiler-private.h, monitor.c, object.c, object-internals.h,
21180         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21181         store the thread ID, so it can hold a 64 bit value if needed.
21183 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21185         * reflection.c (mono_reflection_create_dynamic_method): Store the
21186         handle class into the method references as well so ldtoken works in
21187         dynamic methods.
21189         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21190         types.
21192 2005-08-19  Ankit Jain <jankit@novell.com>
21194         Fix #75847.
21195         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21196           here rather than using the method signature of a arbitrary function
21197           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21198           two arguments.
21199           Hack done with Harinath.
21201 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21203         * threadpool.c: disable printing stack traces when we get a exception
21204         in a threadpool thread. I need to do more testing to figure out which
21205         cases actually print this. Fixes bug #75828.
21207 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21209         * icall.c: there might be ignored whitespace after the last '='. This
21210         fixes length computation and bug #75840.
21212 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21214         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21215         well. Fixes #75809.
21217         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21218         #75784.
21219         
21220         * reflection.c (create_custom_attr_data): Ditto.
21222 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21224         * locales.c, culture-info.h : removed RegionLCIDMap.
21225         * culture-info-tables.h : regenerated.
21227 2005-08-16  Martin Baulig  <martin@ximian.com>
21229         * class.c (mono_type_get_name_recurse): Small fix.
21231 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21233         * locales.c : indentation fixie.
21235 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21237         * object-internals.h,
21238           locales.h,
21239           locales.c,
21240           culture-info.h,
21241           icall.c : added RegionInfo table support.
21242         * culture-info-table.h : regenerated for region support.
21244 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21246         * reflection.c (resolve_object): handle all kinds of MonoMethod
21247         including generic ones
21249 2005-08-12  Ankit Jain <jankit@novell.com>
21251         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21252           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21254 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21256         * process.c: Don't close a thread handle when it's NULL. This is a
21257         workaround for bug #75733.
21259 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21261         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21263 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21265         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21267 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21269         * threadpool.c: if a work item in the thread pool has a callback that
21270         catches a exception, don't propagate it after invoking the callback.
21271         Fixes bug #75336.
21273 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21275         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21277         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21279         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21281         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21283 2005-08-03  Ankit Jain  <jankit@novell.com>
21285         Fix #75683.
21286         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21287           PInvoke calling convention is 0.
21289 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21291         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21292         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21294 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21296         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21297         to handle threads not started by the GC (patch by Michael Meeks
21298         <michael.meeks@novell.com>).
21300 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21302         * reflection.c: Make buffer used in emitting types larger for some
21303         big generic types (patch by Michal Moskal).
21305 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21307         * mono-debug.c: Fix some (not all) alignment problems.
21309 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21311         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21312         Invoke mono_image_load_from_data_full passing the refonly
21313         parameter.
21315         * assembly.c
21316         (mono_assembly_open_from_bundle): Add the refonly argument, 
21317         in order to pass it to other methods it calls to.
21318         (do_mono_assembly_open): Add the refonly argument, in order 
21319         to pass it to other methods it calls to.
21320         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21321         the refonly parameter to it.
21323         * image.c: Add loaded_images_refonly_hash and
21324         loaded_images_refonly_guid_hash to cache the reflection
21325         only loaded images.
21326         (mono_images_init): Initialize the hash tables used for
21327         caching the reflection only images.
21328         (load_modules): Invoke mono_image_open_full passing the refonly
21329         parameter to load the modules the correct way.
21330         (build_guid_table): Add the refonly argument, to re-build the 
21331         correct hash table.
21332         (do_mono_image_open): Added the refonly argument, in order to
21333         define it for the loaded image.
21334         (mono_image_loaded_full): New function, which receives an
21335         additional parameter to look for the image in the refonly or
21336         non-refonly section.
21337         (mono_image_loaded): Updated, using mono_image_loaded_full.
21338         (mono_image_loaded_by_guid_full): The same case that happens
21339         with mono_image_loaded_full.
21340         (mono_image_loaded_by_guid): Likewise.
21341         (register_image): Use the ref_only variable inside MonoImage
21342         to decide in which hash table store the current image.
21343         (mono_image_open_from_data_full): Rename
21344         mono_image_open_from_data to mono_image_open_from_data_full,
21345         adding the refonly argument, to define the ref_only variable 
21346         inside MonoImage.
21347         (mono_image_open_from_data): Return 
21348         mono_image_open_from_data_full.
21349         (mono_image_open_full): Rename mono_image_open to
21350         mono_image_open_full, receiving the new refonly argument,
21351         to pass it to inner methods.
21352         (mono_pe_file_open): Update this function, to open
21353         a MonoImage as a non-refonly image.
21354         (mono_image_close): Use the refonly variable inside
21355         MonoImage to remove the image from the correct caches.
21357         * image.h: Add the signatures of mono_image_open_full,
21358         mono_image_open_from_data_full, mono_image_loaded_full,
21359         mono_image_loaded_by_guid_full.
21361         * metadata-internals.h: Add the ref_only field to 
21362         MonoImage.
21363         
21364 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21366         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21367         Fix the last behavior, which used to load the assemblies and
21368         extract MonoReflectionAssemblyName information, instead of
21369         extract it from the metadata tables. Needed for Reflection
21370         Only assemblies.
21371         
21372 2005-07-29  Martin Baulig  <martin@ximian.com>
21374         * mono-debug-debugger.c
21375         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21376         not initialized.
21378         * mono-debug.c
21379         (mono_debug_address_from_il_offset): Check whether we have
21380         debugging support before attempting to take the lock.
21381         (mono_debug_source_location_from_address): Likewise.
21382         (mono_debug_source_location_from_il_offset): Likewise.
21383         (mono_debug_il_offset_from_address): Likewise.
21384         (mono_debug_address_from_il_offset): Likewise.
21386 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21388         * class.c (mono_class_from_name_case): Add support for dynamic images.
21389         Fixes #75650.
21391         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21392         for #75479.
21394 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21395         
21396         * reflection.c (mono_method_get_object): Fix warning.
21398 2005-07-28  Martin Baulig  <martin@ximian.com>
21400         * mono-debug.c
21401         (mono_debug_add_wrapper): Also write the wrapper type.
21403 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21405         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21406         
21407         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21408         data indicates the class has none.
21410 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21412         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21413         loader lock with the debugger lock. Prevents deadlocks for beagle.
21415         Beagle can now run on an smp box for a weekend without any
21416         issues. Woohoo!
21418 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21420         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21421         in a module. Fixes #75629.
21423 2005-07-26  Martin Baulig  <martin@ximian.com>
21425         * mono-debug.c (mono_debug_add_wrapper): New static method.
21426         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21427         interncall or a wrapper.
21429         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21430         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21431         (MONO_DEBUGGER_VERSION): Bump to 51.
21433         * mono-debug-debugger.c
21434         (mono_debugger_add_type): Removed this empty function.
21435         (mono_debugger_add_method): Likewise.
21437 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21439         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21440         before accessing method->slot.
21442 2005-07-21  Jb Evain  <jbevain@gmail.com>
21444         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21445         Fixes #75010.
21447 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21449         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21450         #75587.
21452 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21454         * image.h image.c: Add mono_image_get_guid () API function.
21456 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21458         There were issues when multiple threads tried to load
21459         assemblies. A deadlock was created between assemblies_mutex and
21460         mono_domain_assemblies_lock. This fixes the issue by making the
21461         assembly ref counting be lock free. See bug 75586.
21462         
21463         * image.c (mono_image_close): The add ref function here was using
21464         Interlocked operations while the unref was using a mutex and a
21465         --. I don't think this was ever a bug that would be exposed in a
21466         non-pendantic way (ie, by an embedder doing a ref on one thread
21467         and an unref on another), but for the sake of correctness, this is
21468         now Interlocked.
21470         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21471         (mono_assembly_load_reference): Call mono_assembly_addref rather
21472         than touching the refcount ourselves.
21473         (mono_assembly_close): Use InterlockedDecrement to unref the
21474         assembly. Don't acquire the lock unless it is actually needed.
21476 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21478         * class.c (mono_class_layout_fields): Fix calculation of has_references
21479         for generic types.
21481 2005-07-12  Martin Baulig  <martin@ximian.com>
21483         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21485         * metadata.c
21486         (mono_type_hash): Provide better hashing for generic instances.
21487         (mono_generic_inst_hash): Improve hashing.
21488         (mono_generic_class_hash): Likewise.
21490         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21491         generic instances.
21493 2005-07-12  Martin Baulig  <martin@ximian.com>
21495         * reflection.c (mono_reflection_create_runtime_class): Remove the
21496         hack for generic type definitions and non-`Run' assemblies.
21497         (mono_reflection_bind_generic_parameters): Also use
21498         `klass->wastypebuilder' to check for TypeBuilders.
21500 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21502         * class.c (mono_class_layout_fields): Fix calculation of has_references
21503         for generic types.
21505         * class.c (inflate_generic_class): Fix a leak.
21506         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21507         for generic types.
21509 2005-07-11  Martin Baulig  <martin@ximian.com>
21511         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21512         on error.
21514 2005-07-11  Martin Baulig  <martin@ximian.com>
21516         * loader.c (find_method): Also lookup in
21517         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21519 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21521         * appdomain.c (mono_domain_unload): Don't free the error message
21522         before passing it to mono_get_exception_...
21524         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21525         
21526 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21528         * threads.c: try to better guess an available RT signal (bug #75387).
21530 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21532         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21533         and CACHE_OBJECT.
21535 2005-07-07  Martin Baulig  <martin@ximian.com>
21537         * class.c (mono_type_get_name_full): Return NULL for
21538         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21539         fixes #75408.
21541 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21543         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21544         exit the appdomain as well being aborted.
21546         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21547         change back to the root domain after calling managed code. This enables
21548         appdomains using threadpools to be unloaded.
21550 2005-07-07  Martin Baulig  <martin@ximian.com>
21552         * class-internals.h
21553         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21554         into `MonoDynamicGenericClass' since we only need it for dynamic
21555         types.
21557         * reflection.c (mono_class_bind_generic_parameters): We don't need
21558         to compute the `parent' here.
21560 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21562         * culture-info-table.h : regenerated.
21564 2005-07-06  Martin Baulig  <martin@ximian.com>
21566         * icall.c
21567         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21569         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21571 2005-07-06  Martin Baulig  <martin@ximian.com>
21573         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21574         we're doing a signature-only comparision; fixes #74945.
21576 2005-07-06  Martin Baulig  <martin@ximian.com>
21578         * class-internals.h (MonoGenericClass): Moved some things out into
21579         a new `MonoInflatedGenericClass' type.  
21580         (MonoInflatedGenericClass): New type; the `klass' of a
21581         `MonoGenericClass' is now computed lazyly in
21582         mono_get_inflated_generic_class().      
21584         * class.c (mono_get_inflated_generic_class): New public function.
21585         (mono_class_inflate_generic_method): Removed the unused
21586         `MonoClass *' argument.
21587         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21588         all the methods.
21589         (mono_class_create_generic): Make this static and merge it with
21590         mono_class_create_generic_2(); we're now called automatically from
21591         mono_get_inflated_generic_class().
21593         * loader.c (mono_method_signature): Call
21594         mono_get_inflated_method() here.
21596 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21598         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21599         type of fields with RVA.
21601         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21602         for this pseudo class.
21603         (my_mono_class_from_generic_parameter): Likewise.
21604         (mono_class_init): Allow interfaces to have cctors.
21606 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21608         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21609         lazily for AOT methods.
21611 2005-07-05  Martin Baulig  <martin@ximian.com>
21613         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21614         returns FALSE for a successful match, not TRUE.
21616 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21618         * loader.c (mono_method_get_index): Optimize this a bit.
21620 2005-07-04  Martin Baulig  <martin@ximian.com>
21622         * class.c
21623         (class_compute_field_layout): Move the check for generic type
21624         definitions into mono_class_layout_fields().  Fixes #74684.
21625         (mono_class_from_generic_parameter): Correctly compute
21626         `klass->parent'; fixes #75457.
21628         * reflection.c (register_assembly, register_module): Make sure
21629         `domain->rejobject_hash' is already created.
21631 2005-07-02  Martin Baulig  <martin@ximian.com>
21633         * class-internals.h
21634         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21635         `MonoDynamicGenericClass'.      
21637 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21639         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21640         returned by a field getter is null, since null is a valid value.
21642 2005-07-01  Martin Baulig  <martin@ximian.com>
21644         * reflection.c (mono_reflection_generic_class_initialize): Update
21645         the `dgclass->fields [i].parent' to the correct class.
21646         (mono_image_get_fieldref_token): Use the declaring type, not the
21647         reflected type.
21649 2005-07-01  Martin Baulig  <martin@ximian.com>
21651         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21653 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21655         * threads.c (thread_cleanup): assert that thread != NULL
21656         (wait_for_tids_or_state_change): We were using the wrong variable
21657         when accessing wait->threads. `i' was always out of the bounds of
21658         the array.
21660 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21662         * loader.c: map user32 and kernel32 to libMonoSupportW
21664 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21666         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21668 2005-06-28  Martin Baulig  <martin@ximian.com>
21670         * loader.c (method_from_methodspec): Fix #75334.
21672 2005-06-28  Martin Baulig  <martin@ximian.com>
21674         Fix #74953 - Arrays now implement the generic IList<T> interface
21675         on the 2.0 platform.
21677         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21679         * reflection.c (mono_class_bind_generic_parameters): New public
21680         function; similar to mono_reflection_bind_generic_parameters(),
21681         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21683         * domain.c (mono_init_internal): Try to initialize.
21684         `mono_defaults.generic_array_class' here; this'll only succeed if
21685         we're using the 2.0 corlib.
21687         * icall.c
21688         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21689         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21690         (mono_lookup_internal_call): Added support for nested classes.
21692         * loader.c
21693         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21694         we're an interncall and have generic arguments.
21696         * class.c
21697         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21698         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21699         instance of System.Array.InternalArray<T> for arrays, so they
21700         implement the generic IList<T> interface.
21702 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21704         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21705         (chastamar@yahoo.com). Fixes #75374.    
21707 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21709         * culture-info-table.h: regenerated.
21711 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21713         * icall.c: handle spaces correctly for base64 strings.
21715 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21717         * *.c: Kill some warnings.
21719 2005-06-23  Duncan Mak  <duncan@novell.com>
21721         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21722         that this builds on Solaris 10 (x86).
21724 2005-06-23  Martin Baulig  <martin@ximian.com>
21726         * class.c
21727         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21728         generic type definitions.
21730 2005-06-23  Martin Baulig  <martin@ximian.com>
21732         Fix #75331.
21734         * metadata.c (mono_class_get_overrides): Renamed to
21735         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21736         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21737         pass it to mono_get_method_full().
21739 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21741         * reflection.c (mono_reflection_create_runtime_class): take the
21742         mono_domain_lock in this method. Prevents deadlocks
21744 2005-06-22  Martin Baulig  <martin@ximian.com>
21746         * loader.c (method_from_methodspec): Fix #75330.
21748 2005-06-22  Martin Baulig  <martin@ximian.com>
21750         * reflection.c (type_get_qualified_name): Use
21751         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21752         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21753         argument; use it if we don't have an assembly name.
21755 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21757         * object.c: In mono_message_init, set "copy out" flag for in
21758         parameters with the [Out] flag.
21760 2005-06-21  Martin Baulig  <martin@ximian.com>
21762         * class.c
21763         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21764         and MONO_TYPE_PTR.
21766 2005-06-21  Martin Baulig  <martin@ximian.com>
21768         * class.c (mono_class_init): Don't initialize `class->fields' for
21769         generic instances since they're initialized again in
21770         compute_field_layout(). 
21771         (compute_field_layout): Set the field's `generic_info' here; fix
21772         #75320. 
21774 2005-06-21  Martin Baulig  <martin@ximian.com>
21776         * class-internals.h
21777         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21779         * metadata.c (mono_metadata_generic_method_equal): Also
21780         distinguish the `generic_class'; fixes #75334.
21782 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21784         * domain.c:
21785         * appdomain.c:
21786         * domain-internals.h:
21787         * reflection.c: 'domain_assemblies' field is now protected by its own
21788         lock. Don't call into managed code to run the AssemblyLoad event if we
21789         now there are no registered delegates for it.
21791 2005-06-20  Martin Baulig  <martin@ximian.com>
21793         * class.c (mono_class_is_assignable_from): Use a custom version of
21794         mono_class_has_parent() to make things work for generic instances;
21795         fix #75300.
21797 2005-06-20  Martin Baulig  <martin@ximian.com>
21799         * loader.c (method_from_methodspec): Apply a patch from
21800         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21802 2005-06-20  Martin Baulig  <martin@ximian.com>
21804         * class.c (mono_class_init): Reverted Zoltan's last change; it
21805         breaks generics.
21807 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21809         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21811 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21813         * socket-io.c: fix the index in the socket array for writable/error
21814         sockets. Fixes bug #75306.
21816 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21818         * class.c (mono_class_init): Allow interfaces to have static ctors.
21820 2005-06-17  Martin Baulig  <martin@ximian.com>
21822         * loader.c (method_from_methodspec): Use `context->container' when
21823         parsing the `gmethod->inst'.
21825 2005-06-17  Martin Baulig  <martin@ximian.com>
21827         * class.c (mono_type_get_name_recurse): Don't add the assembly
21828         name for type arguments.
21830 2005-06-15  Martin Baulig  <martin@ximian.com>
21832         * reflection.c (mono_image_get_inflated_method_token): Encode
21833         correct klass; fixes #75260.
21835 2005-06-13 Michal Moskal <malekith@nemerle.org>
21837         * icall.c: Make GetCorrespondingMethod/Constructor take
21838         MonoReflectionMethod method not MonoMethod. Removed
21839         MonoType.GetCorrespondingField, and make
21840         MonoGenericType.GetCorrespondingField take name not
21841         MonoClassField.
21843 2005-06-13  Michal Moskal <malekith@nemerle.org>
21845         * reflection.c (field_encode_signature, encode_locals):
21846          Make sizes of buffers for types larger (for big generic types).
21847          (create_generic_typespec,
21848          mono_reflection_sighelper_get_signature_local,
21849          mono_reflection_sighelper_get_signature_field):
21850          Add asserts for too small buffers.
21852 2005-06-15  Martin Baulig  <martin@ximian.com>
21854         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21855         if our parent is not a dynamic type.
21857 2005-06-15  Martin Baulig  <martin@ximian.com>
21859         * class-internals.h (MonoTypeNameFormat): New enum.
21861         * class.c
21862         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21863         (mono_type_get_full_name): Removed.
21864         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21865         argument instead of the boolean's.
21867         * icall.c (ves_icall_System_MonoType_getFullName):
21868         Added `gboolean assembly_qualified'.    
21870         * reflection.h
21871         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21873         * reflection.c (mono_reflection_parse_type): Parse the new type
21874         name format.
21876 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21878         * icall.c: no need to convert from utf16 to utf8 and then back again
21879         after the call to GetLogicalDrives.
21881 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21883         * icall.c: frombase64. Fix problems exposed by new tests.
21885 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21887         * icall.c: added internal calls for converting char [] and strings in
21888         base64 into byte [].
21890 2005-06-10  Martin Baulig  <martin@ximian.com>
21892         * class.c (mono_class_create_generic_2): Read the nested classes
21893         from the metadata rather than from `gklass->nested_classes' since
21894         `gklass' might not be initialized yet.
21896 2005-06-09  Duncan Mak  <duncan@novell.com>
21898         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21899         all public headers. Fixes #74919.
21901 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21903         * domain.c: The key for proxy_vtable_hash is now a pointer
21904         array. Added new GHashFunc and GCompareFunc functions for this.
21906         * class.h: The list of interfaces in MonoRemoteClass is known in
21907         advance and can't grow (we create a new MonoRemoteClass if needed),
21908         so now the interface array can be allocated together with
21909         MonoRemoteClass.
21910         
21911         * object.c: Added a new method create_remote_class_key.
21912         Fixed mono_remote_class so it does not depend on
21913         mono_upgrade_remote_class.
21914         Removed extend_interface_array.
21915         Added new method clone_remote_class(), which makes a copy of a remote
21916         class and adds a new interface or class to it.
21917         mono_upgrade_remote_class() now creates a new remote class (or gets
21918         it from the cache) if an vtable upgrade is needed. In this way
21919         we make sure that other objects sharing the same remote class
21920         don't get the new vtable with unwanted interfaces.
21921         
21922         * object-internals.h:
21923         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21924         
21925         * marshal.c: Track changes in mono_upgrade_remote_class().
21927 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21928         * icall.c: Add runtime methods for obtaining members of inflated
21929         class, which were created from supplied non-inflated members. It
21930         is used in internal Get{Method,Constructor,Field} methods in
21931         System.Type
21933 2005-06-09  Martin Baulig  <martin@ximian.com>
21935         * reflection.c
21936         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21938 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21939         * reflection.c (mono_image_basic_init): Define
21940         Version in MonoDynamicAssembly. 
21941         
21942 2005-06-08  Martin Baulig  <martin@ximian.com>
21944         Fix #75136.
21946         * loader.c
21947         (mono_method_signature_full): New public method; takes a
21948         `MonoGenericContext *'.
21949         (find_method): Use mono_method_signature_full() and pass the
21950         klass'es context to it.
21952         * class.c (mono_class_is_inflated_method): Use
21953         mono_method_signature_full() and pass the context to it.
21955 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21957         * object.c: add proper locking in mono_remote_class_vtable(),
21958         fixes possible memory corruption.
21960 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21962         * marshal.c (mono_remoting_marshal_init): set
21963         initialized after initialization.
21965 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21967         * locales.c : hush.
21969 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21971         * object.c (extend_interface_array): fix really silly
21972         memory corrupting / comparison bug.
21974 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21976         * reflection.c: Functions added to support the creation
21977         of CustomAttributeData, which includes Attribute data
21978         used by ReflectionOnly methods.
21980         * reflection.h:  mono_reflection_get_custom_attrs_data and
21981          mono_custom_attrs_data_construct added (functions exposed).
21983          * icall.c: Added mono_reflection_get_custom_attrs_data
21984          as icall.
21985         
21986 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21988         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21989         lupus's request.
21991 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21993         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21995         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21996         dynamic DllImportAttribute.
21998         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21999         dynamic DllImportAttribute.
22001         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22002         Fixes #75162.
22004 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22006         * threads.c: avoid segfault when an unstarted thread is aborted.
22008 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22010         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22011         Returns the name and version of the runtime for reporting.
22013 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22015         * appdomain.c: bump corlib version.
22016         * object-internals.h: new field in MonoReflectionAssembly.
22018 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22020         * object-internals.h: Carlos forgot to add this field.
22022 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22024         * icall.c: Added create_version to create instances
22025         of Version of MonoReflectionAssemblyName. This change helps
22026         the AssemblyName tests to keep running fine.
22027         
22028 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22029   
22030         * object.c (mono_method_return_message_restore): A somehow less
22031         intrusive fix for #75138.
22033 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22035         * object.c (mono_method_return_message_restore): Fix computation
22036         of expected number of out args.
22038 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22040         * reflection.c (mono_image_get_method_info): Fix the case when the
22041         charset is empty.
22043 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22045         * object.c: Added missing null check in
22046           mono_method_return_message_restore.
22048 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22050         * reflection.c (mono_image_get_method_info): Handle the case when
22051         dllentry is empty.
22053 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22055         * object.c: When creating the vtable for a proxy, take into account
22056         all inherited interfaces, not only the ones registered in
22057         iclass->interfaces. This fixs bug #74996.
22058         Also, in mono_method_return_message_restore, verify that the array
22059         of out args has the expected lengh.
22061 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22063         * socket-io.c: update the timeout in Poll when the call is interrupte.
22065 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22067         * socket-io.c: support abort/suspend in Select_internal after last
22068         change.
22070 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22072         * threadpool.c: remove warning.
22074 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22076         * icall.c:
22077         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22078         removing the 1024 limit from select(). Runtime part of the fix for
22079         bug #71203.
22081 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22083         * socket-io.c: when resolving the addresses for the same
22084         host returned by gethostname(), get the local IPs from the interface
22085         list. Loopback addresses are discarded if the are interfaces up with
22086         non-loopback ones. Fixes bug #63265.
22088 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22090         * appdomain.c, verify.c, object-internals.h, reflection.c:
22091         bumped corlib number to 36, and added new extra_flags field
22092         to ReflectionMethodBuilder and friends.  Fixes #75060.
22094 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22096         * gc.c: register a new weak link only if the object is non-null
22097         (fixes bug#75047).
22099 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22101         * culture-info.h : short time pattern too.
22103 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22105         * culture-info.h : expand long time pattern string length.
22107 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22109         * culture-info-table.h : update (more French date format; #72788).
22111 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22113         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22114         the method is static. Fixes #75029.
22116 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22118         * reflection.c: Update the table_idx field of method builders after
22119         saving the module, since it can change. This is a workaround for
22120         bug #74914. 
22122 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22124         * culture-info-table.h : update (additional French date format).
22126 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22128         * icall.c (ves_icall_type_Equals): Revert last change.
22129         
22130         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22132         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22134 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22136         * class-internals.h: Added executioncontext_class field to 
22137         MonoDefaults structure.
22138         * domain.c: Cache System.Threading.ExecutionContext class in 
22139         mono_defaults.
22140         * object.c: Capture the ExecutionContext for asynchroneous calls in
22141          mono_async_result_new.
22142         * object-internals.h: Added execution_context and original_context 
22143         fields to MonoAsyncResult. Added execution_context to MonoThread.
22144         * security-manager.c|.h: Added mono_get_context_capture_method to 
22145         return the capture method (if required by the security manager or by
22146         the framework version used).
22147         * threadpool.c: Apply capture (if present) ExecutionContext in 
22148         mono_async_invoke and revert to original context after it completes.
22150 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22152         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22154 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22156         * culture-info-table.h : zh-CHT related workaround.
22158 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22160         * marshal.c (emit_marshal_custom): Add some error checking and call the
22161         methods in the ICustomMarshaler interface. Fixes #74875.
22162         
22163         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22164         native->managed wrappers.
22166 2005-05-12  Martin Baulig  <martin@ximian.com>
22168         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22169         here and use the loader lock.
22171         * mono-debug.c: Properly lock when the debugger is not attached.
22172         (mono_debug_init): Release the initial lock if we're not running
22173         in the debugger.
22175 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22177         * marshal.c (emit_marshal_custom): Pass through NULL values without
22178         calling the custom marshalling routines.
22180         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22181         conversion in structures. Fixes #74882.
22183 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22185         * culture-info-table.h : zh-* cultures were missing.
22187 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22189         * threads.c: Added a new event background_change_event which is signaled
22190         when a thread changes its background mode.
22191         Moved here several checks previously done in managed code. The checks
22192         require the thread lock, and using the thread lock in managed code
22193         can result in deadlocks.
22194         Merged Start_internal and Thread_internal into a single method. Now 
22195         Thread_internal does all work of creating and starting a thread.
22196         Added icalls for setting and getting the state of the object. Moved from
22197         managed code to avoid locking there.
22198         Added wait_for_tids_or_state_change() which is called instad of
22199         wait_for_tids when waiting for non-backround threads to end. This method
22200         will return if one of the threads ends or the background_change_event
22201         is signaled.
22202         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22203         the background mode. This method signals the background_change_event
22204         event.
22205         * icall.c:
22206         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22207         removed Start_internal.
22208         
22209 2005-05-11  Martin Baulig  <martin@ximian.com>
22211         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22212         to order of some fields to get proper alignment on 64-bit machines.
22214 2005-05-11  Martin Baulig  <martin@ximian.com>
22216         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22217         changes as they're broken and completely fuck up the debugger.
22219         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22221 2005-05-10  Martin Baulig  <martin@ximian.com>
22223         * reflection.c (mono_reflection_generic_class_initialize): Don't
22224         call mono_class_setup_parent() here.
22226 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22228         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22229         send/receive timeout use an integer in milliseconds. We were using a
22230         struct timeval.
22232 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22234         * locales.c:
22235         (internal_get_cultures): reserve the first slot of the array for the
22236         InvariantCulture, which will be filled in managed code.
22238 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22240         * reflection.c (mono_image_fill_module_table): Initialize the
22241         GENERATION field as well.
22243 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22245         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22246         Monitor.Enter on the object.
22248 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22250         * threads.c: Enable the wait for running threads when exiting.
22251         * icall.c: Suspend all threads before exiting.
22253 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22255         * assembly.c (mono_assembly_load_reference): Fix warning.
22257 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22259         * threadpool.c: changed the default number of threads per cpu. From now
22260         on, the default will be 20 + (5 * number of cpus) instead of 50.
22262 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22264         * loader.c (mono_method_get_signature_full): Add locking here.
22266 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22268         * appdomain.c: Moved methods for parsing and freeing assembly
22269         names to assembly.c.
22270         * assembly.c, domain-internals.h: Created public methods for parsing
22271         assembly names. Fixed mono_assembly_load_with_partial_name:
22272         it now finds the best match, taking into account the version,
22273         token and culture specified in the partial name. Also return
22274         the latest version if no version information is specified.
22276 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22278         * threadpool.c: replace check for SocketAsyncCall class.
22280 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22282         * threadpool-internals.h:
22283         * Makefile.am: added threadpool-internals.h
22285         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22286         that happen in threadpool threads (tested on MS).
22287         (mono_thread_pool_remove_socket): new function that dispatch any pending
22288         AIO call on a socket that is closing. By now only epoll really needs it,
22289         as select/poll wake up when the socket closes.
22292         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22294 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22296         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22298 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22300         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22302 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22304         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22305         has an abort request, convert it into a suspend request.
22307 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22309         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22310         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22311         is not supported yet.
22313 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22315         * image.c: register assemblies loaded from data (bundles) in the loaded
22316         assemblies hash. Fixes bug #74772.
22318 2005-04-29  Martin Baulig  <martin@ximian.com>
22320         * class.c (mono_type_get_name_recurse): Update to the new naming
22321         schema from the latest .NET 2.x beta2.
22322         (mono_class_setup_vtable_general): If we're a generic instance,
22323         copy the vtable from our generic type definition and inflate all
22324         the methods in it.
22326         * loader.c (find_method): Update to the new naming schema from the
22327         latest .NET 2.x beta2.
22329 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22331         * class.c (mono_class_init): Add a mono_loader_unlock to the
22332         #74734 fix.
22334 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22336         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22337         suspend_all_other_threads () call for the time being, since it can hang.
22339         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22340         the background threads to exit, since it can also hang.
22342         * class.c (mono_class_init): Applied patch from Ankit Jain 
22343         (radical@gmail.com). Avoid pending init errors when a field refers
22344         to a nested class using a typeref. Fixes #74734.
22346         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22347         this for dynamic modules.
22349 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22351         * threads.c: don't wait for threads that are in the process of aborting
22352         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22353         and waiting for background threads to finish. This makes xsp and
22354         mod-mono-server exit without random length delays and/or hangs.
22356 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22358         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22360 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22362         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22363         dynamic types to prevent infinite loops. Fixes #74727.
22365         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22366         ..._is_assignable_to.
22368 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22370         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22372 2005-04-25  Martin Baulig  <martin@ximian.com>
22374         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22376         * domain.c
22377         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22379         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22381         * reflection.c (build_compressed_metadata): Set metadata header
22382         version to 2.0.
22384 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22386         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22387         number into an integral and a decimal part. Fixes #70473.
22389         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22391 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22393         * culture-info-table.h : reflected the latest locale-builder output.
22395 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22397         * threadpool.c: check for SuspendRequested too when deciding if
22398         mono_thread_interruption_checkpoint should be called.
22400 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22402         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22403         * threads.c: remove interruption_mutex and use Interlocked instead. When
22404         suspending all the threads, wait for all the suspended events at once.
22405         If we're shutting down and get an APC that is going to be queued,
22406         call mono_thread_execute_interruption immediately, as the thread might
22407         be sleeping on a pthread condition or mutex.
22409         * icall.c: call mono_runtime_set_shutting_down before suspending the
22410         threads.
22412         Fixes bug #74693. And now xsp is happier when exiting.
22414 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22416         * loader.c (mono_stack_walk): Fix #74690.
22418 2005-04-22  Martin Baulig  <martin@ximian.com>
22420         * mono-debug.h (MonoDebugMethodJitInfo): Added
22421         `MonoDebugMethodJitInfo *jit'.
22423         * mono-debug.c (mono_debug_read_method): Cache the
22424         MonoDebugMethodJitInfo in `address->jit'.
22425         (mono_debug_free_method_jit_info): New public method.
22427 2005-04-22  Martin Baulig  <martin@ximian.com>
22429         * class.c (mono_class_is_assignable_from): Disallow
22430         type parameter -> interface.
22432 2005-04-21  Dick Porter  <dick@ximian.com>
22434         * threads.c (mono_thread_create): Turn an assertion into an error.
22436 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22438         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22439         
22440         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22441         Fix some gcc 4.0 warnings.
22443 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22445         * file-io.c: fix alt dir separator char on unix systems
22446         and cleanup (fixes bug #71214).
22448 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22450         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22451         a call to a remote domain, since the method may be an
22452         interface method in the client domain. This fixes bug #74192.
22454 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22456         * threadpool.c: recv/send are now performed before going back to managed
22457         code to save one transition.
22459 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22461         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22463         * metadata/threadpool.c: removed hack to workaround the bug above.
22465         Fixes bug #74618.
22467 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22469         * reflection.c reflection.h: Fix handling of parameter defaults in
22470         dynamic methods. Also fixes handling of parameter attributes.
22471         Fixes #74609.
22473         * mono-debug.c (mono_debug_close_image): Fix warning.
22475 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22477         * socket-io.h: replaced old unused field with new 'blocking'.
22478         * threadpool.c: restore socket blocking state on windows(tm).
22480 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22482         * icall.c: don't return the codebase in the AssemblyName[] returned by
22483         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22484         * object-internals.h: Removed FIXME (fields were presents) and fixed
22485         versioncompat declaration.
22487 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22489         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22490         not closed, so don't cleanup when it happens.
22492 2005-04-13  Chris Toshok  <toshok@ximian.com>
22494         * mono-debug-debugger.h: change prototype for
22495         mono_debugger_lookup_type.
22497         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22498         this function, although it should probably be named
22499         mono_debugger_init_type.
22501 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22503         * threadpool.c: fix non-AIO case.
22505 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22507         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22508         the built-in profiler to measure just JIT compilation times.
22510 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22512         * threadpool.c: the epollfd might be closed by another thread at
22513         any time, so ignore EBADF at treat it as a "we're closing" sign.
22515 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22517         * threadpool.c: release the semaphores with a count equals to the number
22518         of working threads in both IO and regular pools. Fixed typo that messed
22519         up the count of IO pool threads. Don't initialize the pipe handles if
22520         we're using epoll.
22522 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22524         * threadpool.c: some systems don't like a NULL when deleting the socket
22525         from epoll.
22527 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22529         * threadpool.c: fix semaphore allocation.
22531 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22533         * threadpool.c: added epoll() based implementation for asynchronous IO
22534         that is used instead of the default poll() when available.
22535         It can be disabled by setting MONO_DISABLE_AIO.
22537 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22539         * threadpool.c: windows needs 'closesocket' and instead of returning
22540         0 when the stream is closed while in select, it returns -1. Fixes bug
22541         #74573.
22543 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22545         * class.c (class_compute_field_layout): Fix the regression caused by
22546         the previous try.
22548 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22550         * threadpool.c: separate pool for socket async. IO.
22551         * threadpool.h: mono_max_worker_threads is not a global any more.
22553 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22555         * class.c (class_compute_field_layout): Fix #74549.
22557 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22559         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22560         use 2 connected sockets instead.
22562 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22564         * mono-config.c: Add new entry point for mkbundle
22565         mono_config_parse_memory. 
22567 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22569         * threadpool.c: removed another unused function.
22571 2005-04-08  Ankit Jain  <radical@corewars.org>
22573         * reflection.c (get_default_param_value_blobs): Add 'types'
22574         parameter to get the types encoded in the constant table.
22575         (mono_param_get_objects): Use the type from the constant table,
22576         not the type of the parameter, when creating default values.
22577         Handle null default values correctly.
22579 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22581         * file-io.c:
22582         * file-io.h:
22583         * threadpool.c:
22584         * threadpool.h:
22585         * icall.c:
22586         * socket-io.c: removed dead code for async IO.
22588 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22590         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22592         * threadpool.c: intercept socket async. calls and pass them to a thread
22593         that is polling and dispatching the job items to the threadpool as
22594         socket become ready. Fixes bugs #71217, #71933.
22596         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22597         between char and short/ushort arrays.
22599         * socket-io.c: remove dead code.
22601 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22603         * locales.c,
22604           icall.c : removed InternalToUpper_Comp() and
22605           InternalToLower_Comp().
22607 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22609         * char-conversions.h : The tables were incorrectly generated. Should
22610           be generated against invariant culture.
22612 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22614         * object.c (mono_runtime_invoke_array): Fix return value when 
22615         passing pre-created valuetype objects to ctors.
22617         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22618         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22619         Fixes #74338.
22621 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22623         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22624         only used with --security and hides the wrong corlib version error.
22626 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22628         * class.c: Changed mono_class_name_from_token so that types
22629         outside of a namespace don't have an initial period.  Improved
22630         the g_warning message used in _mono_class_get when loading
22631         fails.
22632         * assembly.c: In mono_assembly_load_reference, when an assembly
22633         can't be found, "No such file or directory" is misleading and
22634         unhelpful because a few paths were checked for the presence of
22635         the assembly.  When that happens (ENOENT), display a nicer
22636         message indicating the directories that were searched.  In all
22637         cases, the warning is made easier to read for non-hackers.
22639 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22641         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22642         project/solution.
22643         * appdomain.h|domain.c: Removed inline from functions.
22644         * appdomain.c: Reduced warnings when compiling on windows.
22645         * icall.c: Fixed output_debug declaration to gunichar2*.
22646         * mono-config.c: Reduced warnings when compiling on windows.
22647         * rand.c: Added missing "windows.h". Added missing return value.
22648         * rawbuffer.c: Added missing winsock2.h for windows.
22649         * sysmath.h: Added mono-compiler.h header to allow/ease 
22650         compilation with non-GCC compilers.
22651         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22652         Removed cast warnings.
22654         Adapted from the work of J Lothian (for VC6).
22656 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22658         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22659         from default_path.
22661 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22663         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22664         the 2.0 profile.
22666 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22668         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22669         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22670         stuff, and it would probably use $(prefix)/share rather than
22671         $(prefix)/lib.
22673 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22675         * console-io.c: added 2 includes that might be missing.
22677 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22679         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22680         profile.
22682         * reflection.c (create_custom_attr): Allocate the params array using
22683         alloca so it gets GC tracking.
22685 2005-03-23  Chris Toshok  <toshok@ximian.com>
22687         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22688         out some spew.
22690 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22692         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22693         changes to pick up any changes in prefix, etc.
22695 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22697         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22698         
22699         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22700         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22702 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22704         * class-internals.h object-internals.h class.c reflection.c: Extend the
22705         mono_lookup_dynamic_token () function to return the class of the
22706         token as well. 
22708         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22709         well. Fixes #73848.
22711 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22713         * security-manager.c: Skip inheritance checks for intra-corlib
22714         class inheritance and method overrides. This skips a lot of checks
22715         and (anyway) permissions cannot work until corlib is loaded.
22717 2005-03-23  Martin Baulig  <martin@ximian.com>
22719         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22720         MONO_TYPE_GENERICINST.  
22722 2005-03-23  Martin Baulig  <martin@ximian.com>
22724         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22726 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22728         * class.c: added locking comments to some functions.
22729         Cache the interface offsets arrays (saves about 20 KB
22730         of runtime memory in a typical app).
22731         Reduce the time overhead in mono_class_setup_supertypes ().
22733 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22735         * icall.c: speedup and fix leaks in GetMethodsByName and
22736         GetPropertiesByName.
22738 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22740         * reflection.c: some locking fixes.
22742 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22744         * metadata.c: added missing break in case statement.
22746 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22748         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22749         typedbyref return values. Fixes #73941.
22751 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22753         * security-manager.c|h: Added demandunmanaged method and 
22754         suppressunmanagedcodesecurity class to MonoSecurityManager.
22755         Renamed aptc class to allowpartiallytrustedcallers.
22757 2005-03-17  Martin Baulig  <martin@ximian.com>
22759         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22761 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22763         * file-io.c: disabled file async. IO using aio_*. It uses the
22764         threadpool now. Workaround for bug #73718.
22766 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22768         * assembly.h, mono-config.c: added code to deal with bundled configs
22769         for bundled assemblies.
22771 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22773         * *.c, private.h: cleanup, removing old private.h header file.
22775 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22777         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22778         and throw_on_unmappable_char attributes.
22780 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22782         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22783         _ProcessName_internal.
22785 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22787         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22788         #73631.
22790         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22791         are no longer used.
22793 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22795         * object.c (compute_class_bitmap): Add support for generics. Fixes
22796         #73527.
22798 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22800         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22802 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22804         * filewatcher.c: commented out the code for windows watcher, as we don't
22805         use it (we use the managed implementation instead).
22807 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22809         * object-internals.h (MonoThread): Remove 'unused1' field.
22811         * appdomain.c: Bump corlib version.
22813         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22815         * reflection.c (mono_reflection_create_runtime_class): Remove the
22816         AssemblyBuilder.Save optimization since it causes too many problems.
22818 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22820         * exception.c|h: Added mono_get_exception_reflection_type_load to
22821         create a ReflectionTypeLoadException object.
22822         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22823         to return NULL is a InheritanceDemand fails during reflection. Updated
22824         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22825         ReflectionTypeLoadException if an InheritanceDemand fails during 
22826         reflection. Added icall mapping for GetLinkDemandSecurity.
22827         * security-manager.c|h: Added ves_icall_System_Security_
22828         SecurityManager_GetLinkDemandSecurity internal call to return the
22829         class and methods permissions set for a LinkDemand. Removed unused
22830         fields in MonoSecurityManager.
22832 2005-03-10  Martin Baulig  <martin@ximian.com>
22834         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22835         it's a generic instance.
22837 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22839         * reflection.c (mono_get_object_from_blob): Applied patch from
22840         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22842         * class.c (mono_class_is_assignable_from): Another try at fixing 
22843         #73469 without breaking anything.
22845 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22847         * class.c: (mono_class_is_assignable_from): Revert the last changes
22848         since they don't work with generics.
22849         
22850         * class.c (mono_class_is_assignable_from): Fix build bustage.
22852         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22853         the managed IsAssignableFrom method. Fixes #73469.
22855         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22856         function.
22858 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22860         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22861         memory when the remoting callback does not sets the out arguments.
22862         Fixes #73007.
22864         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22865         by mistake.
22867         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22869         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22871         * appdomain.c: Bump corlib version.
22873 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22875         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22876         function.
22878         * threads.c (mono_thread_attach): Detect threads which are not started
22879         by the GC pthread wrappers.
22881 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22883         * icall.c: Added new icall for RNG.
22884         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22885         single handle on Linux to access /dev/urandom and fix #73183.
22887 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22889         * object.c: setting the new vtable in a transparent proxy object must
22890         not change the GC descriptor.
22892 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22894         * object.c: fixed compilation without GCJ support.
22895         * reflection.c: for runtime-created types ensure klass->has_references
22896         is correct (bug #73215).
22898 2005-03-02  Martin Baulig  <martin@ximian.com>
22900         * class.c (mono_class_is_assignable_from): Make this work if
22901         `oklass' is a generic instance; fixes #72831.
22903 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22905         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22906         with hasthis set.
22907         
22908         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22910         * marshal.c: Reorganize native->managed marshalling code to also use
22911         the emit_marshal_... functions.
22913 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22915         * object.c: typed allocs have issues with bitmap sizes > 30,
22916         so check for max_set >= 30.
22918 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22920         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22921         managed code. Fixes #73012.
22923         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22925         * metadata.c reflection.c: Load/Emit elem_mult as well.
22926         
22927         * metadata.h (MonoMarshalSpec): Add comment.
22929         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22931         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22932         num_elem to -1 if not given.
22934         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22936         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22937         given values.
22939 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22941         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22943 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22945         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22947         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22949 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22951         * object.c: generalized the reference bitmap creation
22952         and added hooks for the new GC.
22953         * class-internals.c: removed the gc_bitmap field from MonoClass.
22955 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22957         * domain.c: help the compiler to produce better code
22958         in mono_jit_info_table_find ().
22960 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22962         * object.c: make all allocations look typed.
22964 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22966         * socket-io.c: load Mono.Posix if it's not loaded already
22967         (fixes bug#73033).
22969 2005-02-24  Martin Baulig  <martin@ximian.com>
22971         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22972         * reflection.c (dup_type): Likewise.
22974 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22976         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22977         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22979 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22981         * domain.c, threads.c, object-internals.h: make the critical thread
22982         local vars use the fast access mode (even when we're compiled in
22983         a lib). Provide accessors to be used by the jit during codegen.
22985 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22987         * appdomain.c: Changed hook functios behavior to include
22988         support for the reflection only assemblies. Some icalls were changed
22989         to support the mentioned assemblies too. Signatures of static methods
22990         try_assembly_resolve and real_load now have an additional parameter:
22991         refonly.
22993         * assembly.c: General changes to mono_assembly_ methods to support
22994         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22995         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22996         suffix, to support an additional gbool parameter to specify whether
22997         the assembli is reflection only or not. Created some new hook functions 
22998         to add support for reflection only assemblies. Signatures of static 
22999         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23000         have now an additional parameter: refonly.
23002         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23003         indicating whether the assembly is reflection only or not.
23005         * exception.c: Add mono_get_exception_invalid_operation.
23007         * icall.c: Throw an InvalidOperationException when trying to invoke
23008         a property/method/event, or trying to set/get the value of a field.
23009         Also add an icall to retrieve the ref_only flag to the
23010         MonoReflectionAssembly.
23012 2005-02-23  Chris Toshok  <toshok@ximian.com>
23014         Part of fix for #72827.
23015         * mono-debug.c (mono_debug_add_method): add lexical block data to
23016         the info we write.  Kind of a hack at the moment - we copy the
23017         lexical block info from the MonoDebugMethodInfo to the
23018         MonoDebugMethodJitInfo here, before writing it.
23019         (mono_debug_read_method): read the lexical block info.
23021         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23023         * debug-mono-symfile.h: add lexical block support.
23025         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23026         support.
23028 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23030         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23032         * object.c (mono_runtime_free_method): Call mono_free_method () and
23033         put the TODOs there.
23035         * loader.c (mono_free_method): Free up most memory allocated for 
23036         dynamic methods.
23038 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23040         * reflection.c: properly flag a Type argument to a
23041         named custom attr value (bug #72248).
23043 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23045         * reflection.c: reduce code duplication in named custom
23046         attribute encoding.
23048 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23050         * reflection.c: properly encode custom attrs of type object
23051         (bug #72649).
23053 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23055         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23057 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23059         * socket-io.c: load System.dll if it's not loaded already
23060         (bug #72850 and #70477).
23062 2005-02-21  Martin Baulig  <martin@ximian.com>
23064         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23065         generic instances.
23067 2005-02-21  Martin Baulig  <martin@ximian.com>
23069         * reflection.c (mono_image_build_metadata): We also need to
23070         "fixup" the MethodImpl table after we computed the final method
23071         indices.  Call fixup_methodimpl() to do that.
23072         (fixup_methodimpl): New private method.
23074 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23076         * assembly.c: special case mscorlib.dll (bug#72536),
23077         patch from Carlos Alberto Cortez.
23079 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23081         * threads-types.h threads.c: Fix build bustage.
23083         * threads.c: Use a union for long<->double conversions.
23085         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23086         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23088         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23089         containing the checkpoint call with NOT_TAKEN.
23090         
23091         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23092         checkpoint before pushing the arguments, so they won't have to be
23093         spilled to stack.
23095 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23097         * domain.c, assembly.c, domain-internals.h: make some data
23098         const and relocation-free.
23100 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23102         * object.c, appdomain.c, class-internals.h: introduce the
23103         MonoClassRuntimeInfo structure to hold the info needed to
23104         use a class at runtime. Made mono_class_vtable() lock-free
23105         for all the appdomains.
23107 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23109         * metadata-internals.h, image.c: introduce a per-image mempool to
23110         be used for memory that has the same lifetime as the image.
23112 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23114         * domain.c: In mono_init_internal(), instead of selecting the first
23115         runtime version supported by an executable, get a list of all
23116         supported versions and select the one for which an mscorlib exists
23117         (since even if the runtime supports a given version, it doesn't mean
23118         that the framework for that version is installed).
23119         Modified get_runtimes_from_exe to support this behavior.
23120         In supported_runtimes, added information about additional system
23121         assembly versions.
23122         
23123         * assembly.c: Added support for more than one system assembly version
23124         per runtime version. Updated the assembly list.
23125         In mono_assembly_remap_version, removed the initial version check,
23126         since we don't know to which version we need to compare until we
23127         get the version set on which the assembly is based.
23128         Moved the code for loading corlib into the new method
23129         mono_assembly_load_corlib(), so it can be used by the initialization
23130         code.
23131         
23132         * domain-internals.h: Updated data structures and added declaration
23133         for mono_assembly_load_corlib.
23135 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23137         * reflection.c (resolve_object): Fix the creation of the signature in 
23138         the SignatureHelper case.
23140         * assembly.c (mono_assembly_remap_version): Fix binary search.
23141         
23142 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23144         * class.c: Added inheritance check when a method is overloaded (from a
23145         virtual method or when implementing an interface) and when a class is
23146         inherited. Added functions to set a failure for a class and to 
23147         retreive the exception from a failure.
23148         * class-internals.h: Added fields to MonoClass to keep the exception
23149         information status for inheritance (or other exceptions) to be thrown
23150         later (i.e. not at load time).
23151         * object.c: Throw the inheritance SecurityException when a type is to 
23152         be created with either class or method inheritance violations.
23153         * reflection.c|h: Fix when getting declsec from a class. Removed 
23154         unrequired code for class. Improved sanity in parameter naming.
23155         * security-manager.c|h: Added functions to check for class and method
23156         inheritance.
23158 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23160         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23161         and has_finalize in dynamic types as well.
23163 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23165         * culture-info-table.h : fixed currency format for en-GB (and so on).
23167 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23169         * gc.c: ensure the GC handles never have 0 as a value.
23171 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23173         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23174         a pointer to a struct to unmanaged code. Fixes #72625.
23176 2005-02-16  Martin Baulig  <martin@ximian.com>
23178         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23180 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23182         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23184 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23186         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23188         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23189         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23190         etc. Fixes #71471.
23192         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23194         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23196 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23198         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23199         changes to make the current context a field in MonoThread.
23201 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23203         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23204         the last change.
23205         
23206         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23207         extracted from mono_marshal_get_native_wrapper.
23209         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23210         to create wrappers around native functions.
23212         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23213         delegates for arbitrary function pointers. Fixes #71472.
23215 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23217         * threads.c: cleaned up the code a little.
23219 2005-02-15  Martin Baulig  <martin@ximian.com>
23221         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23222         the data table.
23224         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23225         allocate larger chunks if needed.
23227 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23229         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23230         in by mistake.
23232 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23234         * domain.c: keep the domains in an array and ensure the domain ids
23235         are kept small, so they can be used as indexes to domain-specific data
23236         with a small memory overhead.
23238 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23240         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23242 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23244         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23246 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23248         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23250         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23251         values.
23253         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23254         
23255 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23257         * domain-internals.h: add the hashtable here.
23259         * class-internals.h: Remove `info' from MonoMethod
23261         * domain.c: Add a new hashtable, jit_trampoline_hash
23263 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23265         * object.c: don't set the value of static fields
23266         (fixes bug#72494).
23268 2005-02-11  Martin Baulig  <martin@ximian.com>
23270         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23271         (mono_debug_add_method): Silently ignore the method if it's too big.
23272         (mono_debug_add_type): Likewise.
23274 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23276         * threads.c, appdomain.c: remove #ifdefs from the code.
23278 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23280         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23281         common security informations. This allows us to stay in unmanaged code
23282         when doing LinkDemand and it's special cases (except for the first 
23283         time for initialization). The flags a very much used with --security.
23284         * reflection.c|h: Added code to get declarative security attributes 
23285         for LinkDemand and InheritanceDemand. This required to refactor the
23286         existing code for Demand.
23287         * security-manager.c|h: Added new method fields for the special cases
23288         of LinkDemand.
23290 2005-02-10  Martin Baulig  <martin@ximian.com>
23292         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23293         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23295 2005-02-10  Martin Baulig  <martin@ximian.com>
23297         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23298         debugging code; this is almost a complete rewrite.
23300         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23302 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23304         * domain.c, object.h: expose mono_string_equal () and 
23305         mono_string_hash ().
23306         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23307         it's implemented in managed code.
23309 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23311         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23312         lo leak objects between appdomains.
23314 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23316         * assembly.c: old compilers compilation fix from 
23317         robertj@gmx.net (Robert Jordan).
23319 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23321         * class-internals.h: Little reminder for the future.
23323         * debug-helpers.c: Fix up wrapper_type_names
23325 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23327         * image.c, metadata-internals.h: when loading an image from a file,
23328         mmap all of it and use the same codepaths as when using a
23329         in-memory image: the code is simpler and we use less memory
23330         (both writable and readonly).
23332 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23334         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23335         API to alloc runtime data structures that need to be tracked by the
23336         GC and contain pointers.
23337         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23338         make the code more readable and eventually use a different GC.
23340 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23342         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23343         for out arguments.
23344         
23345 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23347         * object.c: In release_type_locks(), don't release the cctor lock
23348         if it has already been released. This fixes a crash in the
23349         thread5 test.
23351 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23353         * gc.c, marshal.c, icall.c: register a delegate for finalization
23354         only when the native function pointer has been allocated for it.
23356 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23358         * object.c: cleaned up some code, allocate objects that are
23359         pointer free with the atomic malloc variant. Allocate memory
23360         for static data from the mempool if it's pointer-free.
23361         Allocate the bounds array at the end of the array data, when needed.
23362         * object-internals.h, object.h: move a private function in a private
23363         header.
23364         * class.c: handle missing case in tracking references in fields.
23366 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23368         * class.c, class-internals.h: keep track if a type has
23369         reference fields in either the instance or static fields.
23371 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23373         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23374         and renamed to MonoRuntimeInfo. Added fields to store the expected
23375         framework assembly version. Changed mono_get_framework_version and
23376         mono_get_runtime_version for a single mono_get_runtime_info method.
23377         
23378         * assembly.c: Added method to remap system assembly versions to the
23379         current executing runtime version. Removed old mapping code.
23380         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23381         
23382         * icall.c, reflection.c: Track api changes.
23384 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23386         * loader.c (method_from_memberref): Improve error reporting,
23387         produce the class name instead of the typeref/typedef index. 
23389 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23391         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23393 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23395         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23396         stdcall and charset name mangling.  Reorganize the code and add
23397         some tracing stuff.
23399 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23401         * monodiet.c: More iters!
23403         * marshal.c: Iter usage.
23405         * icall.c: Iter usage.
23407         * object.c: Use iters.
23409         * debug-helpers.c: More iters
23411 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23413         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23414         under win32.
23416 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23418         * mono-debug-debugger.c: use iters
23420         * class.c, class-internals.h: mono_class_setup_events is static
23421         now
23423         * All callers: use iters
23425 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23427         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23428         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23430 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23432         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23434         * marshal.h: Add prototypes for ldfld/stfld_remote.
23436         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23437         this is called during startup.
23438         
23439 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23441         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23442         MonoThreadsSync struct private in monitor.c. Changed the way
23443         MonoThreadsSync is allocated so it's faster and there is no
23444         need to keep track of it with a finalizer and it uses less memory.
23445         This also finally allows us to allocate mono objects as ptrfree when
23446         there are no reference fields.
23448 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23450         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23451         disappearing link to the GC interface and use them to simplify
23452         the gchandles code.
23454 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23456         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23457         stfld_remote which call mono_load/store_field_new. This allows methods
23458         calling ldfld/stfld wrappers to be AOTed.
23460         * console-io.c: Include sys/filio.h under solaris.
23461         
23462         * console-io.c: Include curses.h if needed correctly.
23464 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23465         
23466         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23467         method->klass as well.
23469         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23471         * class.c (mono_class_init): Switch on lazy initialization of 
23472         methods.
23474         * class.c (mono_class_get_finalizer): Handle the case when the 
23475         finalizer is inherited.
23477 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23479         * console-io.c: <curses.h> is needed by term.h on solaris.
23481 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23483         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23484         mono_class_setup_properties where possible. Remove this ftn from
23485         the header file, and make it static.
23487 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23489         * loader.c: Add missing setup_... call.
23491         * class.c: Add missing setup_... calls.
23493         * class.c (mono_class_init): Switch on lazy initialization of 
23494         the generic vtable.
23495         
23496         * class.c (mono_class_init): Fix generics broken by the recent changes.
23498         * monodiet.c (handle_type): Add missing setup_... calls.
23500         * class.c: Back out garbage in previous patch.
23501         
23502         * class.c: Add missing setup_... calls.
23504         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23505         mono_class_setup_methods () if possible.
23507         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23509         * class-internals.h (MonoCachedClassInfo): New structure.
23511         * class.c: Initialize properties and events fields of MonoClass lazily.
23513         * class.c: Add infrastructure for lazily initializing the methods and
23514         vtable fields of MonoClass. Not yet used.
23516         * class.c (mono_class_get_finalizer): New helper function.
23518         * class.c: Add infrastructure for loading some class related data from
23519         an AOT file.
23521         * object.c: Add infrastructure for initializing the vtable from data
23522         in the AOT file.
23524         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23526         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23527         appropriate initialization function before accessing parts of the
23528         MonoClass structure.
23530         * marshal.c: Fix warnings.
23531         
23532         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23534         * mono-debug-debugger.c (get_exception_message): Use 
23535         mono_class_get_method_from_name_flags ().
23537 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23539         * reflection.c, appdomain.c: Replace a few manual searches that
23540         Zoltan missed. (Paolo approved this part of my initial patch).
23542 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23544         * profiler.c: disable recording statistical events at report time.
23546 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23548         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23549         to byteswap arrays of enum values, too (bug #72080).
23551 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23553         * appdomain.c (set_domain_search_path): Allow this to be called if
23554         domain->setup is not yet set.
23556         * loader.c (mono_method_get_index): New helper function.
23558         * loader.c reflection.c: Use mono_method_get_index ().
23560         * class.c (mono_class_get_method_from_name_flags): New helper method.
23562         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23563         this.
23565         * class.c (mono_class_get_cctor): New helper method.
23567         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23568         mono_class_get_method () to look up methods.
23570 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23572         * console-io.c: Fix the build, this should work on Windows.
23574 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23576         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23577         be set to null to keep things valid
23579 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23581         * icall.c: added Console 2.0 icalls.
23582         * Makefile.am: added console-io.[ch]
23583         * console-io.[ch]: internal calls for Console 2.0 API.
23585 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23587         * class.c: make sure we consider all the interfaces
23588         when calculating max_interface_id (bug found by
23589         Jeroen Frijters running ikvm).
23591 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23593         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23594         valuetype fields to null.
23596         * object.c (set_value): Ditto. Fixes #71669.    
23598 2005-01-31  Martin Baulig  <martin@ximian.com>
23600         * metadata.c (mono_metadata_has_generic_params): New public
23601         function; checks whether something is a generic method.
23603 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23605         * appdomain.c: fix infinite recursion when adding assemblies.
23607 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23609         * object.c: Fix small typo to return all items for Environment.
23610         GetCommandLineArgs.
23612 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23614         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23615         reflection.c: more domain and assembly-unload related fixes
23616         and memory leaks plugs.
23618 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23620         * 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.
23622 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23624         * loader.c (mono_method_signature): Make this method lazy
23625         (mono_get_method_from_token): Don't computate the signature here.
23627         Doing this saves quite a bit of memory. I got 90 kb on starting up
23628         monodoc. It should also save some disk reads on startup.
23630         * *: MonoMethod->signature might be NULL now. You *MUST* use
23631         mono_method_signature.
23633 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23635         * object.c (mono_runtime_get_main_args): Return an array from the
23636         current domain here. Fixes #71938.
23638 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23640         * monitor.c: formatting changes to comply with the
23641         mono coding style and remove #ifdefs from the code.
23643 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23645         * metadata.c, private.h: remove some unneeded data
23646         and use a more compact representation for table schemas.
23648 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23650         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23651         to get a better distribution in hash tables.
23652         * *.c: use mono_aligned_addr_hash() where appropriate.
23653         * assembly.c: make var static.
23655 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23657         * domain-internals.h: Put MonoJitInfo on a diet.
23659         * domain.c: Fix a warning.
23661 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23663         * gc.c: rework the gc handles code to reuse handles
23664         when freed.
23666 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23668         * domain.c: fixed long standing bug in mono_string_equal() which
23669         was brought to light with the ldstr changes.
23671 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23673         * reflection.c: Remove warning by adding missing include for marshal.h
23675 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23677         * domain.c, object.c: change the ldstr_table to hold
23678         MonoString* as keys: makes the runtime isinterned lookup
23679         faster and simplifies memory management.
23681 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23683         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23684         possible to add imperative security checks before calling the icall.
23685         * reflection.c: Return security attributes on the original MonoMethod
23686         (and not the wrapped one). This fix permissions on icalls.
23688 2005-01-25  Dick Porter  <dick@ximian.com>
23690         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23691         the check for mktime() support actually test the mktime() return
23692         value.  "Fixes" bug 71682, though the output is still different to
23693         MS.
23695 2005-01-25  Martin Baulig  <martin@ximian.com>
23697         * class.c (mono_class_is_assignable_from): Make this work for
23698         generic instances.
23700 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23702         * marshal.c (mono_string_utf8_to_builder)
23703         (mono_string_builder_to_utf16): We might not have ownership of the
23704         string. In thise case, we need to create a new buffer.
23706         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23707         be null, in which case, use the default capacity.
23709 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23711         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23712         GC events to the profiler.
23714 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23716         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23717         if you don't want the GC to run.
23719 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23721         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23722         start providing a GC API and keeping different implementations in
23723         their own file.
23724         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23726 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23728         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23729         mmap rather than allocating a huge buffer.
23730         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23731         above.
23733 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23735         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23736         and CheckExecutionRights.
23737         * reflection.c|h: Keep the index of the declarative security to be 
23738         used, instead of the pointer, when AOT compiler is used. Also add 
23739         class initialization when requesting demands.
23740         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23741         CheckExecutionRights. Both properties are now FALSE by default, and
23742         unmodifiable, unless the --security option is used.
23744 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23746         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23747         reflection.c: properly refcount images and assemblies, many leaks fixed.
23749 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23751         * threadpool.c: increase the timeout for threads in the thread pool to
23752         10s.  Fixes bug #67159.
23754 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23756         * class-internals.h: Sun's compiler insists on explicit
23757         signed on bit fields to handle then correctly.
23759 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23761         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23762         Make the size of the array fit only the number of invalid path
23763         chars that we have.
23765         * class.c (_mono_class_get): Improve the error reporting when a
23766         class referenced is not found, to assist debugging. 
23768 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23770         * threads.c: fix off-by-one error.
23771         * domain.c: free data allocated in the domain.
23773 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23775         * reflection.c (mono_method_body_get_object): Fill out exception info
23776         as well.
23778         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23779         structure.
23780         
23781 2005-01-19  Martin Baulig  <martin@ximian.com>
23783         * loader.c (mono_get_method_constrained): Make this work again.
23785 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23787         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23788         guint16 to match the managed side.
23790         * reflection.c (mono_reflection_body_get_object): Fill out local
23791         variables array.
23793         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23794         as well.
23796         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23797         'local_var_sig_token'.
23799 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23801         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23802         System.Drawing.
23804         * reflection.c (mono_method_body_get_object): Handle abstract and
23805         runtime methods.
23807 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23809         * marshal.c, loader.c, class-internals.h, reflection.c:
23810         store the emthod data for a wrapper in an array instead of a list.
23812 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23814         * marshal.c: change the code to allocate memory more
23815         conservatively for method wrappers.
23817 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23819         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23820         fields from MonoClass to the marshal info structure where they belong.
23822 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23824         * class.c, object.c, class-internals.h, marshal.c: rearrange
23825         some fields and tweak some types to lower memory usage.
23827 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23829         * threads.c (signal_thread_state_change): Handle the case when the
23830         target thread is the current thread.
23832         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23834         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23835         emit_ptr_to_object_conv. 
23837         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23838         marshalling. Fixes #71352.
23840 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23842         * metadata.h, blob.h: move table enum to blob.h so it can be included
23843         in any header.
23844         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23845         cut the size of MonoImage/MonoDynamicImage.
23847 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23849         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23851 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23853         * reflection.c, reflection.h, icall.c: add a function to check
23854         if an attribute type is defined for a metadata object.
23856 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23858         * object-internals.h: Added some needed fields from StringBuilder class.
23859         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23861 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23863         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23864         threads before shutting down the runtime.
23866         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23868 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23870         * object-internal.h, threads.c: implement stacksize and 
23871         parameterized thread start functionality (requires
23872         matching corlib). Marked broken code for later removal.
23874 2005-01-12  Martin Baulig  <martin@ximian.com>
23876         * class-internals.h (MonoGenericClass): Moved the `initialized'
23877         flag to MonoDynamicGenericClass, removed `init_pending'.
23878         (MonoGenericInst): Added `is_reference' flag.
23880 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23882         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23883         inside the MSDOS header. Fixes #71201.
23885         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23886         gc thread.
23887         (mono_domain_finalize): Ditto.
23889 2005-01-12  Martin Baulig  <martin@ximian.com>
23891         * class.c (mono_get_shared_generic_class): Use the cache for
23892         non-dynamic generic classes.
23894         * class-internals.h (mono_class_create_generic_2): Removed
23895         function prototype, this function is now static inside class.c.
23897         * class.c (mono_class_create_generic_2): Made this static, only
23898         call it from mono_class_init() and mono_class_setup_parent().
23899         (collect_implemented_interfaces_aux): Call mono_class_init() on
23900         the interfaces we collect.
23901         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23903 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23905         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23906         it a real thread handle.
23908         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23909         MonoJitExceptionInfo, since each catch clause needs its own variable.
23910         
23911 2005-01-11  Dick Porter  <dick@ximian.com>
23913         * image.c (mono_pe_file_open): New variant on mono_image_open()
23914         that does not set up the CLI metadata; used for FileVersionInfo so
23915         it can get the data for windows binaries too.
23916         
23917         * process.c (process_read_string_block): Don't read off the end of
23918         the StringTable block.
23920         These both fix bug 70766.
23922 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23924         * gc.c: set some fields to NULL at GC cleanup time.
23925         * threads.c: if we quit the main thread, call exit ().
23927 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23929         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23931 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23933         * threads.h, threads.c, object.c: added accessor and settor for
23934         main_thread. Handle it specially when exiting from it: wait
23935         for other foreground threads to exit.
23937 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23939         * process.c, verify.c: remove some bloat.
23941 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23943         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23944         the calling convention to cdecl under win32.
23946 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23948         * object.c (mono_object_get_size): New function to get the size of
23949         an object instance.
23951         * profiler.c (simple_allocation): Use above.
23953 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23955         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23956         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23957         get an appdomain by it's id and we can't assume the root's id is 0).
23958         * domain-internals.h: Change the function prototype to match.
23959         * icall.c: Change the icall table for AppDomain.
23961 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23963         * locales.c (string_invariant_compare_char): Only compute
23964         GUnicodeTypes in the case where we need them.  Test for ordinality
23965         first and return if so.
23967         From the commit:
23969                 /*
23970                  * FIXME: here we must use the information from c1type and c2type
23971                  * to find out the proper collation, even on the InvariantCulture, the
23972                  * sorting is not done by computing the unicode values, but their
23973                  * actual sort order.
23974                  */
23976 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23978         * loader.c: for P/Invoke methods, allow the "Internal" shared
23979         library name to refer to the calling process symbol namespace.
23981 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23983         * Makefile.am: Add the security manager to the build.
23984         * security-manager.c|h: New. Initialization of the security manager.
23986 2005-01-07  Dick Porter  <dick@ximian.com>
23988         * threads.c: 
23989         * monitor.c: Update thread state during Monitor and WaitHandle
23990         waits.  Fixes bug 71031.
23992 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23994         * reflection.c (property_encode_signature): Correctly handle when the
23995         property has no methods.
23997 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23999         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24000         
24001         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24002         fields from mb, not rmb. Fixes #71017.
24004         * marshal.c (emit_ptr_to_str_conv): Add support for 
24005         ByValTStr -> string conversion. Fixes #71015.
24007         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24009         * mempool.c (mono_mempool_contains_addr): New helper function.
24011 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24013         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24014         HasSematics encoded fields.
24015         
24016         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24017         invalid string marshalling.
24019         * metadata.c: Fix warnings.
24020         
24021 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24023         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24024         profiler support.
24026 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24028         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24029         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24030         tests.
24032 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24034         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24035         so methods containing these can be AOTed.
24037 2005-01-03  Martin Baulig  <martin@ximian.com>
24039         * loader.c (find_method): Removed the hack for generic instances.
24040         (method_from_memberref): If our parent is a generic instance, pass
24041         its generic type definition to find_method() and then inflate the
24042         method.
24043         (mono_get_method_constrained): Pass the generic type definition to
24044         find_method() and inflate the method later.
24046         * class-internals.h (MonoStats): Added `generic_class_count'.
24048         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24049         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24051         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24052         generic type definitions.
24054 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24056         * loader.c icall.c: Fix warnings.
24058 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24060         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24061         blittable types. Fixes #70864.
24063 2004-12-29  Martin Baulig  <martin@ximian.com>
24065         * icall.c
24066         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24068         * reflection.c (mono_method_get_object): Create a
24069         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24070         call mono_get_inflated_method().
24072         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24074 2004-12-27  Martin Baulig  <martin@ximian.com>
24076         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24077         (MonoMethodInflated): Added `inflated' field.
24079         * class.c (mono_class_inflate_generic_method): Don't really
24080         inflate the method here; just set the `is_inflated' flag in the
24081         MonoMethod.
24082         (mono_class_get_inflated_method): Actually inflate the method here
24083         if it's not already inflated; we use the MonoMethodInflated's new
24084         `inflated' field as a cache.
24086 2004-12-26  Martin Baulig  <martin@ximian.com>
24088         * class.c
24089         (inflate_generic_class): Moved some code out of inflate_generic_type().
24090         (mono_class_inflate_generic_method): If we're already inflated,
24091         inflate the context and use the declaring method; ie. make sure
24092         the declaring method of an inflated method is always the generic
24093         method definition.
24094         (mono_class_create_from_typedef): Create
24095         `class->generic_container->context->gclass'.
24097 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24099         * metadata-internals.h, marshal.c, reflection.c: More
24100         MonoGHashTable->GHashTable.
24102         * domain-internals.h, class.c: Change MonoGHashTable's into
24103         GHashTables for some cases where no gc stuff is used
24105         All users: update apis
24107 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24109         * metadata.c (builtin_types): Make this `const'. Makes this get
24110         put into the shareable section.
24111         (mono_metadata_init): Casts to make gcc happy.
24113 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24115         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24117 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24119         * icall.c: Added an internal call to retrieve the position and length
24120         of assembly-level declarative security attributes (RequestMinimum, 
24121         RequestOptional and RequestRefuse). This is used by the Assembly class
24122         to re-create the corresponding permission sets.
24124 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24126         * marshal.c: fix the stelemref wrapper to be type correct
24127         (and faster).
24129 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24131         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24132         to do key & 0x7fffffff. Hashtable already does this. It just
24133         results in longer code.
24135 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24137         * appdomain.c: Bump corlib version.
24138         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24139         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24140         * reflection.c|h: Add functions to get declarative security infos
24141         (blob position and length) for assemblies, classes and methods.
24143 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24145         * reflection.c: sort the constant table (bug #70693).
24147 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24149         * object-internals.h, threads.c, domain.c: add accessors for
24150         the MonoThread and MonoDomain tls keys.
24152 2004-12-18  Martin Baulig  <martin@ximian.com>
24154         * class.c (inflate_generic_type): If we're inflating a generic
24155         instance, set `ngclass->context->container = context->container';
24156         ie. the container we inflated into.
24158         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24159         inflate_generic_type() changes.
24161 2004-12-17  Martin Baulig  <martin@ximian.com>
24163         * class-internals.h
24164         (MonoGenericClass): Replaced `MonoType *generic_type' with
24165         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24166         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24167         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24169 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24171         * exception.c (mono_exception_from_token): New helper function.
24173 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24175         * assembly.c (mono_assembly_load_with_partial_name): Call 
24176         mono_assembly_loaded before invoking the preload hooks. Fixes
24177         #70564.
24179         * object-internals.h (MonoThread): Change culture_info and 
24180         ui_culture_info into an array.
24182         * threads.c: Cache culture info objects from more than one appdomain.
24184         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24185         current UI culture.
24187 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24189         * threads.h threads.c appdomain.c: Clear the culture_info field of
24190         all threads during unloading if they point to an object in the dying
24191         appdomain.
24193 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24195         * culture-info.h (TextInfoEntry): New struct
24196         * object-internals.h: sync with managed
24197         * locales.c: fill the `text_info_data' field
24198         * culture-info-tables.h: update
24200 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24202         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24203         collector.
24205 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24207         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24208         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24210 2004-12-12  Martin Baulig  <martin@ximian.com>
24212         * mono-debug-debugger.c (write_type): If we're an enum and the
24213         builtin types have already been initialized, call mono_class_init().
24215 2004-12-11  Martin Baulig  <martin@ximian.com>
24217         * metadata.c (mono_metadata_load_generic_params): Added
24218         `MonoGenericContainer *parent_container' argument; automatically
24219         compute `container->is_method'; pass the correct owner to
24220         get_constraints().      
24222         * reflection.c (compare_genericparam): Sort the GenericParam table
24223         according to increasing owners. 
24225 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24227         * profiler.c: allow disabling the default profiler.
24229 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24231         * decimal.c, icall.c: allow disabling System.Decimal support.
24233 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24235         * reflection.c: Add support for null attribute arguments.
24237 2004-12-09  Martin Baulig  <martin@ximian.com>
24239         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24240         names to get rid of compiler warnings.
24242 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24244         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24245         mono_marshal_load_type_info (). Fixes #69625.
24246         (mono_marshal_get_ptr_to_struct): Likewise.
24248 2004-12-08  Martin Baulig  <martin@ximian.com>
24250         * mono-debug.h: Bumped version number to 47.
24252         * mono-debug-debugger.c
24253         (mono_debugger_event_handler, mono_debugger_event): Take two
24254         guint64 arguments insteed of a gpointer and a guint32.  
24256 2004-12-08  Martin Baulig  <martin@ximian.com>
24258         * debug-mono-symfile.h
24259         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24260         `address' to `native_offset'.
24262 2004-12-08  Martin Baulig  <martin@ximian.com>
24264         * class.c (mono_class_create_from_typespec): Only inflate if we
24265         either have `context->gclass' or `context->gmethod'.
24267 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24269         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24271         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24273         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24275         * reflection.c (mono_assembly_get_object): Remove the workaround put
24276         in for the release.
24277         
24278         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24280         * appdomain.c: Bump corlib version.
24282         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24283         be visible in other appdomains.
24285 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24287         * threads.c: Interlocked inc and dec for longs were messed up,
24288         use a KISS based impl for this. Fixes 70234
24290 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24292         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24294 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24296         * icall.c: fix to follow policy not to allow struct
24297         arguments in icalls.
24299 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24301         * process.c: make the patch that handles spaces in file paths work
24302         on mono/windows too.
24304 2004-12-06  Martin Baulig  <martin@ximian.com>
24306         * class.c (mono_class_create_generic): Call
24307         mono_class_setup_supertypes() if we're dynamic.
24308         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24310 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24312         * object-internals.h: Add new fields to MonoThread.
24314         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24316         * icall.c threads-types.h threads.c: Add new icalls.
24318         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24320         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24321         managed side.
24323         * appdomain.c: Bump corlib version.
24325         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24326         internal assemblies. Fixes #69181.
24328 2004-12-05  Martin Baulig  <martin@ximian.com>
24330         * class.c (mono_class_inflate_generic_signature): Make this a
24331         no-op if `context' is NULL or we don't have any type parameters;
24332         also copy `sentinelpos'.        
24334 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24336         * image.c: Add unbox_wrapper_cache.
24338         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24340         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24341         function generator.
24342         
24343         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24344         Fixes #70173.
24346         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24347         
24348 2004-12-04  Martin Baulig  <martin@ximian.com>
24350         * loader.c (mono_method_get_signature_full): New public function;
24351         like mono_method_get_signature(), but with an additional
24352         `MonoGenericContext *' argument.
24354         * class.c (mono_class_inflate_generic_signature): Formerly known
24355         as inflate_generic_signature(); make this public.
24357 2004-12-04  Martin Baulig  <martin@ximian.com>
24359         * metadata.c
24360         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24361         instead of a `MonoGenericContainer *'.  
24362         (mono_metadata_parse_array_full): Likewise.
24363         (mono_metadata_parse_signature_full): Likewise.
24364         (mono_metadata_parse_method_signature_full): Likewise.
24365         (mono_metadata_parse_generic_inst): Likewise.
24366         (mono_metadata_parse_generic_param): Likewise.
24367         (mono_metadata_parse_mh_full): Likewise.
24368         (mono_type_create_from_typespec_full): Likewise.
24370 2004-12-03  Martin Baulig  <martin@ximian.com>
24372         * class-internals.h (MonoGenericContainer): Replaced the
24373         `MonoGenericContext * pointer with a `MonoGenericContext'
24374         structure and made it the first element.
24376 2004-12-03  Martin Baulig  <martin@ximian.com>
24378         * class.c
24379         (inflate_generic_type): Set the `context->container' when creating
24380         a new MonoGenericContext.
24381         (mono_class_inflate_generic_method): Likewise.
24382         (mono_class_create_from_typespec): Just use `context->container'
24383         to get the container.
24385         * loader.c (method_from_methodspec): Set `context->parent' from
24386         `context->container' - and if that's a method container, use its
24387         parent.  Also set the `context->container' when creating a new
24388         MonoGenericContext.
24389         (mono_get_method_from_token): Use just `context->container' to get
24390         the container.
24392         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24393         `gclass->context->container'.
24395         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24396         the `context->container' when creating a new MonoGenericContext.
24398 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24400         * reflection.c (compare_genericparam): Sort params with identical
24401         owner by their number. Fixes gen-111 on sparc.
24403 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24405         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24406         around the domain changes.
24408         * appdomain.c (mono_domain_unload): Handle the case when the thread
24409         calling Unload is itself being aborted during unloading. Fixes #70022.
24411         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24413         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24414         checkpoint_func as an icall so it gets a wrapper.
24415         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24416         in the cross-appdomain wrappers too.
24418         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24420         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24422         * reflection.c: Fix some memory leaks.
24423         
24424 2004-12-02  Martin Baulig  <martin@ximian.com>
24426         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24428         * metadata.c (generic_class_cache): New static hashtable.
24429         (mono_metadata_lookup_generic_class): New public method.
24431 2004-12-02  Martin Baulig  <martin@ximian.com>
24433         * class.c (mono_class_create_from_typedef): Call
24434         mono_class_setup_parent() and mono_class_create_mono_type() before
24435         parsing the interfaces.
24437 2004-12-02  Martin Baulig  <martin@ximian.com>
24439         * metadata.c (generic_inst_cache): New static hashtable.
24440         (mono_metadata_lookup_generic_inst): New public function.
24441         (mono_metadata_inflate_generic_inst): New public function.
24442         (mono_metadata_parse_generic_inst): New public function.
24443         (do_mono_metadata_parse_generic_class): Use the new
24444         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24445         since this'll also use the cache.
24447         * reflection.c (mono_reflection_bind_generic_method_parameters):
24448         Use mono_metadata_lookup_generic_inst() to use the new cache.
24450         * class.c (inflate_mono_type): Use
24451         mono_metadata_inflate_generic_inst() to inflate a generic
24452         instance; this'll also use the new cache.
24454         * loader.c (method_from_methodspec): Use
24455         mono_metadata_parse_generic_inst() and
24456         mono_metadata_inflate_generic_inst() rather than parsing it
24457         manually, so we can use the new cache.
24459 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24461         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24462         the wait times out.
24464 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24466         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24467         iter->args based on whether parameters are passed in registers (i.e.
24468         MONO_ARCH_REGPARMS is defined)
24470 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24472         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24473         the exception message. Fixes #70070.
24474         (method_from_methodspec): Fix warnings.
24476 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24478         * process.c: (complete_path) return the path quoted
24480 2004-12-01  Martin Baulig  <martin@ximian.com>
24482         * class-internals.h (MonoGenericInst): New structure.
24483         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24484         `is_open' with `MonoGenericInst *inst'.
24485         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24486         `is_open' with `MonoGenericInst *inst'.
24488 2004-11-30  Martin Baulig  <martin@ximian.com>
24490         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24492         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24493         to `generic_class_cache'.
24495         * metadata.c
24496         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24497         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24498         (mono_generic_inst_is_valuetype): Renamed to
24499         mono_generic_class_is_valuetype().
24501         * class-internals.h
24502         (MonoGenericInst): Renamed to MonoGenericClass.
24503         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24504         (MonoClass): Renamed `generic_inst' to `generic_class'.
24505         (MonoGenericContext): Renamed `ginst' to `gclass'.
24507         * object-internals.h
24508         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24510         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24511         mono_reflection_generic_class_initialize().
24513         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24514         now known as "System.Reflection.MonoGenericClass".
24515         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24517 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24519         * class-internals.h: Added a flag field to MonoClass to cache the
24520         declarative security attributes actions associated with the class.
24521         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24522         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24523         applicable to the JITted method.
24524         * reflection.c|h: Added functions to extract (as flags) which security
24525         actions are available (declaratively) for a method, class or assembly.
24526         * metadata.c|h: Added functions to search the declarative security
24527         table in the metadata.
24528         
24529 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24531         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24532         EXPORTEDTYPES are already in the class name cache, so there is no
24533         need to add extra code here to look at them. Just removes a bit of
24534         cruft.
24536         (ves_icall_System_Environment_get_TickCount): No need for #if
24537         WINDOWS. We already have the code in io-layer.
24539 2004-11-28  Martin Baulig  <martin@ximian.com>
24541         * loader.c
24542         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24543         Fixes gen-112.cs.
24545 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24547         * assembly.c (do_mono_assembly_open): Instead of having a
24548         conditional WITH_BUNDLE, incorporate support for bundles here, by
24549         having a global `bundles' variable holding a pointer to the actual
24550         bundles. 
24552         (mono_register_bundled_assemblies): New API call used by the
24553         bundle code. 
24555         See mkbundle.1 for details.
24556         
24557 2004-11-27  Martin Baulig  <martin@ximian.com>
24559         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24560         the vtable for generic methods.
24562 2004-11-26  Martin Baulig  <martin@ximian.com>
24564         * metadata.c
24565         (mono_metadata_generic_method_hash): New public function.
24566         (mono_metadata_generic_method_equal): Likewise.
24568         * class-internals.h
24569         (MonoGenericContainer): Added `GHashTable *method_hash'.
24571         * reflection.c (ReflectionMethodBuilder): Added
24572         `MonoGenericContainer *generic_container'.
24573         (reflection_methodbuilder_to_mono_method): Don't create a new
24574         MonoGenericContainer each time we're called.
24575         (mono_reflection_bind_generic_method_parameters): Use
24576         `container->method_hash' to cache the results so we don't create a
24577         different method if we're called several times with the same
24578         arguments.
24580         * loader.c (method_from_methodspec): Use the new
24581         `container->method_hash' here, too.
24583 2004-11-26  Martin Baulig  <martin@ximian.com>
24585         * class.c (inflate_generic_signature): Correctly compute
24586         `res->has_type_parameters'.
24587         (mono_class_vtable): Use the `has_type_parameters' flag to
24588         determine whether we're a generic method.
24590         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24592 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24594         * object.c (mono_runtime_run_main): Fix a small memory leak.
24596 2004-11-25  Martin Baulig  <martin@ximian.com>
24598         * class.c (set_generic_param_owner): Fixed the loop.
24600 2004-11-25  Martin Baulig  <martin@ximian.com>
24602         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24603         generic methods.
24605 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24607         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24608         names. Fixes #69787.
24610 2004-11-24  Martin Baulig  <martin@ximian.com>
24612         * class.c (mono_class_create_generic_2): If we don't have a
24613         `ginst->parent', inflate `gklass->parent' to get our parent.
24615 2004-11-24  Martin Baulig  <martin@ximian.com>
24617         * reflection.c (compare_genericparam): Correctly sort the
24618         GenericParam table; fixes #69779.
24620 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24622         * reflection.c: When writing a PE file, don't create a huge
24623         buffer in memory. Just write the arrays we have to the file.
24624         This reduces memory usage.
24626         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24627         globally.
24629 2004-11-17  Martin Baulig  <martin@ximian.com>
24631         * class.c (mono_class_init): Don't setup `class->parent' for
24632         dynamic instances; moved this to mono_class_generic_2().
24633         (mono_class_create_generic): Also set `klass->inited' for dynamic
24634         generic instances.
24635         (mono_class_create_generic_2): Don't do anything for dynamic
24636         generic instances.  Set `klass->parent' here and also call
24637         mono_class_setup_parent() here. 
24639         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24640         `MonoType *parent' argument; set `ginst->parent' before calling
24641         mono_class_create_generic_2(), so we set the correct parent.
24643 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24645         * reflection.c: allow getting attributes from ModuleBuilder
24646         (used by ikvm).
24648 2004-11-17  Martin Baulig  <martin@ximian.com>
24650         * class.c (mono_class_create_from_typedef): If a type parameter is
24651         inherited from an outer class, set its owner to that class.
24653 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24655         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24656           for (int*) written size. This fixes bug #69592.
24658 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24660         * icall.c: Added IsAuthenticodePresnet internal call.
24661         * image.c|h: New function that check a MonoImage for an Authenticode
24662         signature in the certificate PE data directory.
24663         * security.c|h: New internal call to ask the runtime if an 
24664         Authenticode signature seems referenced in the PE header.
24666 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24668         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24670         * reflection.c (mono_image_create_pefile): Free the assembly streams
24671         after writing out the assembly file.
24673         * object.c (mono_runtime_run_main): Fix small memory leak.
24675         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24676         property access modifiers. Fixes #69389.
24678 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24680         * domain.c, object.c, object-internals.h, domain-internals.h,
24681         object.h, marshal.c: keep dynamic code info per domain.
24683 2004-11-15  Martin Baulig  <martin@ximian.com>
24685         * class.c (mono_type_get_name_recurse): Put type arguments in
24686         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24687         see bug #68387.
24689 2004-11-15  Martin Baulig  <martin@ximian.com>
24691         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24692         (mono_class_setup_vtable): When computing `the_cname' for a
24693         generic instance, don't include the namespace since we'd otherwise
24694         add it twice.
24696 2004-11-15  Martin Baulig  <martin@ximian.com>
24698         * class.c (mono_class_create_generic): Changed return type to void.
24699         (mono_class_create_generic_2): New public function; setup
24700         `class->method', `class->field' and `class->interfaces' here
24701         instead of in mono_class_init().
24703         * class.h (mono_class_create_generic): Moved to class-internals.h.
24705 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24707         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24708         rather than writing to memory, write to this file. Right now,
24709         we are just writting into a buffer, and copying that. However
24710         we can avoid the buffer later.
24712         (mono_dynamic_stream_reset): new function
24714         * icall.c, object-internals.h: update for the above.
24716 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24718         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24719         have been using gc'd memory. First it is slower, unlikely
24720         the comment in the source code said, secondly, it increases
24721         our footprint to do it in the gc.
24723         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24724         the method so that it does not have to copy to managed code.
24726 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24728         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24730 2004-11-12  Martin Baulig  <martin@localhost>
24732         * reflection.c (mono_image_create_token): Allow generic method
24733         definitions here, since they may appear in an `.override'; see
24734         gen-98/gen-99 for an example.
24736 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24738         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24739         #69365.
24741         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24742         descriptive.
24744 2004-11-11  Martin Baulig  <martin@ximian.com>
24746         * class.c (mono_class_setup_vtable): In an explicit interface
24747         implementation, the method name now includes the arity.
24749 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24751         * object.c (mono_array_full_copy): Fix warning.
24753 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24755         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24756         mono_class_get_method_from_name() instead.
24757         
24758         * class-internals.h: Added two new types of wrappers. 
24759         Added MonoRemotingTarget enum. Added new trampoline function type, which
24760         takes an additional MonoRemotingTarget value as parameter, so it is
24761         possible to request a trampoline for a specific target.
24762         
24763         * class.c: Added new mono_class_get_method_from_name() method.
24764         
24765         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24766         general remoting sinks and one specific for cross domain calls.
24767         
24768         * debug-helpers.c: Added new wrapper names.
24769         
24770         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24771         of a remote class.
24772         
24773         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24774         
24775         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24776         with several other methods (mono_marshal_get_xappdomain_dispatch,
24777         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24778         and others) can generate a fast remoting wrapper for cross domain calls.
24779         More information can be found in docs/remoting.
24780         Other changes: Removed mono_find_method_by_name, and used
24781         mono_class_get_method_from_name instead.
24782         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24783         is stored in the remoting invoke hashtable.
24784         
24785         * marshal.h: published the new method for getting the xdomain wrapper,
24786         and also added a method for getting the adequate wrapper for a given
24787         method and target.
24788         
24789         * object-internals.h, object.c: Added a couple of methods for capying and
24790         cloning arrays.
24791         Modified mono_install_remoting_trampoline, which takes the new remoting
24792         trampoline that has a remoting target as parameter.
24793         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24794         will return the most suitable vtable for the target.
24795         Added mono_remote_class_vtable, which returns the vtable of a remote class
24796         (which can be the normal remoting vtable or the xdomain vtable).
24797         
24798         * threads.c: the xdomain invoke and dispatch wrappers must also be
24799         protected against interruptions.
24801 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24803         * icall.c: use memmove in BlockCopyInternal when the source and
24804         destination arrays are the same.
24806 2004-11-09  Martin Baulig  <martin@ximian.com>
24808         * class-internals.h (MonoGenericContainer): Removed `method' and
24809         `signature', replaced them with `is_method' and `is_signature'
24810         flags.  Added `context'.
24812         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24813         instead of a `MonoGenericContainer *'.
24815         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24816         for dynamic type parameters.
24817         (mono_metadata_load_generic_params): Setup `container->context'.
24819         * reflection.c (mono_reflection_setup_generic_class): Setup
24820         `tb->generic_container->context'.
24821         (do_mono_reflection_bind_generic_parameters): Use
24822         mono_class_inflate_generic_type() to correctly inflate types,
24823         rather than using our own hack just for MONO_TYPE_VAR.
24825 2004-11-09  Martin Baulig  <martin@ximian.com>
24827         * class.c (mono_class_inflate_generic_method): Small fix; don't
24828         crash here.
24830         * icall.c
24831         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24832         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24833         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24834         (ves_icall_Type_BindGenericParameters): Likewise.
24835         (ves_icall_Type_get_IsGenericInstance): Likewise.
24836         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24837         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24838         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24839         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24841 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24843         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24844         assembly versions and public key tokens. Fixes #69113.
24846 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24848         * metadata.c: fix bug introduced with the type cache changes
24849         on 2004-11-06.
24851 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24853         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24854         the MonoClass pointer instead of the token in exception clauses.
24855         * reflection.c: updates for the above and make the code not depend
24856         on the structure of MonoExceptionClause.
24858 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24860         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24861         Add support for dynamic assemblies. Fixes #69114.
24863         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24865 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24867         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24868         since most only those methods use it. the code member of
24869         MonoMethodPInvoke was dead, so that can be removed too. Also,
24870         remove inline_count (again, not used), and move slot so that it
24871         can share bits with some other flags. This saves 8 bytes in the
24872         structure and gives us about 50 kb back for mcs helloworld.cs
24874         * *.[ch]: Do naming changes for the above.
24876         * loader.c (mono_method_get_header): Lazily init the header
24877         on first access.
24878         (mono_get_method_from_token): don't init the header here
24879         (mono_free_method): the header may never be allocated
24881         Overall, this saves 150 kb of unmanaged allocations
24882         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24883         memory at runtime.
24884         
24885         * loader.c, loader.h (mono_method_get_header): new accessor.
24887         * *.[ch]: use the above method. Prepares us to lazily load
24888         the header.
24890         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24891         three warnings, which are actual bugs (see 69206).
24893         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24894         unused. Saves a cool 4 bytes / method.
24896 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24898         * metadata.c (builtin_types): Add types for System.Object here.
24899         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24900         for a class or valuetype from klass->this_arg or klass->byval_arg.
24902         On mcs for a hello world, this gets us down from 21836 MonoType's
24903         to 14560.
24905         (mono_metadata_free_type): Account for the above change.
24907 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24909         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24910         exception instead of asserting if name is null.
24911         (ves_icall_System_AppDomain_GetData): Ditto.
24913 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24915         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24916         EnumBuilder.
24918         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24919         Return NULL when the domain does not have entry_assembly set.
24921         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24922         Add a 'resource_modules' argument.
24923         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24925         * reflection.c (mono_reflection_create_runtime_class): Move setting
24926         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24927         for enums too.
24929         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24930         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24931         Throw an ArgumentNullException if 'ptr' is null.
24933         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24934         assemblies here. Fixes #69020.
24936 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24938         * reflection.c (build_compressed_metadata): Fix the previous patch for
24939         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24940         the stack.
24942 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24944         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24945         the cultures is false. Fixes #69090.
24947         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24948         detected by valgrind.
24949         
24950         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24951         TypeResolve multiple times for the same type. Fixes #65577.
24953 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24955         * marshal.c: Avoid using ldftn to call managed functions. It is
24956         much slower than just a call.
24958         * reflection.c (mono_module_get_object): free the basename we
24959         allocate here from glib.
24960         
24961         * reflection.c (ensure_runtime_vtable): make sure to free
24962         overrides.  Also, we were allocating an array of MonoMethod not an
24963         array of MonoMethod*.
24965         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24967         * image.c (mono_image_close): free image->guid here.
24969 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24971         * reflection.c: Fix some spec conformance issues with the PE file
24972         structures so mcs compiled apps run on the Net 2.0 beta.
24974 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24976         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24977         Implement this. Fixes #67264.
24979         * debug-helpers.h debug-helpers.c marshal.c: Move 
24980         mono_find_method_by_name to debug-helpers.c.
24982 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24984         * object.c (mono_release_type_locks): type_initialization_hash is
24985         a GHashTable.
24987         * reflection.c object.c object-internals.h: Fix warnings.
24989         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24990         without accessors. Fixes #61561.
24992         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24993         application base from the root domain if not set. Fixes #65641.
24994         (mono_runtime_init): Fix warning.
24996 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24998         * appdomain.c: call mono_thread_pool_init.
24999         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25000         of worker threads based on the number of CPUs and the environment
25001         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25002         for non-windows (windows) systems.
25004 2004-10-27  Chris Toshok  <toshok@ximian.com>
25006         * mono-debug-debugger.c (write_class): don't call mono_class_init
25007         here, as even with the check for (!klass->init_pending), we get
25008         into a situation where we're hitting cycles in class
25009         initialization.  Fixes #68816.
25011 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25013         * image.c: Avoid overwriting values in the loaded_images_hash when an
25014         assembly is loaded multiple times. Fixes #61152.
25016         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25017         so multiple satellite assemblies for the same name can be loaded.
25018         Fixes #68259.
25020         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25021         not NULL.
25023         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25024         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25026         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25027         pending finalizers are not invoked after the appdomain has been 
25028         unloaded. Fixes #67862.
25030 2004-10-22  Martin Baulig  <martin@ximian.com>
25032         * mono-debug-debugger.c
25033         (mono_debugger_runtime_invoke): Don't box valuetypes.
25035 2004-10-22  Chris Toshok  <toshok@ximian.com>
25037         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25038         don't hide private methods.
25040 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25042         * icall.c: Allows the runtime to "share" (when known) the public key
25043         token of an assembly. This avoid the need to recalculate the token 
25044         (from the public key) in managed code.
25046 2004-10-21  Chris Toshok  <toshok@ximian.com>
25048         * debug-helpers.c (append_class_name): argh, revert last patch.
25049         
25050 2004-10-21  Chris Toshok  <toshok@ximian.com>
25052         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25053         not '/', so that it matches what the debugger uses to look up
25054         methods.
25056 2004-10-21  Martin Baulig  <martin@ximian.com>
25058         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25059         public method; this is called each time an exception is thrown and
25060         allows the debugger to use exception catch points.
25062 2004-10-21  Martin Baulig  <martin@ximian.com>
25064         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25065         the stack pointer and the exception object in some struct and pass
25066         that to the debugger.
25068 2004-10-21  Chris Toshok  <toshok@ximian.com>
25070         * mono-debug-debugger.c (do_write_class): add instance/static
25071         event support.  We don't expose "raise" or "other" yet.
25072         (event_is_static): new method.
25074 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25076         * mono-debug-debugger.c
25077         (mono_debugger_handle_exception): Remove
25078         bogus return value for fussy compilers.
25080 2004-10-20  Martin Baulig  <martin@ximian.com>
25082         * mono-debug-debugger.c
25083         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25084         (mono_debugger_handled_exception): Likewise.
25086 2004-10-20  Martin Baulig  <martin@ximian.com>
25088         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25089         MONO_DEBUGGER_EVENT_EXCEPTION.
25091         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25092         public function to send the debugger a notification for an
25093         exception and inform it about a catch/finally clause.
25095 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25097         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25098         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25099         fix 2.95 build. 
25101         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25103 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25105         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25106         marshalled as [In,Out]. Fixes #58325.
25108 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25110         * reflection.c (mono_method_body_get_object): Implement some fields.
25112 2004-10-12  Martin Baulig  <martin@ximian.com>
25114         * reflection.c (mono_reflection_bind_generic_parameters): Small
25115         fix, correctly retrieve our parent from a generic instance.
25117 2004-10-12  Martin Baulig  <martin@ximian.com>
25119         * metadata.c (mono_metadata_generic_param_equal): We always have
25120         an owner.
25122         * class.c
25123         (mono_class_from_generic_parameter): We need to have an owner.
25124         (my_mono_class_from_generic_parameter): Likewise.
25126         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25127         mono_reflection_create_generic_class() and added a new
25128         mono_reflection_setup_generic_class().  
25129         (mono_reflection_initialize_generic_param): If we're a nested
25130         generic type and inherited from the containing class, set our
25131         owner to the outer class.
25133 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25135         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25137         * reflection.c (mono_method_body_get_object): New function to create
25138         a MethodBody object.
25140         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25142 2004-10-11  Martin Baulig  <martin@ximian.com>
25144         * metadata.c (_mono_metadata_type_equal): Renamed to
25145         do_mono_metadata_type_equal() and made static.
25147 2004-10-11  Martin Baulig  <martin@ximian.com>
25149         * appdomain.c: Bump corlib version number to 28.
25151 2004-10-10  Martin Baulig  <martin@ximian.com>
25153         * class-internals.h
25154         (MonoGenericInst): Added `MonoGenericContainer *container'.
25155         (MonoGenericMethod): Likewise.
25156         (MonoGenericContext): Likewise.
25157         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25159         * metadata.c
25160         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25161         (do_mono_metadata_parse_generic_inst): Likewise.
25162         (mono_metadata_parse_type_full): New public method.  This is the actual
25163         mono_metadata_parse_type() implementation - with an additional
25164         `MonoGenericContainer *' argument.
25165         (mono_metadata_parse_array_full): Likewise.
25166         (mono_metadata_parse_signature_full): Likewise.
25167         (mono_metadata_parse_method_signature_full): Likewise.
25168         (mono_metadata_parse_mh_full): Likewise.
25169         (mono_type_create_from_typespec): Likewise.
25170         (mono_metadata_interfaces_from_typedef_full): New public method;
25171         this is similar to the other _full() methods, but we take a
25172         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25173         (mono_metadata_parse_generic_param): Take an additional
25174         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25175         from that container.
25176         (mono_metadata_generic_param_equal): New static method to compare
25177         two type parameters.
25178         (_mono_metadata_type_equal): New static method; takes an
25179         additional `gboolean signature_only' argument - if true, we don't
25180         compare the owners of generic parameters.
25181         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25182         with a TRUE argument - do a signature-only comparision.
25184         * loader.c: Use the new _full() methods and pass the
25185         MonoGenericContainer to them.
25187         * object-internals.h (MonoReflectionTypeBuilder): Added
25188         `MonoGenericContainer *generic_container' field.
25189         (MonoReflectionMethodBuilder): Likewise.
25191 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25193         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25194         case initial images of dynamic assemblies.
25196         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25198         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25200         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25201         length of event->other array.
25202         (typebuilder_setup_events): Ditto.
25204         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25205         'assembly_by_name' and add an 'assemblies' list.
25207         * assembly.h assembly.c: Add a new search hook for determining whenever
25208         an assembly is already loaded. Use this instead of searching in the
25209         loaded_assemblies list.
25211         * domain.c appdomain.c: Implement the new search hook so loaded 
25212         assemblies are now scoped by appdomain. Fixes #67727.
25214 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25216         * threads.c (mono_thread_attach): Initialize synch_lock field so
25217         mono_thread_detach works again.
25219         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25220         'lib' too. Fixes #63130.
25222 2004-10-06  Jackson Harper  <jackson@ximian.com>
25224         * culture-info-tables.h: regenerated.
25226 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25228         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25229         implemented by other interfaces in the result. Fixes #65764.
25230         
25231         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25232         Handle unloadable modules without crashing.
25234         * image.c (load_modules): Revert the previous patch since modules must
25235         have a fixed index inside the array.
25236         
25237         * image.c (load_modules): Don't include native modules in the modules
25238         array.
25240 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25242         * reflection.h: Add param_defaults field.
25244         * reflection.c: Add support for parameter defaults in dynamic methods.
25245         Fixes #64595.
25247         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25248         an empty string when a type has no namespace. Fixes #64230.
25250 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25252         * tabledefs.h: Added "internal" security actions to support non-CAS
25253         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25254         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25256 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25258         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25259         constructor of abstract class. Fixes #61689.
25261 2004-10-04  Martin Baulig  <martin@ximian.com>
25263         * class-internals.h (MonoGenericContainer): New type.
25264         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25265         `MonoGenericContainer *generic_container'.
25266         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25267         `MonoGenericContainer *generic_container'.
25269         * metadata.c (mono_metadata_load_generic_params): Return a
25270         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25271         removed the `num' argument.
25273 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25275         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25276         for dynamic images.
25278         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25279         machine fields.
25281         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25283         * reflection.c: Save pe_kind and machine values into the generated
25284         image file.
25286         * appdomain.c: Bump corlib version number.
25288         * object-internals.h: Reorganize layout of LocalBuilder.
25290         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25291         New helper function.
25293         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25294         created MonoType for dynamic types. Fixes #66180.
25296 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25298         * threadpool.c: the ares hashtable needs a critical section around it.
25299         this prevents some nasty segfaults
25301 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25303         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25304         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25305         bug 67324).
25306         
25307 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25309         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25310         
25311 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25313         * image.c: Always canonicalize image file names, to avoid loading
25314         the same assembly twice when referenced using a relative path.
25316 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25318         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25320         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25322         * marshal.c: Fix warnings.
25324 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25326         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25327         attempting to marshal the delegate_trampoline as the method_addr.
25328         This patch has a static hashtable of marshalled delegates so that 
25329         we can map delegate_trampoline addresses back to delegates.  This
25330         allows a delegate passed to managed code to be passed back into native
25331         code.  Fixes #67039
25333 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25335         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25337         * reflection.c (method_encode_code): Align method headers properly.
25338         Fixes #66025.
25340 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25342         * marshal.c: In the runtime invoke wrapper, reset the abort
25343         exception if it is cached. This avoids the automatic rethrowal of 
25344         the exception after the catch of the wrapper. Also check for pending
25345         interruptions before calling the managed method. This is done using
25346         the new method emit_thread_force_interrupt_checkpoint, since the
25347         normal checkpoint method is ignored when running the invoke wrapper.
25348         * object.c: If the abort exception is rethrown, set the abort_exc
25349         field of the thread, so it will be rethrown aftere every catch.
25350         * threadpool.c: Only run an interruption checkpoint if what has been
25351         requested is a stop of the thread (aborts will be ignored).
25352         * threads.c: By default, a thread will now never be interrumped while
25353         running the runtime invoke wrapper (this ensures that runtime_invoke
25354         will always return to the caller if an exception pointer is provided).
25355         There is a new special method mono_thread_force_interruption_checkpoint()
25356         to force an interruption checkpoint even if running a protected
25357         wrapper, which is used by the same runtime invoke wrapper to do a check
25358         at a safe point.
25360 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25362         * object.c, object-internals.h: Implemented mono_release_type_locks,
25363         which releases the cctor locks held by a thread.
25364         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25365         by a thread. Added mono_thread_exit() method to be used to safely stop
25366         a thread.
25368 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25370         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25371         Move null check before dereference.  Avoid indexing beyond the end
25372         of the 'modules' array.
25374 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25376         * metadata-internals.h (MonoImage): Add module_count field.
25377         * image.c (load_modules): Set image->module_count.
25378         (mono_image_load_file_for_image): Use image->module_count.
25379         * reflection.c (mono_image_load_module): Append to image->modules array 
25380         of dynamic assembly.
25381         (mono_module_get_object): Fix loop to actually increment index.
25382         Use image->module_count.
25383         * assembly.c (mono_assembly_load_references): Use image->module_count.
25384         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25385         Likewise.
25387 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25389         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25390         Avoid assert on generic types.
25392 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25394         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25396         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25398         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25399         function to convert a MarshalSpec structure to its managed counterpart.
25401         * reflection.c: Fix warnings.
25402         
25403         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25404         field.
25406         * icall.c (mono_create_icall_signature): Fix build.
25408 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25410         * icall.c: Add MakePointType icall.
25412         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25413         warnings.
25415 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25417         * threadpool.c: reuse allocated slots in the queue.
25419 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25421         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25423         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25425         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25426         previous change.
25428         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25429         ThrowOnUnmappableChar.
25431         * icall.c (ves_icall_Type_GetPacking): New icall.
25433 2004-09-24  Martin Baulig  <martin@ximian.com>
25435         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25437 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25439         * appdomain.c:
25440         (mono_domain_set): allow setting a domain that is being unloaded.
25441         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25442         being unloaded.
25444 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25446         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25447         the GetCustomAttributes icall.
25449 2004-09-23  Martin Baulig  <martin@ximian.com>
25451         * object-internals.h (MonoReflectionGenericParam): Replaced
25452         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25453         with `guint32 attrs'.
25455 2004-09-23  Martin Baulig  <martin@ximian.com>
25457         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25459 2004-09-23  Martin Baulig  <martin@ximian.com>
25461         * object-internals.h (GenericParameterAttributes): New enum.
25463 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25465         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25466         
25467         * class.c (init_events): Fill out event->other field.
25469         * class.c: Fix warnings.
25471         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25473 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25475         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25476         walk which doesn't supply the IL offset.
25478 2004-09-22  Martin Baulig  <martin@ximian.com>
25480         * reflection.c (mono_reflection_setup_internal_class): If we're
25481         System.ValueType, System.Object or System.Enum, set
25482         `klass->instance_size' and create the vtable.
25483         (mono_reflection_create_internal_class): If we're an enum type,
25484         get the base class from our current corlib.
25486 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25488         * reflection.h (MonoResolveTokenError): New type.
25490         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25491         icall.
25493         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25495 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25497         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25498         Support also calling constructors, but only for already allocated objects.
25500 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25502         * reflection.c (type_get_qualified_name): If the klass is null
25503         return the typename to avoid a NullRefEx.
25504         (encode_cattr_value): Get the qualified name of the boxed type,
25505         not the underlying enumtype.  Fixes #62984.
25507 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25509         * marshal.c: Fix problems with previous checkin.
25511 2004-09-21    <vargaz@freemail.hu>
25513         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25514         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25516         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25518 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25520         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25521         should only return a type for pointers, arrays, and passbyref types.
25522         Fixes bug #63841.
25524 2004-09-21  Martin Baulig  <martin@ximian.com>
25526         * domain.c (mono_debugger_check_runtime_version): New public
25527         function.
25529         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25531 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25533         * reflection.c: Added missing sort to the declarative security 
25534         attributes table. MS implementation stops seeing the attributes if the
25535         token number regress in the table (as shown by ildasm and permview).
25537 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25539         * object-internals.h (MonoReflectionModule): Add 'token' field.
25540         
25541         * reflection.c (mono_reflection_get_token): Add support for Module
25542         and Assembly.
25543         (mono_module_get_object): Set 'token' field.
25544         (mono_module_file_get_object): Set 'token' field.
25546         * icall.c: Add new Assembly and Module icalls.
25548         * appdomain.c: Bump corlib version.
25550 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25552         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25553         tokens of metadata objects.
25555         * reflection.h reflection.c (mono_reflection_get_token): New function
25556         to obtain the token of a metadata object.
25558         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25560 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25562         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25563         
25564         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25566 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25568         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25569         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25570         AssemblyBuilder to access the permissions set in the class lib.
25571         * reflection.c: Added security attributes encoding step in 
25572         mono_image_build_metadata.
25573         * tabledefs.h: Added new security actions defined in 2.0:
25574         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25576 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25578         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25579         macro parameter.
25581 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25583         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25584           finalized. There where random SIGSEVs at program termination, when
25585           an object being finalized was trying to do a string comparison and
25586           the current culture was already finalized.
25588 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25590         * threads.c: call thread_cleanup before finishing the thread if we get
25591         there.
25593 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25595         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25596         assemblies from the parent. Fixes #65665.
25598 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25600         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25601         modifiers.
25603 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25605         * reflection.h: add prototype for mono_get_dbnull_object
25606         * reflection.c: add prototypes for get_default_param_value_blobs 
25607         and mono_get_object_from_blob for fussier compilers
25609 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25611         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25612         false deadlock checks in class initialization.
25614 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25616         * image.c (mono_image_addref): Fix comment.
25618         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25619         possible.
25621 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25623         * reflection.c (mono_param_get_objects): Modified to return
25624         ParameterInfo.DefaultValue object.
25626         (get_default_param_value_blobs):
25627         (mono_get_object_from_blob):
25628         (mono_get_dbnull_object): New helper routines. 
25630         * object.c (mono_get_constant_value_from_blob): New helper routine
25631         carved out from get_default_field_value ()
25633         * object-internals.h (mono_get_constant_value_from_blob): Added
25634         function declaration.
25636 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25638         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25639         referenced assemblies. Fixes #62135.
25641         * exception.h exception.c (mono_get_exception_file_not_found2): New
25642         helper function.
25644 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25646         * class.h class.c: Add mono_type_get_underlying_type ().
25648 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25650         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25651         Fix GetTypes() to support dynamically created assemblies.
25653 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25655         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25656         
25657         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25658         previous patch.
25660         * reflection.h reflection.c loader.c: Allow dynamic construction of
25661         pinvoke methods. Fixes #65571.
25662         
25663         * reflection.c (mono_reflection_get_type): Revert previous change since
25664         it causes regressions.
25666 2004-09-08  Martin Baulig  <martin@ximian.com>
25668         * class.c (class_compute_field_layout): Don't call
25669         mono_class_layout_fields() for open generic instances.
25671 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25672         * threads.c appdomain.c: fix typo in GC macro
25674 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25676         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25677         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25679 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25681         * image.c (mono_image_close): Applied patch from 
25682         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25683         assembly is loaded multiple times from data.
25684         
25685         * image.c (mono_image_open): Fix warning.
25687 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25689         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25690         once. Fixes #58334.
25691         
25692         * reflection.c (mono_reflection_create_runtime_class): Initialize
25693         klass->nested_classes. Fixes #61224.
25695 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25697         * threads.c: sched_yield() on exit, to allow threads to quit.
25699 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25701         * object.c (mono_unhandled_exception): Remove leftover debug code.
25703 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25705         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25707 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25709         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25710         
25711         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25713 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25715         * marshal.c (emit_marshal_array): Null terminate string arrays.
25716         
25717         * marshal.c (raise_auto_layout_exception): Fix warning.
25719         * reflection.c (mono_param_get_objects): Initialize the default value
25720         with DBNull.Value, not null. Fixes #62123.
25722 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25724         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25725         throw an exception with a cute explanation.
25727 2004-09-06  Dick Porter  <dick@ximian.com>
25729         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25730         Close the new process's thread handle, as we don't use it.  The
25731         handle stays around forever otherwise.
25733 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25735         * object.c (arith_overflow): Fix warning.
25737         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25738         calling conventions in method refs. Fixes #65352.
25740         * reflection.c: Fix warnings.
25742 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25744         * icall.c: Add a new icall for Array.Clear
25746 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25748         * object.c: When allocating an array, we have to throw
25749         an overflow exception if any of the lengths are < 0.
25751 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25753         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25754         properly. Also move implementation of string array marshalling to 
25755         managed code. Fixes #42316.
25757 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25759         * assembly.c: provide more information when loading an assembly fails.
25761 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25763         * filewatcher.c: don't expect the development fam package to be
25764         installed.
25766 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25768         * marshal.c: Make a copy of the signature cookie since it will be
25769         freed by the caller.
25770         
25771         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25773         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25775         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25776         marshal specs.
25778         * marshal.c: More refactoring.
25779         
25780         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25781         smaller functions.
25783 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25785         * object.c: In mono_message_invoke, fill the output parameter array after
25786           calling the managed method (it was done before the call). This fixes
25787           bug #59299.
25789 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25791         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25792         as well.
25794 2004-09-02  Martin Baulig  <martin@ximian.com>
25796         * class.c (mono_class_instance_size): Don't allow generic type
25797         definitions or open generic instances.
25798         (mono_class_array_element_size): If we're a value type, call
25799         mono_class_instance_size() on the original class.
25801         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25802         handle generic instances.
25804         * mono-debug-debugger.c (write_type): Handle generic instances
25805         like classes.
25807 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25809         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25810         the allocation request fails. Fixes #65089.
25812         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25813         
25814         * object.c (mono_runtime_free_method): New function to free a dynamic
25815         method.
25817         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25818         delegate trampoline.
25820         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25821         with hasthis as dynamic,
25823         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25825         * domain.c (mono_jit_info_table_remove): New function to remove an
25826         entry from the jit info table.
25828         * class-internals.h (MonoMethod): Add 'dynamic' field.
25830         * loader.c: Fix warnings.
25832 2004-09-01  Martin Baulig  <martin@ximian.com>
25834         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25835         instead of mono_debugger_lock() because the latter one is a no-op
25836         unless running in the debugger.
25838 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25840         * class.c (class_compute_field_layout): Classes with auto-layout or
25841         reference fields are not blittable.
25842         
25843 2004-09-01  Dick Porter  <dick@ximian.com>
25845         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25846         mono_image_get_filename() to get the assembly location.
25848         * icall.c:
25849         * metadata.h: Fix compile warnings
25851 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25853         * class.c (class_compute_field_layout): System.Object is blittable.
25855         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25856         as in/out. Fixes #59909.
25858 2004-09-01  Martin Baulig  <martin@ximian.com>
25860         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25861         mono_metadata_generic_inst_is_valuetype() if we're a generic
25862         instance to check whether our underlying type is a reference type.
25864 2004-09-01  Martin Baulig  <martin@ximian.com>
25866         * metadata.c (mono_type_size): If we're a generic instance, call
25867         mono_class_value_size() for value types.
25869 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25871         * marshal.c: Implement more custom marshalling functionality. Fixes
25872         #64915.
25874 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25876         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25878 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25880         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25882         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25884         * icall.c: Fix some warnings.
25886         * threads.c (abort_appdomain_thread): Fix unref errors.
25887         (mono_thread_current): Fix THREAD_DEBUG define.
25889 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25891         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25893         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25895 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25897         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25898         string arrays.
25900 2004-08-28  Martin Baulig  <martin@ximian.com>
25902         * metadata.c
25903         (mono_metadata_generic_inst_is_valuetype): New public function.
25905         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25906         mono_metadata_generic_inst_is_valuetype() if we're a generic
25907         instance to check whether our underlying type is a valuetype.
25909 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25911         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25912         #63768.
25914 2004-08-25  Martin Baulig  <martin@ximian.com>
25916         * loader.c (mono_get_method_from_token): Abstract methods can also
25917         be generic and thus have type parameters.
25919         * metadata-internals.h
25920         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25922         * reflection.c (mono_image_get_generic_param_info): Don't create a
25923         metadata row, just add an entry to the `gen_params' array.
25924         (build_compressed_metadata): Sort the `gen_params' array and then
25925         actually create the metadata.
25927 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25929         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25931 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25933         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25935 2004-08-24  Martin Baulig  <martin@ximian.com>
25937         * class.cs (mono_class_is_subclass_of): Like an interface, a
25938         generic instance also derives from System.Object.
25940 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25942         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25943         custom modifiers to be in any order. Fixes #61990.
25945 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25947         * object.c: Register mono_object_new_fast icall.
25948         
25949         * object.c (mono_class_get_allocation_ftn): Return to calling
25950         mono_object_new_fast, since it seems faster to compute the object 
25951         size in unmanaged code than passing it as a parameter.
25953         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25955         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25956         this function with Boehm as the oom handler, so we don't have to check
25957         the result of GC_malloc.
25959         * object.c: Remove checks for oom.
25961         * object.h object.c (mono_class_get_allocation_ftn): New function to
25962         return the icall which can be used to allocate an instance of a given
25963         class. 
25965         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25967         * class-internals.h: Add 'enabled' field.
25969 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25971         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25973 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25974         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25975         value 0x0010.
25977 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25979         * appdomain.c: use the Tls function for appdomain too,
25980         at Zoltan's request. Actually return in mono_context_get
25982         * appdomain.c, profiler.c, threads.c: use __thread
25984 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25986         * appdomain.c threads.c: Call GC_CreateThread on windows.
25988         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25989         multiple libraries since this don't work on windows.
25991 2004-08-18  Martin Baulig  <martin@ximian.com>
25993         * class-internals.h
25994         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25995         MonoMethodHeader.
25997         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25998         MonoMethodNormal since we also need it for abstract and interface
25999         methods.
26001         * reflection.c
26002         (build_compressed_metadata): Sort the GenericParam table.
26003         (mono_image_create_token): Added `gboolean create_methodspec'
26004         argument; this is false when generating a MethodImpl token.
26005         (reflection_methodbuilder_to_mono_method): Abstract and interface
26006         methods may also have generic parameters.
26008 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26010         * appdomain.c: thread local alloc
26012 2004-08-17  Martin Baulig  <martin@ximian.com>
26014         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26016         * icall.c
26017         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26018         argument.
26020         * class.c (mono_type_get_full_name): New public function.
26021         (mono_type_get_name): Don't include the type arguments.
26023 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26025         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26026         for inclusion into the mono executable.
26028 2004-08-16  Martin Baulig  <martin@ximian.com>
26030         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26031         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26033 2004-08-14  Martin Baulig  <martin@ximian.com>
26035         * class.c (dup_type): Also copy the `byref' field.
26037 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26039         * reflection.c (create_dynamic_mono_image): Revert the last change 
26040         since it breaks bootstrap.
26042 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26044         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26046         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26047         not free them with g_free.
26049 2004-08-11  Martin Baulig  <martin@ximian.com>
26051         * reflection.c (mono_reflection_setup_internal_class): Also call
26052         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26054 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26056         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26057         called during default (first) AppDomain creation. Keep track of
26058         Evidence when loading assemblies.
26060 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26062         * opcodes.c, opcodes.h: reduce runtime relocations.
26064 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26066         * culture-info.h, locales.c: fixes and chages to sue the new
26067         optimized format of the locale data.
26068         * culture-info-tables.h: regenerated.
26070 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26071         
26072         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26074 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26076         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26077         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26078         * domain-internals.h: icall declaration.
26079         * icall.c: icall registration.
26080         * object-internals.h: New fields in MonoAssembly for CAS.
26082 2004-08-05  Duncan Mak  <duncan@ximian.com>
26084         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26085         CEE_LDELEM_ANY.
26087 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26089         * reflection.c: fix to deal with object[] arrays in custom ctors
26090         (bug #62550).
26092 2004-08-05  Martin Baulig  <martin@ximian.com>
26094         * class.c (mono_class_array_element_size): Added support for
26095         generic instances and correctly handle "recursive" types.
26097 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26099         * assembly.c: Fix warnings.
26101 2004-08-04  Martin Baulig  <martin@ximian.com>
26103         * class.c
26104         (mono_type_get_name_recurse): Added `gboolean include_arity'
26105         argument specifying whether or not we should include the generic
26106         arity in the type name.
26107         (_mono_type_get_name): New static function.
26108         (mono_class_setup_vtable): If we're a generic instance, don't
26109         include the generic arity in the names of explicit method
26110         implementations.        
26112 2004-08-03  Martin Baulig  <martin@ximian.com>
26114         * class.c (mono_type_get_name_recurse): Enclose the generic type
26115         arguments in `<', '>'.
26117 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26119         * gc.c: make GC warning messages use the trace API, they are just
26120         noise to most of the users.
26122 2004-08-03  Martin Baulig  <martin@ximian.com>
26124         * debug-mono-symfile.c (read_string): Correctly read the string.
26126 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26128         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26129         
26130         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26131         icalls.
26132         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26134 2004-07-30  Martin Baulig  <martin@ximian.com>
26136         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26137         Reflect latest symbol writer changes.   
26139 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26141         * object.c: always create an object if null is passed
26142         to Invoke() where a valuetype is expected.
26144 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26146         * marshal.c (mono_marshal_init): make managed
26147         signatures match native ones better for 64bits.
26149 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26151         * appdomain.c: hack to build correctly the private bin path on windows.
26152         Fixes bug #61991.
26154 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26156         * assembly.c: Load mscorlib from the correct framework directory
26157           (mono/<version>/mscorlib.dll).
26158         * appdomain.h: Added prototypes for new functions.
26159         * internals.h: Added some prototypes.
26160         * domain.c: When initializing the runtime, get from the executable and
26161           the configuration files the runtime version that the app supports.
26162           Added support methods for reading app.exe.config. Added list of versions
26163           supported by the JIT. Added two new methods: mono_init_from_assembly,
26164           which initializes the runtime and determines the required version from
26165           the provided exe file, and mono_init_version, which initializes
26166           the runtime using the provided version.
26167         * icall.c: Get machine.config from version-specific directory.
26168         * reflection.c: When generating an image, embed the version number
26169           of the current runtime.
26171 2004-07-28  Dick Porter  <dick@ximian.com>
26173         * socket-io.c
26174         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26175         returned sockaddr size before creating the remote address object.
26176         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26177         61608.
26179 2004-07-28  Dick Porter  <dick@ximian.com>
26181         * locales.c (string_invariant_compare_char): Fix invariant char
26182         compares between upper and lower cases.  Fixes bug 61458.
26184 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26185         
26186         * marshal.c: actually cache stelem.ref wrappers.
26187         
26188 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26190         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26191         sections and remove the mono_cli_rva_map () function.
26193 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26195         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26196         by Geoff Norton (<gnorton@customerdna.com>).
26198 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26200         * class.c: fix class loads for pointer types (typeof(int) !=
26201         typeof(int*)).
26203 2004-07-27  Martin Baulig  <martin@ximian.com>
26205         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26206         reading the debugging information from an external ".mdb" file.
26208 2004-07-24  Martin Baulig  <martin@ximian.com>
26210         * reflection.c (mono_image_get_type_info): Only write a class
26211         layout entry if we actually have a size or a packing size.
26213 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26215         * reflection.c (type_get_fully_qualified_name): 
26216         insert cast to get type checking of ?: with non-gcc compilers
26218 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26220         * rand.c: use g_getenv for both lookups of
26221         MONO_EGD_SOCKET
26223 2004-07-17  Martin Baulig  <martin@ximian.com>
26225         * reflection.c (mono_reflection_bind_generic_method_parameters):
26226         Set `gmethod->reflection_info'.
26228 2004-07-17  Martin Baulig  <martin@ximian.com>
26230         * class.c (mono_class_create_from_typedef): Insert the newly
26231         created class into the hash table before computing the interfaces
26232         since we could be called recursively.
26234 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26236         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26237         function to implement stelem.ref in managed code
26238         * class-internals.h, debug-helpers.c: a new wrapper type
26239         for the above.
26241 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26243         * gc.c: allow GC handles to work even when no GC is compiled in.
26244         Fix part of bug #61134 (GetAddrOfPinnedObject).
26246 2004-07-13  Peter Williams  <peter@newton.cx>
26248         * process.c (complete_path): Make sure we don't attempt to execute
26249         directories.
26251 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26253         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26254           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26255           and will add/subtract the hour if needed
26257 2004-07-12  Martin Baulig  <martin@ximian.com>
26259         * reflection.c (mono_field_get_object): If we have
26260         `field->generic_info', take the attributes from
26261         `field->generic_info->generic_type'.    
26263 2004-07-12  Martin Baulig  <martin@ximian.com>
26265         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26266         This function must be called before initializing the runtime.
26267         (mono_debug_init_1): New function; call this after initializing
26268         the runtime, but before loading the assembly.  It tells the
26269         debugger to load corlib and the builtin types.
26271         * mono-debug-debugger.c: Did some larger changes in the debugging
26272         code; support recursive class declarations, make sure we actually
26273         add all classes.
26275 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26277         * debug-helpers.c: undo my previous patch and fixed the real issue in
26278         ../mini/exceptions-x86.c
26280 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26282         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26283         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26284         called from other .cctors.
26286 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26288         * loader.c: Removed the mono_loader_wine_init hack now that we are
26289         doing a managed version of Windows.Forms.
26291 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26293         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26294         threadpool.c, threads.c: remove static data from rootset.
26296 2004-07-09  Dick Porter  <dick@ximian.com>
26298         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26299         Don't do any more processing if the matched length was 0.  It was
26300         increasing the size of the string before.  Fixes bug 61167.
26302 2004-07-09  Dick Porter  <dick@ximian.com>
26304         * socket-io.h:
26305         * socket-io.c
26306         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26307         Add support for SO_PEERCRED if its available.
26309 2004-07-09  Peter Bartok <pbartok@novell.com>
26310         * loader.c: winelib.exe.so error message is now only displayed if
26311         MONO_DEBUG is set. To help us avoid questions when people are trying
26312         out the new Managed.Windows.Forms.
26314 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26316         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26317         for isinst and castclass wrappers.
26319         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26320         to libmetadata from the JIT, so they could be used by the marshalling
26321         code and the interpreter.
26323         * marshal.c: Register marshalling related JIT icalls here instead of
26324         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26325         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26327         * metadata.h: Remove unneeded marshalling conversions.
26329         * opcodes.c: Update for new opcodes.
26330         
26331 2004-07-08  Martin Baulig  <martin@ximian.com>
26333         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26334         (mono_debug_get_domain_data): Make this function static.
26336 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26338         * gc.c, object.h: add nice GC handle API for embedders.
26340 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26342         * reflection.c: more changes for the new api
26344         * object.c: When we reflect on a field w/ a constant value, it
26345         will not have a memory location, so we must access metadata. Also,
26346         allow easier reading of strings so that we can read them from
26347         the constant data.
26349         * class.c (mono_class_layout_fields): no need for literal fields here.
26351         * class-internals.h: api changes for const fields
26353         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26355 2004-07-06  Martin Baulig  <martin@ximian.com>
26357         * mono-debug.h: Increment version number to 44.
26359         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26360         now a gpointer, rewrote this whole method.
26362         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26363         function.  Add information about the wrapper in a new "misc table".
26365         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26366         for the new misc table.
26368 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26370         * metadata-internals.h image.c: Add a cache for helper signatures.
26372         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26374 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26376         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26377         delegates from a delegate. Fixes #61033.
26378         
26379         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26380         marshalling of stringbuilder arrays. Fixes #59900.
26382 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26384         * icall.c: Add EnumBuilder:setup_enum_type icall.
26386 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26388         * icall.c: Added a new icall for the property version of
26389         OffsetOfStringData.
26391 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26393         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26394         it has a constant size across platforms.
26396         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26397         stack trace.
26399 2004-06-29  Martin Baulig  <martin@ximian.com>
26401         * mono-debug.c (mono_debug_add_method): Protect the whole function
26402         in mono_debugger_lock(), not just parts of it.
26404 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26406         * reflection.c: make sure padding bytes in heaps are zeroed.
26408 2004-06-24  David Waite  <mass@akuma.org>
26410         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26411         image.c, loader.c, locales.c, marshal.c, metadata.c,
26412         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26413         string-icalls.c, threads.c: change to C90-style comments from C99 /
26414         C++ -style
26416 2004-06-24  Dick Porter  <dick@ximian.com>
26418         * threads.c
26419         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26420         return createdNew.  Fixes bug 60412.
26422         * threads-types.h: 
26423         * icall.c: Add createdNew parameter to CreateMutex icall
26425 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26427         * reflection.c, object-internals.h: save default value in params.
26429 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26431         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26432         no need to build a new path combining that with the application base.
26433         Fixes bug #60442.
26435 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26437         * reflection.c: fixed minor standard compliance issues.
26439 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26441         * reflection.c: fixed issue with encoding some custom attributes
26442         (arrays in properties and fields, bug #60411).
26444 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26446         * reflection.c: fix start address when copying the public key token.
26448 2004-06-23  Martin Baulig  <martin@ximian.com>
26450         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26451         the `exc' object in a static object to put it into the GC's root set.
26453 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26455         * reflection.c: make mono_reflection_setup_internal_class ()
26456         callable a second time to setup a new parent class.
26458 2004-06-23  Dick Porter  <dick@ximian.com>
26460         * threads.c: Check for WAIT_IO_COMPLETION return values.
26462 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26464         * appdomain.c: Removed the g_free on the public key token. Now copy 
26465         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26466         * assembly.c: Added public key token string value when loading 
26467         assemblies. Fix bug #60439.
26468         * icall.c: Added missing informations (like public key) in 
26469         GetReferencedAssemblies. Fix #60519.
26470         * image.h: Changed definition for public key token from const char*
26471         public_tok_value to guchar public_key_token [17];
26472         * reflection.c: Updated for changes to public key token.
26474 2004-06-22  Lluis Sanchez Gual
26476         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26477         for the field in base classes.
26479 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26481         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26482         mark headers as not supported, they are installed only for use by the
26483         debugger.
26485 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26487         * *.c, *.h: avoid namespace pollution in public headers.
26489 2004-06-21  Martin Baulig  <martin@ximian.com>
26491         * exception.c (mono_get_exception_security): It's in
26492         "System.Security", not in "System".
26494         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26495         the exception classes.
26497 2004-06-21  Martin Baulig  <martin@ximian.com>
26499         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26500         Protect the exception object from being finalized.
26502 2004-06-21  Martin Baulig  <martin@ximian.com>
26504         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26505         public function.
26507 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26509         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26510         if it was not loaded before. Fix parts of #60439.
26512 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26514         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26515         code that was broken since Ben's change: wrappers are now
26516         dependent on the method signature only again.
26518 2004-06-21  Martin Baulig  <martin@ximian.com>
26520         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26521         added interface support.
26523 2004-06-21  Martin Baulig  <martin@ximian.com>
26525         * class.c (mono_vtable_get_static_field_data): New public method.
26527 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26529         * filewatcher.c : Windows build fix to be compliant with API changes.
26531 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26533         * class.h, class.c: more accessors.
26534         * metadata.h, metadata.c: prepare for hiding MonoType and
26535         MonoMethodSignature: people should use the accessors from now on
26536         outside of the tree.
26538 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26540         * *.c, *.h: more API cleanups.
26542 2004-06-18  Jackson Harper  <jackson@ximian.com>
26544         * assembly.c: Trace loading assemblies.
26545         * loader.c: Trace loading native libraries.
26546         * mono-config.c: Trace loading config files.
26547         
26548 2004-06-18  Dick Porter  <dick@ximian.com>
26550         * locales.c: Tell ICU the lengths of strings, it can cope with
26551         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26553 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26555         * image.c: swapped name/filename;
26557 2004-06-18  Martin Baulig  <martin@ximian.com>
26559         * mono-debug-debugger.c (write_class): Write the parent class at
26560         the end of the header.
26562 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26564         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26566 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26568         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26569         (bundle_obj): New conditional define.
26570         (BUILT_SOURCES): Remove.
26571         ($(bundle_srcs)): Make parallel-make safe.
26572         (libmonoruntime_la_LIBADD): Make unconditional.
26573         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26574         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26576 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26578         * culture-info-tables.h: It was inconsistent with the latest
26579           supp info files.
26581 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26583         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26584         be loaded.
26586         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26587         with gcc 2.95.
26589 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26591         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26592         cleaned up public header threads.h.
26594 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26596         * Makefile.am, *.c, *.h: more API cleanups.
26598 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26600         * Makefile.am: removed monosn from compilation.
26601         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26602         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26603         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26604         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26605         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26606         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26608 2004-06-15  Jackson Harper  <jackson@ximian.com>
26610         * assembly.c: Make locales lower case when searching the GAC for
26611         assemblies. gacutil will always make locales lowercase when
26612         installing so this effectively makes them case insensitive.
26613         
26614 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26616         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26617         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26618           parameter which allows to choose whether the wait can be interrupted or 
26619           not. Also added the method mono_monitor_enter(), which locks the monitor
26620           using an infinite wait and without allowing interruption.
26621           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26622           interrupted.
26623         * object.h: Added new fields in MonoThread. suspend_event holds the event
26624           used to susped/resume the thread. synch_lock is the lock object to use for
26625           modifying the thread state.
26626         * threads.c: Use the new synch_lock object for locking, instead of "this",
26627           which can generate deadlocks.
26628           Moved thread state change in Thread.Sleep and Thread.Join from managed
26629           to unmanaged code. This avoids a deadlock when the thread was suspended
26630           just after acquiring the thread lock.
26631           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26632           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26633           which is not fully implemented in the io-layer.
26634         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26636 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26638         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26639         threads-types.h: more API cleanups.
26641 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26643         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26644         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26645         threadpool.c, threads.c: first pass at the exported API cleanup.
26647 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26649         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26651 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26653         * icall.c: added internalGetHome.
26655 2004-06-14  Dick Porter  <dick@ximian.com>
26657         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26658         possible to return successfully when '.' or '..' were the only
26659         entries in a directory, but were skipped.  The MonoIOStat was not
26660         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26661         Fixes bug 59574.
26663 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26665         * reflection.c: make binaries run on .Net 1.1 by default.
26667 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26669         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26671 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26673         * marshal.c: keep track of struct size with explicit layout
26674         (bug #59979).
26676 2004-06-12  Martin Baulig  <martin@ximian.com>
26678         * mono-debug-debugger.c: Comment out a debugging g_message().
26680 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26682         * reflection.c, reflection.h: do not free custom attrs that are cached.
26683         * icall.c: use braces to make code clearer.
26685 2004-06-11  Martin Baulig  <martin@ximian.com>
26687         * class.h (MonoInflatedField): New type.
26688         (MonoClassField): Replaced `MonoType *generic_type' with
26689         `MonoInflatedField *generic_info'.
26691         * icall.c
26692         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26694 2004-06-11  Martin Baulig  <martin@ximian.com>
26696         * reflection.c (mono_image_create_method_token): Correctly encode
26697         varargs methods.
26699 2004-06-11  Martin Baulig  <martin@ximian.com>
26701         * metadata.c (mono_metadata_parse_method_signature): When parsing
26702         a MethodDef which has VarArgs, also set sentinelpos if we don't
26703         have any parameters.
26705 2004-06-11  Martin Baulig  <martin@ximian.com>
26707         * verify.c (mono_method_verify): In CEE_CALL, use
26708         mono_method_get_signature() to get the method's signature, unless
26709         we're a PInvoke method.
26711 2004-06-10  Jackson Harper  <jackson@ximian.com>
26713         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26714         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26715         logical name as the supplied path is just a prefix to the gac not
26716         the direct path to it.
26717         
26718 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26720         * reflection.c: make the token for a created method match
26721         the token of the MethodBuilder it was created from
26722         (IKVM requires this behaviour now).
26724 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26726         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26727         reflection.c, socket-io.c: leak fixes.
26729 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26731         * icall.c: handle sentinel pos in vararg methods in position different
26732         from 0.
26734 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26736         * culture-info-tables.h: freshly generated.
26738 2004-06-09  Martin Baulig  <martin@ximian.com>
26740         * loader.c (mono_get_method_constrained): Call `mono_class_init
26741         (constrained_class)'.   
26743 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26745         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26746         any methods. Fixes #59629.
26748 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26750         * culture-info-tables.h: reflecting locale-builder updates.
26752 2004-06-08  Dick Porter  <dick@ximian.com>
26754         * object.h:
26755         * locales.c: Fixed compile warnings, including a real bug in
26756         CompareInfo_internal_compare.
26757         
26758 2004-06-08  Dick Porter  <dick@ximian.com>
26760         * locales.c
26761         (ves_icall_System_Globalization_CompareInfo_internal_index):
26762         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26763         Double-check the resuls of usearches, because ICU currently
26764         ignores most of the collator settings here.  Fixes bug 59720.
26765         
26766 2004-06-08  Dick Porter  <dick@ximian.com>
26768         * locales.c
26769         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26770         Fix memory leak and segfault-causing typo.  No idea how this one
26771         lasted so long without being noticed.
26773 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26775         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26776         any methods. Fixes #59629.
26778 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26780         * assembly.c:
26781         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26782         own the critical section before). Removed dead code (that's done
26783         in the preload hook).
26785         (mono_assembly_load_with_partial_name): call the preload hook.
26787 2004-06-08  Martin Baulig  <martin@ximian.com>
26789         * metadata.c (mono_metadata_signature_alloc): Default
26790         `sentinelpos' to -1.
26792         * reflection.c (mono_image_get_array_token): Likewise.
26794 2004-06-08  Martin Baulig  <martin@ximian.com>
26796         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26798         * metadata.c (mono_metadata_parse_method_signature): When parsing
26799         a MethodDef which has VarArgs, set sentinelpos.
26801         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26802         `gint16' since we're using -1 for non-varargs methods.
26804         * reflection.c
26805         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26806         (method_encode_signature): Added varargs support.
26807         (method_builder_encode_signature): Likewise.
26808         (mono_image_get_varargs_method_token): New static method.
26809         (mono_image_create_method_token): New public method; this is
26810         called via an icall instead of mono_image_create_token() when
26811         calling a varargs method.       
26813 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26815         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26817 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26819         * culture-info-tables.h : Reflecting the latest locale-builder that
26820           fixed empty array representation ({} to {0}).
26822 2004-06-07  Jackson Harper  <jackson@ximian.com>
26824         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26825         looking up extra gac paths. This allows MONO_GAC_PATH to act
26826         exactly like a prefix.
26827         
26828 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26830         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26831         type name before modifying it. Fixes #59405.
26833 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26835         * culture-info.h: added fields for "all datetime patterns".
26836         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26837           _construct_datetime_format ()): fill xxx_patterns fields.
26838         * object.h: added fields for "all datetime patterns" to
26839           MonoDateTimeFormatInfo.
26840         * culture-info-tables.h: reflecting locale-builder updates.
26842 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26844         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26845         the event has no add and remove methods. Fixes #59629.
26847 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26849         * object.c: Fixed possible integer overflow when allocating large
26850         strings.
26852 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26854         * culture-info-tables.h: reflecting locale-builder updates.
26856 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26858         * culture-info-tables.h: reflecting locale-builder updates.
26860 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26862         * culture-info-tables.h: reflecting locale-builder updates.
26864 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26866         * threads.c: Made Thread.Sleep abortable.
26868 2004-06-02  Martin Baulig  <martin@ximian.com>
26870         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26872         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26874 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26876         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26878 2004-05-30  Jackson Harper  <jackson@ximian.com>
26880         * reflection.c: Do not hardcode assembly versions or public key
26881         tokens anymore. All of this except the corlib section was dead
26882         code anyways.
26883         
26884 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26886         * object.c (mono_runtime_invoke_array): Automatically create boxed
26887         objects for byref valuetypes if needed. Fixes #59300.
26888         
26889         * object.c (mono_method_return_message_restore): Handle 
26890         MONO_TYPE_OBJECT as well.
26892 2004-05-28  Jackson Harper  <jackson@ximian.com>
26894         * reflection.c: The modified type encoding was causing build
26895         problems. Reverted for now.
26896         
26897 2004-05-28  Jackson Harper  <jackson@ximian.com>
26899         * reflection.c/h: Take an assembly ref so that we dont create
26900         fully qualified names when encoding types in the same assembly as
26901         the custom attribute being emitted.
26902         * appdomain.c: Increment version number.
26903         
26904 2004-05-26  Duncan Mak  <duncan@ximian.com>
26906         * icall.c
26907         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26908         Set the full version number (major, minor, build, revision).
26910 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26912         * marshal.c (emit_struct_conv): increment src/dst after blit
26913         (mono_marshal_get_managed_wrapper,
26914         mono_marshal_get_native_wrapper): make sure we have marshalling
26915         info before marshalling params (info computation affects
26916         blittable)
26918         * class.c (class_compute_field_layout): correctly deal with
26919         blittable
26920         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26921         value types (as per what windows dows by default)
26922         (mono_class_setup_mono_type): System.ValueType is blittable
26923         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26924         blittable
26926         * marshal.c (mono_marshal_load_type_info): flag types  as
26927         non-blittable if the native layout doesn't match the managed
26928         layout
26930 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26932         * appdomain.c: don't add stuff in the private search path that is
26933         above the application base. If application base is not set, there's
26934         no private search path.
26936 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26938         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26939         byref struct arguments in native->managed marshalling.
26941 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26943         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26944         cache methods using signature (special case for methods
26945         that are value type or string class)
26946         
26947         * image.c (mono_image_close): clean up allocated GSList's
26948         in runtime_invoke_cache.
26950 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26952         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26953         there's no MONO_CFG_DIR environment variable defined.
26955 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26957         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26959 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26961         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26962           is interrumped.
26963         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26964           before waiting for it, and call CloseHandle after the wait to unref it.
26965           This will make sure that handles are not disposed too early.
26967 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26969         * appdomain.c:
26970         * appdomain.h:
26971         * icall.c: removed
26972         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26973         needed now.
26975         * object.c: se the application_base only for the domain that runs
26976         Main. Fixes bug #59216,
26978 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26980         * appdomain.c:
26981         * object.c: only the domain in which Main is run have
26982         SetupInformation.ConfigurationFile set, so moved a few lines from
26983         appdomain.c to object.c.
26985 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26987         * appdomain.c: we tried to load [name].(dll|exe), but according
26988         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26989         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26990         There's a test case attached to bug #58922.
26992 2004-05-27  Dick Porter  <dick@ximian.com>
26994         * icall.c:
26995         * file-io.c: Implemented icalls for locking and unlocking regions
26996         in a file.
26997         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26998         FALSE on error (fixes both compiler warning and real bug.)
27000 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27002         * culture-info-tables.h: reflecting locale-builder updates.
27004           (Added missing ChangeLog entry for 05/26)
27006 2004-05-27  Jackson Harper  <jackson@ximian.com>
27008         * locales.c: Fix some cut and paste errors.
27009         
27010 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27012         * mono-config.c: set the correct path for config. directory on windows.
27014 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27016         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27017           on win32.
27019 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27021         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27022         from pinvoke functions.
27023         
27024         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27026 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27028         * culture-info-tables.h: reflecting locale-builder updates.
27030 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27032         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27033         #59086.
27035 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27037         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27038         * icall.c: Modified icalls for RNG.
27039         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27040         Windows (CryptoAPI).
27042 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27044         * locales.c: Fix build.
27046 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27048         * culture-info-tables.h: reflecting locale-builder updates.
27050 2004-05-25  Jackson Harper  <jackson@ximian.com>
27052         * locales.c: When creating the current culture use the $LANGs
27053         specific culture. So DateTimeFormat and NumberFormat entries are created.
27054         
27055 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27057         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27058         a char array as parameter.
27060 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27062         * image.c: In mono_image_open(), always use an absolute path name to
27063           look for already loaded images.
27065 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27067         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27068         missing in the windows build (like older cygwin include files).
27070 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27072         * icall.c: Fixed check for possible integer overflow in Buffer_
27073         BlockCopy icall. Replaced comments style // by /* */.
27075 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27077         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27078         
27079         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27080         check after MONO_VTADDR. Fixes pinvoke2.exe.
27082         * marshal.h marshal.c metadata.h: Add beginnings of support for
27083         ftnptr -> delegate marshalling.
27085 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27087         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27088         * threads.c: Fix warnings.
27090 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27092         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27093         * icall.c: Registered icalls for Suspend and Resume.
27094         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27095           Thread.Abort.
27096         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27097         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27098         * process.c: Use WaitForSingleObjectEx.
27099         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27100           checkpoints.
27101         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27102           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27103           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27104           background threads. Added basic support for Abort in Windows.
27105           Start new threads using a managed delegate invoke wrapper. This wrapper
27106           has an interruption checkpoint that is needed since an interruption
27107           can be requested before the thread leaves the unmanaged code that starts 
27108           the thread.
27109         * marshal.c: Added interruption checkpoint after every native call, and
27110           also before managed calls for wrappers called from unmanaged code to
27111           go into managed code.
27112         * object.h: Added new field in MonoThread to keep track of interruption
27113           requests.
27115 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27117         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27118         calls.
27120 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27122         * appdomain.c:
27123         * assembly.c:
27124         * gc.c:
27125         * locales.c:
27126         * mono-config.c:
27127         * rand.c: getenv -> g_getenv (windows!)
27129         * process.c: complete_path is also used on non-windows platforms.
27131 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27133         * icall.c: new signature for Process_Start.
27135         * process.[ch]: new signature for Process_Start. If we're on windows
27136         and UseShellExecute is false, we have to search for the program by
27137         ourselves if we don't get a full path.
27139 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27141         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27142         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27144 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27146         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27147         Fixes bug #58373.
27149 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27151         * process.c: use double quotes to quote program name and arguments on
27152         windows. Fixes bug #58575.
27154 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27156         * file-io.c: don't return "." and ".." when using windows Find*File.
27158 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27160         * marshal.c: Don't pass wrappers to message init because method 
27161         addressed used to lookup metadata. part of remoting[2|3] fix.
27163 2004-05-15  Jackson Harper  <jackson@ximian.com>
27165         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27166         path is essentially the same as MONO_PATH except that it points to
27167         GACs instead of lib directories.
27168         * loader.h: The user gac is gone so we dont need function to
27169         enable/disable it.
27170         * mono-config.c: user gac option is now gone.
27171         
27172 2004-05-15  Jackson Harper  <jackson@ximian.com>
27174         * culture-info.h: Make defines more consistent, add calendar data
27175         to the culture info table.
27176         * culture-info-tables.h: Add basic calendar data. Basically
27177         everyone gets default gregorian until all the data is
27178         updated.
27179         * locales.c: Use the new consistent defines. Set calendar data for
27180         culture info objects.
27181         * object.h: add a field for calendar data to CultureInfo
27182         
27183 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27185         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27186         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27187         a signature.
27188         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27189         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27190         an extra param that is the pointer of the method to invoke. The IL for
27191         the invoke method is no longer specific to the method, but to the
27192         signature of the method. Thus, we can share the same code for multiple
27193         methods. This reduces the number of methods that have to be compiled.
27195 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27197         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27199         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27201         * icall.c: Optimize Buffer.BlockCopy.
27203 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27205         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27206         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27207         quote). Changed them to "MMMM yyyy".
27209 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27211         * rand.c
27212         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27214 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27216         * reflection.h: Updated after changes to managed structures.
27218         * appdomain.c: Bump corlib version.
27220 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27222         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27223         windows.
27225 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27227         * Makefile.am: link to ../os/libmonoos.la on windows.
27229         * assembly.c:
27230                 -If MONO_DEBUG, warn about non-existing directories in
27231                 MONO_PATH.
27232                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27233                 compile time variable.
27234                 -Removed init_default_path and call mono_set_rootdir from
27235                 libmonoos.a instead (windows only).
27237         * assembly.h: declare mono_assembly_getrootdir().
27239         * domain.c:
27240         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27242         * loader.c: s/getenv/g_getenv/
27244 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27246         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27248         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27250         * metadata.h: Add new marshalling conversions.
27252         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27253         function.
27255         * reflection.c (mono_reflection_get_type): Lookup the type in all
27256         modules of a multi-module assembly. Fixes #58291.
27258 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27260         * threads.c: Before aborting a background, set the StopRequested
27261         state.  This avoids throwing the Abort exception.
27262         In mono_thread_manage, don't continue with the shutdown until all
27263         aborted threads have actually stopped.
27265 2004-05-10  Jackson Harper  <jackson@ximian.com>
27267         * locales.c: Remove the modifier from culture names.
27268         
27269 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27271         * Makefile.am: monosn is not installed any more. It has been deprecated
27272         in favor of sn.
27274 2004-05-07  Jackson Harper  <jackson@ximian.com>
27276         * locales.c
27277         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27278         Fix array construction, add bailout if the length is 0.
27280 2004-05-07  Dick Porter  <dick@ximian.com>
27282         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27283         machine doesn't have a DNS entry.  Patch by Urs Muff
27284         (umuff@quark.com), fixes bug 57928.
27286 2004-05-06  Jackson Harper  <jackson@ximian.com>
27288         * reflection.c: Handle null PublicTokens properly. alloc mem for
27289         assembly names culture so we dont crash when freeing it.
27290         
27291 2004-05-06  Jackson Harper  <jackson@ximian.com>
27293         * assembly.c: Check the usergac when loading with partial names.
27294         
27295 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27297         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27298         does nothing for now (not required for Linux/Windows) but the class
27299         library can call it (and a newer or modified runtime could need it).
27300         * icall.c: Registred icall.
27302 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27304         * loader.c: prints a message on module loading error we set MONO_DEBUG
27305         environment variable.
27307 2004-05-05  Jackson Harper  <jackson@ximian.com>
27309         * appdomain.c: Handle PublicKeyToken=null properly.
27310         
27311 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27313         * environment.c|h: Added icall ves_icall_System_Environment_
27314         GetOSVersionString to get the current OS version as a string.
27315         * icall.c: Registred icall.
27317 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27319         * object.c: in mono_object_get_virtual_method(), take into account that
27320         non-virtual methods don't have a slot in the vtable. Check needed when
27321         the object is a proxy.
27323 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27325         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27326         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27328         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27330         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27331         passed when a valuetype is expected.
27333         * object.c (mono_unhandled_exception): Only set the exit code if the
27334         exception happens in the main thread. Fixes thread5.exe.
27336         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27337         invalid names. Fixes #58047.
27339 2004-05-03  Jackson Harper  <jackson@ximian.com>
27341         * assembly.c: This line was committed accidently and is unneeded.
27342         
27343 2004-05-03  Jackson Harper  <jackson@ximian.com>
27345         * icall.c: Add new icall for Assembly::LoadWithPartialName
27346         * assembly.c/.h: new function that probes the GAC to load partial
27347         assembly names by Paolo Molaro.
27348         
27349 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27351         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27352         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27353         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27354         full type name.
27356 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27358         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27359         * reflection.c: fix bug when parsing a full type name and Version is not
27360         the last thing in the string.
27362 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27364         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27365         crashes when it is freed.
27367 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27369         * assembly.c: print the compat warning to stderr.
27371 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27373         * assembly.c (mono_assembly_load_references): Add a compatibility
27374         hack to run old applications that might be still referencing the
27375         3300-based assemblies, only do this for System.xxx.
27377 2004-05-01  Jackson Harper  <jackson@ximian.com>
27379         * appdomain.c: If the culture is neutral we set it to "".
27380         
27381 2004-04-29  Jackson Harper  <jackson@ximian.com>
27383         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27385 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27387         * string-icalls.c: added low overhead function for copying chars
27388         * icall.c: added needed icall for the above function
27390 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27392         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27393         Environment.GetLogicalDrives.
27395 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27397         * rand.c: try and talk to egd or prngd
27398         for random bytes if opening devices fail.
27400 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27402         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27403         alignment for the type using the native alignment of its members 
27404         instead of using klass->min_align.
27406         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27408 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27410         * file-io.c:
27411         * socket-io.c: added check for sys/aio.h.
27413 2004-04-28  Dick Porter  <dick@ximian.com>
27415         * threads.c: Don't abort a thread thats already aborting, when
27416         terminating everything.
27418 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27420         * icall.c: added 2 new async calls for Socket.
27422         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27423         IO on *nix systems.
27425         * threadpool.c: removed unused variable.
27427 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27429         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27431 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27433         * locales.c: put back string_invariant_tolower () and
27434         string_invariant_toupper ().
27436 2004-04-26 David Waite <mass@akuma.org>
27438         * file-io.h:
27439         * socket-io.h:
27440         * threads.h:
27441         * unicode.h: remove comma from end of enumeration declarations
27443 2004-04-26 David Waite <mass@akuma.org>
27445         * debug-mono-symfile.h:
27446         * decimal.c:
27447         * mono_debug.h:
27448         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27451 2004-04-26  Jackson Harper  <jackson@ximian.com>
27453         * appdomain.c: Increment version number.
27454         
27455 2004-04-26  Jackson Harper  <jackson@ximian.com>
27457         * appdomain.c: Set assembly references public token value when
27458         PublicKeyToken is specified, not the hash_value. Free public token
27459         values when free assembly name data. Previously the public key
27460         token was hex decoded, however we are using hex encoded public key
27461         tokens, so this is not neccasary.
27462         * assembly.c: Lookup assemblies in the gac if their public token
27463         value is set. Add function to allow enabling user gac
27464         lookups. Specify whether or not the assembly was loaded from the
27465         GAC. Compare full assembly names when checking the cache for
27466         assemblies (Temporarily disabled see comment in code). Remove
27467         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27468         specifies trace-loader they get extra info to stdout on the
27469         loading of assemblies.
27470         * image.h: Add a field for an assembly references public token
27471         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27472         whether an assembly has been loaded from the GAC.
27473         * image.c: Remove a corlib -> mscorlib name mapping.
27474         * loader.h: Add function to enable/disable the user gac.
27475         * mono-config.c: Check if the usergac is enabled in the config
27476         file.
27477         * icall.c: New icall to determine whether or not an assembly has
27478         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27479         * tabldefs.h: Add constant for assemblyref flag that specifies a
27480         full public key is used instead of a public token.
27481         * reflection.c: Remove mscorlib -> corlib mappings. Set
27482         PublicTokenValue instead of hash value. This value is a hex
27483         string so it does not need to be expanded.
27485 2004-04-26  Martin Baulig  <martin@ximian.com>
27487         * mono-debug-debugger.c (mono_debugger_initialize): Set
27488         `mono_debugger_initialized' before calling mono_debug_lock().
27490 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27492         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27493           InternalToUpper/InternalToLower.
27494         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27495           removed invariant culture shortcut.  This is now done in managed code.
27496         * locales.c: (string_invariant_toupper/tolower) removed.
27498 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27500         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27501         Added Poll internal call.
27503         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27504         call for Poll. Select was too heavy for polling a single socket.
27506         * threadpool.[ch]: added mono_threadpool_cleanup.
27507         * threads.c: use it. Don't use Thread_Abort on windows.
27509 2004-04-23  Martin Baulig  <martin@ximian.com>
27511         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27513 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27515         * icall.c: Registred new icalls for key pair protection and added an
27516         icall for Environment.GetFolderPath on Windows.
27517         * security.c|h: Added new icalls for key pair protection.
27519 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27521         * socket-io.c: don't display the non-supported family warning for known
27522         families. Now this is not displayed on windows when checking support
27523         for IPv4/IPv6.
27525 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27527         * class.c: don't display the layout warning for static fields.
27529 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27531         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27532         * locales.c, locales.h: Added new icalls for culture-specific
27533         Char.ToLower and Char.ToUpper.
27535 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27537         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27538         by David Waite.
27540 2004-04-20  Martin Baulig  <martin@ximian.com>
27542         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27543         of the type name before passing it to mono_reflection_type_from_name().
27545 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27547         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27548         encodings here. Fixes #56965.
27550 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27552         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27553         fix test on strstr result not that I can see anything that
27554         relies on the result.
27556 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27558         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27559         Fixes #57081.
27561         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27563         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27564         function to determine which marshalling to use for strings. Fixes
27565         #56965.
27567         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27569         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27571 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27573         * icall.c: #include mono-config.h
27575 2004-04-15  Jackson Harper  <jackson@ximian.com>
27577         * culture-info-tables.h: Fix date formats for en-US culture.
27578         
27579 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27581         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27582         ThreadPool.SetMinThreads.
27583         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27584         ThreadPool.SetMinThreads.
27586 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27588         * mono-config.c: also load the .config file in the directory
27589         where the assembly was found.
27591 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27593         * assembly.c: load per-assembly config files.
27594         * icall.c: decrapified code to get the config dir and moved to
27595         mono-config.c.
27596         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27597         per-assembly config files. When doing a dll map lookup give precedence
27598         to the per-assembly data.
27600 2004-04-14  Martin Baulig  <martin@ximian.com>
27602         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27603         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27604         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27606         * mono-debugger-debugger.c: While the debugger is locked, remember
27607         whether the symbol tables have changes and send one single
27608         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27610 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27612         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27614         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27615         function.
27617         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27618         account when marshalling string arrays. Fixes #56965.
27620 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27622         * icall.c: Add new icalls mapping for security.
27623         * security.c|h: Add internal calls for WindowsIdentity,
27624         WindowsImpersonationContext and WindowsPrincipal.
27626 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27628         * class.c: Added comment to ensure the System.MonoDummy class
27629         is removed when no longer necessary
27631 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27633         * appdomain.c: Pass arguments to the bootstraping exceptions to
27634         minimize JITed methods at boot
27636         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27637         second string to be null.
27639         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27640         Change the protocol to minimize the JIT methods at startup.  Now
27641         it Returns the internal codepage, if the value of "int_code_page"
27642         is 1 at entry, and we can not compute a suitable code page
27643         number, returns the code page as a string.
27645 2004-04-13  Jackson Harper  <jackson@ximian.com>
27647         * culture-info-tables.h: Fix number of decimal digits for all
27648         english locales.
27650 2004-04-13  Jackson Harper  <jackson@ximian.com>
27652         * icall.c: Clairfy out of sync error message. It is not always
27653         your corlib that is out of sync.
27655 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27657         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27658         properties when only the set accessor is overriden. Fixes #55874.
27660 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27662         * assembly.c (mono_assembly_load_references): Make this thread safe.
27663         Fixes #56327.
27665 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27667         * monosn.c: Add missing initialization calls.
27669 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27671         * locales.c:
27672         ves_icall_System_Globalization_CultureInfo_construct_number_format
27673         Fix g_assert so it compiles on fussier compilers re int/ptr
27674         mismatch
27676 2004-04-08  Dick Porter  <dick@ximian.com>
27678         * socket-io.h:
27679         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27680         53992.  Also rearrange the code so that the internal calls return
27681         an error value and exceptions are thrown from managed code.
27683         * icall.c: Add type info to the socket icalls.
27685 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27687         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27688         owes me a beer.
27690 2004-04-07  Martin Baulig  <martin@ximian.com>
27692         * class.c (mono_class_from_generic_parameter): Don't default
27693         `klass->parent' to `mono_defaults.object_type'.
27695 2004-04-07  Martin Baulig  <martin@ximian.com>
27697         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27698         `param->pklass->reflection_info'.       
27700 2004-04-07  Jackson Harper  <jackson@ximian.com>
27702         * culture-info-tables.h: Fix date separator symbol.
27703         
27704 2004-04-07  Martin Baulig  <martin@ximian.com>
27706         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27707         from System.Type to System.MonoType.
27709 2004-04-07  Martin Baulig  <martin@ximian.com>
27711         * reflection.h
27712         (MonoReflectionGenericParam): Added `has_reference_type' and
27713         `has_value_type' fields.
27715         * reflection.c (mono_image_get_generic_param_info): Encode the
27716         correct flags if we have the `class' or `struct' constraint.
27718 2004-04-07  Martin Baulig  <martin@ximian.com>
27720         * reflection.h
27721         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27723 2004-04-07  Jackson Harper  <jackson@ximian.com>
27725         * appdomain.c: Revert extra patches, just wanted to bump the
27726         version number.
27727         
27728 2004-04-07  Jackson Harper  <jackson@ximian.com>
27730         * Makefile.am: Add culture-info private headers.
27731         * icall.c: Add new icalls for contructing locales.
27732         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27733         * locales.h: Declare new culture info construction methods.
27734         * object.h: Add new fields used to avoid the CultureMap to
27735         MonoCultureInfo.
27736         * culture-info.h: Definition of structs used in the culture info
27737         tables.
27738         * culture-info-tables.h: Autogenerated tables that contain culture
27739         info data. This file was generated with the locale-builder tool.
27740         * appdomain.c: Incement corlib version number.
27741         
27742 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27744         * appdomain.c: (mono_runtime_init) move mono_thread_init
27745         to before mono_object_new calls so critical sections
27746         are initialized before use.
27748 2004-04-07  Martin Baulig  <martin@ximian.com>
27750         * icall.c
27751         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27752         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27753         (ves_icall_MonoGenericParam_initialize): Removed.
27754         (monogenericparam_icalls): Removed.
27755         (generictypeparambuilder_icalls): Added new table for
27756         System.Reflection.Emit.GenericTypeParameterBuilder.
27758         * reflection.c
27759         (mono_reflection_define_generic_parameter): Removed.
27760         (mono_reflection_initialize_generic_parameter): This is now called
27761         from GenericTypeParameterBuilder's .ctor.
27763 2004-04-06  Martin Baulig  <martin@ximian.com>
27765         * class.c (mono_class_init): Don't inflate nested classes in a
27766         generic instance.
27767         (mono_type_get_name_recurse): Include the generic arguments for
27768         generic instances and generic type declarations.
27769         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27770         (_mono_class_get_instantiation_name): Removed.
27771         (mono_class_create_generic): Always use `gklass->name' as our name.
27773         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27775         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27776         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27777         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27778         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27779         closed generic methods here.
27781         * reflection.c
27782         (mono_reflection_generic_inst_get_nested_types): Removed.
27783         (inflate_mono_method): Copy the generic parameters from the
27784         MonoMethodHeader into out MonoGenericMethod.
27786 2004-04-06  Martin Baulig  <martin@ximian.com>
27788         * row-indexes.h
27789         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27791         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27793         * reflection.c (build_compressed_metadata): If we have any entries
27794         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27795         set the header version to 1.1.
27797 2004-04-06  Martin Baulig  <martin@ximian.com>
27799         * class.c (mono_class_init): If we're a generic instance,
27800         initialize our nested classes, too.
27801         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27802         suffix. 
27804 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27806         * process.c: quote the argument passed to the shell on windows.
27808 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27810         * threads.c (mono_alloc_special_static_data): Allow this to be
27811         called during startup.
27813 2004-04-02  Martin Baulig  <martin@ximian.com>
27815         * icall.c
27816         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27818 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27820         * icall.c: Fix build.
27822 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27824         * Makefile.am: Added security.c|h.
27825         * icall.c: Added icall for get_UserName;
27826         * security.c: New file for security related icalls. Added function
27827         get_UserName for System.Environment (fix #56144).
27828         * security.h: New. Header file for security.c
27830 2004-04-02  Dick Porter  <dick@ximian.com>
27832         * icall.c: Deleted the icalls that were obsoleted some time ago
27833         by the ICU string code, and which were mixed into the icall
27834         rearranging.  Fixes bug 55969.
27836         * string-icalls.h: 
27837         * string-icalls.c: Deleted the code that those icalls reference.
27839 2004-04-01  Martin Baulig  <martin@ximian.com>
27841         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27843         * class.c (mono_class_from_generic_parameter): Don't set 
27844         TYPE_ATTRIBUTE_INTERFACE.
27845         (my_mono_class_from_generic_parameter): Likewise.
27847 2004-04-01  Martin Baulig  <martin@ximian.com>
27849         * loader.c (find_method): Added an optional `MonoClass *ic'
27850         argument to search in a specific interface.
27851         (mono_get_method_constrained): New public function.
27853 2004-04-01  Martin Baulig  <martin@ximian.com>
27855         * reflection.c (mono_image_get_generic_field_token): Use the
27856         `handleref' cache here.
27858 2004-04-01  Martin Baulig  <martin@ximian.com>
27860         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27862         * reflection.c (create_generic_typespec): Use the `typespec' hash
27863         here, not the `typeref' one.    
27865 2004-04-01  Martin Baulig  <martin@ximian.com>
27867         * class.c (mono_class_inflate_generic_type): Moved the
27868         functionality into a new static inflate_generic_type() which
27869         returns NULL if it didn't do anything.  Only increment the
27870         `mono_stats.inflated_type_count' if we actually inflated
27871         something.
27872         (mono_class_get_full): Check the classes type to see whether we
27873         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27875 2004-04-01  Jackson Harper  <jackson@ximian.com>
27877         * reflection.c: Set culture for assembly references.
27878         
27879 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27881         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27883 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27885         * assembly.c:
27886         (do_mono_assembly_open): the critical section also covers
27887         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27889 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27891         * threads.c:
27892         (mono_manage_threads): abort the background threads when finishing.
27893         Fixes bug #47232.
27895 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27897         * gc.c: only close the done_event handle if there was no timeout.
27898         C-ified comments.
27900 2004-03-30  Martin Baulig  <martin@ximian.com>
27902         * icall.c (icall_entries): It's called "System.Activator", not
27903         "System.Activation".    
27905 2004-03-30  Martin Baulig  <martin@ximian.com>
27907         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27908         (mono_class_create_from_typespec): Likewise.
27910 2004-03-30  Martin Baulig  <martin@ximian.com>
27912         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27913         `has_ctor_constraint' and `initialized'.
27915 2004-03-30  Martin Baulig  <martin@ximian.com>
27917         * reflection.c (encode_new_constraint): New static function to add
27918         the constructor constraint attribute to a type parameter.
27919         (encode_constraints): Call encode_new_constraint() if necessary.
27921         * reflection.h
27922         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27924         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27925         
27926 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27928         * reflection.c, icall.c: add support for pinning variables. 
27930 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27932         * marshal.c (mono_marshal_get_managed_wrapper):
27933         init bool local with zero rather than null.
27935 2004-03-29  Martin Baulig  <martin@ximian.com>
27937         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27938         the "official" behavior here.
27939         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27941 2004-03-29  Martin Baulig  <martin@ximian.com>
27943         * icall.c: Reflect latest API changes.
27945 2004-03-29  Martin Baulig  <martin@ximian.com>
27947         * loader.c (mono_get_method_from_token): Also call
27948         mono_metadata_load_generic_params () for abstract and interface
27949         methods; replace the type arguments in the method signature with
27950         the ones which are loaded from the metadata.
27952 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27954         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27955         of the lock is not the current thread. MS.NET don't do it, in spite of
27956         what the documentation says. See bug #56157.
27958 2004-03-28  Martin Baulig  <martin@ximian.com>
27960         * class.c (mono_class_init): Don't call init_properties() and
27961         init_events() for generic instances; set `prop->parent' when
27962         inflating properties.
27964         * reflection.c (mono_generic_inst_get_object): Call
27965         `mono_class_init (ginst->klass)'.
27966         (mono_type_get_object): Only create a MonoGenericInst if your
27967         generic type is a TypeBuilder.
27968         (do_mono_reflection_bind_generic_parameters): Only set
27969         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27971 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27973         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27974         Fixes #56091.
27976 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27978         * icall.c: added Kill_internal icall.
27979         * process.[ch]: added Kill_internal icall.
27981 2004-03-25  Martin Baulig  <martin@ximian.com>
27983         * class.h (MonoStats): Added `generic_instance_count',
27984         `inflated_method_count', `inflated_type_count' and
27985         `generics_metadata_size'.       
27987 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27989         * reflection.c: no warnings now.
27991 2004-03-25  Martin Baulig  <martin@ximian.com>
27993         * class.c (mono_class_get_full): New public function; does a
27994         mono_class_get(), but also takes a `MonoGenericContext *'.
27996         * loader.c (mono_field_from_memberref): Renamed to
27997         `field_from_memberref', made static and added `MonoGenericContext *'
27998         argument.
27999         (mono_field_from_token): Added `MonoGenericInst *' argument.
28000         (method_from_memberef): Likewise.
28001         (mono_get_method_from_token): Likewise.
28002         (mono_get_method_full): New public function; does a
28003         mono_get_method(), but also takes a `MonoGenericContext *'.
28005         * verify.c (mono_method_verify): Get the method's generic context
28006         and pass it to mono_field_from_token(), mono_get_method_full() and
28007         mono_class_get_full().
28009 2004-03-25  Martin Baulig  <martin@ximian.com>
28011         * class.c (mono_class_inflate_generic_type): Take a
28012         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28013         `MonoGenericMethod *'.
28015 2004-03-25  Martin Baulig  <martin@ximian.com>
28017         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28018         instead of the MonoGenericMethod here.
28020 2004-03-25  Martin Baulig  <martin@ximian.com>
28022         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28023         each time we create a new MonoGenericInst, we also create a new
28024         context which points back to us.
28026         * class.c (inflate_method): Use `ginst->context' instead of
28027         creating a new context.
28029         * loader.c (method_from_memberref): Use
28030         `klass->generic_inst->context' instead of creating a new context.
28032 2004-03-25  Martin Baulig  <martin@ximian.com>
28034         * class.h (MonoGenericContext): New struct.
28035         (MonoGenericMethod): Removed `generic_inst'.
28037         * class.c (mono_class_inflate_generic_method): Take a
28038         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28040 2004-03-25  Martin Baulig  <martin@ximian.com>
28042         * loader.h (MonoMethodInflated): New typedef.
28044         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28045         `generic_param_count' consume just 30 bits, added `is_inflated'
28046         and `has_type_parameters' flags (one bit each).
28048         * class.c (mono_class_inflate_generic_method): Create a
28049         MonoMethodInflated instead of a MonoMethodNormal and set
28050         `is_inflated' in the method signature.
28052         * class.h (MonoGenericMethod): Removed `generic_method'.
28054 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28056         * image.c: Make sure the name of a MonoImage is always an absolute path.
28057           This fixes bug #54415.
28059 2004-03-24  Martin Baulig  <martin@ximian.com>
28061         * class.c (mono_class_setup_vtable): If we're a generic instance,
28062         use our generic type's vtable size.
28064 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28066         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28067         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28068         problems.
28070 2004-03-23  Martin Baulig  <martin@ximian.com>
28072         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28073         `MonoEvent *events'.
28075         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28076         (typebuilder_icalls): Added "get_event_info"; calls
28077         mono_reflection_event_builder_get_event_info(). 
28079         * reflection.c (mono_reflection_generic_inst_initialize): Added
28080         `MonoArray *events'.
28081         (mono_reflection_event_builder_get_event_info): New function.
28083 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28085         * object.h: add mono_type_initialization_init
28087         * object.c (mono_runtime_class_init): 
28088         implement class constructor synchronization rules
28089         to cope with threading issues.  
28090         add mono_type_initialization_init
28092         * appdomain.c (mono_runtime_init): call 
28093         mono_type_initialization_init
28095         * class.h: removing initializing field from MonoVTable
28097 2004-03-23  Martin Baulig  <martin@ximian.com>
28099         * class.c (my_mono_class_from_generic_parameter): Use
28100         `param->name' if it's not NULL. 
28102 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28104         * class.c: do not insert non-virtual methods in the vtable.
28105         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28106         that means the method is non-virtual. This never would have
28107         happened before.
28109 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28111         * profiler.c: Added lock for accessing coverage_hash.
28113 2004-03-22  Martin Baulig  <martin@ximian.com>
28115         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28116         `method->method->signature->generic_param_count != 0' to make it
28117         work for interface methods.
28119 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28121         * process.c: quote the string passed to the shell using g_shell_quote.
28123 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28125         * threads.c:
28126         (mono_threads_manage): don't remove the finalizer thread and self
28127         from the threads hash table so that mono_thread_manage can be called
28128         more than once.
28130 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28132         * process.c: quote the arguments when UseShellExecute is true. Fixes
28133         bug #55790.
28135 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28137         * threads.c: set mono_thread_detach as a cleanup routine for every
28138         thread. This way it's always executed upon thread termination, either
28139         aborted or finished normally. No more xsp hangs!
28141 2004-03-17  Martin Baulig  <martin@ximian.com>
28143         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28144         `int count_nested' and a `MonoType **nested'.
28146         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28147         most of the functionality into a new static
28148         do_mono_reflection_bind_generic_parameters() and don't take a
28149         `MonoType *nested_in' argument any more.  Don't compute nested
28150         types here.
28151         (mono_reflection_generic_inst_get_nested_types): New public method
28152         to get nested types.
28154         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28155         we're a nested class.
28157         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28158         mono_reflection_generic_inst_get_nested_types() to compute the
28159         nested types.
28161 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28163         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28164         descriptive error message under windows.
28165         
28166 2004-03-17  Martin Baulig  <martin@ximian.com>
28168         * class.c (dup_type): Added `const MonoType *original' argument;
28169         copy the attrs from the original type.
28171 2004-03-17  Martin Baulig  <martin@ximian.com>
28173         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28174         `m->generic_inst_cache' here.
28176 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28178         * exception.h exception.c: Add stack_overflow_exception.
28180 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28182         * threadpool.c:
28183         (overlapped_callback): call SetEvent *after* invoking the callback.
28184         No need to call CloseHandle.
28186 2004-03-16  Martin Baulig  <martin@ximian.com>
28188         * reflection.c (mono_image_get_fieldref_token): Take a
28189         `MonoReflectionField *' instead of a `MonoClassField *' and a
28190         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28192 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28194         * appdomain.c: don't add the culture to the filename we're looking for
28195         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28197 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28199         * locales.c: don't ignore symbols when doing case insensitive compares.
28200         Thanks Dick! Fixes bug #54046.
28202         * threads.c: surround 'threads' usage with enter/leave in
28203         mono_thread_manage.
28205 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28207         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28208         implicitly marshalled as [Out]. Fixes #55450.
28210         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28211         an exception.
28213 2004-03-16  Martin Baulig  <martin@ximian.com>
28215         * class.c (mono_class_from_generic_parameter): Use the actual
28216         parameter name. 
28218 2004-03-16  Martin Baulig  <martin@ximian.com>
28220         * reflection.c (type_get_signature_size): New static function.
28221         Compues the size of the type in a method signature.
28222         (method_get_signature_size): New static function; calls
28223         type_get_signature_size() to compute the actual size of the
28224         method's signature.
28225         (method_encode_signature): Use method_get_signature_size() to get
28226         the signature's size rather than using `nparams * 10'.
28228 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28230         * file-io.h: define here WapiOverlapped on windows. I don't want the
28231         regular OVERLAPPED one.
28233         * file-io.c:
28234         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28235         Disabling AIO on windows.
28237 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28239         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28240         bug #55385.
28242 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28244         * appdomain.c: upgraded corlib version.
28246         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28247         and BeginWrite. Allow opening files for asynchrnous operations.
28249         * file-io.h: new struct that maps FileStreamAsyncResult.
28250         * icall.c: added new icalls.
28251         * process.[ch]: support setting child process environment variables
28252         and use the SHELL or COMSPEC when UseShellExecute is true.
28254         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28255         callback for async. IO is here and also BindHandle.
28257         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28258         from here.
28260 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28262         * reflection.c (create_custom_attr): Allow len == 0.
28264         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28265         computation on big-endian machines.
28267 2004-03-13  Martin Baulig  <martin@ximian.com>
28269         * class.h (MonoGenericInst): Added `int count_ifaces'.
28271         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28272         `ginst->count_ifaces' instead `klass->interface_count' since we
28273         may get called before the vtable is created.
28275         * loader.c (mono_method_get_param_names): If we're a generic
28276         instance, return and don't initialize the class.
28278         * reflection.c (mono_reflection_setup_generic_class): Don't call
28279         ensure_runtime_vtable().
28280         (mono_reflection_bind_generic_parameters): Set
28281         `ginst->count_ifaces'.
28283 2004-03-11  Jackson Harper <jackson@ximian.com>
28285         * icall.c:
28286         * unicode.c:
28287         * unicode.h: Remove unused System.Char icalls.
28288         
28289 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28291         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28292         code when we P/Invoke the first library in Windows.Forms, instead
28293         of when we first open the assembly.
28295         * assembly.c: Drop the lookup from here.
28297 2004-03-10  Martin Baulig  <martin@ximian.com>
28299         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28300         class for properties, fields and events.  Finally fixes #54945.
28302 2004-03-10  Martin Baulig  <martin@ximian.com>
28304         * metadata.c (mono_metadata_class_equal): New static function;
28305         checks whether two generic instances or two generic parameters are
28306         equal.
28307         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28308         compare classes.        
28310 2004-03-10  Martin Baulig  <martin@ximian.com>
28312         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28314         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28315         argument and write it into the `reflection_info' field.
28317         * icall.c
28318         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28319         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28321 2004-03-09  Jackson Harper  <jackson@ximian.com>
28323         * char-conversions.h: use 8 bits for numeric data its all we need
28324         * icall.c: numeric data is only 8 bits now.
28326 2004-03-09  Martin Baulig  <martin@ximian.com>
28328         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28330         * class.c (init_properties, init_events): Initialize the new
28331         `parent' field.
28333         * reflection.c (typebuilder_setup_properties): Likewise.
28334         (typebuilder_setup_events): Likewise.
28336         * reflection.h (MonoEventInfo): Replaced `parent with
28337         `declaring_type' and `reflected_type'.
28339         * icall.c (ves_icall_get_property_info): Distinguish between
28340         declaring and reflected type.
28341         (ves_icall_get_event_info): Likewise.
28343 2004-03-09  Martin Baulig  <martin@ximian.com>
28345         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28346         (ves_icall_Type_GetField): Correctly set field->klass.
28348 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28350         * loader.h: Fix warning.
28352 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28354         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28355         library routine if present.  Notice that it will still continue
28356         executing even if its missing, for those working on the Gtk#
28357         edition of Windows.Forms.
28359         * assembly.c (do_mono_assembly_open): If loading the
28360         System.Windows.Forms call mono_loader_wini_init.
28362 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28364         * class.h: Added MonoRemoteClass struct.
28365         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28366         function for MonoStrings.
28367         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28368         Added internal call for getting the proxy type.
28369         * marshal.c: Get the type of transparent proxies from its remote_class.
28370         Added methods that generate the IL for type checks and casts:
28371         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28372         mono_marshal_get_proxy_cancast.
28373         * marshal.h: Declaration of the previous new methods.
28374         * object.c: Added new moethods for creating and updating MonoRemoteClass
28375         instances: mono_remote_class, mono_upgrade_remote_class, 
28376         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28377         * verify.c: FIx transparent_proxy_fields layout.
28378         * appdomain.c: Bump corlib version.
28380 2004-03-04  Jackson Harper  <jackson@ximian.com>
28382         * icall.c: Add icall to access char conversion tables.
28383         * char-conversions.h: Character conversion tables.
28384         * Makefile.am: Add char-conversions.h private header file.
28385         
28386 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28388         * appdomain.c (unload_thread_main): Increase unloading timeout to
28389         10 sec as a temporary workaround for Nant problems.
28391 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28393         * gc.c: Add checks for GC_enable and GC_disable.
28395         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28396         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28397         (bug #54988).
28398         
28399 2004-02-27  Martin Baulig  <martin@ximian.com>
28401         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28402         `MonoReflectionType *' instead of a `MonoType *'.
28404 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28406         * gc.c (run_finalize): Avoid finalizing the object representing the
28407         finalizer thread.
28408         (finalizer_thread): Fix warning.
28410 2004-02-25  Martin Baulig  <martin@ximian.com>
28412         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28413         argument for nested types.
28414         (mono_class_create_generic): Added support for nested generictypes.
28416         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28417         `GList *nested'.
28419         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28421         * reflection.c (method_encode_signature): Increase the minimum
28422         value of `size' from 10 to 11.
28423         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28424         and `MonoType **types' arguments instead of the `MonoArray
28425         *types'; added `MonoType *nested_in'.  Recursively instantiate
28426         nested classes. 
28428 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28430         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28431         stack_overflow_ex members which are used by exception handling.
28433         * appdomain.c (mono_runtime_init): Initialize the new members.
28435         * gc.c (mono_gc_enable): New helper function.
28436         * gc.c (mono_gc_disable): New helper function.
28438 2004-02-23  Martin Baulig  <martin@ximian.com>
28440         * icall.c: I must have been really stupid - make it actually work
28441         this time ;-)
28443 2004-02-23  Martin Baulig  <martin@ximian.com>
28445         * loader.c (method_from_memberref): Only inflate the method if
28446         it's in another klass.
28448 2004-02-23  Martin Baulig  <martin@ximian.com>
28450         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28451         (mono_class_init): If we're a generic instance and an interface,
28452         compute `class->interface_id'; also create `class->interfaces'
28453         here and inflate them.
28455         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28456         `ginst->is_open'.
28457         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28459         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28461 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28463         * reflection.c (method_encode_code): Improved the error message
28464         generated by the exception.
28466 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28468         * icall.c: Martin did not do what he said in the ChangeLog for
28469         2004-02-18, but put back the changes for properties and events.
28470         Commenting those changes out again and adding comment to bug #54518.
28471         
28472         * process.c: removed warning.
28474 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28476         * marshal.c (emit_struct_conv): Print an error message instead of
28477         asserting when a type does not have the StructLayout attribute.
28479 2004-02-20  Martin Baulig  <martin@ximian.com>
28481         * reflection.c (mono_type_get_object): Also use the cache for
28482         generic instances.
28483         (mono_reflection_bind_generic_parameters): Always compute
28484         `ginst->ifaces'.        
28486 2004-02-20  Martin Baulig  <martin@ximian.com>
28488         * class.h (MonoGenericMethod): Removed `klass'.
28490         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28491         *klass' argument.
28493 2004-02-20  Martin Baulig  <martin@ximian.com>
28495         * reflection.c (method_encode_methodspec): Actually use the
28496         uninflated signature for the memberref.
28498 2004-02-20  Martin Baulig  <martin@ximian.com>
28500         * class.h (MonoGenericMethod): Removed `declaring'.
28502         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28503         is NULL, compute it here.
28505 2004-02-20  Martin Baulig  <martin@ximian.com>
28507         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28509         * metadata.c (mono_metadata_generic_inst_hash): New method.
28510         (mono_metadata_generic_inst_equal): New method.
28512         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28513         `klass->image->generic_inst_cache' cache to avoid creating
28514         duplicate MonoGenericInst's.
28516         * class.c (mono_class_inflate_generic_type): Use the cache.
28518 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28520         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28522 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28524         * icall.c: added Socket.WSAIoctl icall.
28526         * socket-io.[ch]: implemented
28527         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28529 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28531         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28533 2004-02-18  Urs C Muff  <umuff@quark.com>
28535         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28536         this work on PPC and other big-endian architectures.
28538         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28539         fields with an underscore to make sure they're only accessed by
28540         the read32() macro.
28542 2004-02-18  Martin Baulig  <martin@ximian.com>
28544         * icall.c: Put the klass->refclass changes back for methods and
28545         fields, but not for properties and events.  We're currently not
28546         distinguishing between DeclaringType and ReflectedType for
28547         properties and events, that's what caused the regressions.
28549 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28551         * object.c:
28552         (mono_async_result_new): the handle can be NULL.
28554         * threadpool.c: Use an event instead of a semaphore, don't initialize
28555         it until needed. This saves quite a few semaphores from being created
28556         when using the threadpool.
28558 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28560         * object.c (mono_string_is_interned_lookup): Fix interning of long
28561         strings. Fixes #54473.
28563         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28565         * icall.c: Revert the klass->refclass changes since they introduce
28566         regressions (bug #54518).
28568 2004-02-18  Martin Baulig  <martin@ximian.com>
28570         * class.c (mono_class_init): If we're a generic instance and don't
28571         come from a TypeBuilder, inflate our members here.
28572         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28573         (mono_class_create_generic): New public method.
28574         (mono_class_initialize_generic): Removed.
28575         (get_instantiation_name): Renamed to
28576         _mono_class_get_instantiation_name() and made it public.
28578 2004-02-18  Martin Baulig  <martin@ximian.com>
28580         * class.c (mono_class_inflate_generic_type): Clear the new
28581         instance's `nginst->klass' when inflating a generic instance.
28582         (mono_class_is_subclass_of): Added (basic) support for generic
28583         instances.
28585 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28587         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28588         MonoMempool to hold compiled native code.
28590 2004-02-17  Martin Baulig  <martin@ximian.com>
28592         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28593         `properties'.
28595         * reflection.c (mono_reflection_generic_inst_initialize): Added
28596         `MonoArray *properties' argument.
28598         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28600 2004-02-17  Martin Baulig  <martin@ximian.com>
28602         * icall.c (ves_icall_Type_GetFields): Renamed to
28603         ves_icall_Type_GetFields_internal() and added a
28604         `MonoReflectionType *rtype' argument; pass it to
28605         mono_field_get_object() to set the field's "reflected" type.
28606         (ves_icall_Type_GetConstructors): Likewise.
28607         (ves_icall_Type_GetEvents): Likewise.
28608         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28609         argument; pass it to mono_method_get_object() to set the method's
28610         "reflected" type.       
28612 2004-02-17  Martin Baulig  <martin@ximian.com>
28614         * class.h (MonoDynamicGenericInst): New type.
28615         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28617         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28618         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28619         (ves_icall_MonoGenericInst_GetFields): New interncall.
28621         * class.c (mono_class_from_generic): Don't call
28622         mono_class_initialize_generic() if this is a dynamic instance;
28623         ie. it's being created from a TypeBuilder.
28624         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28625         `class->byval_arg.type'.
28627         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28628         to `inflate_method' and made static.
28629         (mono_reflection_inflate_field): Removed.
28630         (mono_reflection_generic_inst_initialize): New public method.
28632         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28633         `ctors' and `fields'; added `initialized'.
28635 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28637         * debug-helpers.c (mono_method_full_name): Fix output for empty
28638         namespaces.
28640 2004-02-12  Martin Baulig  <martin@ximian.com>
28642         * class.h (MonoClassField): Added `MonoType *generic_type'.
28644         * reflection.c (mono_image_get_fieldref_token): Added support for
28645         instantiated generic types.
28646         (field_encode_inflated_field): Removed.
28647         (mono_image_get_inflated_field_token): Removed.
28648         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28650         * reflection.h (MonoReflectionInflatedField): Removed.
28652 2004-02-12  Martin Baulig  <martin@ximian.com>
28654         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28655         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28657         * reflection.c (mono_image_get_methodspec_token): Take a
28658         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28659         (mono_image_create_token): Check whether we have a
28660         `method->signature->gen_method' and call
28661         mono_image_get_methodspec_token() if appropriate.
28662         (inflated_method_get_object): Removed.
28663         (mono_reflection_bind_generic_method_parameters): Return a
28664         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28665         (mono_reflection_inflate_method_or_ctor): Likewise.
28667         * reflection.h (MonoReflectionInflatedMethod): Removed.
28669 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28671         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28672         for custom valuetype marshalling.
28674         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28676 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28678         * icall.c: fixed WSAGetLastError_internal name.
28680 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28682         * threads.c (mono_thread_attach): Allow this to be called multiple
28683         times for a thread.
28684         
28685         * threads.c (build_wait_tids): Do not wait for ourselves.
28687         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28688         appdomain list is empty.
28690         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28691         memory returned by mono_string_builder_to_utf16, since it points into
28692         managed memory. Thanks to Bernie Solomon for noticing this.
28694         * icall.c: Add AppDomainSetup icalls.
28696         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28698         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28699         types.
28701         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28702         custom attributes to the method_aux struct. Also fix array indexes etc.
28704         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28705         
28706 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28708         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28709         (both static and runtime) and reduce startup time.
28711 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28713         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28714         AsAny marshalling conversion instead of crashing.
28716         * marshal.c: Fix warnings.
28718 2004-02-09  Martin Baulig  <martin@ximian.com>
28720         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28722         * reflection.h (MonoReflectionInflatedMethod): Removed the
28723         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28725         * reflection.c (method_encode_methodspec): Removed the `method'
28726         argument; we get it from `gmethod->declaring'.
28727         (inflated_method_get_object): Removed the `declaring' argument.
28729 2004-02-09  Martin Baulig  <martin@ximian.com>
28731         * class.h (MonoGenericMethod): New type.
28732         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28733         `generic_method'.
28735         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28736         a `MonoGenericMethod *gen_method' one.
28738         * class.c (mono_class_inflate_generic_type): Take an additional
28739         `MonoGenericMethod * argument.  This is only non-NULL if we're
28740         inflating types for a generic method.   
28741         (mono_class_inflate_generic_signature): Renamed to
28742         inflate_generic_signature() and made static; take a
28743         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28744         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28745         instead of a `MonoGenericInst *' one.
28746         (mono_class_inflate_generic_method): Likewise.
28748         * reflection.c (encode_generic_method_sig): Take a
28749         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28750         (method_encode_methodspec): Likewise.
28751         (inflated_method_get_object): Likewise. 
28753         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28754         field with a `MonoGenericMethod *gmethod' one.  
28756 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28758         * class.h (mono_class_has_parent): add parens to expansion
28759         so you can ! this.
28761 2004-02-08  Martin Baulig  <martin@ximian.com>
28763         * image.h (MonoImage): Removed `generics_cache'.
28765         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28766         instead of a `MonoType *' argument; removed the `inflate_methods'
28767         argument.  Don't inflate methods here.
28769         * loader.c (find_method): If it's a generic instance, call
28770         mono_class_init() on the `sclass->generic_inst->generic_type'.
28772         * metadata.c (mono_type_size): Make this work on uninitialized
28773         generic instances; call it on the `ginst->generic_type's class.
28775         * reflection.c (mono_reflection_bind_generic_parameters): Call
28776         mono_class_from_generic() to create the `ginst->klass'.
28778 2004-02-08  Martin Baulig  <martin@ximian.com>
28780         * class.h (MonoClass): Changed type of `generic_inst' from
28781         `MonoType *' to `MonoGenericInst *'.
28783 2004-02-08  Martin Baulig  <martin@ximian.com>
28785         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28786         mono_type_get_object(), this is now creating a `MonoGenericInst'
28787         for MONO_TYPE_GENERICINST.
28788         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28789         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28791         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28792         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28793         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28794         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28795         and reflected type.
28797         * reflection.h (MonoReflectionInflatedMethod): Removed
28798         `declaring_type' and `reflected_type'.
28800 2004-02-08  Martin Baulig  <martin@ximian.com>
28802         * class.h (MonoGenericInst): Added `MonoType *parent' and
28803         `MonoType **ifaces'.
28805         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28806         `parent' and `interfaces'.
28808         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28809         `MonoType *' argument and return a `MonoType *'.
28811         * icall.c
28812         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28813         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28815 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28817         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28818         valuetype marshalling.
28820 2004-02-06  Martin Baulig  <martin@ximian.com>
28822         * class.c
28823         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28824         (my_mono_class_from_generic_parameter): Likewise.
28826 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28828         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28829         contents of the symbol files lazily.
28831         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28833         * threads.h threads.c icall.c: New icalls for getting and setting the
28834         threads name.
28836 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28838         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28839         Raise an exception when the domain is not found.
28841 2004-02-03  Martin Baulig  <martin@ximian.com>
28843         * reflection.c (mono_image_get_methodspec_token): Use the
28844         uninflated signature; fixes gen-33.
28846 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28848         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28849         the finalizer code can use thread functionality.
28851         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28852         the finalizer thread.
28854         * threads.c: Make some functions more robust.
28856         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28858         * metadata.h: Add new marshalling conventions.
28860         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28861         stringbuilder marshalling. Fixes #53700.
28863         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28865         * reflection.c (mono_image_get_type_info): Save declarative security
28866         info.
28868         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28869         unmanaged fields as well.
28871         * appdomain.c: Bump corlib version.
28873 2004-02-01  Martin Baulig  <martin@ximian.com>
28875         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28876         method type arguments.  
28878 2004-01-30  Duncan Mak  <duncan@ximian.com>
28880         * marshal.h: Add prototype for
28881         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28882         and
28883         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28884         fix the build.
28886 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28888         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28889         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28891 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28893         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28894         custom marshalling of valuetypes.
28896         * marshal.c: Fix some warnings.
28898 2004-01-29  Martin Baulig  <martin@ximian.com>
28900         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28901         for generic method parameters.
28903         * reflection.c (method_encode_methodspec): Write the uninflated
28904         signature into the methodspec table.
28905         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28906         is always the uninflated method.
28907         (reflection_methodbuilder_to_mono_method): Copy the generic
28908         parameters from the MethodBuilder into `header->gen_params'.
28910 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28912         * class.c (mono_class_from_generic_parameter): Fix warning.
28914 2004-01-27  Martin Baulig  <martin@ximian.com>
28916         * class.c (mono_class_from_generic_parameter): Don't create
28917         `klass->methods' here.  
28919 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28921         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28922         extension since it does not work with libraries named lib<FOO>.dll.so.
28924 2004-01-25  Martin Baulig  <martin@ximian.com>
28926         * class.c (mono_class_inflate_generic_type): Added support for
28927         MONO_TYPE_GENERICINST.
28929         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28930         inflate methods on open constructed types.      
28932 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28934         * object.c: fire ProcessExit event in the root AppDomain after running
28935         Main. Fixes bug #53299.
28937 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28939         * socket-io.c: include the new socket-wrappers.h header.
28940         Use the wrappers instead of the unix socket functions to make the code
28941         more clear.
28943 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28945         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28947         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28948         Fixes #22532.
28950 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28952         * reflection.c (mono_image_create_pefile): Handle the case when the
28953         entry point is not a MethodBuilder.
28955         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28956         field to ReflectionMethod since it is not allways a builder.
28958         * reflection.c (type_get_fully_qualified_name): New helper function to
28959         return the fully qualified name of a type.
28961         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28962         type name for custom marshallers.
28964         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28966         * class.c (mono_class_setup_vtable): If a parent class already 
28967         implements an interface, use the implementing methods from that class.
28968         Fixes #53148.
28970 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28972         * threadpool.c: just return instead of ExitThread to allow for thread
28973         clean up earlier.
28975 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28977         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28978         when closing resource modules.
28980         * reflection.c (mono_image_create_pefile): Handle the case when the
28981         entry point is not a MethodBuilder.
28983         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28984         field to ReflectionMethod since it is not allways a builder.
28986 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28988         * marshal.c (mono_marshal_get_managed_wrapper): 
28989         mono_marshal_alloc takes native int so CONV_I
28990         the arg for 64bits.
28992 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28994         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28995         tokens in the cattr table. Fixes #53108.
28997 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28999         * loader.c: don't trim ".dll" before looking up in the config file.
29000         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29002 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29004         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29005         Return the module which contains the resource as well.
29006         (ves_icall_System_Reflection_Module_Close): New icall.
29008         * appdomain.c: Bump corlib version number.
29010         * image.c (mono_image_addref): New public function.
29012         * assembly.c: Call mono_image_addref.
29014         * reflection.c (mono_module_get_object): Increase reference count of 
29015         the image.
29017         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29018         Fixes #22532.
29020         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29021         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29022         proper exceptions on DllImport problems.
29024 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29026         * class.c, metadata.c: eliminate CSIZE macro.
29028 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29030         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29031         * object.h: Added async_callback field in MonoAsyncResult.
29032         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29033         * verify.c: Added async_callback in MonoAsyncResult layout.
29035 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29037         * reflection.c (mono_reflection_get_custom_attrs): Add support
29038         for Modules.
29040 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29042         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29043         marshalling.
29044         (mono_marshal_method_from_wrapper): Add null pointer check.
29046 2004-01-16  Martin Baulig  <martin@ximian.com>
29048         * debug-mono-symfile.h: Set version number to 36 and reflect
29049         latest symbol writer changes.
29051 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29053         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29054         multi-dimensional arrays.
29055         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29056         (mono_class_from_mono_type): Use bounded_array_class_get.
29057         
29058         * class.c (mono_bounded_array_class_get): New function which takes
29059         a 'bounded' bool argument to distinguish vectors from one dimensional
29060         arrays.
29062         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29063         bounded_array_class_get if the array has bounds.
29065         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29066         Search modules loaded using AssemblyBuilder:AddModule as well.
29068 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29070         * appdomain.c: increased corlib version.
29071         * filewatcher.c: removed g_print.
29072         * icall.c:
29073         (get_property_info): only allocate what is actually requested.
29074         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29076 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29078         * Makefile.am: added filewatcher.[ch]
29079         * filewatcher.[ch]: FileSystemWatcher runtime support.
29080         * icall.c: added new FSW icalls.
29082 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29084         * string-icalls.c: fix stringbuilder regression as suggested by
29085         Iain McCoy <iain@mccoy.id.au>.
29087 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29089         * process.c (process_read_stringtable_block): Recognize '007f' as
29090         a language neutral stringtable block.
29092 2004-01-12  Patrik Torstensson
29094         * object.h (MonoStringBuilder) : Changed layout to support our
29095         new stringbuilder class.
29096         * marshal.c: Change marshalling to support the new layout of 
29097         string builder.
29098         * appdomain.c: increased version number because new layout of
29099         string builder.
29101 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29103         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29104         assembly name as an string instead of an AssemblyName, since it is
29105         easier to extract info from it.
29107         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29108         the culture subdirectories too. Fixes #52231.
29110 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29112         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29113         It takes 2 new parameters with an optional name for the method to look
29114         for and case ignoring info.
29116         * threadpool.c: removed unused variable.
29118 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29120         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29121         It takes 2 new parameters with an optional name for the property to look
29122         for and case ignoring info.
29123         Fixes bug #52753.
29125 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29127         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29128         Fix #52451.
29130 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29132         * appdomain.c:
29133         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29134         Fixes bug #52630.
29136 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29138         * reflection.c: Add support for more than one unmanaged resource.
29140         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29141         in field->def_value, as done in all other cases.
29143         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29144         TypeBuilders.
29146         * reflection.c (mono_reflection_create_runtime_class): Remove 
29147         errorneous assignment to klass->element_class, since it is already
29148         done in mono_reflection_setup_internal_class.
29150 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29152         * gc.c: added missing LeaveCriticalSection.
29153         * icall.c: indented a couple of lines.
29154         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29155         if we call EndInvoke inside a callback. Fixes bug #52601.
29157 2004-01-07  Martin Baulig  <martin@ximian.com>
29159         * mono-debug-debugger.h
29160         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29162 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29164         * appdomain.c: Use messages in NotImplementedException.
29166         * exception.c (mono_get_exception_not_implemented): Now this takes
29167         a message argument.
29169         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29170         exception instead of g_asserting an aborting when something is not
29171         implemented.
29173         Add some inline docs.
29175 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29177         * reflection.h: Update after changes to object layout.
29179         * reflection.c: Implement saving of unmanaged aka win32 resources.
29181         * appdomain.c: Bump version number.
29183         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29184         Handle missing domains gracefully.
29186 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29188         * file-io.c : On Windows, there are much more invalid_path_chars.
29190 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29192         * class.h, object.c: prepare for GetType () speedup.
29194 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29196         * profiler.c: workaround for --profile null reference exception on
29197           cygwin. Patch by Patrik Torstensson.
29199 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29201         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29202         make work for unaligned access.
29204 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29206         * class.c: small cleanup (class->fields [i] -> field).
29207         * image.c: check address of metadata is valid.
29209 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29211         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29212         search the list of loaded assemblies.
29214         * reflection.c (mono_reflection_type_from_name): Use 
29215         mono_assembly_loaded instead of mono_image_loaded.
29217         * reflection.c: Fix warnings.
29219 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29221         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29222         is dynamic. This is needed since an assembly can contain both dynamic and
29223         non-dynamic images.
29225         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29226         assembly->dynamic.
29228         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29230         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29231         to store modules loaded using AddModule.
29233         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29234         on Modules.
29236         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29238         * reflection.c (mono_image_fill_export_table_from_module): New function to
29239         fill out the EXPORTEDTYPES table from a module.
29241         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29242         into a separate function. Also handle loaded non-dynamic modules.
29244         * reflection.c (mono_image_basic_init): Fix memory allocation.
29246         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29248         * assembly.c (mono_assembly_load_references): Make this public.
29250 2003-12-19  Martin Baulig  <martin@ximian.com>
29252         * class.c (mono_class_initialize_generic): Made this static, take
29253         a `MonoGenericInst *' instead of a `MonoClass *'.
29254         (mono_class_from_generic): Call mono_class_initialize_generic()
29255         unless we're already initialized or being called from
29256         do_mono_metadata_parse_generic_inst().
29258         * class.h (MonoGenericInst): Added `initialized' and
29259         `init_pending' flags.
29261         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29262         `mono_class_init (gklass)' or mono_class_initialize_generic()
29263         here; set `generic_inst->init_pending' while parsing the
29264         `type_argv'.
29266 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29268         * locales.c: include string.h for memxxx prototypes
29270 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29272         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29273         constructor when accessing literal fields.
29275 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29277         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29279         * reflection.c (assembly_add_resource_manifest): New function to fill
29280         the MANIFESTRESOURCE table.
29282         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29284         * reflection.h: Update to changes in class layout.
29286         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29287         Reenable call to mono_runtime_is_shutting_down ().
29289         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29290         determine if the runtime is shutting down.
29292 2003-12-16  Jackson Harper <jackson@ximian.com>
29294         * icall.c: comment out call to mono_runtime_is_shutting_down to
29295         fix build.
29296         
29297 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29299         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29300         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29302 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29304         * reflection.c: move definition of swap_with_size
29305         to before its first call
29307 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29309         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29311         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29312         icall.
29314         * object.c: Fix warnings.
29316         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29317         members if FlattenHierarchy is set.
29319         * reflection.c (mono_image_add_decl_security): New function to emit
29320         declarative security.
29322         * reflection.h reflection.c: Add support for declarative security.
29324         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29325         
29326 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29328         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29329         
29330         * appdomain.c verify.c: Moved corlib version checking into its own
29331         function in appdomain.c since it needs to create vtables etc.
29333 2003-12-13  Patrik Torstensson <p@rxc.se>
29335         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29336         instead of unwrapped server.
29338 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29340         * verify.c (check_corlib): Fix field index.
29342 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29344         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29345         GetGacPath icall.
29347 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29349         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29350         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29351         cope with sizeof(size_t) != sizeof(guint32).
29353 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29355         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29356         in case of failure.
29358 2003-12-10  Mark Crichton <crichton@gimp.org>
29360         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29361         in managed code.
29363         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29365 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29367         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29368         marked as deleted.
29370 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29372         * verify.c (check_corlib): Handle the case when the version field is 
29373         initialized by a static constructor.
29375 2003-12-08  Patrik Torstensson  <p@rxc.se>
29377     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29379 2003-12-08  Martin Baulig  <martin@ximian.com>
29381         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29382         a MonoReflectionGenericParameter, also take the parameter index
29383         and name as arguments.
29384         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29385         (ves_icall_MonoGenericParam_initialize): New interncall.
29386         (ves_icall_Type_make_byref_type): New interncall.
29388         * reflection.h (MonoReflectionGenericParam): Derive from
29389         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29390         `index' fields.
29392         * reflection.c (mono_reflection_define_generic_parameter): Create
29393         and return a new MonoReflectionGenericParam; don't initialize the
29394         constraints here.
29395         (mono_reflection_initialize_generic_parameter): New public method;
29396         initializes the constraints and creates the `param->pklass'.
29398 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29400         * reflection.h reflection.c: Use the new fields 'num_types', 
29401         'num_fields' and 'num_methods' to track the number of types etc.
29403         * verify.c (check_corlib): Check corlib version number.
29405 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29407         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29408         function works on all methods.
29410 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29412         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29413         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29414         the custom_type_info flag of the transparent proxy.
29415         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29416         objects that supports IRemotingTypeInfo.
29417         * object.h: Added custom_type_info field in transparent proxy.
29419 2003-12-06  Martin Baulig  <martin@ximian.com>
29421         * class.c (mono_class_create_from_generic): Removed.
29422         (mono_class_from_generic): Check `ginst->klass' before doing
29423         anything else.  This is important to fully support "recursive"
29424         generic types.
29426         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29427         empty `generic_inst->klass' before doing anything else.
29429 2003-12-06  Dick Porter  <dick@ximian.com>
29431         * verify.c: 
29432         * object.h:
29433         * icall.c:
29434         * locales.c: Use C structs to access class fields.  Don't do a
29435         conversion between MonoString and UChar because both are
29436         platform-endian UTF-16.  Compare now takes startindex and count
29437         parameters.  Add a char overload for IndexOf.  Speed up the
29438         invariant string IndexOf.
29440 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29442         * Makefile.am (monosn_LDADD): Fix parallel build.
29444 2003-12-04  Martin Baulig  <martin@ximian.com>
29446         * icall.c
29447         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29448         (ves_icall_Type_make_array_type): New interncall.       
29450 2003-12-04  Martin Baulig  <martin@ximian.com>
29452         * locales.c: also change it in the !HAVE_ICU case.
29454 2003-12-04  Dick Porter  <dick@ximian.com>
29456         * icall.c:
29457         * locales.c: construct_compareinfo is now in CompareInfo, not
29458         CultureInfo.
29460 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29462         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29463         image->files array.
29465         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29466         table as well.
29468         * assembly.c (mono_assembly_load_references): Only load references
29469         once.
29471         * class.c (mono_class_from_name): Avoid linear search of the 
29472         EXPORTEDTYPE table.
29474         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29476 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29478         * image.h (MonoImage): Add 'field_cache' field.
29480         * loader.c (mono_field_from_token): Cache field lookups.
29481         
29482         * reflection.c (mono_module_get_object): Fix name property.
29484         * icall.c (ves_icall_get_enum_info): Update after changes to 
29485         mono_metadata_get_constant_index ().
29487         * icall.c: Get rid of get_type_info icall, use a separate icall for
29488         each type property to avoid needless memory allocations. Fixes #51514.
29490         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29491         to avoid needless binary searches.
29493         * class.c (class_compute_field_layout): Move the initialization of
29494         field->def_value to mono_class_vtable ().
29496         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29497         non-corlib types.
29499         * object.c (mono_object_allocate): Make it inline.
29501         * object.c (mono_object_allocate_spec): Make it inline.
29502         
29503 2003-12-02  Dick Porter  <dick@ximian.com>
29505         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29506         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29508 2003-12-01  Dick Porter  <dick@ximian.com>
29510         * threads.c: Fix signature and call in CreateMutex and
29511         CreateEvent.
29513 2003-12-01  Dick Porter  <dick@ximian.com>
29515         * icall.c: 
29516         * locales.c: Implement string compares and searching
29518         * object.h: Add extra Thread field
29520 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29522         * reflection.c (fixup_method): Add support for MonoCMethod.
29524 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29526         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29528         * reflection.c (assembly_name_to_aname): Allow extra characters in
29529         assembly names. Fixes #51468.
29531 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29533         * exception.c (mono_exception_from_name_domain): New helper function.
29535         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29536         exception object in the correct domain.
29538         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29539         formatting + make a copy a the input data.
29541         * loader.c (mono_get_method_from_token): Methods which contain
29542         native code do not have entries in the ImplMap.
29544         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29545         Thanks to Gonzalo for spotting this.
29546         
29547         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29548         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29550         * assembly.h (mono_assembly_load_from): Split the second part of 
29551         assembly loading into a new public function.
29553         * exception.h (mono_get_exception_bad_image_format): New function.
29555 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29557         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29558         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29559         
29560         * icall.c: Add new icall for creating dynamic methods.
29562         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29564         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29566         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29567         create a dynamic method.
29569         * reflection.c (resolve_object): New helper function.
29571         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29572         which manipulate it so they can also work on dynamic methods.
29574         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29575         creating the MonoReflectionMethodAux structure if it is not needed.
29576         
29577         * reflection.h verify.c: Update after changes to object layout.
29579         * reflection.c (method_builder_encode_signature): Fix compilation on
29580         gcc 2.95.x.
29582 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29584         * appdomain.h: Added support for context static fields. Added static_data
29585           field to MonoAppContext and renamed thread_static_fields to a more
29586           generic special_static_fields in MonoAppDomain, since it can now contain
29587           context static fields.
29588         * domain.c: Updated hashtable name.
29589         * object.c: Replaced field_is_thread_static() for a more generic
29590           field_is_special_static() which also checks for context static attribute.
29591           In mono_class_vtable(), added support for static context fields.
29592         * threads.c: Changed methods that manage thread static fields to more
29593           generic methods so they can be reused both for thread and context static
29594           data.
29595         * threads.h: Declared some new methods.
29597 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29599         * reflection.h: Update after changes to the managed types.
29601         * reflection.c (encode_custom_modifiers): New helper function.
29603         * reflection.c (method_encode_signature): Emit custom modifiers.
29605         * reflection.c (field_encode_signature): Emit custom modifiers.
29607 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29609         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29611         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29612         implementation.
29614         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29615         icall.
29617         * object.c (mono_field_get_value_object): New function.
29619         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29620         specific.
29622 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29624         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29625         return a preallocated out-of-memory exception instance.
29627         * object.c (out_of_memory): Use the new function.
29629         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29630         flag is before the custom modifiers. Fixes #49802.
29632 2003-11-16  Martin Baulig  <martin@ximian.com>
29634         * class.c (mono_class_is_open_constructed_type): Implemented the
29635         MONO_TYPE_GENERICINST case.
29637 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29639         * assembly.c (mono_assembly_fill_assembly_name): New function to
29640         fill out the MonoAssemblyName structure.
29641         (mono_assembly_open): Use the new function.
29643         * icall.c (fill_reflection_assembly_name): New helper function.
29645         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29646         new function.
29648         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29650 2003-11-15  Martin Baulig  <martin@ximian.com>
29652         * class.c (mono_class_is_open_constructed_type): New public
29653         function; checks whether a type is an open constructed type,
29654         ie. whether it still contains type parameters.
29655         (mono_class_inflate_generic_type): If we're a type parameter and
29656         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29657         type.
29659         * class.h (MonoGenericInst): Added `guint32 is_open'.
29661         * loader.c (method_from_methodspec): Check whether we're an open
29662         or closed constructed type and set `ginst->is_open'.
29664         * reflection.c (mono_reflection_bind_generic_parameters): Check
29665         whether we're an open or closed constructed type and set
29666         `ginst->is_open'.
29667         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29668         from open constructed types.
29670 2003-11-15  Martin Baulig  <martin@ximian.com>
29672         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29673         a generic instance (instead of a generic type declaration) with
29674         unbound generic parameters, bind them to our actual types.
29676 2003-11-14  Martin Baulig  <martin@ximian.com>
29678         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29680         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29681         an interface type, populate `res->interfaces' with instantiated
29682         versions of all the interfaces we inherit.
29684 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29686         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29687         when MONO_PATH is set but doesn't contain the install dir.
29689 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29691         * icall.c:
29692         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29693         it's also implemented in base classes. Fixes bug #50927.
29695 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29697         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29698         if this method is called from a finalizer. Fixes #50913.
29700 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29702         * threads.c: Implement VolatileRead/VolatileWrite
29704         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29706 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29708         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29709         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29710         2.95.3.
29712         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29713         from Peter Ross (pro@missioncriticalit.com).
29714         
29715 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29717         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29719 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29721         * assembly.c (mono_assembly_load_references): Disable check because it
29722         triggers on older corlibs which lots of people have.
29724 2003-11-12  Jackson Harper  <jackson@ximian.com>
29726         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29727         load corlib.dll if mscorlib.dll is not found.
29728         * assembly.h: Remove corlib name define.
29729         * class.c:
29730         * domain.c:
29731         * image.c: Change corlib name to mscorlib.
29732         
29733 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29735         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29737 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29739         * appdomain.h: Added loader_optimization here to sync with the C#
29740         code, and add disallow_binding_redirects field.
29742 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29744         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29746         * reflection.c (mono_image_build_metadata): Fix crash on modules
29747         with no types.
29749         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29751         * icall.c (ves_icall_get_method_info): Return callingConvention as
29752         well.
29754         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29755         namespaces from the EXPORTEDTYPE table as well.
29757         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29758         from all modules inside the assembly.
29759         
29760 2003-11-11  Martin Baulig  <martin@ximian.com>
29762         * reflection.c (mono_reflection_bind_generic_parameters): Make
29763         this work for interfaces.
29765 2003-11-11  Martin Baulig  <martin@ximian.com>
29767         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29769 2003-11-11  Martin Baulig  <martin@ximian.com>
29771         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29772         "MonoInflatedMethod" and "MonoInflatedCtor".
29774 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29776         * reflection.c (resolution_scope_from_image): Use the assembly table
29777         from the manifest module, since other modules don't have it.
29779         * debug-helpers.c (mono_type_full_name): New helper function.
29781         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29783         * image.c (mono_image_load_file_for_image): New public function which
29784         is a replacement for the load_file_for_image in class.c.
29786         * assembly.c (mono_assembly_load_module): A wrapper for the function
29787         above which does assembly association and reference loading too.
29789         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29791 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29793         * appdomain.c: not all of the attributes for the full assembly name
29794         are required and the order doesn't matter. Fixes bug #50787.
29796 2003-11-10  Dick Porter  <dick@ximian.com>
29798         * locales.c: Use platform-endian UTF16
29800 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29802         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29803         
29804 2003-11-10  Martin Baulig  <martin@ximian.com>
29806         * metadata.c
29807         (mono_metadata_load_generic_params): Make this actually work.
29809         * reflection.c (mono_reflection_bind_generic_parameters): If our
29810         parent is a generic instance, pass all the `types' to it, no
29811         matter whether it has the same number of type parameters or not.
29813 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29815         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29817         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29818         assignment code to this function so it gets called recursively for all
29819         modules.
29821         * image.c (load_modules): Remove the assembly assignment since it is
29822         now done by mono_assembly_load_references.
29823         
29824         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29825         Add 'module' argument.
29826         (mono_module_get_types): New helper function.
29827         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29829 2003-11-08  Martin Baulig  <martin@ximian.com>
29831         * class.c (mono_class_inflate_generic_method): Interface method
29832         don't have a header.
29834         * reflection.c (mono_image_get_methodspec_token): Take an
29835         additional `MonoGenericInst *' argument instead of reading it from
29836         the header; this is necessary to support interfaces.
29837         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29838         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29839         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29840         argument.
29842         * reflection.h (MonoReflectionInflatedMethod): Added
29843         `MonoGenericInst *ginst'.
29845 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29847         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29849 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29851         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29853 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29855         * reflection.c 
29856         (reflection_methodbuilder_from_method_builder):
29857         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29858         initialize a ReflectionMethodBuilder structure.
29859         (mono_image_get_methodbuilder_token):
29860         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29861         tokens which point to types in another module inside the same assembly.
29863         * reflection.c: Use the new helper functions.
29864         
29865         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29867         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29868         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29870         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29871         neccesary.
29873         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29874         current module. Emit the manifest only for the main module.
29876         * reflection.c (mono_image_create_token): Add assertion when a 
29877         memberref needs to be created.
29879         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29881         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29882         larger buffer for the custom attribute blob. Fixes #50637.
29883         
29884 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29886         * threadpool.c: notify listener on async processing handles after
29887         invoking the async callback. Thanks to Zoltan.
29889 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29891         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29892         avoid code duplication.
29894         * reflection.h (MonoDynamicImage): New type which is currently unused,
29895         but will be used through the ref.emit code in place of 
29896         MonoDynamicAssembly.
29898         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29899         object layout.
29901         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29902         a MonoDynamicImage instead of just a MonoImage.
29903         
29904         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29905         icalls to ModuleBuilder but keep their semantics, so they will work
29906         with moduleb->assemblyb. This will change later.
29907         
29908 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29910         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29911         object layout.
29913         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29914         main module, since it is now done by the managed code.
29916 2003-11-03  Martin Baulig  <martin@ximian.com>
29918         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29919         `ginst->klass' here.
29920         (method_encode_methodspec): Don't use the `ginst->generic_method's
29921         klass if it's a generic instance, use `ginst->klass' in this case.
29923 2003-11-03  Martin Baulig  <martin@ximian.com>
29925         * reflection.c (mono_image_get_generic_method_param_info):
29926         Removed, use mono_image_get_generic_param_info() instead.
29927         (mono_image_get_type_info): Write the GenericParam table before
29928         the Method table.  This is neccessary because in the GenericParam
29929         table, type parameters of the class (ie. '!0' etc.) must come
29930         before the ones from its generic methods (ie. '!!0' etc).
29932 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29934         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29936 2003-11-02  Martin Baulig  <martin@ximian.com>
29938         * reflection.c (create_generic_typespec): Take a
29939         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29940         the generic parameters from it.
29942 2003-11-02  Martin Baulig  <martin@ximian.com>
29944         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29945         instead of a `MonoClassField *' since we just need the type.
29946         (create_generic_typespec): New static function.  Creates a
29947         TypeSpec token for a generic type declaration.
29948         (mono_image_get_generic_field_token): New static function.
29949         (mono_image_create_token): If we're a FieldBuilder in a generic
29950         type declaration, call mono_image_get_generic_field_token() to get
29951         the token.
29953 2003-11-02  Martin Baulig  <martin@ximian.com>
29955         * reflection.h
29956         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29957         `MonoReflectionGenericInst *declaring_type' and
29958         `MonoReflectionGenericInst *reflected_type' fields.
29960         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29961         `MonoReflectionGenericInst *declaring_type' and a
29962         `MonoReflectionGenericInst *reflected_type' argument instead of a
29963         single `MonoReflectionGenericInst *type' one.  Set
29964         `res->declaring_type' and `res->reflected_type' from them.
29965         (mono_reflection_inflate_field): Likewise.      
29967 2003-11-02  Martin Baulig  <martin@ximian.com>
29969         * class.c (mono_class_setup_vtable): Don't store generic methods
29970         in the vtable.  
29972 2003-11-02  Martin Baulig  <martin@ximian.com>
29974         * reflection.h (MonoReflectionGenericInst): Added
29975         `MonoReflectionType *declaring_type'.
29977         * reflection.c (mono_reflection_bind_generic_parameters): Use
29978         `if (tb->parent)' instead of `klass->parent'.
29980 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29982         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29983         with an empty ASSEMBLY table.
29985         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29986         variable in the inner and outer loops.
29988 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29990         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29991         argument.
29993         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29994         
29995         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29996         icalls. Instead, do everything in managed code. This is needed since
29997         it is hard to restore the original domain etc. in unmanaged code in the
29998         presence of undeniable exceptions.
30000         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30001         New icalls to push and pop appdomain refs.
30003 2003-10-31  Martin Baulig  <martin@ximian.com>
30005         * class.c (inflate_generic_type): Renamed to
30006         mono_class_inflate_generic_type() and made it public.
30008         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30009         New interncall.
30011         * loader.c (mono_field_from_memberref): Also set the retklass for
30012         typespecs.
30014         * fielder.c (mono_image_get_inflated_field_token): New static
30015         method; creates a metadata token for an inflated field.
30016         (mono_image_create_token, fixup_method): Added support for
30017         "MonoInflatedField".
30018         (fieldbuilder_to_mono_class_field): New static function.
30019         (mono_reflection_inflate_field): New public function.
30021         * reflection.h
30022         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30023         (MonoReflectionInflatedField): New typedef.     
30025 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30027         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30028         for Solaris and other platforms without s6_addr16
30030 2003-10-30  Martin Baulig  <martin@ximian.com>
30032         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30033         argument instead of two.
30034         (mono_class_inflate_generic_signature): Likewise.
30035         (inflate_generic_header): Likewise.
30036         (mono_class_inflate_generic_method): Likewise.  In addition, if
30037         `ginst->klass' is set, it becomes the new `method->klass'.
30039         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30040         field.
30042         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30043         first byte. [FIXME]
30044         (method_encode_methodspec): If we have generic parameters, create
30045         a MethodSpec instead of a MethodRef.
30046         (fixup_method): Added support for "MonoInflatedMethod" and
30047         "MonoInflatedCtor".
30048         (mono_image_create_token): Added support for "MonoInflatedMethod"
30049         and "MonoInflatedCtor".
30050         (inflated_method_get_object): New static function; returns a
30051         managed "System.Reflection.MonoInflatedMethod" object.
30052         (mono_reflection_bind_generic_method_parameters): Return a
30053         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30054         (mono_reflection_inflate_method_or_ctor): Likewise.
30055         (mono_image_get_generic_method_param_info): Initialize unused
30056         fields to zero.
30057         (mono_image_get_generic_param_info): Likewise.
30059         * reflection.h (MonoReflectionInflatedMethod): New public
30060         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30061         "S.R.MonoInflatedCtor" classes.
30063         * loader.c (method_from_memberref): If we're a TypeSpec and it
30064         resolves to a generic instance, inflate the method.
30066 2003-10-28  Dick Porter  <dick@ximian.com>
30068         * object.c (mono_runtime_run_main): Convert command-line arguments
30069         into utf8, falling back to the user's locale encoding to do so.
30071 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30073         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30074         at this time.
30076         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30078         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30079         up icalls at method definition time. Partially fixes #33569.
30081 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30083         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30084         marshalling of arrays. Fixes #50116.
30086         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30088         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30089         points to a vtable in the dying appdomain.
30091         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30092         listeners into unmanaged code inside the lock.
30094         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30095         domains and add some comments.
30097 2003-10-25  Martin Baulig  <martin@ximian.com>
30099         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30101         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30103         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30104         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30105         currently parsing.  Create the generic class and store it in
30106         `generic_inst->klass' before parsing the type arguments.  This is
30107         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30108         for an example.
30109         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30110         to support recursive typespec entries.
30112         * class.c (mono_class_setup_parent): If our parent is a generic
30113         instance, we may get called before it has its name set.
30114         (mono_class_from_generic): Splitted into
30115         mono_class_create_from_generic() and mono_class_initialize_generic().
30117 2003-10-25  Martin Baulig  <martin@ximian.com>
30119         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30120         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30121         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30122         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30124         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30125         (create_typespec): Likewise.
30126         (mono_reflection_bind_generic_parameters): Return a
30127         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30128         (mono_reflection_inflate_method_or_ctor): New public function.
30130         * reflection.h (MonoReflectionGenericInst): New typedef.        
30132 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30134         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30135         inside the domain lock. Fixes #49993.
30136         
30137         * object.c (mono_class_vtable): When typed allocation is used, 
30138         allocate vtables in the GC heap instead of in the mempool, since the
30139         vtables contain GC descriptors which are used by the collector even
30140         after the domain owning the mempool is unloaded.
30142         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30144         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30145         reflect what it does. Also invalidate mempools instead of freeing
30146         them if a define is set.
30148         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30149         of the appdomain.
30150         
30151         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30152         hold the finalizable objects in this domain.
30154         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30155         appdomain.
30157         * appdomain.c (mono_domain_set): New function to set the current
30158         appdomain, but only if it is not being unloaded.
30160         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30161         appdomain which is being unloaded.
30162         
30163         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30164         unloading of the root appdomain.
30166         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30167         icall to execute a method in another appdomain. Intended as a 
30168         replacement for InternalSetDomain, which can confuse the code 
30169         generation in the JIT.
30171         * appdomain.c (mono_domain_is_unloading): New function to determine
30172         whenever an appdomain is unloading.
30174         * appdomain.c (mono_domain_unload): New function to correctly unload
30175         an appdomain.
30177         * assembly.c (mono_assembly_load_references): Check that an assembly
30178         does not references itself.
30180         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30181         domain manually, it asks the finalizer thread to do it, then waits for
30182         the result. Also added a timeout.
30184         * icall.c: Register the new icalls.
30186         * threads.h threads.c: Export the mono_gc_stop_world and 
30187         mono_gc_start_world functions.
30188         
30189         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30190         function to fill out the mempool with 0x2a.
30192 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30194         * reflection.h (MonoReflectionMethodAux): New structure to store
30195         information which is rarely used, thus is not in the MonoMethod
30196         structure.
30198         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30199         store the aux info.
30201         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30202         and marshalling info into the aux structure.
30204         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30205         from the aux structure.
30207         * loader.c (mono_method_get_param_names): Retrieve the param names from
30208         the aux structure.
30209         
30210 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30212         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30213         warning.
30215 2003-10-21  Dick Porter  <dick@ximian.com>
30217         * socket-io.c
30218         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30219         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30221 2003-10-21  Martin Baulig  <martin@ximian.com>
30223         * reflection.c (mono_reflection_bind_generic_parameters):
30224         `klass->parent' is NULL for interfaces.
30226 2003-10-21  Martin Baulig  <martin@ximian.com>
30228         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30230 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30232         * exception.c (mono_exception_from_name_msg): New helper function for
30233         creating exceptions and initializing their message field.
30235         * exception.c: Simplify functions using the new helper.
30237         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30238         New function.
30240         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30241         mono_raise_exception, since otherwise gcc doesn't generate the function
30242         epilog for raise_exception, confusing the stack unwinding in the JIT.
30243         Fixes #45043.
30245         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30246         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30247         Fixes #49499.
30249 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30251         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30252         utf8.
30254 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30256         * icall.c: Removed GetUninitializedObject method because
30257           AllocateUninitializedClassInstance does the same.
30259 2003-10-18  Martin Baulig  <martin@ximian.com>
30261         * class.c (inflate_generic_signature): Renamed to
30262         mono_class_inflate_generic_signature() and made it public.
30263         (my_mono_class_from_generic_parameter): New static function; if we
30264         don't already have the generic parameter's MonoClass, create a
30265         very simple one which is just used internally in the runtime and
30266         not passed back to managed code.
30268         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30270         * metadata.h (MonoMethodSignature): Moved the
30271         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30272         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30274         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30275         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30276         interncall on the MonoMethod class, not on MethodInfo.
30277         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30278         calling mono_reflection_bind_generic_method_parameters() directly.
30280         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30281         return the already computed `method->signature'.
30282         (method_from_methodspec): New static function to load a method
30283         from a MethodSpec entry.
30284         (mono_get_method_from_token): Call the new method_from_methodspec()
30285         for MethodSpec tokens.  
30286         (mono_get_method_from_token): If we're a generic method, load the
30287         type parameters.
30289         * reflection.c (mono_image_get_memberref_token): Allow
30290         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30291         table.
30292         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30293         (mono_image_create_token): First check whether it's a generic
30294         method (so we'd need to create a MethodSpec), then do the other
30295         two alternatives.
30296         (mono_reflection_bind_generic_method_parameters): Return a
30297         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30298         called directly from the interncall.
30300 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30302         * reflection.c (load_public_key): Move loading of the public key
30303         into managed code.
30305         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30307         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30308         fields.
30310         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30311         culture, hash_alg and public_key. Fixes #49555.
30313 2003-10-17  Martin Baulig  <martin@ximian.com>
30315         * class.h (MonoGenericInst): Moved this declaration here and added
30316         `MonoMethod *generic_method'.
30318         * icall.c
30319         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30320         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30322         * metadata.c (mono_metadata_type_equal): Two types of
30323         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30324         index; ie. don't compare the address of the `MonoGenericParam'
30325         structure.
30326         (mono_metadata_load_generic_params): Removed the `MonoMethod
30327         *method' argument.
30329         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30330         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30332         * reflection.c (method_encode_signature): Encode the number of
30333         generic parameters.
30334         (encode_generic_method_sig): New static function.
30335         (method_encode_methodspec): New static function; creates an entry
30336         in the MethodSpec table for a generic method.
30337         (mono_image_get_methodspec_token): New static function.
30338         (mono_image_create_token): Call mono_image_get_methodspec_token()
30339         for generic methods.
30340         (mono_reflection_bind_generic_method_parameters): New public
30341         function.  Instantiates a generic method.
30343 2003-10-16  Martin Baulig  <martin@ximian.com>
30345         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30346         *gen_params' here from MonoMethodHeader.
30348         * metadata.c (mono_metadata_parse_method_signature): If we have
30349         generic parameters, initialize `method->gen_params' and then set
30350         the correct `type->data.generic_param' in all the parameters.
30352 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30354         * threads.c (mono_threads_get_default_stacksize): New function to 
30355         return the default stacksize.
30357         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30358         termination of the finalizer thread, since the previous method had
30359         race conditions. Fixes #49628.
30361         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30362         as for the other managed threads.
30364 2003-10-16  Martin Baulig  <martin@ximian.com>
30366         * class.c (inflate_generic_signature): Copy `generic_param_count'
30367         and `gen_params'.
30369         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30370         New interncall.
30372         * metadata.c (mono_metadata_parse_method_signature): Actually set
30373         the `method->generic_param_count' here.
30374         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30376 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30378         * object.h: Add a new field to TypedRef to simplify the implementation
30379         of the REFANY opcodes in the JIT.
30381         * icall.c: Make use of the new field.
30383         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30384         dynamically.
30386 2003-10-15  Martin Baulig  <martin@ximian.com>
30388         * class.c (mono_class_from_gen_param): Renamed to
30389         mono_class_from_generic_parameter() and moved most of the
30390         functionality from mono_reflection_define_generic_parameter()
30391         here; ie. we create a "real" class here.
30392         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30393         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30394         previously been called.
30396         * class.h (MonoGenericParam): Moved the declaration of this struct
30397         here from metadata.h and added `MonoMethod *method'.
30399         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30400         interncall.
30402         * loader.c (mono_get_method_from_token): If we have any generic
30403         parameters, call mono_metadata_load_generic_params() to read them
30404         from the MONO_TABLE_GENERICPAR.
30406         * metadata.c (mono_metadata_load_generic_params): Added
30407         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30409         * metadata.h (MonoMethodSignature): Replaced
30410         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30411         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30413         * reflection.c (mono_reflection_define_generic_parameter): Moved
30414         most of the functionality into the new
30415         mono_class_from_generic_parameter(); set the `method' field if
30416         we're a method parameter.       
30418 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30420         * marshal.c (emit_struct_conv): if native size is 0
30421         emit no code.
30423 2003-10-14  Martin Baulig  <martin@ximian.com>
30425         * icall.c: The generics API has changed in the spec since it was
30426         added to System.Type; these modifications make it match the spec
30427         again.
30428         (ves_icall_Type_GetGenericParameters): Renamed to
30429         `ves_icall_Type_GetGenericArguments'.
30430         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30431         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30432         `ves_icall_MonoType_get_HasGenericArguments'.
30433         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30434         `ves_icall_MonoType_get_IsGenericParameter'.
30435         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30436         this is no interncall anymore.
30437         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30438         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30440 2003-10-14  Martin Baulig  <martin@ximian.com>
30442         * reflection.c (mono_reflection_bind_generic_parameters): Also
30443         inflate generic methods if we're reading the class from IL.
30445 2003-10-13  Martin Baulig  <martin@ximian.com>
30447         * reflection.c (mono_reflection_define_generic_parameter): This
30448         method isn't called directly from the icall anymore; take a
30449         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30450         method generic parameters.
30451         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30452         (method_builder_encode_signature): Encode generic parameters.
30453         (mono_image_get_method_info): Write generic params to the
30454         MONO_TABLE_GENERICPARAM table.
30456         * reflection.h (MonoReflectionMethodBuilder): Added
30457         `MonoArray *generic_params'.
30459         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30461         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30462         wrapper for mono_reflection_define_generic_parameter().
30463         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30465 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30467         * marshal.h: Add missing function to fix build.
30469         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30470         the SetLastError pinvoke attribute.
30472         * marshal.c (mono_marshal_set_last_error): New helper function called
30473         by the generated code.
30474         
30475         * marshal.c (mono_mb_emit_branch): New helper function.
30477         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30479         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30480         classes as parameters and return values of delegates. Fixes #29256. 
30482 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30484         * locales.c: use gint32 in non HAVE_ICU case
30486 2003-10-11  Martin Baulig  <martin@ximian.com>
30488         * mono-debug.c (mono_debug_add_method): Added a workaround for
30489         bug #48591.
30491 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30493         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30494         delegates passed to native code must use the STDCALL calling 
30495         convention. Fixes #35987.
30497 2003-10-10  Martin Baulig  <martin@ximian.com>
30499         * class.c (inflate_generic_type): If we're inflating for a generic
30500         type instance (and not for a generic method), return
30501         MONO_TYPE_MVAR unchanged.
30503 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30505         * string-icalls.c: Join ignores null strings in the source array.
30506         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30507         * threads.c: GetAvailableTheads is slightly more accurate.
30509 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30511         * threads.h threads.c : add mono_threads_set_default_stacksize
30512         and pass default to CreateThread calls.
30514 2003-10-09  Dick Porter  <dick@ximian.com>
30516         * icall.c:
30517         * locales.h:
30518         * locales.c: Internal calls for constructing CultureInfo and
30519         related objects from libicu (if its available.)
30521 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30523         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30525 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30527         * threadpool.c: added an argument to async_invoke_thread that is the
30528         item to process, pass the MonoAsyncResult to the thread start function
30529         when creating a new thread. This way we don't need to acquire any lock
30530         when we're creating a new thread. Readded a semaphore for faster
30531         response times (instead of that Sleep i added).
30533 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30535         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30536         get daylight change dates better on Windows, fix handling
30537         of platforms without tm_gmtoff.
30539 2003-10-06  Martin Baulig  <martin@ximian.com>
30541         * class.c (inflate_generic_method): Renamed to
30542         mono_class_inflate_generic_method() and made public.
30543         (mono_class_init): Don't inflate the generic methods here.
30544         (mono_class_from_generic): Added `gboolean inflate_methods'
30545         argument.  Inflate the methods here.
30547         * loader.c (mono_method_get_param_names): Ignore instances of
30548         generic types for the moment.
30550         * reflection.c (fixup_method): Added support for inflated methods.
30551         (mono_image_create_token): Use mono_image_get_methodref_token()
30552         for inflated methods.
30553         (mono_custom_attrs_from_param): Ignore instances of generic types
30554         for the moment.
30555         (mono_reflection_bind_generic_parameters): New public function.
30556         Moved all the functionality from
30557         ves_icall_Type_BindGenericParameters() here and added support for
30558         dynamic types.
30559         (mono_reflection_define_generic_parameter): Initialize
30560         `klass->methods' here.
30562         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30563         functionality into mono_reflection_define_generic_parameter().
30564         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30565         TypeBuilder, return that TypeBuilder.
30567 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30569         * appdomain.c: removed mono_delegate_semaphore.
30571         * threadpool.c:
30572         (mono_thread_pool_add): moved hash table creation inside and the thread 
30573         creation outside of the critical region.
30574         (mono_thread_pool_finish): removed obsolete code.
30575         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30576         continue or exit the thread depending on the queue.
30578 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30580         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30581         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30582         handle more bool marshalling options
30584 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30586         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30587         arrays of structs. Also add a more descriptive error message when
30588         a structure member is marshalled as LPArray.
30590 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30592         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30593         marshalling arrays of complex types. Fixes #29098. Also remove an
30594         usused and incomplete function.
30596 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30598         * gc.c: report heap_size - free_bytes as total memory allocated
30599         (bug#49362).
30601 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30603         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30604         fix timezone handling problems on Windows.
30605         
30606         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30607         asserts when the year is outside the range handled by ms the functions.
30609         * class.c (setup_interface_offsets): If the class is an interface,
30610         fill out its interface_offsets slot.
30612 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30614         * threadpool.c: mark threadpool threads as background.
30616 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30618         * decimal.c - define DECINLINE to nothing if not using GCC
30620 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30622         * assembly.c: More refcount fixes.
30624 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30626         * string-icalls.c: if we're not trimming, return the same string.
30627         When not splitting, don't create a new string.
30629 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30631         * image.c:
30632         (mono_image_open): increment the ref_count inside the critical section.
30634 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30636         * image.c (mono_image_open): Fix reference counting bug.
30638 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30640         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30641         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30642         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30643         mono_lookup_pinvoke_call throws.        
30645 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30647         * reflection.c (mono_reflection_parse_type): Fix #49114.
30649         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30650         temporary workaround for cygwin header problem.
30652         * object.c (mono_object_isinst): Synchronize this with the code
30653         generated by the JIT for casts.
30655 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30657         * reflection.c (encode_type): Fix #38332.
30659 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30661         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30662         the original method from the wrapper method.
30664 2003-09-25  Martin Baulig  <martin@ximian.com>
30666         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30667         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30668         (ves_icall_Type_get_IsGenericInstance): New interncall.
30670 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30672         * object.c: fix cast warning in big endian code.
30674 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30676         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30677         
30678 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30680         * assembly.c: don't call check_env from mono_assembly_load. It's
30681         already done once in mono_assemblies_init and may cause headaches when
30682         multiple threads are loading assemblies.
30684 2003-09-19  Martin Baulig  <martin@ximian.com>
30686         * reflection.c (mono_reflection_define_generic_parameter): Don't
30687         allocate `klass->methods', set `klass->flags' to
30688         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30690 2003-09-18  Martin Baulig  <martin@ximian.com>
30692         * class.c (mono_class_init): Don't create `class->methods' if it's
30693         already initialized.
30695         * metadata.c (mono_metadata_load_generic_params): Make this
30696         actually work.
30698         * reflection.c (mono_reflection_define_generic_parameter): Set
30699         parent class and interfaces from the constraints.
30701         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30702         to keep this struct in sync with the declaration in TypeBuilder.cs.
30704 2003-09-17  Martin Baulig  <martin@ximian.com>
30706         * metadata.h (MonoType): Replaced the data's `int type_param'
30707         field with `MonoGenericParam *generic_param'.
30708         (MonoGenericParam): Added `MonoClass *klass'.
30710         * class.c (mono_class_from_gen_param): Removed the
30711         `MonoImage *image' and `int type_num' arguments.
30713         * metadata.c (mono_metadata_parse_generic_param): New static
30714         method; creates a MonoGenericParam which just contains the index.
30715         (do_mono_metadata_parse_type): Call
30716         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30717         MONO_TYPE_MVAR.
30719         * reflection.c (mono_image_typedef_or_ref): Generic type
30720         parameters may be in the same assembly, but never use a typedef
30721         for them.
30722         (mono_reflection_define_generic_parameter): We're now creating a
30723         "real" class for the type parameter; it's now safe to call
30724         mono_class_from_mono_type() on the class'es type, it'll do the
30725         right thing.
30727 2003-09-16  Martin Baulig  <martin@ximian.com>
30729         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30730         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30731         the `symfile' data structure must be fully initialized before it
30732         gets added to the table.
30734 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30736         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30738         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30739         class init trampolines.
30741 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30743         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30744         to the built-in profiler to turn off time and allocation profiling
30745         respectively.
30747 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30749         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30750         g_direct_equal.
30752         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30753         in human readable form.
30755 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30757         * reflection.c icall.c: Fixed warnings.
30759         * image.c (load_class_names): Use a temporary hash table to hold the
30760         namespaces in order to avoid doing many string comparisons.
30762         * image.h: Fix typo.
30764         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30765         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30766         since the NULL case is short-circuited inside g_hash_table_lookup, 
30767         leading to better performance.  
30769         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30770         obtain the first custom attribute for a given index. Depends on the
30771         CustomAttribute table being sorted by the parent field.
30773         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30774         for better performance.
30776 2003-09-07  Martin Baulig  <martin@ximian.com>
30778         * class.c (mono_class_init): If we're a generic instance, inflate
30779         all our methods instead of loading them from the image.
30780         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30782 2003-09-07  Martin Baulig  <martin@ximian.com>
30784         * mono-debug-debugger.c: Added support for constructors.
30786 2003-09-06  Martin Baulig  <martin@ximian.com>
30788         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30789         New interncall.
30791         * reflection.c (mono_reflection_setup_generic_class): Call
30792         ensure_runtime_vtable() to create the vtable.
30794 2003-09-05  Martin Baulig  <martin@ximian.com>
30796         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30797         MONO_TYPE_MVAR.
30799 2003-09-04  Martin Baulig  <martin@ximian.com>
30801         * reflection.c (mono_reflection_define_generic_parameter): Generic
30802         parameters start with zero.
30804 2003-09-04  Martin Baulig  <martin@ximian.com>
30806         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30808         * reflection.h (MonoReflectionGenericParam): New typedef.
30809         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30810         the generic parameters from the managed TypeBuilder.
30812         * reflection.c (mono_reflection_define_generic_parameter): New function.
30813         (mono_reflection_create_runtime_class): Encode generic parameters.
30814         (mono_reflection_setup_generic_class): New function; this is
30815         called after adding adding all generic params to the TypeBuilder.
30816         (encode_type): Added MONO_TYPE_VAR.
30818 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30820         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30821         here from the JIT.
30823         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30824         load hook.
30826 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30828         * reflection.h reflection.c class.h class.c: Delete duplicate 
30829         definition of mono_type_get_name () from reflection.c and export the
30830         one in class.c.
30832         * class.c: Class loading fixes from Bernie Solomon 
30833         (bernard@ugsolutions.com).
30835         * reflection.c: Endianness fixes from Bernie Solomon 
30836         (bernard@ugsolutions.com).
30837         
30838 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30840         * assembly.h assembly.c: Define a file format version for AOT
30841         libraries.
30842         
30843         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30845         * appdomain.h (MonoJitInfo): New field to determine whenever the
30846         code is domain neutral.
30847         
30848 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30850         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30852 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30854         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30855         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30856         Avoid caching the result since strings must be domain specific. Fixes
30857         #48050.
30859 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30861         * marshal.c (mono_marshal_init): Make this callable multiple times
30862         since it is hard to find a correct place to call it.
30864         * object.c (mono_runtime_class_init): Execute static constructors in
30865         the correct appdomain.
30867         * image.c (build_guid_table): Handle the case when multiple images have
30868         the same GUID.
30870 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30872         * icall.c: added a couple of icalls for System.Web.
30874 2003-08-28  Martin Baulig  <martin@ximian.com>
30876         * icall.c (ves_icall_Type_BindGenericParameters): Use
30877         `klass->generic_inst' instead of `&klass->byval_arg' in the
30878         mono_type_get_object() call.  The returned type must be
30879         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30881 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30883         * NOTES: New file.
30885         * object.c (mono_class_proxy_vtable): Make it thread safe.
30887         * pedump.c: Fix warning.
30889         * object.c appdomain.h: Get rid of metadata_section. 
30890         It is no longer needed and it was causing deadlocks with domain->lock.
30892         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30894 2003-08-26  Martin Baulig  <martin@ximian.com>
30896         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30898 2003-08-26  Martin Baulig  <martin@ximian.com>
30900         * pedump.c (main): Call mono_metadata_init(),
30901         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30902         and mono_loader_init().
30904 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30906         * loader.h: Add missing include to fix build.
30908         * image.h: mono_image_load_references is no more.
30910         * assembly.c: Reworked assembly loading to make it really thread safe.
30911         After these changes, the assembly returned by mono_assembly_open is
30912         fully initialized, i.e. all its references assemblies are loaded.
30914         * assembly.c (mono_image_load_references): Renamed to 
30915         mono_assembly_load_references, and made private, since clients no
30916         longer need to call it.
30918         * class.c: Removed calls to mono_assembly_load_references, since it was
30919         a source of deadlocks.
30921         * loader.h loader.c class.h class.c: Protect data structures using a 
30922         new lock, the loader lock.
30924         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30925         GPtrArrays only when needed.
30927         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30928         into empty structures by mcs. Fixes pinvoke7.cs.
30929         
30930         * domain.c (mono_init): Call a new initialization function.
30932         * appdomain.c (mono_runtime_init): Call the new initializer function
30933         of the marshal module.
30935         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30936         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30938         * marshal.h marshal.c: Added locks around the wrapper caches to make
30939         this module thread safe.
30941         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30942         this argument. Fixes pinvoke1.exe.
30944 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30946         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30947         enumeration of values. Removed fields to store remote call output values in
30948         MonoAsyncResult. Not needed any more.
30949         * object.c: Initialize call_type and async_result fields in mono_message_init.
30950         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30951         dispatching the message.
30952         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30953         async call to finish. To do it use a message with EndInvoke call type.
30955 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30957         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30958         determines whenever a method has marshalling info.
30960 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30962         * assembly.c: fix the build on windows.
30964 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30966         * object.cs: Fixed bug #47785.
30968 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30970         * string-icalls.c (StringReplace): If their are no occurances of
30971         the old string found return a reference to the supplied
30972         string. This saves some memory and matches MS behavoir.
30973         
30974 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30976         * socket-io.c: fixed compilation for systems that define AF_INET6
30977         and don't define SOL_IP/SOL_IPV6.
30979 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30981         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30982         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30984         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30986         * domain.c: Make this module thread safe.
30988         * domain.c (mono_init): Call new initialization function.
30990         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30991         reference types too. Fixes #38812.
30993         * image.c (mono_image_init): Fixed warnings.
30995         * class.c (mono_class_from_typeref): Handle assembly load failure
30996         correctly.
30998         * appdomain.c (add_assemblies_to_domain): Handle the case when
30999         the references of an assembly are not yet loaded.
31001         * metadata.c image.c assembly.c: Moved initialization of global
31002         variables to a separate function called at startup since lazy 
31003         initialization of these variables is not thread safe.
31004         
31005         * image.c assembly.c: Made this module thread safe by adding locks in 
31006         the appropriate places.
31008         * domain.c (mono_init): Call the new initialization functions of the
31009         three modules.
31011 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31013         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31014           make a direct call. It is proxy's work to make the call asynchronous.
31015           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31016           the return values.
31017         * object.cs: mono_method_call_message_new(): read AsyncResult and
31018           state object from parameters list, if this info is requested.
31019         * object.h: Added fields to store remote call output values in
31020           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31022 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31024         * object.h: add needed fields to MonoThread.
31025         * threads.c, threads.h: allow registering a function to cleanup data
31026         allocated per thread by the JIT.
31028 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31030         * loader.h: portability fix by Bernie Solomon
31031         * <bernard@ugsolutions.com>.
31033 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31035         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31036         return a MonoArray. This simplifies the code and also ensures that
31037         the cache allways contains an object reference as a value.
31039         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31040         function.
31042 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31044         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31045         fixes a problem with byte ordering when getting the address family for
31046         a socket.
31048 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31050         * .cvsignore: Added monosn.
31052         * reflection.h reflection.c loader.c: Added support for parameter
31053         marshalling to dynamically created types. Fixes #47295.
31055 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31057         * rand.c: remove useless warnings.
31059 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31061         * class.c: implemented ldtoken for methods and fieldrefs.
31063 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31065         * threadpool.c: when mono_async_invoke was called, no one took care of
31066         monitoring the queue. So if the method invoked took some time and we
31067         got new async invoke requests after 500 ms (the thread created waited
31068         that long in WaitForSingleObject), the new async invoke was not called
31069         until the previous one finished.
31071         This is fixed now. Thanks to Totte for helping with it.
31073 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31075         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31077 2003-08-11  Martin Baulig  <martin@ximian.com>
31079         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31081 2003-08-06  Martin Baulig  <martin@ximian.com>
31083         * mono-debug-debugger.c: Added support for static fields,
31084         properties and methods.
31086 2003-08-06  Martin Baulig  <martin@ximian.com>
31088         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31089         make this work for applications with multiple application domains.
31091 2003-08-04  Martin Baulig  <martin@ximian.com>
31093         * mono-debug-debugger.c: Completely reworked the type support; the
31094         most important thing is that we're now just using one single
31095         `MonoType' instance per type.
31097 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31099         * mono-endian.h, mono-endian.c, icall.c: Added icall
31100         ves_icall_System_Double_AssertEndianity to assert double word endianity
31101         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31103 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31105         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31106         support, icalls and fixes.
31108 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31110         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31111         classes that are a punctuation character in .NET is not the same a
31112         g_unichar_ispunct.
31114 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31116         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31118 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31120         * icall.c: Add new MemCopy internalcall.
31121         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31122         Simplified code; It is not necessary to handle all the cases here,
31123         as the C# code takes care of it.  Only handle the case of the name
31124         resource embedded into the assembly.
31126         Changed signature to return the data pointer and the size of the
31127         data. 
31129 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31131         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31132         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31134 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31136         * socket-io.c: ignore EINTR error in select.
31138 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31140         * class.h, class.c: removed unused subclasses field in MonoClass.
31142 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31144         * icall.c: improve fix of get_base_definition(). If the parent class
31145           doesn't have the mehod, look at the parent of the parent.
31146         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31147           to check if a parameter is an in or out parameter
31148           (PARAM_ATTRIBUTE_IN is not set by default).
31149           mono_method_return_message_restore(): Use mono_class_value_size to
31150           get the size of a value type. mono_type_stack_size (parameterType)
31151           does not return the correct value if parameterType is byRef.
31152           mono_load_remote_field(), mono_load_remote_field_new(),
31153           mono_store_remote_field(), mono_store_remote_field_new():
31154           raise exception if the remote call returns an exception.
31156 2003-07-28  Martin Baulig  <martin@ximian.com>
31158         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31159         method.  This is a wrapper around mono_runtime_invoke() which
31160         boxes the instance object if neccessary.
31162 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31164         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31165         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31167 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31169         * icall.c: disable mcs bug workaround.
31171 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31173         * object.c (mono_runtime_class_init): Take the metadata_section
31174         mutex before obtaining the domain mutex.
31176         * appdomain.h: Added definition of metadata_section mutex here. 
31178         * object.c: define metadata_mutex here.
31180 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31182         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31183         fixed.
31185 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31187         * reflection.c: Fix bug #46669
31189 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31191         * exception.c:
31192         * exception.h:
31193         * icall.c:
31194         * object.h: fill in the type name for TypeLoadException.
31196 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31198         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31199         relationship between TypeBuilders while compiling corlib) and bug
31200         45993 (Array types returned from the runtime while compiling
31201         corlib were from the loaded corlib).
31203 2003-07-22  Martin Baulig  <martin@ximian.com>
31205         * mono-debug-debugger.c: Reworked the type support a bit more;
31206         distinguish between types and classes.
31208 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31210         * icall.c: add IsArrayImpl icall.
31212 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31214         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31215         initializing real_size only once. Also fix bug #46602.
31217 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31219         * object.c: Renamed mono_metadata_section to metadata_section.
31221 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31223         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31224           empty array if the type is an array. Fixed.
31225           ves_icall_MonoMethod_get_base_definition: if the base method
31226           is abstract, get the MethodInfo from the list of methods of
31227           the class.
31228         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31229           and it was 1-based. Fixed in mono_param_get_objects.
31231 2003-07-20  Martin Baulig  <martin@ximian.com>
31233         * mono-debug.h: Set version number to 31.
31234         (mono_debug_init): Added `MonoDomain *' argument.
31236         * mono-debug-debugger.c: Reworked the type support; explicitly
31237         tell the debugger about builtin types; pass the `klass' address to
31238         the debugger.
31240 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31242         * image.c: Allow new metadata tables to be loaded without a
31243         warning. Also update the warning message to give the new constant value.
31244                 
31245 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31247         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31248         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31249         array type representation changes.
31251 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31253         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31254         on Environment.Exit () call.
31256 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31258         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31259         requires a matching corlib.
31261 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31263         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31264           Committed again without the CRs.
31265         
31266 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31268         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31269           getting it from the "this" socket instance. Did not work
31270           if the socket is a subclass of Socket.
31271           Also fixed bug #35371.
31273 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31275         * metadata.c: fixed size for TypedByRef.
31276         * loader.c: when searching for a method, consider the vararg amrker.
31277         * unicode.c, decimal.c: constify some arrays.
31279 2003-07-15  Dick Porter  <dick@ximian.com>
31281         * socket-io.c: Fixed compilation for gcc < 3.2.
31283         Fixed compilation for machines that don't have AF_INET6 (thanks to
31284         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31286         Fixed compile warnings.
31287         
31288         Fixed formatting and line endings.
31290 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31292         * socket-io.h:
31293         * socket-io.c: Added IPv6 support.
31295 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31297         * class.c (mono_class_is_assignable_from): New function to implement
31298         the is_assignable_from logic. Used by mono_object_isinst, 
31299         Type::IsAssignableFrom () and the interpreter.
31301         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31302         Object, even interfaces.
31303         
31304         * object.c (mono_object_isinst): Implement in terms of 
31305         is_assignable_from.
31307         * icall.c (ves_icall_type_is_assignable_from): New icall.
31309 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31311         * domain.c (foreach_domain): fix compiler warning.
31313 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31315         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31316         not available on all plattforms
31318 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31320         * image.h image.c: Store the metadata version string in MonoImage.
31321         * icall.c: New icall to retrieve the image version.
31322         * reflection.c (create_dynamic_image): Fill in the image version field
31323         * reflection.c (build_compressed_metadata): Use the image version
31324         from the image structure.
31326 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31328         * appdomain.c: modified comment.
31329         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31330         That will be its last iteration when mono_gc_cleanup is called from
31331         mono_runtime_cleanup and before the domain is unloaded.
31333         Fixes bug #45962.
31335 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31337         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31338         attributes.
31340 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31342         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31343         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31344         Bernie Solomon <bernard@ugsolutions.com>.
31346 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31348         * object.c, object.h: provide mono_object_new_fast() for faster
31349         allocation in some special cases.
31351 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31353         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31354         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31356 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31358         * threadpool.c: fix leaks.
31360 2003-07-01  Dick Porter  <dick@ximian.com>
31362         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31363         using MonoGHashTables.  Fixes threadpool bug posted to list.
31365 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31367         * image.h, image.c: added support to load an assembly from a byte array.
31368         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31369         assembly bundle support.
31371 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31373         * threadpool.c (mono_thread_pool_add): keep a reference to the
31374         AsyncResult to prevent GC
31376 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31378         * class.c: leak fix.
31380 2003-06-25  Dick Porter  <dick@ximian.com>
31382         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31383         for the async object, the WaitHandle object will close the handle.
31384         Fixes bug 45321.
31386 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31388         * class.c: in mono_array_class_get (), lookup from the hash with the
31389         same type we insert: this works around a bug in
31390         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31391         lluis. The real fix will have to wait for after the release.
31393 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31395         * icall.c: fix memory leak when getting type members.
31397 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31399         * reflection.c: added more pubtoken special cases.
31401 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31403         * class.c: handle field offset correctly when class size
31404         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31406 2003-06-20  Martin Baulig  <martin@ximian.com>
31408         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31409         *image' field.
31411 2003-06-20  Martin Baulig  <martin@ximian.com>
31413         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31415 2003-06-20  Martin Baulig  <martin@ximian.com>
31417         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31418         just distinguish between variables in registers and variables at
31419         an offset relative to a register.
31421 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31423         * icall.c: #ifdef out latest changes until mcs is fixed.
31425 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31427         * icall.c: return members in metadata order.
31429 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31431         * icall.c: avoid infinite loop in GetTimeZoneData.
31433 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31435         * icall.c: added Marshal.Prelink/All icalls.
31437 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31439         * object.c, object.h: fix warnings and do some overflow checking
31440         when creating arrays.
31442 2003-06-17  Dick Porter  <dick@ximian.com>
31444         * file-io.h:
31445         * file-io.c: File attributes need to be tweaked slightly when
31446         passed from the managed to the w32 world.
31448 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31449         * profiler.h profiler-private.h profiler.c: Rework last patch
31450         based on suggestion by Paolo.
31451         
31452 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31454         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31455         instruction level coverage data collection.
31456         * profiler.h profiler.c (: Added new callback function which can be
31457         used by the profiler to limit which functions should have coverage
31458         instrumentation.
31459         * profiler.c (mono_profiler_load): Call g_module_build_path to
31460         generate the file name of the profiler library.
31462 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31464         * profiler.c, profiler.h, profiler-private.h: added basic block 
31465         coverage profiling API.
31467 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31469         * reflection.c (mono_reflection_create_runtime_class): Add support
31470         for events in dynamically generated code.
31472         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31473         not allocated.
31475 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31477         * icall.c: when getting timezone info, return reasonable values if we
31478         can't get the actual data.
31480 2003-06-14  Dick Porter  <dick@ximian.com>
31482         * threads.c (start_wrapper): Remove the reference to the thread
31483         object in the TLS data, so the thread object can be finalized.
31484         This won't be reached if the thread threw an uncaught exception,
31485         so those thread handles will stay referenced :-( (This is due to
31486         missing support for scanning thread-specific data in the Boehm GC
31487         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31489 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31491         * reflection.c: ensure streams and tables are first allocated with
31492         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31494 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31496         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31498 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31500         * reflection.c (mono_reflection_create_runtime_class): Add support for
31501         properties to dynamically created classes.
31502         * reflection.c: Fix a few places where non-MonoObjects were inserted
31503         into the tokens hashtable.
31505 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31507         * object.c: some support to handle out of memory exceptions.
31509 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31511         * marshal.c (mono_marshal_get_native_wrapper): support reference
31512         return types
31514 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31516         * object.h, object.c: more portability stuff from Bernie Solomon.
31517         Unexport mono_object_allocate(). Added mono_object_unbox ().
31518         Set exitcode when an unhandled exception is thrown.
31520 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31522         * marshal.c (mono_marshal_get_native_wrapper): use custom
31523         marshaler for return types.
31525 2003-06-10  Dick Porter  <dick@ximian.com>
31527         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31528         ip_mreq is available
31530 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31532         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31533         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31534         by Bernie Solomon <bernard@ugsolutions.com>.
31536 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31538         * gc.c (mono_gc_init): Avoid error message on shutdown when
31539         GC_DONT_GC=1 is used.
31541         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31542         New icall to return the GUID of a module.
31544 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31546         * class.c: ensure instance size always includes the parent's size
31547         even whem class size is set explicitly (fixes bug#44294).
31549 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31551         * profiler.h, profiler.c: made the simple profiler thread-safe,
31552         get more accurate timing info. Allow the loading of an
31553         externally-developed profiler module.
31555 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31557         * marshal.c (mono_marshal_get_native_wrapper): improved
31558         class/byref arguments.
31559         (mono_marshal_get_native_wrapper): better string marshaling support.
31561 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31563         * class.c: ensure .pack and .size are handled correctly and
31564         simplified layout of static fields.
31566 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31568         * appdomain.c
31569         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31571         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31572         current directory (fix bug 44008)
31574 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31576         * marshal.c (mono_marshal_get_native_wrapper): started support for
31577         custom marshalers.
31578         (mono_delegate_to_ftnptr): consider marshalling specifications
31580 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31582         * reflection.c, reflection.h: emit custom marshal info.
31584 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31586         * object.c: free the GError.
31587         * icall.c: added CloseEvent_internal.
31588         * threads.[ch]:
31589         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31590         call.
31592 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31594         * loader.c (mono_method_get_signature): Add support for dynamic
31595         assemblies.
31597 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31599         * reflection.c: fixed bug #43905.
31601 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31603         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31604         handling TypedReference and ArgIterator.
31605         * loader.c, loader.h: added function to get signature at call site.
31607 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31609         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31610         data readonly. Buglets and warning fixes. Some MethodSpec support.
31612 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31614         * class.h, class.c, object.c: remove relative numbering support.
31616 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31618         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31619         free the string, until we get a chance to fix Gtk#
31621 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31623         * marshal.c: revert last patch.
31625 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31627         * icall.c: updates for new mono_class_vtable() not calling
31628         the type constructor anymore.
31630 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31632         * object.h, object.c: separate vtable creation from type
31633         initialization. Make running the .cctor thread safe.
31635 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31637         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31639 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31641         * loader.c (mono_get_method): consider calling convention
31643 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31645         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31646         to return the invisible global type for a module.
31648         * reflection.c (mono_image_build_metadata): Emit global fields too.
31650 2003-05-20  Peter Williams  <peterw@ximian.com>
31652         * loader.c (mono_lookup_internal_call): Add a few newlines.
31654 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31656         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31657         literal strings.
31659         * appdomain.c (set_domain_search_path): Recalculate search path when
31660         AppDomainSetup.PrivateBinPath changes.
31662         * object.c (mono_class_compute_gc_descriptor): It turns out some
31663         parts of the class libs (like System.Thread) holds pointers to
31664         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31665         to treat native int a pointer type here.
31666         
31667 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31669         * appdomain.h, domain.c: add hashtable for jump target resolution.
31671 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31673         * reflection.h reflection.c icall.c: Added new icalls 
31674         GetManifestResourceInfoInternal, GetModulesInternal and support
31675         infrastructure.
31677 2003-05-16  Dick Porter  <dick@ximian.com>
31679         * icall.c:
31680         * file-io.h:
31681         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31683 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31685         * object.c: mono_store_remote_field: little fix to previous patch.
31687 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31689         * class.c: add constructors to array classes.
31690         * icall.c: special case array construction for InternalInvoke (),
31692 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31694         * class.h class.c reflection.c object.c: Added support for field
31695         defaults in dynamically generated classes.
31697 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31699         * reflection.c: properly encode charset for ddlimport.
31701 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31703         * threads.c: allow compiling without GC.
31705 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31707         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31708         handling of thread static data.
31710 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31712         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31714 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31716         * class.c (mono_array_class_get): always set the serializable flags
31717         (mono_array_class_get): always set the SEALED attribute for array types
31719 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31721         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31722         attributes (fix for bug 42021).
31724 2003-05-12  Dick Porter  <dick@ximian.com>
31726         * gc.c: Don't run finalizers when the finalizer thread is
31727         finishing up, because the default domain has already been
31728         destroyed.
31730 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31732         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31733         value is null, we should throw an exception.   This is slightly
31734         different than the other conventions used for the constructor.
31736 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31738         * socket-io.c: fixed windows build.
31740 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31742         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31744 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31746         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31747         compilers.
31749 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31751         * class.c (mono_class_layout_fields): Add experimental GC aware
31752         auto layout facility. Requires class library changes to work correctly.
31754         (mono_class_setup_vtable): Avoid overriding explicit interface
31755         method implementations. Fixes iface3.exe test.
31757         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31758         object reference.
31759         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31760         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31762         * metadata.h: Add new type classification macro which determines
31763         whenever the type holds an object reference.
31765 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31767         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31769 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31771         * gc.c (finalizer_thread): Work around a GC bug.
31773 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31775         * marshal.c (emit_struct_conv): allow unions
31777         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31779 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31781         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31783 2003-05-06  Martin Baulig  <martin@ximian.com>
31785         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31787 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31789         * socket-io.c:
31790         (Select_internal): allow NULLs, don't create arrays if not needed.
31791         Coupled with Socket.cs changes.
31793         * threadpool.c:
31794         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31795         register a finalizer for it that will close the semaphore handle. This
31796         fixes the leak and make Lupus' test run with > 4080 loops.
31798 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31800         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31801         Jerome Laban (bug #42287)
31803 2003-05-02  Martin Baulig  <martin@ximian.com>
31805         * debug-mono-symfile.h
31806         (MonoSymbolFile): Moved declaration into mono-debug.h.
31807         (MonoDebugMethodJitInfo): Likewise.
31808         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31809         argument.
31810         (_mono_debug_address_from_il_offset): Take a
31811         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31813         * mono-debug.h
31814         (MonoDebugDomainData): New struct.
31815         (mono_debug_get_domain_data): New function.
31816         (mono_debug_add_method): Take an additional `MonoDomain *'
31817         argument.
31818         (mono_debug_source_location_from_address): Likewise.
31819         (mono_debug_il_offset_from_address): Likewise.
31820         (mono_debug_address_from_il_offset): Likewise.
31822 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31824         * reflection.c: one more check for null type in custom attrs.
31826 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31828         * reflection.c: avoid warning (comparison is always false due to limited
31829         range of data type).
31831 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31833         * icall.c: throw an exception in Type.GetField if the argument 'name'
31834         is NULL.
31836 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31838         * reflection.c: fixed handling of enums in named arguments to custom
31839         attributes (bug #42123).
31841 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31843         * reflection.c: use the right array element type and handle
31844         a null for a Type argument, too.
31846 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31848         * reflection.c: handle arrays as arguments to custom attributes.
31850 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31852         * reflection.c: handle a string value in a custom attr
31853         ctor that takes an object.
31855 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31857         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31858         (fix bug #42063)
31860 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31862         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31864 2003-04-27  Martin Baulig  <martin@ximian.com>
31866         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31867         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31868         MONO_DEBUGGER_EVENT_BREAKPOINT.
31869         (mono_breakpoint_trampoline_code): Removed.
31870         (mono_debugger_event_handler): The last argument is now a
31871         `guint32'.
31872         (mono_debugger_insert_breakpoint_full): Removed the
31873         `use_trampoline' argument.
31874         (mono_debugger_method_has_breakpoint): Likewise.
31875         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31876         mono_debugger_breakpoint_callback(); take the method and
31877         breakpoint number as arguments.
31879 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31881         * metadata.c: fix off by one when loading parameters attributes.
31883 2003-04-24  Martin Baulig  <martin@ximian.com>
31885         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31887 2003-04-24  Martin Baulig  <martin@ximian.com>
31889         * mono-debug-debugger.c: Moved all code which interacts with the
31890         Mono Debugger here.
31892         * debug-mono-symfile.c: This code now just deals with the symbol
31893         file itself, the debugger code is now in mono-debug-debugger.c.
31895 2003-04-23  Martin Baulig  <martin@ximian.com>
31897         * mono-debug.c (mono_debug_source_location_from_il_offset):
31898         New method; like mono_debug_source_location_from_address(), but
31899         takes an IL offset instead of a machine address.
31901 2003-04-23  Martin Baulig  <martin@ximian.com>
31903         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31904         `line' field; this is now computed by the debugger.
31906 2003-04-23  Martin Baulig  <martin@ximian.com>
31908         * mono-debug.[ch]: New files.  This is the new debugging interface.
31910         * mono-debug-debugger.[ch]: New files.  Moved all code which
31911         interacts with the Mono Debugger here.
31913 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31915         * domain.c (mono_init): initialize mono_defaults.monitor_class
31917 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31919         * reflection.c (method_encode_code): Add a spicy exception to help
31920         future compiler authors.
31922 2003-04-21  Martin Baulig  <martin@ximian.com>
31924         * icall.c
31925         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31926         Make this work with relative pathnames; g_filename_to_uri() needs
31927         an absolute filename.
31929 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31931         * icall.c: Track name changes in Object and ValueType.
31933 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31935         * metadata.c (mono_type_stack_size): size should be a multiple of
31936         sizeof (gpointer)
31938 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31940         * gc.c:
31941         (internal_domain_finalize): moved into mono_domain_finalize. No need
31942         to create another thread because the finalizers will be run in the
31943         finalizer thread.
31944         
31945         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31946         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31947         to be run (MS does this too).
31949 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31951         * object.c (mono_class_compute_gc_descriptor): Update comment.
31953         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31955         * image.h: Add synchronized wrapper cache.
31957         * image.c (do_mono_image_open): Initialize cache.
31959         * reflection.c (create_dynamic_mono_image): Initialize cache.
31961 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31963         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31964         ves_icall_System_Buffer_ByteLengthInternal.
31966 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31968         * reflection.c: setup klass->nested_in earlier. Allow
31969         a dash in the assembly name.
31971 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31973         * metadata.c (mono_type_to_unmanaged): dont access
31974         type->data.klass for MONO_TYPE_OBJECT
31975         (mono_type_to_unmanaged): consider System.Delegate class
31977 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31979         * class.c: just setup supertypes in the proper place instead of
31980         initializing the full element class for arrays.
31982 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31984         * class.c: ensure the element class of arrays is initialized.
31985         Setup the supertype info for array classes, too.
31987 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31989         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31991 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31993         * Makefile.am: re-added -m option when running cygpath. This way,
31994         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31995         separator.
31996         * mono-config.c: same codepath for locating mono config file for WIN32
31997         and the rest.
31998         * assembly.c: if mono_assembly_setrootdir is called, don't override
31999         the value set.
32001 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32003         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32004         MONO_ASSEMBLIES variable.
32006 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32008         * icall.c: added Assembly::GetNamespaces() icall.
32010 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32012         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32014 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32016         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32017         * object.c: fixed bug in the construction of vtable for proxies
32019 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32021         * object.c (mono_array_new): Mark mono_array_new as an icall.
32023 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32025         * class.c: fixed test for public method when overriding interfaces.
32026         Closes bug #40970.
32028 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32030         * appdomain.h, domain.c: added mono_domain_foreach() to
32031         be able to access the currently loaded appdomains.
32032         * object.c: make string interning work across sppdomains.
32033         Mark some functions for use as icalls.
32035 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32037         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32039         * reflection.h reflection.c: Allocate long living data using 
32040         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32042         * reflection.c: Double the allocation size in streams instead of
32043         increasing it, to prevent unneccesary copying on large assemblies.
32044         
32045         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32046         creation if the assembly does not have the Run flag set.
32048 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32050         * class.h: avoid the C++ keywords in header files (Jerome Laban
32051         spotted and fixed this).
32053 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32055         * object.c:
32056         (mono_unhandled_exception): fill in the arguments for the
32057         UnhandledException event. Only trigger that event for the default
32058         domain (as MS does).
32060 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32062         * object.c: Improve typed allocation stuff based on suggestions from
32063         Paolo. Also turn it on if the GC library supports it.
32065 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32067         * object.c object.h class.h: Added experimental typed allocation
32068         facility using the interfaces in gc_gcj.h.
32070         * os/gc_wrapper.h: Added new include files.
32071         
32072 2003-04-03  Martin Baulig  <martin@ximian.com>
32074         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32075         which is not yet enabled by default.
32077         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32078         functions.
32079         (mono_gc_lock, mono_gc_unlock): New static functions.
32081         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32082         functions; stop/start the world for the garbage collector.  This
32083         is using the windows API; we need to complete the SuspendThread()/
32084         ResumeThread() implementation in the io-layer to make this work on Unix.
32085         (mono_gc_push_all_stacks): New public function; tells the garbage
32086         collector about the stack pointers from all managed threads.
32088 2003-04-03  Martin Baulig  <martin@ximian.com>
32090         * object.h (MonoThread): Added `gpointer stack_ptr'.
32092         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32094 2003-04-03  Martin Baulig  <martin@ximian.com>
32096         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32098 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32100         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32101         field.last.
32103 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32105         * loader.c (mono_lookup_internal_call): Report the corlib that is
32106         out of sync.
32108 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32110         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32111         System.DBNull (it's class not valuetype).
32113 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32115         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32116         if the array method was already assigned a token (fixes bug#40646).
32118 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32120         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32121         if no assembly is given.
32123 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32125         * metadata.h: Added the new tables.
32127         * row-indexes.h: Added definitions for new tables.
32129         * metadata.c: Add schemas for new tables, and add support for
32130         computing the sizes of them.
32132         * class.c: Update for handling the new type cases.
32134 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32136         * metadata.h (MONO_TYPE_IS_VOID): new macro
32138 2003-03-31  Martin Baulig  <martin@ximian.com>
32140         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32142         * threads.c (mono_thread_new_init): Call `thread_created' in the
32143         mono_thread_callbacks.
32145 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32147         * loader.h: added marshalbyrefobject_class to mono_defaults
32148         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32149         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32150           generation of output parameters.
32151           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32152         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32153           contextbound and the target object belongs to the context of the caller.
32154         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32155         * object.c: Implemented support for interfaces and abstract classes
32156           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32157           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32159 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32161         * class.h class.c (mono_class_is_subclass_of): New function.
32162         
32163         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32164         routines for most common case (calls from ArrayList::ToArray).
32166         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32167         routine so programs which call Environment::Exit() can be profiled.
32169         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32170         Added MONO_ARCH_SAVE_REGS.
32172         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32174 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32176         * blob.h: Add a couple of new MonoType types definitions.
32178         * tabledefs.h: Add a couple of new call convs.
32180 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32182         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32183         the layout of the class.
32185         * reflection.c (alloc_table): double the size on overflow to avoid
32186         unnecessary copying.
32188         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32189         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32190         null so it can be garbage collected.
32191         
32192 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32194         * reflection.c (mono_reflection_get_type): Return the resolved type
32195         only if it is in the assembly we searched.
32197         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32199         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32200         method.
32202 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32204         * appdomain.c:
32205         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32206         the right one is 'file:///blah', but MS allows it.
32207         * assembly.c:
32208         (mono_assembly_open): allow 'file://blah'
32210         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32212 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32214         * socket-io.c: fixes bug #40310.
32216 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32218         * reflection.c (mono_reflection_parse_type): handle deeply nested
32219         types correctly.
32221         * reflection.c (mono_image_create_token): Use unique token values
32222         since they will be put into a hash table.
32224         * class.c (mono_class_setup_vtable): If a method occurs in more than
32225         one place in the vtable, and it gets overriden, then change the
32226         other occurances too.
32228         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32229         object as return type.
32231 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32233         * icall.c: Deleted "ToString" implementation for double and float
32234         because they are full implemented in managed code.
32236 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32238         * reflection.c, reflection.h: implemented and exported functions
32239         to retrieve info about custom attributes.
32241 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32243         * appdomain.c: moved Uri handling to assembly.c
32244         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32245         work when using a file Uri in *nix and windows.
32247         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32248         GetReferencedAssemblies.
32250 2003-03-18  Dick Porter  <dick@ximian.com>
32252         * icall.c: Rename a couple of internal calls
32254         * threads.c: Set the thread state to Stopped when a thread exits.
32255         Fixes bug 39377.
32257 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32259         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32260         New icall.
32262         * object.c (mono_class_vtable): fix warning.
32264 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32266         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32268         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32269         memory.
32270         (method_encode_clauses): Create exception info structures in the right
32271         order.
32272         (mono_reflection_setup_internal_class): Initialize supertypes field.
32274         * class.c object.c: Handle interfaces which implement other interfaces 
32275         correctly.
32277         * class.h class.c: Move the supertypes array initialization code into 
32278         a separate function so it can be used for dynamic types too. Also call
32279         it earlier, in mono_class_init(), since it can be used before the
32280         type is initialized.
32282 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32284         * Makefile.am:
32285         * assembly.c:
32286         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32288         * appdomain.c:
32289         * appdomain.h:
32290         * marshal.c:
32291         * object.c: remove warnings.
32293 2003-03-13  Martin Baulig  <martin@ximian.com>
32295         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32296         (MonoDebugLexicalBlockEntry): New types.
32298         * debug-mono-symfile.c
32299         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32301 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32303         * process.c: ret can be any non-zero value accroding to MS doc.
32305 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32307         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32308         fixing a warning for a miss-used prototype, would have cause
32309         random memory corruption.
32311 2003-03-07  Martin Baulig  <martin@ximian.com>
32313         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32314         getting really annoying ....
32316 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32318         * reflection.c (fixup_method): added support for array methods.
32320 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32322         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32323         (pointed out by Michael Adams).
32325 2003-03-04  Dick Porter  <dick@ximian.com>
32327         * icall.c: Temporarily reverted the Double and Single ToString()
32328         change, because it broke nunit.
32330 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32332         * object.h, threads.h: make include files compatible with C++
32333         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32335 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32337         * icall.c: Erased ToString helper functions for Double and Single.
32338         Now, that implementations ar all in managed code (Double and Single
32339         Formatters).
32341 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32343         * appdomain.c: Added method for initializing the default context of
32344         a domain. Added internal call for getting the default context.
32345         * appdomain.h: Added context variable in MonoDomain struct.
32346         * domain.c: mono_domain_set also sets the default context of the domain
32347         * icall.c: Mapped internal method InternalGetDefaultContext.
32348         * object.c: mono_object_get_virtual_method returns always a remoting
32349         wrapper if the object is a transparent proxy.
32350         mono_runtime_invoke_array: when creating an object by calling the
32351         constructor, if the created object is a proxy, then the constructor should
32352         be called using the a remoting wrapper.
32354 2003-03-03  Dick Porter  <dick@ximian.com>
32356         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32357         variable so it compiles on solaris.  Problem spotted by
32358         Christopher Taylor <ct@cs.clemson.edu>
32360 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32362         * appdomain.c:
32363         (get_info_from_assembly_name): don't leak value.
32365         * icall.c:
32366         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32367         result.
32369 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32371         * assembly.c: export mono_image_load_references ().
32372         * class.c: handle function pointers. mono_class_from_name() now
32373         supports nested type names directly.
32375 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32377         * reflection.h reflection.c: Encode already created dynamic methods 
32378         and fields correctly as a DEF instead of a REF.
32380         * reflection.c: Get rid of the force_ref argument to 
32381         mono_image_typedef_or_ref since it was wrong in the first place.
32383         * string-icalls.c: add error checking to string constructors according
32384         to the MSDN docs.
32386         * reflection.c: Emit types in the order their TypeBuilders were 
32387         created. Previously, a new table index was assigned to each type before
32388         the tables were emitted. This was wrong because the signature blob
32389         might already refer to a type by its original table index.
32391 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32393         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32394         change.
32395         
32396 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32398         * Makefile.am: make assemblies dir have \ instead of / on windows.
32400 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32402         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32403         iterate over the NESTEDCLASS table using a linear search since the
32404         table is not guaranteed to be sorted by the secondary key.
32406         * class.c (mono_class_create_from_typedef): fixed up call to
32407         mono_metadata_nesting_typedef.
32408         
32409 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32411         * marshal.c (mono_string_to_byvalstr): clear the memory as
32412         suggested by Jerome Laban <jlaban@wanadoo.fr>
32414 2003-02-26  Dick Porter  <dick@ximian.com>
32416         * process.c: Cope with padding in .rsrc blocks
32418 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32420         * metadata.h: reverted the filter_len change, it breaks reflection
32421         
32422 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32424         * metadata.h: added a new field to store the filter_len
32425         
32427 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32429         * reflection.c: handle custom attributes for types and members
32430         created with Reflection.Emit (bug#38422).
32432 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32434         * reflection.c: define RTSpecialName automatically for constructors for
32435         compatibility with MS.NET.
32437         * reflection.c (mono_reflection_create_runtime_class): initialize
32438         nested_in field of dynamically created classes.
32440 2003-02-22  Martin Baulig  <martin@ximian.com>
32442         * debug-mono-symfile.h: Incremented version number.
32444 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32446         * object.h icall.c process.c: fix warnings.
32448 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32450         * appdomain.h appdomain.c:
32451         (mono_domain_try_type_resolve): split the 
32452         name_or_tb argument into a name and a tb argument.
32453         (mono_domain_has_type_resolve): new function to check whenever the
32454         application has registered a TypeResolve event handler.
32455         
32456         * icall.c reflection.h reflection.c: move the type resolve logic into
32457         mono_reflection_get_type () so it will be invoked when 
32458         Assembly::GetType () is called.
32460         * reflection.c:
32461         (mono_reflection_get_type): renamed to get_type_internal.
32462         (mono_reflection_get_type): fixed type name generation so it works 
32463         for nested types too.
32464         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32465         costly type name generation if there is no resolve event handler.
32467 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32469         * class.c, image.c: load exported types from file references.
32471 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32473         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32474           used to cache the managed methods used to create proxies and make 
32475           remote invocation of methods.
32476         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32477           to be remotely created.
32478         * object.c: Modified the method mono_class_vtable(). It now initializes 
32479           the remote flag of the vtable. Modified mono_object_new_specific(), 
32480           so now it checks the remote flag.
32481         * icall.c: Added a couple of internal methods, one for enabling instance 
32482           creation interception for a type, and one for creating objects bypassing
32483           the remote check.
32485 2003-02-18  Martin Baulig  <martin@ximian.com>
32487         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32488         New interncall to get a method's metadata token.
32490         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32491         New interncall for the debugger.
32493 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32495         * class.c (mono_class_setup_vtable): allocate supertype array
32497 2003-02-18  Martin Baulig  <martin@ximian.com>
32499         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32501 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32503         * reflection.c:
32504         (assembly_name_to_aname): jump over unknown properties (i've found
32505         something like: 'type, assembly, version=xxx, custom=null, public...',
32506         so now will ignore custom=null and still get the rest of the values).
32508 2003-02-17  Dick Porter  <dick@ximian.com>
32510         * threads.c: Have Thread.Start() wait for a semaphore to signal
32511         that the thread has set up all its local data.  This fixes bug
32512         34323, where Abort() raced the new thread's TLS data.
32514         Also removes the handle_store() call from start_wrapper, because
32515         threads are now always created suspended and there is no longer a
32516         race between the parent and child threads to store the info.
32518 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32520         * image.c: explain the #- heap issue in a message, hopefully
32521         avoiding FAQs on mono-list.
32523 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32525         * icall.c:
32526         (GetEntryAssembly): if the domain has not invoked
32527         AppDomain.ExecuteAssembly yet, return the assembly of the default
32528         AppDomain.
32530 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32532         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32534 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32536         * metadata.c, reflection.c: simple speedup to type hash
32537         and equals code.
32539 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32541         * image.c, image.h, class.c, assembly.c: move module loading
32542         to MonoImage. When loading metadata, consider alignemnet from
32543         the start of metadata, not from the metadata address in memory.
32545 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32547         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32548         AssemblyBuilder objects. Factored out custom attribute creation into
32549         a separate function.
32550         (create_custom_attr): new function to create custom attributes.
32552 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32554         * Makefile.am: Got tired of typing the full pathname to pedump.
32555         Until there is another option, am installing this.
32557 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32559         * class.c (class_compute_field_layout): always set field->parent 
32560         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32562 2003-02-11  Dick Porter  <dick@ximian.com>
32564         * threads-types.h:
32565         * monitor.c: Rewrote Monitor, making lock much faster and
32566         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32567         creates them as needed.
32569         * exception.c: Added SynchronizationLockException
32571         * threads.c: Deleted old Monitor implementation.  The new one is
32572         in a new file.
32574 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32576         * class.c: handled TypedReference type code. Set the correct size for
32577         class data. Setup interface_offsets for interface classes, too.
32579 2003-02-09  Martin Baulig  <martin@ximian.com>
32581         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32583 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32585         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32586         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32587         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32588         * verify.c: check for code that runs after the end of the method.
32590 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32592         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32593         "System.Math::Round2".
32594         * sysmath.h: Added Floor, Round and Round2 definitions.
32595         * sysmath.c: Modified certain functions that were not 100% compliant
32596         with MS.NET (math precision) and added the implementation of Floor,
32597         Round and Round2.
32599 2003-02-07  Martin Baulig  <martin@ximian.com>
32601         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32603 2003-02-07  Martin Baulig  <martin@ximian.com>
32605         * debug-mono-symfile.c: Reflected latest symwriter changes.
32606         (mono_debug_create_mono_symbol_file): Removed.
32607         (mono_debug_open_mono_symbol_file): Take an argument which
32608         specifies whether to create a dynamic symbol file.
32610 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32612         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32614 2003-02-05  Martin Baulig  <martin@ximian.com>
32616         * reflection.c (mono_image_build_metadata): Make this public,
32617         protect it against being called multiple times, don't create
32618         resources and don't build the compressed metadata here.
32619         (mono_image_create_pefile): Do this here.
32621         * icall.c
32622         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32624 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32626         * socket-io.c: fixed bug #36322.
32628 2003-02-06  Piers Haken <piersh@friskit.com>
32630         * appdomain.[ch]:
32631         * class.h:
32632         * debug-mono-symfile.c:
32633         * icall.c:
32634         * loader.c:
32635         * mono-config.c:
32636         * monosn.c:
32637         * reflection.c:
32638         * socket-io.c: warning cleanups
32640 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32642         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32643         function. works like remoting invoke, but does a check for the Proxy first.
32645 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32647         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32649 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32651         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32652         array of pointers.
32653         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32654         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32656         * object.c (mono_store_remote_field_new): used by the new jit
32657         instead of mono_store_remote_field
32658         (mono_load_remote_field_new): used by the new jit
32659         instead of mono_load_remote_field
32661 2003-02-05  Patrik Torstensson
32663         * appdomain.c: changed unload to take the domain id instead
32664         of domain
32665         
32666         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32669 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32671         * appdomain.c: don't look for assemblies in ApplicationBase if
32672         PrivateBinPathProbe is set.
32674 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32676         * object.c: make the first argument in main_args contain the absolute
32677         path to the assembly. Fixes bug #37511.
32679 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32681         * icall.c: get correct UTC offset for countries not using daylight
32682         time saving. Fixes bug #30030.
32684 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32686         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32687         and 1 are the family).
32689 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32691         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32693         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32695 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32697         * reflection.c: added support for SignatureHelper tokens, which is
32698         needed by the Calli opcode.
32700         * reflection.h: track changes to SignatureHelper class.
32702         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32704 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32706         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32708 2003-02-03  Patrik Torstensson
32709         * appdomain.[c|h], domain.c : 
32710          - Added support for getting a domain via domain id
32711          - Support for setting and getting domain from System.AppDomain 
32712            (used in cross appdomain channel)
32713          - Added support for get/set for a MonoAppContext on a thread 
32714            (Context class in System.Runtime.Remoting.Contexts),
32715          - Removed hack in Get/SetData and ExecuteAssembly.
32716         
32717         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32718         the managed world to get control when a proxy is created.
32720         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32721         
32722 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32724         * icall.c
32725         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32726         Populate the codebase field as well.
32728 2003-02-02  Martin Baulig  <martin@ximian.com>
32730         * debug-mono-symfile.c
32731         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32732         (mono_debug_symfile_add_method): Allow interncalls.
32734 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32736         * icall.c: throw parse exception if strtod fails or the string is empty.
32738 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32740         * marshal.c: handle object type separately from defined
32741         class types.
32743 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32745         * marshal.c: handle NATIVE_LPSTR for strings when it's
32746         explicitly specified.
32748 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32750         * reflection.c, reflection.h, icall.c: setup the reflection
32751         handle cache for ModuleBuilders and AssemblyBuilders.
32753 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32755         * reflection.c (reflection_methodbuilder_to_mono_method): set
32756         pinvoke flag
32758 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32760         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32762 2003-01-29  Dick Porter  <dick@ximian.com>
32764         * threads.c: No need for the fake_thread kludge now that Thread
32765         doesn't run a class constructor
32766         
32767 2003-01-29  Dick Porter  <dick@ximian.com>
32769         * threads.c: Use g_direct_hash instead of the rather bogus
32770         g_int_hash
32772 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32774         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32775         (fix pinvoke12.exe)
32776         (mono_marshal_get_struct_to_ptr): generate valid IL code
32777         (mono_marshal_get_ptr_to_struct): generate valid IL code
32778         (*): correctly set sig->pinvoke, we need to memdup the signature
32779         to do that
32781 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32783         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32784         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32786 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32788         * profiler.c: provide more callers information.
32790 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32792         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32794         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32796         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32798 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32800         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32801         exception instead of going into an infinite loop on dates which it 
32802         can't yet handle.
32804         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32805         out-of-range exception if needed.
32807         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32808         an implementation for an interface method and to override an inherited
32809         method at the same time. 
32810         Imagine a scenario when a virtual method is used to override a
32811         virtual abstract method in a parent class, and this same method 
32812         provides an implementation for an method inherited from an interface. 
32813         In this case, the interface resolution code will set im->slot, which 
32814         means that the virtual method override pass will skip this method 
32815         which means a pointer to the abstract method inherited from the parent
32816         will remain in the vtable of this non-abstract class.
32818         * class.c: (mono_class_setup_vtable): continue search for a real 
32819         method if only an abstract method is found.     
32821 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32823         * reflection.c: add size to encoding for ByValStr and ByValArray
32824         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32826 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32828         * class.c (mono_class_setup_vtable): pass the override info as an
32829         argument.
32831         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32832         correctly.
32833         
32834         * reflection.c (ensure_runtime_vtable); add support for method 
32835         overrides.
32836         
32837 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32839         * reflection.c (resolution_scope_from_image): Hack to work to work with
32840         dynamic assemblies.
32842         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32843         added a 'force_ref' argument to force this function to allways return 
32844         a TypeRef. This is needed by mono_image_get_memberref_token ().
32845         
32846 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32848         * reflection.c (mono_image_get_type_info): interfaces really don't have
32849         a parent.
32851         * reflection.c (mono_image_basic_init): fill out missing fields of
32852         image structure.
32854         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32855         dynamic assemblies. This is required so dynamic assemblies show up in
32856         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32857         Type::GetType() etc. This is consistent with MS behaviour.
32859         * image.c image.h reflection.c: add newly created classes to the name 
32860         cache so mono_class_get () will find them.      
32862 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32864         First part of changes to get IKVM.NET running under mono.
32865         
32866         * appdomain.h, appdomain.c: added new function 
32867         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32868         This function will call AppDomain::DoTypeResolve to do the actual work.
32870         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32871         moved existing code dealing with dynamic tokens to a new function 
32872         called mono_reflection_lookup_dynamic_token (). This function will 
32873         raise TypeResolve events when appropriate. Since reflection.c is not 
32874         part of libmetadata, a new hook function called 
32875         mono_lookup_dynamic_token() is added to class.c which will call this.
32877         * assembly.h assembly.c: make the invoke_load_hook function public,
32878         so it can be called for dynamic assemblies.
32880         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32882         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32883         type isn't found.
32885         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32886         MonoGHashTable, since it contains pointers to objects which the GC 
32887         needs to track.
32889         * assembly.c (search_loaded): remove unused variable.
32890         
32891 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32893         * object.c: fixed issue exposed by gcc-generated IL programs
32894         that use RVA data for pointers.
32896 2003-01-25  Martin Baulig  <martin@ximian.com>
32898         * threads.c (start_wrapper): Moved the initialization of
32899         `start_func' above the mono_new_thread_init() call to which we
32900         pass it as argument.
32902 2003-01-24  Martin Baulig  <martin@ximian.com>
32904         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32905         the MonoThread pointer.
32907 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32909         * icall.c: Rename `PowImpl' to Pow.
32911 2003-01-23  Dick Porter  <dick@ximian.com>
32913         * threads.c (start_wrapper): Create a Thread object if needed, so
32914         the Main() thread can do the class initialisation in a subthread
32915         that has been set up to allow managed code execution.
32917         Pass the thread ID instead of the MonoThread pointer to the thread
32918         start and attach callbacks.  This change is required, because the
32919         jit thread start callback must be called _before_ the Thread
32920         object can be created.
32921         
32922         (mono_thread_init): Removed much object creation code that is no
32923         longer needed.  No managed code is called from here now.
32925         * object.c (mono_runtime_exec_managed_code): Create a subthread
32926         for Main, and call back to the runtime to use it.
32927         Set the exit code when Main exits.
32929         * gc.c: Make sure domain finalisation happens in a subthread.
32930         Re-enable threaded GC, fixing bug 31333 (again).
32932         * environment.c: System.Environment internall calls (so far just
32933         ExitCode is here, the others are still in icall.c)
32935         * appdomain.c (mono_runtime_cleanup): All threads running managed
32936         code should have finished before mono_runtime_cleanup() is
32937         reached, so no need to clean up threads.
32939 2003-01-22  Martin Baulig  <martin@ximian.com>
32941         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32942         `gpointer func' arguments.      
32943         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32944         but added `MonoThread *thread' argument.
32945         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32947         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32948         and pass it to the mono_thread_start_cb callback.
32949         (mono_install_thread_callbacks): New public function to install a
32950         set of callbacks which are set by the debugger.
32951         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32953 2003-01-22  Martin Baulig  <martin@ximian.com>
32955         * Makefile.am: Install debug-mono-symfile.h.
32957 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32959         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32961 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32963         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32964         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32965         (mono_array_class_get): correctly set access levels of arrays
32967 2003-01-20      Patrik Torstensson
32968         * image.h (MonoAssemblyName): changed major, minor, build, revision
32969         from signed to unsigned.
32971 2003-01-20  sean kasun <skasun@azstarnet.com>
32973         * reflection.c (load_cattr_value): Now this handles
32974         MONO_TYPE_SZARRAY.  Fixes bug #35629
32976 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32978         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32979         integer value
32981 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32983         * decimal.c: fixed bug #26056.
32985 2003-01-17  Martin Baulig  <martin@ximian.com>
32987         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32989 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32991         * exception.[ch]:
32992         (mono_get_exception_type_initialization): new function.
32994         * object.c: throw a TypeInitializationException when an exception is
32995         thrown invoking the class constructor.
32997 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32999         * reflection.c: fixed attribute reading.
33001 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33003         * icall.c:
33004         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33005         provided, look for the type in the calling assembly and then in
33006         mscorlib; if the assembly name is provided, only try that one.
33008 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33010         * object.c: register the vtable before there is a chance it's
33011         queried again recursively.
33013 2003-01-13  Duncan Mak  <duncan@ximian.com>
33015         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33016         gc-internal.h. 
33017         
33018 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33020         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33022 2003-01-11  Martin Baulig  <martin@ximian.com>
33024         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33025         this to 20 for the release.
33027 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33029         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33031         * loader.c (mono_method_get_marshal_info): bug fix
33033         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33034         structures with explicit layout
33036 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33038         * profiler.c: made the output more readable (and sorted). 
33039         Added caller information for the allocation profiler.
33041 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33043         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33045 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33047         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33048         to get value types.
33049         
33050 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33052         * object.c, profiler.h, profiler.c, profiler-private.h:
33053         Added object allocation profiler.
33055 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33057         * reflection.h, reflection.c: handle global methods.
33058         Compress blob entries.
33060 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33062         * marshal.c: fix compilation.
33064 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33066         * loader.c (mono_method_get_marshal_info): impl.
33068         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33070 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33072         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33073         for reference types.
33075 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33077         * loader.c: fixed off by one error in loaded parameter names.
33079 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33081         * marshal.c (mono_marshal_get_icall_wrapper): like
33082         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33083         instead of a MonoMethod.
33085 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33087         * decimal.c: fixed bug #36537.
33089 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33091         * marshal.c: throw a missing method exception if a
33092         P/Invoke method is not found.
33094 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33096         * icall.c: allow a null this for constructors.
33098 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33100         * icall.c: raise the proper exceptions if the arguments to the
33101         internal Invoke are incorrect.
33103 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33105         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33107 2003-01-03  Martin Baulig  <martin@ximian.com>
33109         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33111 2002-12-31  Martin Baulig  <martin@ximian.com>
33113         * debug-mono-symfile.c: Completely rewrote the type section.
33114         Instead of using individual malloc()ed fields, we use one big
33115         continuous memory area and offsets into this area.
33116         See the comments in the source code for details.
33118 2002-12-30  Martin Baulig  <martin@ximian.com>
33120         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33122 2002-12-30  Martin Baulig  <martin@ximian.com>
33124         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33125         line number table in this data blob instead of using an external
33126         pointer.
33128 2002-12-28  Martin Baulig  <martin@ximian.com>
33130         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33132 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33134         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33135         as a boxed return type.
33137 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33139         * appdomain.c
33140         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33141         g_build_filename to properly get separators on the filename created.
33143         * object.h: Small change, introduce MonoMarshalByRefObject to
33144         track the layout of that structure in the C# universe as we make
33145         changes there.
33147 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33149         * object.c: removed assert to allow static fields on interfaces.
33150         * loader.c: a TypeSpec may be used for any type, not just arrays.
33152 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33154         * class.c, class.h: added mono_class_array_element_size ().
33155         Ignore static methods in interfaces.
33157 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33159         * threads.c: fixed the build under cygwin.
33161 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33163         * reflection.c: handle nullref constants. Allocate keys for
33164         reflection handles with the GC.
33166 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33168         * threads.c, threads.h: added mono_thread_get_abort_signal()
33169         to get a suitable signal for thread abort.
33171 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33173         * metadata.c: fix handling of ExportedType table.
33175 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33177         * icall.c: added WriteWindowsDebugString internal call.
33179 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33181         * reflection.h: added fields to match C# implementation.
33183 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33185         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33187 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33189         * gc.h, gc-internal.h: Rename header for GC internal calls to
33190         gc-internal.h from gc.h as to not clash with Boehm GC having its
33191         header installed as <gc.h> in outside include paths.
33192         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33193         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33195 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33197         * icall.c: assign minor, build and revision in FillName.
33199 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33201         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33202         Added support for running code generated by Reflection.Emit.
33204 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33206         * appdomain.c: check for NULL argument in LoadFrom.
33208 2002-12-10  Dick Porter  <dick@ximian.com>
33210         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33212 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33214         * appdomain.c: fix buglet when building exe file name.  Handle full
33215         assembly name (needed after latest changes to AssemblyName).
33216         * image.c:
33217         (mono_image_close): free some hashtables.
33219 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33221         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33222         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33223         on some systems (redhat 7.3) 
33225 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33227         * threads.c: delete the critical section of a sync block,
33228         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33230 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33232         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33234 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33236         * appdomain.[ch]: handle the assembly preload event to try loading the
33237         assemblies using the paths we have in the current domain.
33239         * assembly.[ch]: created an assembly preload hook that is called to try
33240         loading the assembly by other means that the ones provided here.
33242         * domain.c: initialize the domain search path.
33244         From now on, assemblies (TODO: except corlib and System) are loaded
33245         according to these rules when using mono_assembly_load ():
33247                 1. It tries to load the assembly from the ApplicationBase
33248                 of the current domain appending .dll and .exe (TODO: have to
33249                 try loading from name/name.dll and name/name.exe).
33251                 2. It tries the search path specified in PrivateBinPath for the
33252                 current domain (if any).
33254                 3. Previous behavior.
33256 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33258         * icall.c: implemented GetInterfaceMap() related icall.
33259         * domain.c, loader.h: load MethodInfo in mono_defaults.
33261 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33263         * gc.c: disable the finalizer thread for now, untill all the issues
33264         with it are resolved.
33266 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33268         * string-icalls.c: handle embedded nulls in string ctor when the
33269         length is specified.
33271 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33273         * class.c: look for explicit interface implementation in parent
33274         classes, too.
33276 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33278         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33280 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33282         * gc.c: protect handles with a critical section.
33284 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33286         * icall.c:
33287         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33288         parameters. If no assembly specified, try getting the type from all
33289         the assemblies in the current domain, else, load the assembly and get
33290         the type from it.
33292 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33294         * marshal.c: applied patch from Aleksey Demakov that fixes
33295         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33297 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33299         * icall.c: fixed get_location.
33301 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33303         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33304         declarations to make it work with older gcc. 
33306         * loader.c (mono_get_method): set signature->pinvoke for native calls
33308 2002-11-20  Dick Porter  <dick@ximian.com>
33310         * threads.c (mono_thread_init): Set the main thread's handle
33312 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33314         * gc.c: allow compilation without GC support. Changed to match the
33315         mono coding style.
33317 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33319         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33321 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33323         * reflection.c: set a public key token on the core assemblies.
33325 2002-11-18  Dick Porter  <dick@ximian.com>
33327         * threads.c: Split out some thread initialisation so that other
33328         files can set the start callback function.
33330         * gc.c: Run finalisers in a separate thread, to avoid stack
33331         overflow.  Fixes bug 31333.
33333         * appdomain.c: Set up GC finalisation thread.
33335         * reflection.c: 
33336         * object.c: 
33337         * domain.c: Use gc.h macros for GC_malloc
33338         
33339 2002-11-15  Dick Porter  <dick@ximian.com>
33341         * threadpool.c: 
33342         * threads.c:
33343         * appdomain.c: Removed mono_runtime_init_with_attach(),
33344         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33345         merging the extra parameter with the existing function.  Removed
33346         unneeded code in mono_thread_attach().
33348 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33350         * image.c (mono_image_loaded_by_guid): a method to get loaded
33351         images by guid. 
33352         (load_metadata_ptrs): we store the guid as string.
33354 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33356         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33358         * metadata.c (mono_guid_to_string): imported method form Zoltan
33359         Varga (slightly modified)
33361         * assembly.c (mono_assembly_open): load precompiled code
33363         * loader.h (MonoMethod): we store the method token for use in the
33364         aot compiler. 
33366 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33368         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33369         the hook function called when an assembly is loaded.
33370         
33371         * domain.c: Modified file.
33372         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33374         Fixes bug #33196.
33376 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33378         * reflection.c: Map PEFileKind to the value expected by the WinNT
33379         image loader. 
33381 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33383         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33384         Read until the buffer is filled completely.
33386 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33388         * icall.c: implemented MonoType.InternalGetEvent ().
33390 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33392         * appdomain.c: implemented InitAppDomainSetup. Delayed
33393         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33394         the entry_assembly.
33396         * assembly.c: base_dir is now an absolute path ending with
33397         G_DIR_SEPARATOR.
33399         * icall.c: modified get_location according to the above changes.
33401         * object.c: init AppDomain.SetupInformation for the default domain after
33402         we have the entry assembly.
33404         * domain.c: when unloading a domain, setup = NULL.
33406 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33408         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33410 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33412         * object.h, object.c: introduced mono_object_get_virtual_method ()
33413         to lookup the method invoked on an object when a callvirt is done on
33414         a method.
33415         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33417 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33419         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33420         current domain when loaded an assembly and failed to load it.
33422         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33424 2002-10-31  Dick Porter  <dick@ximian.com>
33426         * icall.c: 
33427         * file-io.h: 
33428         * file-io.c: Return the error status in a parameter, as the
33429         GetLastError() value has long since been blown away if we try and
33430         look it up in a subsequent internal call invocation.  Delete the
33431         GetLastError() internal call, because it's useless.
33433 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33435         * class.[ch]: added cast_class to fix bug 29517
33437 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33439         * marshal.c: create valid IL code in the filter clause:
33440         the new JIT is less forgiving:-)
33442 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33444         * icall.c: removed get_property internal call.
33446 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33448         * appdomain.h domain.c: Added an ID to appdomains.
33449         
33450         * threads.c threads.h icall.c: Implement icall
33451         Thread:GetDomainID(), and remove unused icall 
33452         CurrentThreadDomain_internal.
33454 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33456         * icall.c: Don't recurse through the base types in GetConstructor.
33457         Fixes bug #32063. 
33459 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33461         * mempool.h, mempool.c: added mono_mempool_empty() and
33462         mono_mempool_stats().
33464 2002-10-23  Dick Porter  <dick@ximian.com>
33466         * file-io.c: 
33467         * file-io.h: 
33468         * icall.c: Added MonoIO.GetFileType internal call
33470 2002-10-17  Dick Porter  <dick@ximian.com>
33472         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33473         delegate semaphore before waiting for all threads to finish,
33474         because new threads can also call async delegates.  Fixes bug
33475         32004.
33477         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33478         of 3 seconds, in case another async job is queued.  (This part is
33479         needed because the bug fix reintroduced the 3s exit lag.)  This
33480         makes the mono_runtime_shutdown flag superfluous.
33482 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33484         * reflection.c: include ehader size in method section headers.
33485         Really check for suplicated modules entries.
33487 2002-10-17  Martin Baulig  <martin@gnome.org>
33489         * debug-mono-symfile.c: Added back support for locals.
33491 2002-10-14  Martin Baulig  <martin@gnome.org>
33493         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33494         MONO_TYPE_VOID.
33496 2002-10-14  Martin Baulig  <martin@gnome.org>
33498         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33499         mono_class_get() instead of looking in the class cache. 
33501 2002-10-13  Martin Baulig  <martin@gnome.org>
33503         * debug-mono-symfile.c: Set version number to 28, include the
33504         signature in method names.
33506 2002-10-13  Martin Baulig  <martin@gnome.org>
33508         * debug-mono-symfile.h: Set version number to 27.
33510 2002-10-11  Martin Baulig  <martin@gnome.org>
33512         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33514 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33516         * metadata.c, metadata.h: added helper function to allocate signatures.
33518 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33520         * icall.c: added internal call to get the location of machine.config.
33522 2002-10-08  Martin Baulig  <martin@gnome.org>
33524         * debug-mono-symfile.c: Ignore classes with a pending init for the
33525         moment.
33527 2002-10-03  Dick Porter  <dick@ximian.com>
33529         * threads.c: Freebsd pthread_t is a pointer
33531 2002-10-03  Dick Porter  <dick@ximian.com>
33533         * socket-io.c: Implemented GetHostName_internal
33535 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33537         * mono-config.c:
33538         (mono_config_parse_file): don't leak the text.
33540 2002-10-02  Martin Baulig  <martin@gnome.org>
33542         * debug-mono-symfile.c: Added support for methods.
33544 2002-10-01  Martin Baulig  <martin@gnome.org>
33546         * debug-mono-symfile.c: Don't emit methods and line numbers for
33547         the dynamic symbol file, just write the type table.  We can easily
33548         have an external helper program which creates a symbol file for an
33549         IL file.        
33551 2002-10-01  Dick Porter  <dick@ximian.com>
33553         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33554         Only add the handle to the cleanup array when we're about to
33555         launch the thread.  Bug 31425 deadlocked when the test was run on
33556         mono under w32.
33558 2002-10-01  Martin Baulig  <martin@gnome.org>
33560         * debug-mono-symfile.c: Added support for properties.
33562 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33564         * reflection.c: unaligned store fix from Mark Crichton
33565         <crichton@gimp.org>.
33567 2002-09-27  Martin Baulig  <martin@gnome.org>
33569         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33570         New interncall.
33572 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33574         * assembly.h, assembly.c: use a sane API to hook into the assembly
33575         loading process instead of a useless special-purpouse hack
33576         (ngen needs a hook, too, for example).
33578 2002-09-27  Dick Porter  <dick@ximian.com>
33580         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33581         io-layer can set up some process handle info.  Not needed on w32,
33582         but doesn't hurt either.
33584         * process.c: Pass the program name in the second parameter to
33585         CreateProcess, so the path is searched.  Include the working
33586         directory. Implemented process name, process enumeration, and some
33587         process detail internal calls.
33588         
33589         * icall.c: Added internal calls for process lookup, and some
33590         process details
33592 2002-09-26  Martin Baulig  <martin@gnome.org>
33594         * assembly.c (mono_install_open_assembly_hook): New global
33595         function to install a function to be invoked each time a new
33596         assembly is loaded.
33597         (mono_assembly_open): Run this callback function if set.
33599         * debug-mono-symfile.c: Put back line numbers for the dynamic
33600         symbol file and also record the .il file as source file.  This
33601         allows us to install the temporary symbol file as `file.dbg' just
33602         like a compiler-generated one.
33604 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33606         * Corrected typo in gc.c (BOHEM vs BOEHM).
33608 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33610         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33611         GetProperties. Also avoid calling g_slist_length in GetProperties and
33612         GetMethods.
33614 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33616         * reflection.c: avoid unaligned stores (bug spotted by
33617         Mark Crichton  <crichton@gimp.org>).
33619 2002-09-25  Martin Baulig  <martin@gnome.org>
33621         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33622         instead of guint64 for addresses and added prologue/epilogue info.
33624 2002-09-25  Martin Baulig  <martin@gnome.org>
33626         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33627         store line number info.  For the dynamic symbol file, we only need
33628         to provide the JIT generated dynamic line number info for the dynamic
33629         symbol file.
33631 2002-09-25  Martin Baulig  <martin@gnome.org>
33633         * debug-mono-symfile.h: Incremented version number.
33635 2002-09-24  Martin Baulig  <martin@gnome.org>
33637         * class.c (mono_debugger_class_init_func): New global function
33638         pointer variable.
33639         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33640         call it.
33642         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33643         function.  This is called via the mono_debugger_class_init_func
33644         hook to add all types to the dynamic type table.
33645         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33646         from its metadata token.
33648         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33649         New interncall for the debugger.
33651 2002-09-24  Nick Drochak <ndrochak@gol.com>
33653         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33654         before using it in case it is null.
33655         
33656 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33658         * metadata.c: allow custom modifiers in local var signatures
33659         (bug spotted by Zoltan Varga).
33661 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33663         * class.c: deal with the <Module> class that may have a NULL vtable.
33664         Eliminate warnings.
33666 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33668         * image.c, image.h: more strong name helpers.
33669         * monosn.c: more work: convert pem keys to cryptoapi format.
33671 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33673         * string-icalls.c: speedup IndexOf.
33675 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33677         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33679 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33681         * icall.c: cleanup: use mono_object_domain ().
33683 2002-09-23  Martin Baulig  <martin@gnome.org>
33685         * debug-mono-symfile.c: Improved type support.
33687 2002-09-22  Martin Baulig  <martin@gnome.org>
33689         * debug-mono-symfile.c: Added support for reference types and strings.
33691 2002-09-22  Martin Baulig  <martin@gnome.org>
33693         * debug-mono-symfile.c: Started to work on the type table.
33695 2002-09-21  Martin Baulig  <martin@gnome.org>
33697         * debug-mono-symfile.c: Largely reworked the symbol table format.
33698         The symbol table is now incrementally updated each time a new
33699         method is added.  We're now also using our own magic and version
33700         so that you don't need to recompile all your classes if the
33701         dynamic table changes.
33702         (mono_debug_update_mono_symbol_file): Removed.
33703         (mono_debug_symfile_add_method): New function to add a method.
33705 2002-09-21  Martin Baulig  <martin@gnome.org>
33707         * icall.c
33708         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33709         New interncall.
33711         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33712         New interncall to get a method from its metadata token.
33714 2002-09-21  Martin Baulig  <martin@gnome.org>
33716         * debug-mono-symfile.c: Create type table.
33718 2002-09-20  Martin Baulig  <martin@gnome.org>
33720         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33722 2002-09-20  Martin Baulig  <martin@gnome.org>
33724         * debug-mono-symfile.c: Provide information about params and locals.
33726 2002-09-20  Martin Baulig  <martin@gnome.org>
33728         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33729         New interncall.
33731         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33732         interncall to get a method from its metadata token.
33734 2002-09-20  Martin Baulig  <martin@gnome.org>
33736         * debug-mono-symfile.c: Added a few checks for method->header
33737         being non-NULL.  This should never happen, but for the moment
33738         let's use a g_warning() rather than a g_assert().
33740 2002-09-19  Mark Crichton  <crichton@gimp.org>
33742         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33743         even if support for it isn't present.  Added an #ifdef to fix this.
33745         * socket-io.c: Added checks back for Solaris support.
33747 2002-09-19  Martin Baulig  <martin@gnome.org>
33749         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33750         changes in the symbol file format.
33752 2002-09-18  Martin Baulig  <martin@gnome.org>
33754         * debug-mono-symfile.c: Set version number to 21.
33756 2002-09-18  Dick Porter  <dick@ximian.com>
33758         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33759         on netbsd.  Fixes bug 30051.
33761 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33763         * reflection.c:
33764         (set_version_from_string): little fix.
33766 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33768         * monosn.c, Makefile.am: added strong name utility.
33769         * reflection.h, reflection.c: implemented delayed signing,
33770         locale, version and hash id assembly attributes.
33772 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33774         * loader.c, metadata.c: load param attributes in signatures.
33776 2002-09-16  Martin Baulig  <martin@gnome.org>
33778         * debug-mono-symfile.c: Added string table with all method names.
33780 2002-09-14  Martin Baulig  <martin@gnome.org>
33782         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33783         fast method lookup.
33785 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33787         * reflection.c: record the public key token of referenced assemblies.
33789 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33791         * image.c, image.h: added functions to get the strong name and the
33792         public key of an assembly.
33793         * pedump.c: use them.
33795 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33797         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33799 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33801         * marshal.c (mono_marshal_get_managed_wrapper): Added
33802         MONO_TYPE_BOOLEAN 
33804 2002-09-11  Martin Baulig  <martin@gnome.org>
33806         * gc.c: Call GC_unregister_disappearing_link() on all links when
33807         finalizing them, this is necessary to aviod a crash in boehm's
33808         finalize handler.
33810 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33812         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33813         nick@chemlab.org.
33815 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33817         * icall.c: implemented MonoType::Module.
33818         * reflection.c, reflection.h: mono_module_get_object () from
33819         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33821 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33823         * icall.c: ignore overridden methods in GetMethods ().
33824         Fix for FieldInfo::SetValue().
33825         * object.c: handle float/double in runtime invoke.
33827 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33829         * object.c: allow a constructor to be called again on an object.
33831 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33833         * class.h, class.c: move field layout code to it's own function and
33834         export it. Get an interface id earlier. Move fields in MonoClass
33835         so they are more cache friendly and align the bitfields.
33836         * loader.c: temporary handle get_param_names() for a runtime method.
33837         * reflection.c, reflection.h: more code to handle runtime creation of
33838         types.
33840 2002-09-09  Martin Baulig  <martin@gnome.org>
33842         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33843         signature with the pinvoke field being set for the actual call.
33845 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33847         * icall.c: removed some unused icalls. Start of map of glib charsets
33848         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33850 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33852         * debug-helpers.c: break infinite loop (found and fixed by
33853         Holger Arnold <harnold@gmx.de>).
33855 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33857         * icall.c: target may be null in create_delegate.
33859 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33861         * marshal.c: handle a boolean return type.
33863 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33865         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33867 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33869         * gc.c: fix weakreferences.
33871 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33873         * icall.c: added icall to get default codepage.
33875 2002-09-03  Dick Porter  <dick@ximian.com>
33877         * threads.h: 
33878         * threads.c: Use MonoThread instead of MonoObject where
33879         apropriate.
33881         Store running thread objects in a hash table, so that we have all
33882         the info to hand when waiting for them to finish
33883         (means we don't need OpenThread() any more, so mingw builds should
33884         be fully functional again.)
33886         * verify.c:
33887         * object.h: Added thread ID to MonoThread
33889 2002-09-03  Martin Baulig  <martin@gnome.org>
33891         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33893 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33895         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33897 2002-09-03  Martin Baulig  <martin@gnome.org>
33899         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33900         argument to store the end address of the disassembled instruction.
33902         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33903         here from debug-symfile.h.
33904         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33905         JIT into this struct.
33906         (MonoSymbolFile): Added `char *image_file' field.
33907         (MonoDebugGetMethodFunc): Removed.
33908         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33909         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33910         (mono_debug_find_method): New method.
33912         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33913         create a full symbol file.
33914         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33915         and static symbol files.
33916         (mono_debug_find_method): The symbol file keeps an internal method hash,
33917         call this to get a MonoDebugMethodInfo from a MonoMethod.
33919         * debug-symfile.[ch]: Removed.
33921 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33923         * image.c (do_mono_image_open): Remove linker version check.
33925 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33927         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33928         wrappers for instance methods.
33929         
33930 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33932         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33934 2002-08-28  Dick Porter  <dick@ximian.com>
33936         * Makefile.am: Export HOST_CC for w32 builds
33938 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33940         * file-io.c process.c: MonoString are null terminated, no
33941         need for mono_string_to_utf16() anymore.
33943 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33945         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33947 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33949         * icall.c, reflection.h: speedup System.MonoType.
33951 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33953         * reflection.c: allow null as the value of a string argument in
33954         custom attributes constructors.
33956 2002-08-27  Martin Baulig  <martin@gnome.org>
33958         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33959         `trampoline_address' field.
33961 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33963         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33964         check (fixes bug #29486) 
33966 2002-08-27  Martin Baulig  <martin@gnome.org>
33968         * debug-mono-symfile.c: Changed the file format in a way that allows us
33969         open it read-only and to use a specially malloced area for all the
33970         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33971         debugging IL code and there is no MCS generated symbol file for it.
33973 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33975         * object.c: added a define for a good string and array
33976         creation speedup (not enabled by default because we need to deal with
33977         the synch stuff).
33979 2002-08-26  Martin Baulig  <martin@gnome.org>
33981         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33982         function to create a dynamic symbol file.  This is used by the
33983         debugger to create a symbol file for IL code on-the-fly.
33985 2002-08-26  Martin Baulig  <martin@gnome.org>
33987         * loader.c (mono_lookup_pinvoke_call): Include the error message
33988         from g_module_error() in the error message.
33990 2002-08-24  Martin Baulig  <martin@gnome.org>
33992         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33993         function to update the symbol file.  The symbol file is mmap()ed
33994         writable, but private.  This allows us to install the symbol file
33995         together with the assembly.
33997 2002-08-24  Martin Baulig  <martin@gnome.org>
33999         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34000         but they can read the new symbol file format which mcs is now creating.
34002         * debug-symfile.c (mono_debug_find_source_location): Moved to
34003         debug-mono-symfile.c; this is now operating on the new symbol file.
34005 2002-08-23  Martin Baulig  <martin@gnome.org>
34007         * debug-helpers.c (mono_method_desc_from_method): New function to get
34008         a MonoMethodDesc from a MonoMethod.
34010 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34012         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34013         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34015 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34017         * string-icalls.[ch]: make helper methods static.
34019 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34021         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34022         types to it and to SetValueInternal.
34024         * object.c: Moved handle_enum label to its proper place. This was the
34025         f... bug! ;-)
34027         This time i compiled mcs and gtk-sharp and they both work.
34029 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34031         * icall.c: reverted partially my previous patch until 
34032         object.c:set_value handles enums correcly.
34034 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34036         * icall.c:
34037         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34038         (ves_icall_System_Environment_get_MachineName): removed warning when
34039         compiling under cygwin.
34041 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34043         * object.c: fixed field_get_value() for reference types.
34045 2002-08-22  Dick Porter  <dick@ximian.com>
34047         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34048         Don't free a buffer while it's still needed.  Patch from Jonathan
34049         Liger <Jonathan.liger@wanadoo.fr>
34051 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34053         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34054         internal call.
34056 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34058         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34059         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34061         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34062         we call unmanaged code which throws exceptions.
34064 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34066         * appdomain.h: added per-domain entry_assembly.
34067         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34068         arguments.
34069         * icall.c: Assembly::GetEntryAssembly icall.
34070         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34071         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34073 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34075         * appdomain.h, gc.c: added mono_domain_finalize ().
34077 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34079         * object.c:
34080         (mono_print_unhandled_exception): changed g_warning by g_printerr
34081         because g_log has a 1024 characters limit (yeah, i got a big stack
34082         trace). Don't print exception name, that should be in ToString 
34083         returned string.
34085 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34087         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34088         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34090 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34092         * object.c:
34093         (mono_print_unhandled_exception): after previous commit, i realized
34094         that MS calls ToString on the exception. I changed this function to
34095         do that. This way we get stack_trace for free.
34097 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34099         * object.c:
34100         (mono_print_unhandled_exception): invoke Message property instead of
34101         getting 'message' field from Exception. Don't allocate memory for
34102         'trace' and 'message' if not needed.
34104 2002-08-18  Dick Porter  <dick@ximian.com>
34106         * unicode.c: Fix asserts to match Encoder.cs checks
34108 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34110         * marshal.c: fix unaligned store issue and a few wrong
34111         opcode argument types.
34113 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34115         * icall.c: added GetUninitializedObjectInternal internal call.
34117 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34119         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34120         to the right domain.
34122 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34124         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34126         * class.c (class_compute_field_layout): set blittable to false for Strings
34128         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34130 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34132         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34133         first chunk of code to create types at runtime. Code to
34134         handle ReflectedType/DeclaringType. Make reflection handles
34135         domain specific.
34137 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34139         * class.c: set correct name in arrays.
34141 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34143         * appdomain.c (mono_domain_transfer_object): make it work with
34144         valuetypes. bug fixes.
34146 2002-08-12  Dick Porter  <dick@ximian.com>
34148         * object.h: Rename some parameters to avoid c++ keywords (Patch
34149         from Joseph Wenninger <kde@jowenn.at>)
34151 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34153         * icall.c: added icall to implement Assembly.GetFile*.
34155 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34157         * reflection.h, reflection.c: code to embed managed resources.
34159 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34161         * class.c: move all the type size stuff into
34162         class_compute_field_layout().
34164 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34166         * class.c: ensure enums have always the correct instance size.
34167         * unicode.c: remove wrong assert.
34169 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34171         * assembly.c: fix mem corruption issue.
34172         * image.h, image.c: added mono_image_get_resource () to access
34173         managed resources.
34174         * icall.c: implemented Assembly.EntryPoint property and some
34175         Managed Resources related internalcalls.
34178 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34180         * image.c, image.h: impemented mono_image_get_entry_point ().
34181         * appdomain.c: use mono_image_get_entry_point.
34183 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34185         * reflection.c: support the object type argument when loading
34186         custom attributes.
34188 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34190         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34191         String as return type.
34193 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34195         * reflection.c: fix encoding of named args for custom attrs to match
34196         the ms implementation. Read them back when instantiating custom
34197         attributes.
34199 2002-08-02  Radek Doulik  <rodo@ximian.com>
34201         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34202         by Dietmar as quick fix
34203         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34204         16 as stack size, used on more places as quick fix before Dietmar
34205         will fix it properly
34207 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34209         * object.h, object.c: added accessors for fields and properties.
34211 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34213         * class.c, class.h: made mono_class_get_field_from_name ()
34214         loop on parent types.
34215         Added mono_class_get_property_from_name ().
34217 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34219         * class.c, class.h: move the code to setup the type vtable in its own
34220         function so that it can be reused also for types created at runtime.
34221         Eliminate the "class" identifier from the header file.
34222         * reflection.c: setup the vtable for enums so that we can create
34223         objects for use in SetConstant ().
34225 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34227         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34228         instead of the delegate itself as this pointer (bug #28383)
34230 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34232         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34233         conversions.
34235 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34237         * loader.c: don't set the pinvoke bit on icalls.
34239 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34241         * debug-helpers.c (mono_method_full_name): only print a number to
34242         indicate wrapper type (so that the output is more readable in traces).
34244 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34246         * class.c (mono_class_init): include method override patch from Paolo
34248 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34250         * icall.c: fixed GetTypeCode().
34252 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34254         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34255         use real delegate invoke function to make it work with multicast
34256         delegates (fix bug# 28291).
34258 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34260         * object.c: load constant strings.
34262 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34264         * reflection.c: no magic numbers.
34265         * tabledefs.h: security action enum.
34267 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34269         * assembly.c: fix possible memory corruption.
34271 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34273         * reflection.h, reflection.c: added support for linking resources.
34274         * verify.c: check we have an updated corlib.
34276 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34278         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34279         string arrays.
34280         (mono_marshal_string_array): null terminate unmanaged string arrays.
34281         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34283 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34285         * icall.c: Type.GetType () can now return also types from the
34286         calling assembly.
34288 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34290         * loader.h, loader.c: stack walking support.
34291         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34292         GetCallingAssembly.
34294 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34296         * marshal.c: added optimisations for blittable types 
34298         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34299         (mono_class_setup_mono_type): set blittable attribute for single
34300         and double.
34302         * marshal.c (mono_string_utf8_to_builder): impl.
34303         (mono_string_builder_to_utf8): impl.
34304         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34306 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34308         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34309         (mono_marshal_get_managed_wrapper): impl. byref types
34311 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34313         * icall.c:
34314         (search_method): don't display debug message. 
34316 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34318         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34320 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34322         * appdomain.c: set the missing filename when throwing exception.
34324 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34326         * metadata.c (mono_type_size): code cleanup
34327         (mono_type_stack_size): removed some test code
34329 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34331         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34332         mono_get_exception_file_not_found now.
34334         * exception.c (mono_exception_from_name_two_strings): New version
34335         that will call a constructor with two string arguments. 
34336         (mono_get_exception_file_not_found): New helper routine, used to
34337         report file-not-found errors.
34339 2002-07-20  Dick Porter  <dick@ximian.com>
34341         * process.h:
34342         * process.c: Pass file handles to CreateProcess
34343         
34344         * icall.c:
34345         * file-io.h:
34346         * file-io.c: Implemented CreatePipe
34348 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34350         * metadata.c (mono_get_param_info): set alignment for value types
34352 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34354         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34355         Constify mono_domain_assembly_open().
34356         * loader.c: handle null namespace in icalls.
34358 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34360         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34361         (emit_str_to_ptr_conv): marshal object as structs
34363         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34365         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34367 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34369         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34370         (mono_marshal_get_native_wrapper): we an now return value types
34372 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34374         * verify.c: more checks implemented.
34376 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34378         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34379         (fix bug #27695)
34380         (mono_marshal_get_native_wrapper): allow byref arguments
34381         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34382         impl. PtrToStringXXX methods
34383         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34384         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34385         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34386         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34387         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34389 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34391         * reflection.c: fix buglet in parsing an assembly name.
34393 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34395         * marshal.c (emit_ptr_to_str_conv): first impl.
34397 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34399         * object.c, class.h: cache the vtable in the class as suggested by
34400         vargaz@freemail.hu (Zoltan Varga).
34402 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34404         * class.h, loader.c: added mono_field_from_token().
34405         * verify.c: first cut of type checking code.
34407 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34409         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34411 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34413         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34414         (fix bug #27782)
34415         (mono_marshal_get_remoting_invoke): impl.
34416         (mono_delegate_begin_invoke): impl.
34417         (mono_mb_emit_save_args): impl.
34418         (mono_delegate_end_invoke): impl.
34419         (mono_marshal_get_delegate_begin_invoke):
34420         (mono_marshal_get_delegate_end_invoke):
34421         (mono_marshal_get_delegate_invoke): generate a special name for
34422         those methods (including the signature) and associate them whith
34423         the delegate class. 
34425 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34427         * reflection.[ch]: 
34428         (mono_reflection_type_from_name): now it has a MonoImage parameter
34429         which is used as the default image to search the type in. If the image
34430         is NULL or getting the type from it fails, it defaults to corlib.
34432         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34433         new parameter.
34435 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34437         * reflection.c: update the parameter table index.
34439 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34441         * domain.c: don't include the mark byte in the string hash.
34443 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34445         * icall.cs: icall for Type.GetTypeCode ().
34446         * verify: a couple of fixes and disabled local initialization checks.
34448 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34450         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34452         * debug-helpers.c (mono_method_full_name): print the type of the
34453         runtime wrapper
34455         * metadata.c (mono_signature_hash): a hash function for signatures
34456         (mono_signature_hash): better hash algorithm
34458         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34460         * debug-helpers.c (mono_method_full_name): this can now generate
34461         method names with signatures
34463         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34464         method dont have this pointers.
34466 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34468         * reflection.c: fixup typebuilder tokens.
34469         * image.c: fix buglet.
34470         * marshal.h: remove whitespace.
34471         * metadata.h, metadata.c: reinstate code that was removed.
34472         * verify.c: handle catch directives and fix another couple of bugs.
34474 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34476         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34477         (mono_marshal_get_native_wrapper): make it comp. with the old code
34478         (mono_marshal_get_native_wrapper): support boolean
34479         (mono_marshal_get_managed_wrapper): support more types
34481 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34483         * class.c (class_compute_field_layout): compute class->blittable attribute.
34485 2002-07-09  Dick Porter  <dick@ximian.com>
34487         * threads.c: Make the thread cleaning up cope with threads that
34488         call ExitThread()
34490 2002-07-08  Radek Doulik  <rodo@ximian.com>
34492         * reflection.c (method_encode_code): use non-translated values to
34493         compute finally_start, this fixes exception handling on ppc, yay!
34495         * decimal.h (struct signscale): fix endianess
34497 2002-07-07  Radek Doulik  <rodo@ximian.com>
34499         * reflection.c: swap box_val and not val
34501 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34503         * reflection.c, reflection.h: handle full assembly info in type name.
34504         Handle Type arguments when loading custom attributes.
34505         * icall.c: updated to use new mono_reflection_type_from_name () method.
34507 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34509         * loader.c:
34510         (method_from_memberref): also print assembly name when method not found.
34512 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34514         * icall.c:
34515         (ves_icall_TypeGetProperties): fixed bug #27473. 
34517 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34519         * reflection.c: display image name and token when cannot find the
34520         .ctor for an attribute.
34522 2002-07-05  Martin Baulig  <martin@gnome.org>
34524         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34526 2002-07-04  Dick Porter  <dick@ximian.com>
34528         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34529         compile on mingw.  This will cause mingw builds to not wait for
34530         subthreads to terminate after the main thread does.  I've lodged a
34531         bug with the mingw developers for them to wrap OpenThread().
34533 2002-07-03  Dick Porter  <dick@ximian.com>
34535         * threads.c: Store thread IDs instead of handles, because
34536         GetCurrentThread() returns a pseudohandle and therefore stores
34537         useless values.  mono_thread_cleanup() continues checking the
34538         array of threads until it is empty, to cope with subthreads
34539         spawning new threads after the main thread has finished.
34541         * profiler.h:
34542         * profiler.c:
34543         * profiler-private.h: Pass the thread ID to thread profiler
34544         functions, instead of a handle
34546 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34548         * verify.c: fixes to make it more usable.
34549         * pedump.c: added --verify code to verify IL code in an assembly.
34551 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34553         * reflection.c: turn errors into warnings to allow compiling corlib.
34555 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34557         * reflection.c: add special cases to compile corlib.
34559 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34561         * reflection.c: handle properties with only a set method.
34563 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34565         * opcodes.h: add enum with opcodes in opval order.
34567 2002-07-01  Dick Porter  <dick@ximian.com>
34568         
34569         * object.h:
34570         * object.c (mono_runtime_run_main): Removed unneeded argument
34572 2002-06-28  Martin Baulig  <martin@gnome.org>
34574         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34576 2002-06-27  Dick Porter  <dick@ximian.com>
34578         * threads.c: Store the handle in both the parent thread and in the
34579         subthread, to minimise the time between starting a new thread and
34580         storing its ID.
34582 2002-06-26  Dick Porter  <dick@ximian.com>
34584         * appdomain.c (mono_runtime_cleanup): Close the socket library
34585         after all the threads have finished, not before
34587 2002-06-26  Martin Baulig  <martin@gnome.org>
34589         * debug-symfile.c (mono_debug_find_source_location): Added
34590         `guint32 *line_number' argument.  If it's not NULL, store the line number
34591         there and return the file name without the line number.
34593 2002-06-25  Dick Porter  <dick@ximian.com>
34595         * icall.c:
34596         * process.h:
34597         * process.c: Process forking and other support functions
34599 2002-06-25  Dick Porter  <dick@ximian.com>
34601         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34602         things dont happen when the image is closed.
34603         (mono_image_lookup_resource): Walk the resource section looking
34604         for a particular entry
34606         * cil-coff.h: PE resource section decoding
34608 2002-06-25  Dick Porter  <dick@ximian.com>
34609         
34610         * assembly.h:
34611         * assembly.c: 
34612         (mono_assembly_foreach): Accessor functions to walk the list of
34613         loaded assemblies
34614         (mono_assembly_set_main):
34615         (mono_assembly_get_main): Process methods need to know which
34616         assembly is the "main" one
34618         * object.c (mono_runtime_run_main): Record the main assembly
34620         * debug-helpers.c: Fix typo
34622 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34624         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34625         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34627 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34629         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34631 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34633         * image.c (do_mono_image_open): Initialize reference count,
34634         otherwise we leak the MonoImage.
34636 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34638         * reflection.c: small tweak to handle self-hosting.
34640 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34642         * reflection.c: fix type name parse code.
34644 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34646         * reflection.c: break out of the loop.
34647         * image.c: special case corlib.
34649 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34651         * reflection.c: add all the custom attrs at the end to ensure the
34652         ctors have been properly initialized when the attributes are defined
34653         in the current assembly.
34655 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34657         * reflection.c: handle correctly multiple-nested types.
34659 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34661         * row-indexes.h: fix typos.
34662         * reflection.c: adjust for typos and fix method_def_or_ref
34663         encoding in MethodImpl table.
34665 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34667         * reflection.c: fix entry point patching (thanks Serge!).
34669 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34671         * verify.c: add check for System.Exception
34673 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34675         * image.c, class.c: minifix for code just c&p'ed.
34676         * reflection.c: warning fix.
34677         * object.h, loader.h, domain.c: load also StringBuilder.
34679 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34681         * marshal.h, marshal.c: some support code to handle complex marshaling.
34683 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34685         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34686         Better signatures with vtable error dump.
34688 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34690         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34692 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34694         * icall.c (ves_icall_Type_GetField): impl.
34696 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34698         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34699         to retrieve a marshal description blob for a field or param.
34701 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34703         * reflection.h, reflection.c: change order of nested type emission
34704         to avoid table corruption. The NestedTypes table is sorted.
34705         * icall.c: change order of GetConstructor results to workaround mcs bug.
34707 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34709         * reflection.h, reflection.c: handle field and param marshal
34710         information.
34712 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34714         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34716 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34718         * reflection.c: fix call convention.
34720 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34722         * reflection.h, reflection.c: mono_image_get_memberref_token()
34723         takes a type instead of a class, now. Added
34724         mono_image_get_array_token() to create tokens for the special
34725         multi-dim array methods.
34727 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34729         * assembly.c: handle modules (no assembly table). Split
34730         loading references in its own function.
34731         * class.c: handle moduleref resolution scope.
34732         * image.c, image.h: cache module name in image.
34734 2002-06-07  Martin Baulig  <martin@gnome.org>
34736         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34737         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34739 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34741         * icall.c: more signature fixes that used uint instead of int.
34743 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34745         * reflection.c: fixed signature of field refs.
34747 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34749         * class.c, reflection.c: handle typerefs of nested types
34750         (both on read and when writing files).
34752 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34754         * icall.c: fix method signatures that tried to workaround the previous
34755         typo, d'oh!
34757 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34759         * debug-helpers.c: fix typo.
34761 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34763         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34764         rewrote the PE/COFF writing code (our programs are understood by the
34765         ms runtime, now).
34767 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34769         * gc.c, gc.h, icall.c: weakreference support.
34771 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34773         * Makefile.am, mono-config.c: use $(sysconfdir).
34775 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34777         * icall.c: changed default precision of Double.ToString() to 15.
34778         Fixed memory leak. Unified with Single.ToString.
34780 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34782         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34784 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34786         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34787         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34788         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34789         and myself.
34791 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34793         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34795 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34797         * reflection.c, socket-io.c: more compilation fixes.
34799 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34801         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34802         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34803         unicode.c: warning and compiler compatibility fixes.
34805 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34807         * class.h, metadata.c: fixed warnings/compilation errors.
34809 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34811         * Makefile.am, mono-config.c, mono-config.h: configuration file
34812         support routines.
34813         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34814         config file. Export methods to insert and lookup mappings.
34816 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34818         * reflection.c: handle types and boxed objects in custom attr
34819         constructors.
34821 2002-05-30  Martin Baulig  <martin@gnome.org>
34823         * debug-symfile.c
34824         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34826 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34828         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34829         to lookup the implmap row for a P/Invoke method.
34830         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34831         P/Invoke method from the runtime on an as needed basis.
34833 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34835         * metadata.c (mono_metadata_parse_signature): impl.
34837 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34839         * class.c: handle .pack directive.
34841 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34843         * object.c: initialize static fields with RVA data.
34845 2002-05-25  Martin Baulig  <martin@gnome.org>
34847         * debug-symfile.c
34848         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34850 2002-05-24  Martin Baulig  <martin@gnome.org>
34852         * debug-symfile.c
34853         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34854         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34855         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34857 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34859         * object.c: special case string ctros in invoke.
34860         * gc.c: silly whitespace changes.
34862 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34864         * threadpool.[ch]: impl. a threadpool that can
34865         be used by mint and mono.
34867 2002-05-22  Martin Baulig  <martin@gnome.org>
34869         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34870         The first argument is now a `MonoReflectionModuleBuilder *', the return
34871         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34872         `methods' field to get the method builder.  The `token' argument is the
34873         unfixed token.
34875         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34876         invalid characters instead of g_assert_not_reached()ing.  This seems
34877         to be the behaviour of mscorlib.
34879 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34881         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34882         Hestilow to fix bug #25104
34884 2002-05-21  Martin Baulig  <martin@gnome.org>
34886         * debug-symfile.c (mono_debug_find_source_location): New function.
34887         Looks up an IL offset in the line number table and returns the source
34888         location as a string.
34890 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34892         * icall.c:
34893         (mono_double_ToStringImpl): changed %f by %g until we have something
34894         better.
34896 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34898         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34899         parameters first in C#.
34901 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34903         * icall.c, reflection.h: added icall to get info about an event.
34905 2002-05-20  Radek Doulik  <rodo@ximian.com>
34907         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34908         endian
34909         (mono_value_box): don't use memcpy for small sizes on
34910         architectures with unaligned access
34912 2002-05-20  Martin Baulig  <martin@gnome.org>
34914         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34915         if `tb->parent == NULL'.
34916         (mono_reflection_create_internal_class): New function.  This is
34917         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34918         for enum types.
34920         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34921         New interncall.
34923 2002-05-19  Martin Baulig  <martin@gnome.org>
34925         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34926         argument to get the length, don't default to the array length.
34928 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34930         * assembly.c (mono_assembly_setrootdir): New function used to
34931         override the MONO_ASSEMBLIES directory.
34933 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34935         * icall.c: ValueType_GetHashCode() initialize local var.
34937 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34939         * reflection.c: sort custom attributes table.
34941 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34943         * reflection.c: support named args in custom attributes (write support).
34945 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34947         * reflection.c: fix finally position calculation.
34949 2002-05-15  Radek Doulik  <rodo@ximian.com>
34951         * reflection.c: fixed endianess at many places
34953         * icall.c (ves_icall_InitializeArray): comment out debug msg
34955 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34957         * object.c (mono_unhandled_exception): new function to handle
34958         unhandled exceptions.
34959         (mono_unhandled_exception): call the UnhandledException event.
34960         (mono_runtime_delegate_invoke): impl.
34962 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34964         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34965         returns the RVA, not the direct pointer to the data. Handle the case
34966         when the class size is fixed.
34968 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34970         * reflection.c: fix some endianess issues.
34972 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34974         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34976         * threads.c (mono_thread_init): added a callback which is invoked
34977         at thread start.
34979 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34980         
34981         * icall.c: make GetHashCode return non-negative values.
34983 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34985         * object.c, icall.c, gc.c: revert to address-based hashcode.
34987 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34989         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34991 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34993         * icall.c, class.c: special case <Module>.
34995 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34997         * icall.c: fix bug in GetNow().
34999 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35001         * object.c (mono_runtime_class_init): make sure that we call all
35002         static class constructors.
35004 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35006         * reflection.c: sort methodsemantics table.
35008 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35010         * reflection.h, reflection.c: honour init locals setting.
35012 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35014         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35016 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35018         * reflection.c: support ContructorBuilders in attribute blob creation.
35020 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35022         * reflection.c: some changes to build a binary that can be run
35023         directly in windows.
35025 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35027         * loader.c: print a big message when an icall can't be found.
35029 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35031         * string-icalls.c: fix bug 24248.
35033 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35035         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35036         icall.c, reflection.h: separate assembly loading by pathname and by
35037         assembly name. Use the MONO_PATH env var to search for assemblies.
35039 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35041         * assembly.c, image.h: add some support for assemblies
35042         with multiple modules.
35043         * class.c, class.h: export mono_class_from_typeref().
35044         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35045         instead.
35047 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35049         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35050         documentation says (the ECMA one is correct).
35052 2002-05-02  Dick Porter  <dick@ximian.com>
35054         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35055         Don't name the synchronisation mutex.
35057 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35059         * rand.c
35060         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35061         Make the prototypes match.
35062         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35063         Same.
35065         * icall.c
35066         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35067         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35068         all systems have tm.tm_zone, so use strftime() with %Z to print
35069         the timezone abreviation into a temp string.
35071         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35072         rather than mono_array_addr() on a MonoString on Big Endian
35073         machines.
35075 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35077         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35078         fix bug 24041
35080 2002-04-30  Dick Porter  <dick@ximian.com>
35082         * socket-io.c: Cope with SOCKET being an integer rather than a
35083         pointer now.
35085         * threads.c: Added Thread_free_internal, to deal with thread
35086         handle cleanup.  Moved calls to handle_store() and handle_remove()
35087         to start_wrapper(), so each can only be called once.  Allocate
35088         synchronisation blocks with GC_malloc(), and use GC finalisation
35089         to close the handles.
35091         * icall.c: added System.Threading.Thread::Thread_free_internal
35093 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35095         * icall.c: support Environment.Exit, CommandLineArgs().
35097 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35099         * object.c, object.h: added mono_runtime_run_main () and
35100         mono_runtime_get_main_args () for use in System.Environment.
35102 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35104         * gc.c: fix thinko, enable actual finalization since the jit is now
35105         fixed.
35107 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35109         * gc.c, object.c: take into account that an object may be offset wrt the address
35110         returned by GC_malloc().
35112 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35114         * image.c: handle files without entries in the assembly table (modules).
35116 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35118         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35119         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35120         allowed to be null when it's System.Object class setup.
35122 2002-04-27  Martin Baulig  <martin@gnome.org>
35124         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35125         if `tb->parent == NULL' rather than crashing.
35127 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35129         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35130         calling acos() where asin() should have been called.
35132 2002-04-26  Martin Baulig  <martin@gnome.org>
35134         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35135         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35136         there's a subdirectory called `System', but we don't want to read that
35137         subdirectory as an assembly.
35139 2002-04-25  Martin Baulig  <martin@gnome.org>
35141         * debug-symfile.c: Reflect latest MonoString changes.
35143 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35145         * rand.c, rand.h: instance method icalls need to have an explicit
35146         this pointer as first argument in the C implementation.
35148 2002-04-25  Nick Drochak <ndrochak@gol.com>
35150         * icall.c: Fix typo in map for GetNonZeroBytes
35152 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35154         * string-icalls.c : String does now passes unit tests without any 
35155         errors, the following changes has been made:
35156         
35157         Implemented replace methods.
35158         Renaming of methods to (try) follow the standard.
35159         Fixed compare ordinal
35160         Made all memory allocated directly to function instead of via icall function.
35161         Small performance fix in is_in_array function
35162                         
35163  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35165         c (mono_string_Internal_ctor_charp_int_int):
35166         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35167         sindex < 0, throw ArgumentOutOfRangeException instead of
35168         ArgumentNullException.
35170         Added new check for length == 0, however
35171         I need to make it return String.Empty from the C code.
35172         
35173         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35174         that calculate the length for us here.
35175         
35176         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35177         mono_string_new_utf16 with mono_string_new, since value is utf8.
35179 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35181         * object.c: register the object for finalization if needed.
35182         Allocate one more char in the string for the terminating 0 char.
35184 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35186         * class.c, class.h, image.c: check if a type implemenst a destructor.
35187         Use the proper key for array class lookups.
35188         * icall.c: register the icalls in the System.GC class.
35189         * gc.c, gc.h: GC-related functions and icalls.
35191 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35193         * icall.c:
35194         * socket-io.c:
35195         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35196         changed a couple of free () by g_free ().
35198         * decimal.c: one-liner in the comments for decimal2string ().
35200 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35202         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35204 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35206         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35207         * object.c (mono_runtime_invoke_array) : handle null in params
35209 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35211         * string-icalls.c: fixed bug in split (one off bug)
35213 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35215         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35216         * icalls.c: added String::Equals as internal method
35218 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35220         * threads.c: fixed bug in the double interlocked functions
35222 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35224         * threads.c: implemented all of the new interlocked icalls.
35225         * string-icalls.c: fix a bug in insert.
35226         * icalls.c: added the icalls for interlocked, removed old string functions.
35227         
35228 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35230         * loader.c: fix off-by-one error when reading argument names.
35232 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35234         * profiler.c: win32 counter implementation (untested).
35235         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35236         (the latter needs testing and more complete impl. from win32 folks).
35238 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35240         * object.c: mono_array_new_full workaround mono_array_class_get
35241         problem.
35243 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35245         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35246         * object.h (mono_string_chars): Changed casting type.
35248 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35250         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35251                            method signatures to use gunichar2 instead of gint16.
35253 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35255         * object.h, object.c: domain-specific versions of mono_object_new and
35256         mono_array_new.
35258 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35260         * object.c: changed String layout
35262         * string-icalls.c (mono_string_Internal_ctor_chara): added
35263         internal string constructors.
35265 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35267         * threads.c: pass 'this' to the thread start routine.
35269 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35271         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35272         InternalCompareStr don't call twice mono_string_cmp_char for the last
35273         character. Improved performance in mono_string_cmp_char.
35275 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35277         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35278         code into its own library: libmonoruntime.
35280 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35282         * object.h, object.c: changed array format so that szarrays do not
35283         require a bounds structure.
35284         * icall.c, appdomain.c: support for new szarray format.
35286 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35288         * metadata.c: compare also the retuns type when comparing signatures:
35289         we didn't do this as an optimization since really overloaded methods
35290         must differ also in the arguments, but this doesn't work with
35291         low-level IL code (or when using explicit conversion operators: see
35292         bug#23498 for an example).
35294 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35296         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35298 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35300         * icall.c: make MonoType::GetElementType its own icall.
35302 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35304         * icall.c: remove MonoMethod_get_Name().
35305         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35306         object.
35308 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35310         * string-icalls.c: optimized a few methods.
35312 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35314         * icall.c: added all new string internal calls
35315         * string-icalls.c: added, new string internal call implementation.
35316         * object.c: added mono_string_new_size for allocating a string a size
35318 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35320         * object.c (mono_object_isinst): use the same code as in the
35321         optimized x86 version.
35323 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35325         * profiler.c: TSC-based timer code (faster and more accurate).
35326         Not hooked up in configure, yet (set USE_X86TSC to 1).
35328 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35330         * profiler.c, profiler.h: track time spent compiling methods.
35331         * threads.c: track thread creation/destruction.
35333 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35335         * profiler.c, profiler.h, profiler-private.h: profiling interface
35336         and sample implementation. Moved here so that it can be used also by
35337         the jit.
35339 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35341         * reflection.c, reflection.h: keep types and other handles separate in
35342         the hash tables for referred tokens. Add guid for modules.
35344 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35346         * assembly.c: fix bugs found with valgrind.
35347         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35349 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35351         * threads: added icall support for getting current domain for
35352                    the thread.
35354 2002-04-13  Martin Baulig  <martin@gnome.org>
35356         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35357         (MonoDebugVarInfo): Added `index' field for register based addresses.
35358         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35359         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35360         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35361         `MonoDebugVarInfo *this_var'.
35363         * debug-symfile.c (relocate_variable): New static function to write
35364         a location description for a local variable or method parameter.
35366 2002-04-12  Martin Baulig  <martin@gnome.org>
35368         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35369         stack offset and begin/end scope address of a local variable.
35370         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35371         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35372         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35374         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35375         Added new relocation types for start/end scope of a local variable.
35377 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35379         * object.h: add mono_object_domain() macro.
35380         * reflection.c: handle typespecs.
35381         * icall.c: MonoMethod::get_Name() implementation.
35383 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35385         * icall.c: String::GetHashCode() icall implementation.
35387 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35389         * icall.c: String::IndexOfAny icall.
35390         * object.c, object.h: make array->max_length more useful.
35391         Intrduced mono_object_class() and mono_string_length() macros.
35393 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35395         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35396         instead of g_unichar_isdigit.
35398 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35400         * icall.c: Implement a simple Double.ToString().
35402 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35404         * appdomain.h: only io-layer.h is supposed to be included.
35405         * icall.c: explicitly import environ. Fix warning.
35407 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35409         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35410                 return true even if it's not Daylight Savings time.
35411                 Only return false for the case where the function isn't
35412                 implemented for a plaform (read Windows).
35414 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35416         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35417         data with a mutex.
35419 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35421         * mempool.c (mono_mempool_alloc): only use g_malloc when
35422         absolutely necessary.
35424 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35426         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35428         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35429         (mono_class_proxy_vtable): use domain mempool
35431 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35433         * appdomain.h, appdomain.c: split initialization that requires the
35434         execution engine support into mono_runtime_init().
35436 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35438         * class.c (mono_class_init): don't include vtable inside MonoClass
35439         to save some memory, gather some statistics.
35440         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35442 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35444         * icall.c: internalcall implementation for ValueType.Equals().
35446 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35448         * object.c (mono_message_init): moved 
35449         (mono_runtime_exec_main): new arch. independent impl.
35450         (mono_runtime_invoke_array): new method - like
35451         mono_runtime_invoke, but you can pass an array of objects.
35452         (mono_remoting_invoke): new arch. independent impl.
35453         (mono_message_invoke): new arch. independent impl.
35454         (mono_runtime_class_init): new arch. independent impl.
35455         (mono_runtime_object_init): new arch. independent impl.
35457 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35459         * metadata.c, object.c, reflection.c: documented the exported
35460         functions.
35462 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35464         * icall.c: simpler code to pass the assembly builder data to corlib.
35465         Implement GetNestedTypes() internalcall.
35467 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35469         * class.c: warn if a type can't be loaded.
35471 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35473         * image.h: typedef MonoImageOpenStatus
35474         * types.h: removed unused file
35475         
35476 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35478         * icall.c: Enum_ToObject accepts enum value arguments.
35480 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35482         * class.c: move initialization of properties, events and nested
35483         classes, so that they happen for interfaces, too.
35485 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35487         * icall.c: cleanup some ugly casts in Array_SetValue*.
35489 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35491         * icall.c: the values array fro enums is of the correct type, now.
35492         Implement (correctly) getFullName instead of assQualifiedName for
35493         MonoType.
35494         * reflection.h, reflection.c: added mono_type_get_name ().
35496 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35498         * assembly.c, image.h: for each MonoImage, record from wich assembly
35499         it was loaded.
35500         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35501         Make Type.Assembly work.
35503 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35505         * debug-symfile.h: use char* instead of gpointer to avoid
35506         unnecessary casts.
35508         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35510         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35511         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35513 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35515         * icall.c (mono_message_init): impl. (code cleanup)
35516         (ves_icall_InternalExecute): impl. FieldGetter
35518         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35519         defined we call all (non-static)methods through the vtable. 
35521 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35523         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35524         finalizer even though the memory is still referenced (and the chunk of
35525         memory is not freed).
35527 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35529         * assembly.c: fix brokeness.
35531 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35533         * class.c: kill some warnings. Check explicit interface method
35534         implementation also without considering the namespace.
35535         Load also literal strings in static class data.
35537 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35539         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35540         (default_assembly_name_resolver): Make the resolver take the
35541         "base" directory where the assembly was originally defined, so we
35542         can load DLLs that are in the same directory as the assembly that
35543         is being referenced.
35545 2002-03-28  Dick Porter  <dick@ximian.com>
35547         * file-io.h: 
35548         * file-io.c:
35549         * socket-io.c: 
35550         * unicode.h: 
35551         * unicode.c: Warning cleanups
35553 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35555         * object.h, reflection.h: use the correct type instead of MonoObject.
35557 2002-03-28  Martin Baulig  <martin@gnome.org>
35559         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35560         (mono_debug_update_symbol_file): Initialize classes if necessary.
35562 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35564         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35565         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35567 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35569         * assembly.h: fix function prototype.
35570         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35571         * mono-endian.h: use const cast.
35573 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35575         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35577 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35579         * loader.c: don't assert when a typeref can't be loaded, give
35580         a chance to the runtime to trow an exception instead.
35581         * loader.h: fix warning.
35583 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35585         * class.c (mono_class_proxy_vtable): added proxy support
35587 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35589         * icall.c: removed last of PAL calls, added System.Environment
35590         * file-io.h, file-io.c: MonoIO implementation
35591         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35593 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35595         * appdomain.c: do not use the byte marker in ldstr table lookup.
35596         * debug-helpers.c: allow two ':' to separate class and method name.
35597         * object.c: allocate arrays bounds with the GC, too.
35598         * verify: add a few more checks.
35600 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35602         * reflection.c: output also literal strings. Allocate parameter data
35603         with GC_malloc() (thanks, Martin, for catching this!).
35605 2002-03-26  Martin Baulig  <martin@gnome.org>
35607         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35608         include the `this' offset in the `param_offsets'.
35610 2002-03-25  Martin Baulig  <martin@gnome.org>
35612         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35613         mono_debug_get_class() function to get the classes. Added new
35614         relocation types for arrays and strings.
35615         (mono_debug_get_class): New static function to search in all
35616         referenced assemblies for a metadata token.
35618         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35620 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35622         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35623         hold gc-allocated objects. Make the string heap a stream like the
35624         others. Removed duplicated code when writing stream info.
35625         Added asserts to catch possible buffer overflows. Set the sorted map
35626         for tables that need sorting. Added some documentation.
35628 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35630         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35631         for interned strings and vtables.
35633 2002-03-24  Martin Baulig  <martin@gnome.org>
35635         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35636         it in the array since it was created with g_slist_prepend().
35638 2002-03-24  Martin Baulig  <martin@gnome.org>
35640         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35641         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35642         (mono_debug_method_from_token): Renamed to
35643         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35644         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35646         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35647         relocation types.
35649         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35651 2002-03-24  Martin Baulig  <martin@gnome.org>
35653         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35654         (mono_debug_method_from_token): New func.
35656         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35657         New interncall, calls mono_debug_local_type_from_signature().
35658         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35659         calls mono_debug_method_from_token().
35661 2002-03-23  Martin Baulig  <martin@gnome.org>
35663         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35664         specifies the number of bytes to be converted, not the array size.
35665         Return the number of chars, not the number of bytes.
35666         (ves_icall_iconv_get_chars): The `byteCount' argument
35667         specifies the number of bytes to be converted, not the array size.
35669 2002-03-23  Martin Baulig  <martin@gnome.org>
35671         * reflection.h (MonoReflectionSigHelper): New type.
35673         * reflection.c (mono_reflection_sighelper_get_signature_local),
35674         (mono_reflection_sighelper_get_signature_local): New functions.
35676         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35677         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35678         interncalls.
35680 2002-03-23  Martin Baulig  <martin@gnome.org>
35682         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35683         is_writeable is set.
35684         (mono_raw_buffer_update): New function to write the modified map
35685         back to disk.
35687         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35689         * debug-symfile.c (mono_debug_update_symbol_file): Call
35690         mono_raw_buffer_update() when done writing.
35692 2002-03-23  Martin Baulig  <martin@gnome.org>
35694         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35696         * debug-symfile.c: Added support for arguments and local variables.
35698 2002-03-23  Dick Porter  <dick@ximian.com>
35700         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35701         protected by ifdefs, hence breaking the w32 build.
35703 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35705         * object.c: implement is_interned() the right way.
35707 2002-03-21  Martin Baulig  <martin@gnome.org>
35709         * debug-symfile.[ch]: New files to handle debugging information
35710         files. There's also support to dynamically update these symbol
35711         files to include machine dependent information.
35713 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35715         * threads.c (mono_thread_create): new function to create thread
35716         from C
35718 2002-03-20  Martin Baulig  <martin@gnome.org>
35720         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35721         method is a constructor.
35722         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35723         points to ves_icall_InternalInvoke().
35725 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35727         * file-io.c: Flush shouldn't throw exceptions.
35729 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35731         * file-io.c: FileStream flush support; FileSetLength now
35732         restores file pointer.
35734 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35736         * class.c: set image for pointer classes.
35738 2002/03/19  Nick Drochak <ndrochak@gol.com>
35740         * sysmath.c: Forgot one.
35742 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35744         * sysmath.c: Avoid redefining existing names.
35746 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35748         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35749         handled by runtime as icall rather than dllimport from libm.so
35750         * file-io.c, file-io.h: fixed handle argument type.
35752 2002-03-18  Dick Porter  <dick@ximian.com>
35754         * reflection.c (mono_image_get_type_info): rename interface to
35755         iface, because of "#define interface struct" on windows.
35757 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35759         * class.c, class.h: rename and export mono_ptr_class_get().
35760         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35761         * reflection.c, reflection.h, icall.c: better/saner type name
35762         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35763         method signatures.
35765 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35767         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35769         * icall.c (ves_icall_InternalInvoke): impl.
35771 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35773         * reflection.c: output the interface map table, too.
35775 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35777         * class.c (class_compute_field_layout): separate computation of 
35778         static field layout
35780 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35782         * icall.c: added System.Buffer support.
35783         * file-io.c: moved file icalls from PAL to FileStream.
35785 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35787         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35789 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35791         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35793 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35795         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35797 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35799         * debug-helpers.{c,h}: moved here from monograph some useful functions
35800         to locate a method by name/signature in a class or image. Included
35801         also a small and flexible IL disassembler.
35803 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35805         * reflection.c: fixup tokens in methods with small header size, too.
35807 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35809         * object.c (mono_string_to_utf8): remove assert(!error), instead
35810         print a warning. 
35812 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35814         * icall.c: update to the new mono_Array_class_get interface.
35816 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35818         * appdomain.c, object.c: Boehm-GC enable.
35819         * icall.c: make get_data_chunk() support split data requests.
35820         Ensure a class is initialized in more cases. Return only the first
35821         property found in GetProperties() or the compiler gets confused. 
35822         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35823         * reflection.h, reflection.c: add fixup mechanism for field and method
35824         tokens. Initialize assembly->typeref in a single place. Output
35825         properties after events. Support custom attributes for events, too.
35826         Typo fix for paramter custom attrs.
35828 2002-03-07  Martin Baulig  <martin@gnome.org>
35830         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35832 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35834         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35836 2002-03-06  Martin Baulig  <martin@gnome.org>
35838         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35839         non-zero lower bounds. See testcases #F10-#F13.
35841 2002-03-05  Martin Baulig  <martin@gnome.org>
35843         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35845         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35846         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35847         here.
35848         (ves_icall_System_Array_SetValue): Likewise.
35849         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35850         as argument and does the actual work. This function is used when copying a
35851         multi-dimensional array.
35852         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35853         now do all the widening conversions of value types.
35854         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35856 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35858         * class.c: remove some magic numbers and use the smbolic names,
35859         instead. Added init_events() to load event info at class init time.
35860         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35861         and mono_metadata_methods_from_event().
35862         * reflection.h, reflection.c: added support for writing out the evnets
35863         related information.
35865 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35867         * reflection.h, icall.c: use a different method (GetInterfaces)
35868         to gather interface info and add isbyref, isprimitive and
35869         ispointer to the ves_icall_get_type_info() return value.
35871 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35873         * class.h: stared adding support for events.
35874         * icall.c: split find_members implementation. Added debug icall to get
35875         the address of an object.
35876         * reflection.c: handle TypeBuilders in mono_type_get_object().
35878 2002-03-01  Martin Baulig  <martin@gnome.org>
35880         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35881         ArgumentOutOfRangeException(), not an ArgumentException().
35882         (ves_icall_System_Array_GetLowerBound): Likewise.
35883         (ves_icall_System_Array_GetValue): Improved argument checking.
35884         (ves_icall_System_Array_SetValue): Improved argument checking.
35886 2002-03-01  Martin Baulig  <martin@gnome.org>
35888         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35889         called with invalid arguments rather than just dying with g_assert().
35890         (ves_icall_System_Array_SetValue): Likewise.
35891         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35892         raise a NotImplementedException instead.
35893         (ves_icall_System_Array_GetLength): Added argument checking.
35894         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35896 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35898         * object.h (mono_assert): new macros mono_assert and
35899         mono_assert_not_reached
35901 2002-02-28  Martin Baulig  <martin@gnome.org>
35903         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35904         and "System::String::IsInterned" to "System::String::_IsInterned".
35906 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35908         * icall.c: remove hacks for typebuilder. Added icall to create a
35909         modified type from a tybebuilder.
35910         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35911         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35912         to create a backing MonoClass for a TypeBuilder.
35914 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35916         * class.c, class.h: more refactoring of class init.
35917         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35919 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35921         * marshal.c, marshal.h: start of marshaling interface.
35923 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35925         * icall.c: fix order in assembly qualified name icall.
35927 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35929         * class.c: do not free str, since we store it in the hash table.
35930         * reflection.h: add label field to MonoILExceptionInfo.
35931         * reflection.c: handle references to more than one assembly. Handle
35932         case when there isn't a module created in the assembly.
35934 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35936         * class.c: Fix typo. Start refactoring of class init code.
35938 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35940         * appdomain.c: exit with 1 on error.
35941         * class.c: we already have the name in MonoClassField.
35942         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35943         MonoStreamHeader instead of an offset of image->raw_metadata.
35945 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35947         * appdomain.c (mono_init): Be even more descriptive about the error.
35949 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35951         * appdomain.c: give the user an informative message when corlib can't
35952         be loaded.
35954 2002-02-26  Martin Baulig  <martin@gnome.org>
35956         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35957         New icall to get the time zone data.
35959 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35961         * reflection.c: set virtual and raw size of section correctly.
35962         * threads.c: transfer domain information to newly created threads.
35964 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35966         * class.c: when instancing a class in a domain, load the default
35967         vaules for static fields from the constant table. Fix System.Enum to
35968         not be an enum.
35969         * icall.c: implement Object::GetType() internalcall. Implemented
35970         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35971         Fixed checking of binding flags in find_members().
35972         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35973         * reflection.c: handle enumerations when writing to the constant
35974         table. Use a different object cache for types.
35977 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35979         * object.c (mono_object_isinst): fix for arrays
35981         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35983 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35985         * object.c: don't use mprotect ()  and fix intern pool hash table
35986         lookup for big endian systems.
35988 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35990         * icall.c: change type_is_subtype_of () signature.
35992 2002-02-21  Mark Crichton  <crichton@gimp.org>
35994         * rand.c, rand.h: Added random number generator for
35995         System.Security.Cryptography classes.
35997         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35999         * icall.c: Added System.Security.Cryptography calls.
36001 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36003         * class.c, icall.c, metadata.c: better support for pointer types.
36004         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36005         * reflection.c: Add support for getting custom attrs for properties
36006         and simplify some code.
36008 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36010         * icall.c: change getToken () and add custom attribute GetBlob()helper
36011         method.
36012         * reflection.h: add custom attrs array to the reflection builder structures.
36013         * reflection.c: encode and emit custom attributes for all the relevant
36014         reflection objects. Cache fieldref and methodref tokens. Change
36015         mono_image_create_token() interface to take a MonoDynamicAssembly.
36016         More complete custom attributes decoder. Load custom attributes for
36017         Assembly, Field, Method and Constructor objects, too. Make the
36018         returned array an Attribute[] one, not object[]. Added
36019         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36020         custom attribute constructor.
36022 2002-02-20  Dick Porter  <dick@ximian.com>
36024         * icall.c:
36025         * rawbuffer.c:
36026         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36027         problem code out for now).
36029 2002-02-19  Radek Doulik  <rodo@ximian.com>
36031         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36033 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36035         * icall.c: register the GetCustomAttributes method.
36036         * object.c, object.h: add mono_string_new_len ().
36037         * reflection.h, reflection.c: added mono_runtime_invoke(),
36038         mono_install_runtime_invoke(). Added
36039         mono_reflection_get_custom_attrs () to load custom attributes and
36040         create the attribute objects.
36042 2002-02-19  Dick Porter  <dick@ximian.com>
36043         * threads-dummy-types.c:
36044         * threads-dummy-types.h:
36045         * threads-dummy.c:
36046         * threads-dummy.h:
36047         * threads-pthread-types.c:
36048         * threads-pthread-types.h:
36049         * threads-pthread.c:
36050         * threads-pthread.h:  Deleted obsolete files
36052 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36054         * class.c (mono_class_vtable): runtime init the class when we
36055         allocate static class data.
36057         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36059         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36060         and String - but we will need generic marshalling support in the
36061         future. 
36062         (mono_init): set the domain name in a ms compatible way
36064         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36065         String[].
36067 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36069         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36070         for sizes
36072         * appdomain.c (mono_domain_unload): impl.
36074 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36076         * appdomain.c, object.c: fix intern pool implementation.
36077         * class.c: fix alignment code.
36079 2002-02-16  Radek Doulik  <rodo@ximian.com>
36081         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36082         and s2 > s1, just copy lower bytes to be compatible with little
36083         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36084         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36086         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36087         force big_endian to be 1 for big endian machines 
36088         (ves_icall_iconv_new_decoder): ditto
36090 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36092         * socket-io.c (convert_sockopt_level_and_name): If the system
36093         doesn't define SOL_IP or SOL_TCP, get them by hand using
36094         getprotobyname() and caching the values (because this could be a
36095         slow operation).
36096         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36097         Use the appropriate struct when the system does support it. Ie,
36098         not all systems have struct ip_mreqn so use struct ip_mreq when
36099         appropriate.
36101 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36103         * reflection.c: handle finally clauses.
36105 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36107         * socket-io.c: use g_snprintf() instead of snprintf.
36109 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36111         * reflection.c (mono_param_get_objects): Cast second argument to
36112         mono_method_get_param_names to a const char** to silence the
36113         compiler warning.
36115         * appdomain.c (mono_domain_assembly_open): Put parens around the
36116         truth statement in the for-loop.
36118         * unicode.c (iconv_convert): Got rid of a compiler warning about
36119         int i being unused when the system has a new iconv.
36120         (iconv_get_length): Same.
36122         * image.c (load_class_names): Cast the second argument to
36123         g_hash_table_insert() to char* to hush compiler warnings about the
36124         arg being a const.
36125         (mono_image_open): Same here.
36127         * socket-io.c: Don't conditionally include sys/filio.h or
36128         sys/sockio.h here anymore since we now get them from
36129         io-layer/io-layer.h
36130         (inet_pton): If the system doesn't support inet_aton, implement
36131         using inet_addr and also #define INADDR_NONE if it isn't defined
36132         by the system.
36134 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36136         * metadata.c, metadata.h: added function to get packing and size info
36137         of a typedef.
36138         * reflection.h, reflection.c: handle field RVA data. Save info about
36139         the table layout if needed. Assign typedef indexes to all the types
36140         before dumping the info about them to avoid forward reference problems.
36142 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36144         * socket-io.c (convert_sockopt_level_and_name): ifdef
36145         SO_ACCEPTCONN because it is not defined on my system (old debian)
36147 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36149         * opcode.c: use stddef.h to get NULL.
36151 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36153         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36154         for FIONBIO, FIONREAD and SIOCATMARK.
36155         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36156         define INADDR_NONE and besides, inet_addr() is deprecated and
36157         should not be used. Use inet_pton() instead - it also has the
36158         added bonus that it can easily handle IPv6 addresses as well.
36159         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36161 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36163         * decimal.c: remove _MSC_VER conditional.
36165 2002-02-13  Dick Porter  <dick@ximian.com>
36167         * socket-io.c: 
36168         * icall.c: Internal calls for Blocking, Select, Shutdown,
36169         GetSocketOption and SetSocketOption
36171 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36173         * assembly.cs: better resolver: use it instead of some kludgy
36174         code.
36176 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36178         * reflection.c: the best way to speed-up the compiler is to avoid
36179         infinite loops.
36181 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36183         * class.c (mono_class_vtable): changed the object layout
36184         (obj->vtable->class). 
36185         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36187 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36189         * assembly.c: look for assemblies in the assembly dir, too.
36191 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36193         * class.c: fix thinko in mono_class_from_type().
36195 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36197         * exception.h, exception.c: added TypeLoadException.
36198         * object.h, object.c: added mono_array_clone ().
36199         * icall.c: handle throwOnError in AssemblyGetType().
36200         Added Array.Clone().
36201         * opcode.h, opcode.c: use a single value for the opcode val.
36202         Compile fix for non-gcc compilers.
36204 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36206         * opcodes.c, opcodes.h: export interesting info about opcodes.
36208 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36210         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36211         icalls. 
36213         * class.c (class_compute_field_layout): set element_class for enums
36214         (mono_class_create_from_typedef): set element_class for normal classes
36216         * icall.c (ves_icall_System_Enum_get_value): impl.
36218         * class.c (mono_class_create_from_typedef): do not set valuetype
36219         flag for System.ValueType and System.Enum
36221 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36223         * unicode.c (iconv_convert): fix big endian problem.
36225 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36227         * class.c: add asserts if we are ever going to scribble over memory.
36228         * socket-io.c: not all systems have AF_IRDA defined.
36230 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36232         * class.c (class_compute_field_layout): do not consider static
36233         fields to compute alignment
36235 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36237         * appdomain.c (mono_appdomain_get): impl.
36238         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36240 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36242         * icall.c: ignore "file://" prefix when loading an assembly.
36244 2002-01-23  Dick Porter  <dick@ximian.com>
36246         * socket-io.c:
36247         * icall.c:
36248         * Makefile.am: Added socket support
36250 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36252         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36253         code back.  This should return the assemblies that are loaded by
36254         the runtime on behalf of an application domain. 
36256         The current implementation is still broken, it just returns every
36257         assembly loaded, but until we get real applications domain this
36258         will do.
36260 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36262         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36263         AppDomain object.
36265 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36267         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36268         the mono_class_from_name lookup.
36269         (ves_icall_get_parameter_info): ditto.
36270         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36271         method.
36272         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36274 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36276         * class.c: load also nested classes on class init.
36277         System.ValueType instance methods gets passed boxed
36278         values, unless methods in derived classed that get a pointer to the
36279         data.
36280         * icall.c: use better name parsing code in GetType().
36281         * image.c, image.h: add mono_image_loaded ().
36282         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36283         * reflection.c, reflection.h: added mono_reflection_parse_type().
36285 2002-01-22  Veronica De Santis <veron78@interfree.it>
36287         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36288         * threads.c : Added the implementation of internal calls for events
36289         * threads.h : Added prototypes of internal calls for events
36290         
36291 2002-01-21  Radek Doulik  <rodo@ximian.com>
36293         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36295 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36297         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36298         (mono_class_value_size): use min_align
36300 2002-01-20  Dick Porter  <dick@ximian.com>
36302         * threads.h:
36303         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36304         so it compiles on w32.
36306 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36308         * metadata.c (mono_type_stack_size): impl.
36310         * class.c (mono_class_get_field): impl. memberref token
36312 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36314         * icall.h : Added the internal calls mapping for CreateMutex_internal
36315                     and ReleaseMutex_internal.
36316         * threads.h : Added the prototype of mutexes internal calls.
36317         * threads.c : Added the implementations of mutexes internal calls.
36319 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36321         * metaparse.h: removed unused file.
36322         * reflection.c, reflection.h: added stream_data_align () function 
36323         to align data in streams and keep stream aligned. Add support for
36324         exception support in method headers.
36326 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36328         * unicode.c: make iconv_convert () return the number of bytess written
36329         in the output buffer.
36331 2002-01-15  Dick Porter  <dick@ximian.com>
36332         * threads.c: Make the runtime's idea of infinite timeouts coincide
36333         with the class library's
36335         Fix a particularly egregious bug in mono_thread_cleanup(). That
36336         code was so utterly bogus it must have been written on a Monday.
36338 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36340         * reflection.h: add subtypes field to TypeBuilder.
36341         * reflection.c: encode constants for literal fields.
36342         Handle subtypes. Fix user string token (and add a zero byte)
36343         at the end.
36344         
36345 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36347         * class.c (mono_class_init): bug fix: assign slot numbers for
36348         abstract methods.
36350 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36352         * reflection.c: don't try to output a code RVA for abstract methods.
36353         Small fixes for method header format. Output parameter info to the
36354         ParamDef table. Save method overriding info to MethodImpl table.
36355         Fix property support. Allow typedef.extends to be a type in the
36356         building assembly.
36357         * verify.c: fix off-by-one error.
36359 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36361         * class.c: fix mono_class_from_mono_type () for szarray types.
36362         Remove unused cache check in mono_class_from_type_spec().
36363         * icall.c: *type_from_name () functions handle simple arrays and byref.
36364         * reflection.c: handle byref and szarray types. Handle methods without
36365         body (gets P/Invoke compilation working). Handle types and fields in
36366         get_token ().
36367         * reflection.h: add rank to MonoTypeInfo.
36369 2002-01-10  Dick Porter  <dick@ximian.com>
36371         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36372         internal calls
36374 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36376         * icall.c: initialize class in type_from_handle ().
36377         Loop also in parent classes for get_method ().
36378         * reflection.c: properly encode class and valuetype types.
36379         Start on encoding TypeBuilder types. Handle fieldrefs.
36380         Use correct length when registering a user string.
36381         Handle ConstructorBuilder and MonoMethod in get_token ().
36382         Make mono_type_get_object () aware of cached types.
36383         * object.c: back out change to mono_string_new ().
36385 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36386         * object.c: mono_string_new should return a NULL when the string 
36387         passed in is NULL -- not try to deference it.
36388         
36389 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36391         * icall.c: hack to make IsSubType work for TypeBuilders.
36392         * reflection.c: emit constructors before methods.
36393         Retrieve param names in mono_param_get_objects().
36395 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36397         * Makefile.am: fix list of headers and sources so automake 1.5
36398         doesn't complain. Removed \# at end of list.
36400 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36402         * reflection.c: get token for a method ref. Set return type of
36403         constructor to void.
36404         * loader.c: debug message.
36405         * class.c: typo fix.
36407 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36409         * icall.c: fix array init with rank > 1. FindMembers
36410         loops in parent class as well.
36411         * image.c: do not insert nested types in name cache.
36412         * reflection.c: warning fix.
36413         * reflection.h: add override method (for interface impl).
36415 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36417         * metadata.c: fix customattr decoding.
36419 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36421         * rawbuffer.cs: Added native Win32 implementation, avoids using
36422         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36424 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36426         * class.c: make the low-level routines handle the cache.
36428 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36430         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36432 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36434         * class.c: fix mono_array_element_size() for objects.
36435         * class.h, class.c: add properties to MonoClass and load them
36436         at init time.
36437         * icall.c: check with isinst() when assigning a value to an array
36438         instead of requiring the classes to match exactly.
36439         Implemented icall for System.Type::GetType().
36440         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36441         enums. Handle bindingflags when looking for methods and fields.
36442         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36443         and mono_metadata_methods_from_property().
36444         * reflection.h, reflection.c: added structures for propreties,
36445         parameters and enums. Implemented mono_property_get_object() and
36446         mono_param_get_objects().
36448 2001-12-18  Dick Porter  <dick@ximian.com>
36450         * file-io.c: Use mono_string_to_utf16() instead of
36451         mono_string_chars()
36453         * object.c: Added mono_string_to_utf16(), which copies the non
36454         NULL-terminated MonoString into a new double-null-terminated
36455         buffer.
36457 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36459         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36461 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36463         * file-io.c: raise exceptions if handle is invalid.
36465 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36467         * assembly.c: yet another check for mscorlib.
36468         * class.c, class.h: load nesting info for classes.
36469         * icall.c: many new functions to support the Reflection classes.
36470         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36471         * reflection.h, reflection.c: mono_image_create_token(),
36472         mono_assembly_get_object(), mono_type_get_object(),
36473         mono_method_get_object(), mono_field_get_object(): methods to return
36474         objects that parallel the C representation of assemblies, types,
36475         methods, fields.
36477 2001-12-11  Dick Porter  <dick@ximian.com>
36479         * icall.c:
36480         * file-io.c: Internal calls for file IO.
36482 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36484         * tabledefs.h: missing FileAttributes.
36485         * verify.h, verify.c: use is_valid_string () to simplify and check for
36486         valid strings more correctly. Fix warnings and speeling.
36487         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36488         Check code: branches, maxstack, method calls.
36490 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36492         * object.c (mono_object_allocate): removed static, so that the jit
36493         can allocate value types.
36495         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36497 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36499         * class.c: init enum types right away and register the
36500         token->MonoClass map in mono_class_create_from_typedef ().
36501         * verify.h, verify.c: first cut of the verifier.
36502         * pedump.c: add --verify switch to verify metadata tables.
36503         * tabledefs.h: add some missing enums.
36505 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36507         * class.c (mono_install_runtime_class_init): impl.
36508         (mono_class_init): renamed mono_class_metadata_init to
36509         mono_class_init, also removed the metadata_inited flag
36511         * object.c (mono_object_isinst): use faster algorithm
36513 2001-11-30  Radek Doulik  <rodo@ximian.com>
36515         * mono-endian.h: reverted last change
36516         added function prototypes
36518         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36519         add mono-endian.c back
36521         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36522         for unaligned access, I've mistaked it with endianess. I am
36523         sorry.
36524         (mono_read16): fix reverted endianess
36525         (mono_read64): ditto
36526         (mono_read32): ditto
36528 2001-11-30  Dick Porter  <dick@ximian.com>
36530         * exception.c: Implement mono_exception_from_name()
36532 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36534         * metadata.h, metadata.c: remove params_size and locals_size and their
36535         calculation from the metadata code: they are only usefult to the
36536         interp.
36538 2001-11-29  Radek Doulik  <rodo@ximian.com>
36540         * object.c (mono_ldstr): swap bytes here, it's probably not the
36541         best place, but works for me now, I'll redo it once I know mono
36542         better, also note that I add PROT_WRITE and don't reset back, also
36543         note that it's only affects big endians, so x86 should be OK
36545         * mono-endian.h (read16): use just glib macros for both endians
36547         * mono-endian.c: removed as glib macros are used in in
36548         mono-endian.h so we don't need to care about endianess for read
36549         macros as glib does that for us already
36551 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36553         * class.h, class.h: take minimum alignment into consideration so
36554         that the fields of a class remain aligned also when in an array.
36556 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36558         * loader.h, loader.c: add mono_method_get_param_names().
36559         * class.c: 0-init class fields.
36561 2001-11-26  Dick Porter  <dick@ximian.com>
36563         * icall.c:
36564         * threads-types.h:
36565         * threads.c: New file that handles System.Threading on all platforms
36567         * object.c: 
36568         * object.h: Remove the synchronisation struct from MonoObject,
36569         replace it with a pointer that gets initialised on demand
36571         * Makefile.am: Replace all the system-specific threading code with
36572         a single file that uses the new wrapper library
36574 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36576         * class.c, class.h: add mono_install_trampoline() so that the runtime
36577         can register a function to create a trampoline: removes the ugly
36578         requirement that a runtime needed to export arch_create_jit_trampoline.
36579         * object.h, object.c: added mono_install_handler() so that the runtime
36580         can install an handler for exceptions generated in C code (with
36581         mono_raise_exception()). Added C struct for System.Delegate.
36582         * pedump.c: removed arch_create_jit_trampoline.
36583         * reflection.c: some cleanups to allow registering user strings and
36584         later getting a token for methodrefs and fieldrefs before the assembly
36585         is built.
36586         * row-indexes.h: updates and fixes from the new ECMA specs.
36588 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36590         * class.h, class.c: add enum_basetype field to MonoClass.
36591         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36592         to get index in the constant table reated to a field, param or
36593         property.
36594         * reflection.h, reflection.c: handle constructors. Set public-key and
36595         version number of the built assembly to 0.
36596         * row-indexes.h: update from new ECMA spec.
36598 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36600         * class.h, class.c: add a max_interface_id to MonoClass.
36601         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36602         since it's used to do that. Added mono_type_type_from_obj().
36603         Make GetType() return NULL instead of segfaulting if the type was not
36604         found. Handle simple arrays in assQualifiedName.
36605         * object.h: add a struct to represent an Exception.
36606         * reflection.c: output call convention in method signature.
36607         Add code to support P/Invoke methods and fixed offsets for fields.
36609 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36611         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36612         the value.
36613         * icall.c: use mono_array_addr instead of array->vector: fixes the
36614         reflection image writing.
36615         * reflection.c: init call convention byte to 0 in method signature.
36616         Encode the property signature. Don't output property-related methods
36617         twice. Really process the properties for a type (don't cast a field to
36618         a property, my mom always told me that).
36619         Fix 64 bit issues in pointer alignment in a different and more
36620         readable way.
36622 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36624         * loader.h: Removed type class from MonoDefaults, added monotype
36626         * loader.c: Loaded MonoType, removed loading of Type
36628         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36629         and fills in System.Type._impl with a RuntimeTypeHandle rather
36630         than the actual MonoClass *
36632         (ves_icall_type_from_handle): change from type_class to
36633         monotype_class
36635         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36636         implemented
36638         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36639         implemented
36641         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36643         (ves_icall_System_Reflection_Assembly_GetType): implemented
36645         (ves_icall_System_MonoType_assQualifiedName): implemented
36647         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36649 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36651         * assembly.c (mono_assembly_open): Implement a cache for the
36652         assemblies. 
36654         (mono_assembly_close): only destroy the assembly when the last
36655         reference is gone.
36656         
36657 2001-11-09  Dick Porter  <dick@ximian.com>
36659         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36661 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36663         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36665 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36667         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36668         from Martin Weindel.
36669         * object.h: add mono_string_chars ().
36671 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36673         * reflection.c (build_compressed_metadata): Eliminates warnings
36674         and uses 64-bit clean code.
36676         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36677         (mono_type_equal): Change signature to eliminate warnings.
36679 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36681         * icall.c, loader.c: remove the internalcall array constructors.
36682         Changes to match the new MonoArray structure.
36683         * object.h, object.c: an array object doesn't allocate an extra
36684         vector. Add mono_array_new_full () to create jagged arrays easily.
36686 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36688         * metadata.h, metadata.c: add mono_metadata_field_info () to
36689         retreive all the info about a field from vairous tables.
36690         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36691         * class.h, class.c: augment MonoClassField with more info.
36692         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36693         policy and load a field's RVA if needed.
36695 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36697         * class.c (mono_class_metadata_init): create a trampoline for all
36698         virtual functions instead of actually compiling them.
36700 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36702         * class.h, class.c: include name in MonoClassField.
36703         * class.c: fix fundamental type of System.Object and System.String.
36704         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36705         tokens in ldtoken.
36706         * icall.c: remove internalcalls for the Reflection stuff that is now
36707         done in C# code.
36708         * loader.c: mono_field_from_memberref () implementation.
36709         * mono-endian.c: thinko (s/struct/union/g).
36710         * object.c, object.h: make the mono_string_* prototypes actually use
36711         MonoString instead of MonoObject.
36712         * reflection.c, reflection.h: updates for changes in the reflection
36713         code in corlib: we use C structures that map to the actual C# classes.
36714         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36715         fat method header if needed and use the info from the ILGenerator for
36716         methods. Handle fields in types. Misc fixes.
36718 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36720         * class.c (mono_class_metadata_init): bug fix: always allocate
36721         space for static class data
36723 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36725         * class.c (mono_compute_relative_numbering): use relative
36726         numbering to support fast runtime type checks.
36728 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36730         * class.c (mono_class_create_from_typeref): added debugging output
36731         to print class name when MonoDummy is returned instead of real class
36733 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36735         * class.c (mono_class_metadata_init): interface offset table now
36736         contains pointers into the vtable - this is more efficient for the jit
36738 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36740         * class.c (mono_class_metadata_init): use a temporary vtable (the
36741         old algorithm only worked for the interpreter, but not for the jit)
36743 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36745         * loader.c (method_from_memberref): use mono_class_get to get the
36746         class of an array instead of using System.Array directly.
36747         (mono_get_method): also add MEMBERREF methods to the method cache
36748         which usefull for arrays.
36750 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36752         * pedump.c (arch_compile_method): added to compute vtable entry
36754         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36755         number of interfaces.
36756         
36757         * class.h: merged MonoArrayClass into MonoClass
36759         * class.c (mono_class_create_from_typedef): compute the vtable size and
36760         allocate space to include the vtable inside MonoClass
36761         (mono_class_metadata_init): initialize the vtable
36763 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36765         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36766         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36767         * image.c: endian fixes by Laurent Rioux.
36768         * object.h, object.c: rename MonoStringObject to MonoString and
36769         MonoArrayObject to MonoArray. Change some function names to conform to
36770         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36771         guint16* as first argument, so don't use char*.
36772         Provide macros to do the interesting things on arrays in a portable way.
36773         * threads-pthread.c: updates for the API changes and #include <sched.h>
36774         (required for sched_yield()).
36775         * icall.c: updates for the API changes above.
36776         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36777         platforms that need them.
36779 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36781         * class.c: set the correct type for all the fundamental
36782         type when loading the class.
36784 2001-10-05  Dick Porter  <dick@ximian.com>
36786         * threads-pthread.c (pthread_mutex_timedlock): Simple
36787         compatibility version for C libraries that lack this call.
36789 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36791         * class.c: MonoTypes stored in MonoClass are stored as
36792         fundamental MonoTypes when the class represents a
36793         fundamental type (System.Int32, ...).
36794         The TypeHandle return by ldtoken is a MonoType*.
36795         * icall.c: ves_icall_get_data_chunk () write out all the
36796         PE/COFF stuff. Implement ves_icall_define_method (),
36797         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36798         * image.c: properly skip unknown streams.
36799         * loader.h, loader.c: add type_class to mono_defaults.
36800         * metadata.c, metadata.h: export compute_size () as
36801         mono_metadata_compute_size () with a better interface.
36802         Typo and C&P fixes.
36803         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36804         * reflection.c, reflection.h: many cleanups, fixes, output method
36805         signatures and headers, typedef and typeref info, compress the metadata
36806         tables, output all the heap streams, cli header etc.
36807         * row-indexes.h: typo fixes.
36809 2001-10-04  Dick Porter  <dick@ximian.com>
36811         * object.h: Add a synchronisation mutex struct to MonoObject
36813         * object.c (mono_new_object): Initialise the object
36814         synchronisation mutexes
36816         * icall.c: System.Threading.Monitor internal calls
36817         
36818         * threads-pthread.h:
36819         * threads-pthread.c: System.Threading.Monitor internal calls
36821         * threads-types.h: New file, includes the system-specific thread
36822         structures
36823         
36824         * threads-pthread-types.h:
36825         * threads-pthread-types.c: New files, handle pthread-specific
36826         synchronisation types
36828         * threads-dummy-types.h: 
36829         * threads-dummy-types.c: New files of dummy support for
36830         thread-specific types
36832         * metadata.c:
36833         * image.c:
36834         * pedump.c: include mono-endian.h not endian.h
36835         
36836         * Makefile.am: More threads files.
36837         Name mono-endian.h not endian.h
36839 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36841         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36842         stuff and implement a few more bits.
36843         * icall.c: a field needs to be dereferenced twice. Do not use the same
36844         name for two variables in the same scope.
36845         * image.c, image.h: cleanups.
36847 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36849         * class.c (mono_class_metadata_init): bug fix: compute the right size
36851 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36853         * icall.c: implemented some of the Reflection internalcalls.
36854         * image.c, image.h: start writing out the PE/COFF image.
36855         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36856         that does the reverse than decode_blob_size ().
36857         * object.c: use mono_metadata_encode_value (). Move here
36858         temporary implementation of mono_string_to_utf8 ().
36859         * rawbuffer.c: make malloc_map static.
36861 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36863         * metadata.c: fix type comparison for arrays.
36864         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36865         Added a couple of new classes to monodefaults.
36866         * icall.c: added a couple of Reflection-related internalcalls.
36867         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36868         Added a byval_arg MonoType to MonoClass.
36870 2001-09-28  Dick Porter  <dick@ximian.com>
36872         * icall.c:
36873         * threads-pthread.h: 
36874         * threads-pthread.c: Implemented internal calls for
36875         LocalDataStoreSlot operations.  Applied mutexes around all shared
36876         data.  Reworked the thread creation and Start() operations to
36877         avoid a race condition.
36878         
36879         * threads-dummy.h:
36880         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36882 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36884         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36886 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36888         * class.c, loader.c: warn and return NULL instead of erroring out.
36889         * icall.c: added System.AppDomain::getCurDomain().
36890         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36892 2001-09-25  Dick Porter  <dick@ximian.com>
36894         * threads-pthread.h:
36895         * threads-pthread.c: Implemented timed thread joining and added
36896         System.Threading.Thread::Join_internal internal call
36898         * icall.c: Added System.Threading.Thread::Join_internal internal call
36900         * threads-dummy.h:
36901         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36903 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36905         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36906         mono_string_intern () to implement the semantics of the ldstr opcode
36907         and the interning of System.Strings.
36908         * icall.c: provide hooks to make String::IsIntern and String::Intern
36909         internalcalls.
36911 2001-09-23  Dick Porter  <dick@ximian.com>
36913         * threads-dummy.c: 
36914         * threads-dummy.h: New files of dummy threading routines
36916         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36917         support code based on system specifics
36919         Rename PTHREAD_LIBS to THREAD_LIBS
36920         
36921 2001-09-23  Dick Porter  <dick@ximian.com>
36923         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36924         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36925         internal calls.
36926         (mono_thread_init): Set up a Thread object instance to return when
36927         the main thread calls Thread.CurrentThread
36928         (mono_thread_cleanup): Wait for all subthreads to exit
36930         * icall.c: New internal calls for System.Threading.Thread::Sleep
36931         (including Schedule) and CurrentThread
36933         * threads.h: New file, to insulate thread-specific stuff from the
36934         rest of the code
36936 2001-09-21  Dick Porter  <dick@ximian.com>
36938         * threads-pthread.h: 
36939         * threads-pthread.c: New file, for handling pthreads-style
36940         threading support.  Start() now starts a new thread and executes
36941         the ThreadStart delegate instance.
36943         * icall.c: Added the internalcall for
36944         System.Threading.Thread::Start_internal
36946         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36948 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36950         * loader.c: work around the different signatures for delegates
36951         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36953 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36955         * class.h, class.c: add mono_class_get_field_from_name ().
36956         * *: Fix C comments and other ANSI C issues.
36958 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36960         * endian.h, assembly.c: fix some endianness issues.
36962 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36964         * loader.h, load.c: add delegate_class to mono_defaults.
36965         Handle runtime provided methods in mono_get_method ().
36967 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36969         * loader.c (mono_get_method): use pinvoke for internal call
36971         * icall.c: use pinvoke for internal call
36973         * loader.c (method_from_memberref): set the method name
36975 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36977         * metadata.c: help the compiler generate better code for
36978         mono_class_from_mono_type ().
36980 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36982         * class.c (mono_class_metadata_init): delayed computing of the
36983         class size to mono_class_metadata_init ()
36985 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36987         * class.c, class.h: add an interfaces member to MonoClass.
36988         * image.c, image.h: add assembly_name field to MonoImage
36989         from the assembly table.
36990         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36992 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36994         * class.c: Handle Array in mono_class_from_mono_type ().
36995         * metadata.c, pedump.c: some endian fixes.
36997 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36999         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37000         * metadata.c: fix small problem introduced with the latest commit.
37002 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37004         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37005         We don't need a MonoMetadata pointer anymore to compare signatures in
37006         mono_metadata_signature_equal (), update callers.
37007         Reduced memory usage an number of allocations for MonoMethodHeader and
37008         MonoMethodSignature.
37010 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37012         * metadata.c: added compare for szarray.
37014 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37016         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37017         and add a couple more types to it and mono_defaults. Give an hint on
37018         classes that need implementing in our corlib and are referenced
37019         in mscorlib.
37021 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37023         * class.h, class.c: keep track if a class is also an Enum.
37024         * loader.c: Implement a couple more types for use in libffi
37025         marshalling. Gives better diagnostics when failing to dlopen
37026         a library. Set method->klass for P/Invoke methods, too.
37028 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37030         * class.c, class.h: add a MonoType this_arg to MonoClass that
37031         represents a pointer to an object of the class' type that
37032         can be used by the interpreter and later the type cache.
37033         Add best guess alignment info for valuetype objects.
37035 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37037         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37038         into MonoType: one less level of indirection and allocation and
37039         simplifies quite a bit of code. Added cache for MonoTypes that are
37040         used frequently, so that we don't need to allocate them all the time.
37042 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37044         * class.c (mono_class_create_from_typedef): System.Enum is also a
37045         value type, although it does not derive from System.ValueType
37046         (maybe a bug in the ms compiler?)
37048         * metadata.c (mono_type_size): return the right size for value types
37050         * loader.c (mono_get_method): only initialize method header if not abstract
37052         * class.c (mono_class_from_mono_type): use mono_default values. 
37054 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37056         * *: use MonoClass pointers instead of <type_tokens>
37057         
37058         * class.h: new flag: metadata_inited.
37060         * class.c (mono_class_metadata_init): impl.
37061         (mono_class_instance_size): impl.
37062         (mono_class_data_size): impl.
37064 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37066         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37067         MonoClass now has the name and name_space fields. 
37068         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37069         mono_get_method () takes and optional MonoClass as argument.
37070         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37071         instead that takes advantage of a map from class names to typedef
37072         tokens in MonoImage.
37074 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37076         * metadata.c: zero is not a valid alignment boundary.
37077         Merge MONO_TYPE_VOID in default decoding code.
37079 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37081         * image.h: merged MonoMetadata into MonoImage
37083         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37084         identify the type of elements.
37086 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37088         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37089         * cil-coff.h: split MonoMSDOSHeader and add size info.
37090         * image.c: add some consistency checks.
37091         * metadata.c: fix row size computation: one programmer
37092         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37093         add explanation for the locator routine.
37094         Fix decoding of size in method header.
37095         
37096 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37098         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37099         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37100         function from gnome-libs.  This uses the right path separator
37101         based on the OS, and also works around a bug in some systems where
37102         a double slash is not allowed. 
37103         (default_assembly_name_resolver): Use g_concat_dir_and_file
37104         (mono_assembly_open): ditto.
37106 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37108         * metadata.c (mono_metadata_signature_equal): impl.
37110         * *: void is now a realy MonoType (instead of using NULL)
37111         
37112         * metadata.c (do_mono_metadata_parse_type): use
37113         mono_metadata_parse_type to parse void value.
37115 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37117         * metadata.c, metadata.h: in the signature and method header store
37118         only the space required for holding the loca vars and incoming arguments.
37120 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37122         * metadata.c (do_mono_metadata_parse_type): treat void like any
37123         other type (instead of assigning NULL);
37125 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37127         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37129 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37131         * image.c (do_mono_image_open): added a cache for arrays.
37133 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37135         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37136         decode a single column from a row in a metadata table and changes
37137         to take advantage of it in the typedef locator (gives a nice speed up).
37138         Store offset info for function params.
37140 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37142         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37144 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37146         * assembly.c: how could mono_assembly_close () had ever worked?
37147         * metadata.c, metadata.h: provide offset info for local vars.
37148         Implement mono_type_size () to take care of alignment as well
37149         as size (it was mono_field_type_size in cli/class.c before).
37151 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37153         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37155         * assembly.h (CORLIB_NAME): set to corlib.dll
37157         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37159 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37161         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37162         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37163         tokentype.h: massive namespace cleanup.
37165 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37167         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37169 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37171         * metadata.c (mono_metadata_free_type): added check for type !=
37172         NULL (void) before calling mono_metadata_free_type()
37174 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37176         * metadata.h, row_indexes.h: added header with enumerations to use
37177         to index in the columns from tables in metadata and to decode coded
37178         tokens: we should start using this instead of embedding magic numbers
37179         all over the code.
37181 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37183         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37184         Move metadata_t info from cli_image_info_t to MonoImage, where
37185         it's easily accessible. Changed all the uses accordingly.
37186         Added the method and class caches to MonoImage.
37187         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37188         and mono_metadata_decode_value () signature to be more consistent
37189         with the other parse functions (and simplify code). Taken advantage
37190         of zero-length array allocation with GCC. Removed reduntant (and
37191         wrong) MonoFieldType struct and use MonoParam instead. Changed
37192         mono_metadata_parse_field_type () to use common code for parsing.
37193         Added mono_metadata_typedef_from_field () and
37194         mono_metadata_typedef_from_method () to lookup a typedef index from a
37195         field or method token.
37196         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37198 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37200         * metadata.c (mono_metadata_parse_field_type): Implement. 
37201         (do_mono_metadata_parse_type): Split engine from
37202         mono_metadata_parse_type, so that we can create smaller structures
37203         for things that just have one pointer to the MonoType (look at
37204         the MonoFieldType)
37206 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37208         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37209         as Jan Gray found out, it is incorrect. 
37211 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37213         * assembly.c: Implement asssembly loading.  This loads an image
37214         and loads all the referenced assemblies.  Come to think of it, we
37215         could always do lazy loading of the assemblies. 
37217         * image.c (mono_image_open): Keep loaded images in a hashtable.
37219         * image.h (MonoImage): Add reference count.
37221 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37223         * assembly.c (mono_assembly_open): Keep track of the file name in
37224         case the assembly has no ASSEMBLY table.
37226         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37227         from get.c here.
37229 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37231         * metadata.c, metadata.h: decode local vars in method header
37232         parse function. Change callers accordingly.
37234 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37236         * metadata.h, cil-coff.h: protect against multiple inclusion.
37237         Added some new structures to hold information decoded from metadata:
37238         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37239         and relevant decoding/free functions.
37240         * metadata.c: implement decoding functions. Add warning for out of bounds
37241         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37242         all the info about a method signature and invocation. Remove check on
37243         uninitialized local var in parse_mh() and fix memory leak.
37245 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37247         * metadata.h: More macros.
37249         * tokentype.h: New file.
37251 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37253         * assembly.c: added a consistency check and initialize
37254         some structures with g_new0().
37255         * metadata.c: fixed a couple more bugs in table size computation
37256         and add other checks for out-of bound access to metadata.
37258 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37260         * metatada.c: fix bugs computing table sizes. Spew a
37261         warning when index in string heap is out of bounds.
37263 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37265         * metadata.h: Add a couple of macros to manipulate tokens. 
37267 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37269         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37270         cli_section_tables).
37272 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37274         * metadata.c (mono_metadata_user_string): New function, provides
37275         access to the UserString heap. 
37277 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37279         * metadata.c: Add inline documentation.
37281 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37283         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37284         files. 
37286 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37288         * typeattr.h: New file, TypeAttribute flags. 
37290 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37292         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37293         mono_assembly_ensure_section): Section loading code.
37294         (load_section_tables): Load the sections.
37296         * mono/metadata/metadata.c (mono_metadata_locate_token,
37297         mono_metadata_locate): Functions to locate the information
37298         definition given a token or a table and an index.
37299         (mono_metadata_compute_table_bases): New.
37300         (compute_size): New function to compute the sizes of the various
37301         tables.
37303         * mono/metadata/metadata.h: Finish listing the different index
37304         types. 
37306         * mono/metadata/pedump.c: Improve to dump new information.
37308 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37310         * mono/metadata/metadata.c: Entered all the tables matching
37311         Beta2. 
37313         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2