2010-04-16 Zoltan Varga <vargaz@gmail.com>
[mono/afaerber.git] / mono / metadata / ChangeLog
blobf68f026eb87b7cad8f3d95bd3c40a118629e6c55
1 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
3         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
4         since it is not a MonoMethod.
6 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
8         * icall-def.h: Add get_RequiresElevatedPermissions icall to
9         System.Security.SecurityManager - used only by Moonlight
10         * security-core-clr.c|h: Add Elevated Trust/Permission support
11         for CoreCLR / Moonlight
13 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
15         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
16         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
18 2010-04-16  Marek Habersack  <mhabersack@novell.com>
20         * mono-perfcounters.c: added code for the "Mono
21         Memory/Total Physical Memory" performance counter.
23         * mono-perfcounters-def.h: added definition of the "Mono
24         Memory/Total Physical Memory" performance counter.
26 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
28         * class.c (mono_class_get_method_by_index): Return NULL
29         on type load failures.
31 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
33         * class.c (mono_class_from_typeref): Check if the supplied
34         image has an assembly bound to it.
36         Fixes #567884.
38 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
40         * loader.c (mono_method_get_signature_full): Use new function
41         inflate_generic_signature_checked to check for errors.
43         Fixes #560839.
45 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
47         * loader.c (inflate_generic_signature): Add _checked variant
48         and move this function to use it.
50 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
52         * class.c (mono_class_setup_vtable_general): Use error checking
53         version of mono_class_inflate_generic_method_full.
55         Fixes #596975.
57 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
59         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
60         error handling passing MonoError around.
62         Fixes #560336.
64 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
66         * socket-io.c: make GetHostByName ("") work on windows.
67         Fixes bug #456723.
69 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
71         * object-internals.h:
72         * threads.c: use a spin lock when accesing the per-thread appdomain
73         list.
75 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
77         * threads.c: no need to take the threads lock in push/pop appdomain.
79 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
81         * reflection.c (_mono_reflection_parse_type): MS supports
82         non-assembly-qualified types in a generic type parameter list
83         when enclosed in '[]' (which signals that they should be a fqn).
85         This breaks ECMA specs for how type names are encoded in cattr
86         blobs but F# does it.
88         Fixes #576342.
90 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
92         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
93         for instance methods/ctors.
95         Fixes #422113.
97 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
99         * reflection.c: Use the new verifier support for checking
100         custom attributes.
102         Fixes #595306.
104 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
106         * metadata-verify.c: Implement structural verification
107         of custom attributes. This check requires access to the
108         loader since to resolve the size of an enum we have to
109         look it up.
110         We don't check if named argumenments are encoded in a
111         compatible fashion to their underlying field/prop.
112         Maybe we should?
114         * verify-internals.h: Add two new cattr verification API.
116 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
118         * metadata-verify.c (decode_signature_header): Fix signature.
120 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
122         * verify.c (mono_verifier_is_enabled_for_method): Handle
123         assembly less images.
125         * verify.c (mono_verifier_is_class_full_trust): Ditto.
127 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
129         * loader.c (mono_method_signature_checked): Properly
130         init MonoError.
132         * loader.c (mono_method_signature): It's the calee
133         resposibility to init the error object.
135 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
137         * metadata-verify.c (decode_signature_header): Do proper
138         overflow checking.
140 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
142         * reflection.c: maintain the invariants required by
143         mono_class_layout_fields() also in typebuilder_setup_fields ().
145 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
147         * security-core-clr.c: Call mono_class_setup_methods in 
148         get_default_ctor before checking klass->methods. Fix typo in
149         comment
151 2010-04-10  Jb Evain  <jbevain@novell.com>
153         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
154         add .net 4.0 RTM version.
156 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
158         * reflection.c (resolve_object): Properly inflate generic
159         methods when a context is supplied.
161         Fixes #591226.
163 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
165         * verify.c (mono_method_verify): A switch op don't empty
166         the stack for the next one. Fixes a bug when running fsi
167         under --verify-all.
169 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
171         * metadata-verify.c (is_valid_standalonesig_blob): Accept
172         fields as valid standalone sig too. F# does generate them.
174         * metadata-verify.c (verify_typedef_table_full): Ignore
175         what <module> extends.
177 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
179         * verify.c (do_invoke_method): It's ok to do use call with
180         virtual, non-final methods if their class is sealed.
182 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
184         * icall.c (ves_icall_MonoField_GetValueInternal): This function
185         is a near identical copy of mono_field_get_value_object. So simply
186         call it.
188         * object.c (mono_field_get_value_object): Handle literal fields
189         on open generic classes.
191         Fixes #594942.
193 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
195         * reflection.c (mono_reflection_create_runtime_class): Setup
196         parent/supertype information again since it can be changed
197         without notice.
199 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
201         * verify.c (verify_type_compatibility_full): Properly handle
202         stores between arrays of primitives.
204         Fixes the verifier side of #555950.
206 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
208         class.c (mono_bounded_array_class_get): Properly init
209         cast_class to take the fact that uint[] and int[] can be
210         casted between each other.
212         Fixes #555950.
214 2010-04-07  Geoff Norton  <gnorton@novell.com>
216         * domain.c: Avoid a deadlock on osx.  Fixes #565765
218 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
220         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
221         builders. Fixes #594464.
223 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
225         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
226         waiting for all threads to suspend, as those threads can't be suspended.
228 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
230         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
231         to avoid crashes on newly created threads.
233 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
235         * file-io.c: reset the MonoIOStat structure in case of error.
236         Fixes bug #582667.
238 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
240         * class.c (print_implemented_interfaces): Print proper type name.
242         * class.c (mono_class_setup_vtable): Don't try that hard to produce
243         the override map for generic instances since it later ignored.
245         * class.c (mono_class_implement_interface_slow): Don't break for
246         dynamic generic instances.
248         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
250         * reflection.c (mono_reflection_method_get_handle): New method that
251         resolves a method handle.
253         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
254         case when we override methods from a dynamic generic instance interface.
256         Fixes #575941.
258 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
260         * threadpool.c: don't attempt to close the pipe when it has not been
261         created.
263 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
265         * threadpool.c: if there are no waiting threads, try to start a new
266         one. This fixes the not-so-random hangs in System.ServiceModel tests.
267         No need to use InterlockedCompareExchange to read volatile variables.
269 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
271         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
272         and reference types that point to the same class.
274         Fixes #565598.
276 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
278         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
279         when verifying compatibility between a generic instance and a generic
280         parameter.
282         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
284         * verify.c (stack_slot_stack_type_full_name): Improve verification type
285         name.
287         Fixes #587849.
289 2010-04-04  Mark Probst  <mark.probst@gmail.com>
291         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
293 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
295         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
297 2010-04-03  Marek Habersack  <mhabersack@novell.com>
299         * process.c: when cross-compiling with MinGW, force GetProcessId
300         lookup using GetProcAddress.
302 2010-04-02  Mark Probst  <mark.probst@gmail.com>
304         * sgen-gc.c: parse_environment_string_extract_number() must be
305         static.
307 2010-04-02  Mark Probst  <mark.probst@gmail.com>
309         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
310         gray_object_dequeue(), to make sure they're inlined.
312 2010-04-02  Mark Probst  <mark.probst@gmail.com>
314         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
315         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
317 2010-04-02  Jb Evain  <jbevain@novell.com>
319         * exception.c: remove dead code.
321 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
323         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
324         with mono-gc.h.
326 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
328         * sgen-gc.c: Make the nursery size adjustable by the
329         MONO_GC_PARAMS environment variable.
331         Code is contributed under MIT/X11 license.
333 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
335         * threadpool.c: threadpool threads wait is alertable.
336         Fixes bug #592964.
337         Reduced the stack size of the *poll_wait thread.
339 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
341         * exception.c|metadata-internals.h: Add new mono_get_exception_
342         field_access_msg and mono_get_exception_method_access_msg 
343         functions that accept a const char* parameter to provide more 
344         details when the exception is thrown.
345         * security-core-clr.c|h: Rework code to allow logging exceptions
346         (export MONO_LOG_MASK="security") and to supply more details in
347         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
348         mono_security_core_clr_is_field_access_allowed and 
349         mono_security_core_clr_is_call_allowed to return an exception,
350         with messages and logging, that can be emitted by method-to-ir.c
352 2010-04-01  Mark Probst  <mark.probst@gmail.com>
354         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
355         pinned object.
357 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
359         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
360         the assembly name is not well formed utf8. Fixes #567882.
362 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
364         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
365         the generic parameters from the builder. Fixes #473298.
367 2010-03-31  Miguel de Icaza  <miguel@novell.com>
369         * object.c (mono_class_proxy_vtable): Eliminate warning. 
371         * marshal.c (emit_marshal_boolean): Eliminate possible
372         uninitialized local warning. 
374 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
376         * class.c (mono_class_init): Postpone coreclr inheritance check
377         until the end of the initialization (so we can check up the 
378         default ctor manually for the core-clr inheritance rules).
379         * security-core-clr.c: Add the missing (undocumented) checks on
380         default constructors when verifying inheritance rules.
382 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
384         * domain-internals.h (MonoJitExceptionInfo): Add new field
385         handler_end to the data union. To be used to point the end
386         of a finally block.
388 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
390         * reflection.c: Add support for new v4 type
391         System.Reflection.MonoModule that is the concrete version
392         of Module which is abstract unver v4.
394 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
396         * class.c (mono_class_init): Don't set class failure after
397         inited = 1 is set. It must be done before.
399 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
401         * mono-config.c: Add support for OS "haiku"
402         * ChangeLog: Fix UTF-8 encoding
404         Code is contributed under MIT/X11 license.
406 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
408         * console-unix.c: fixed include logic for sys/ioctl.h.
410 2010-03-30  Mark Probst  <mark.probst@gmail.com>
412         * threads.c: Fix bitmap generation for TLS marking on 64 bit
413         systems.
415 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
417         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
418         unfinished/broken typebuilders.
420 2010-03-29  Mark Probst  <mark.probst@gmail.com>
422         * sgen-gc.c: Use the same heuristic for the LOS target that we use
423         for the minor section allowance.
425 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
427         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
428         "NoOptimization".
430 2010-03-29  Mark Probst  <mark.probst@gmail.com>
432         * sgen-gc.c: Count bytes allocated with heavy statistics.
434 2010-03-29  Mark Probst  <mark.probst@gmail.com>
436         * sgen-gc.c: More detailed time statistics.
438 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
440         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
441         fix the user defined mark interface to pass a pointer
442         to the object location and not the object itself.
444 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
446         * reflection.c (mono_method_body_get_object): Release
447         the method header before the call to CACHE_OBJECT since
448         this is a macro that returns.
450 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
452         * class.c (inflate_generic_type): mono_metadata_type_dup
453         already dupes array information, the g_memdup was just
454         leaking memory.
456 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
458         * verify.c: Add stack_peek function. Fix CEE_DUP
459         to not read from invalid memory if push did expand
460         the stack.
462 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
464         * verify.c: Remove old table verification code that has
465         been superseeded by the new metadata verifier.
467         * verify.h: Remove mono_image_verify_tables from the public
468         API.
470         * pedump.c: Fix for removed bits.
472 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
474         * verify.c: Allocate stack slows lazily to reduce stack usage
475         in case of methods with huge stacks. Reduces memory consumption
476         for mcs yyparse from 459Mb to 1.8Mb.
478 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
480         * threadpool.c: don't try executing items from domains being
481         unloaded. Fixes appdomain-async-invoke test.
483 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
485         * threadpool.c: spin while the threadpool initializes.
486         * mono-wsq.c: if the WSQ has not been initialized or has been shut
487         down, don't do anything.
489 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
491         * threads.c (mono_thread_create_internal): Set the GC type of the
492         threads_starting_up hash table.
494 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
496         * threadpool.c: reset 'state' to avoid returning non-null when the
497         event type is not found.
499 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
501         * sgen-gc.c: make copy_object () take the address of the
502         slot holding the reference. This allows saving memory stores
503         when not needed and it allows keeping track of oldspace->nursery
504         references for the card table code.
506 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
508         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
510         Code is contributed under MIT/X11 license.
512 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
514         * object.c, threads.c, threads-types.h, threads.h: make the
515         managed thread local storage references precisely tracked.
517 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
519         * threadpool.[ch]: reworked the threadpool:
520                 -Threadpool threads use a work-stealing queue. Adding a work
521                 item from a threadpool thread will queue it in the thread
522                 local queue without locking (in most cases).
523                 -epoll events are coalesced before being added to the IO
524                 queue.
525                 -Dynamically change the number of active threads
526                 -Changed the global queue to be more GC friendly
528         * class-internals.h: add 2 new performance counters for the number of
529         threads in the threadpool and the IO threadpool.
531         * object-internals.h: new field in MonoAsyncResult.
532         * icall-def.h: new internal call for queueing work items.
534         * Makefile.am: add 2 new files.
536         * appdomain.c: bump up corlib version.
538         * mono-wsq.[ch]: an implementation of a work-stealing queue.
540         * mono-perfcounters-def.h:
541         * mono-perfcounters.c: added 2 new performance counters.
543 2010-03-26  Mark Probst  <mark.probst@gmail.com>
545         * sgen-gc.c: More FIXME/TODO updates.
547 2010-03-25  Mark Probst  <mark.probst@gmail.com>
549         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
550         function mono_gc_invoke_with_gc_lock() which invokes a function
551         with the guarantee that no collection will occur during its execution.
553 2010-03-25  Mark Probst  <mark.probst@gmail.com>
555         * sgen-gc.c: Update a few comments.
557 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
559         * reflection.c: Add support for new v4 type
560         System.Reflection.MonoAssembly that is the concrete version
561         of Assembly which is abstract unver v4.
563 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
565         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
566         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
568         Expose a few macros that are needed for SR but not SRE to the
569         world (previous inside the SRE ifdef)
571 2010-03-24  Mark Probst  <mark.probst@gmail.com>
573         * sgen-gc.c (gc_register_current_thread): We need
574         stack_start_limit as well in the non-attribute pthread case.
576 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
578         * threads.c: Fix windows build.
580 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
582         * thread-types.h: Add mono_thread_resume_interruption.
584         * threads.c: Add mono_thread_resume_interruption, this
585         function should be called after the last protected handler
586         found at interruption time has finished.
588 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
590         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
591         Check MonoInternalThread's ::state instead of ::abort_exc
592         since the later can be lazily created.
594         This is specially problematic when running a finally block
595         under AbortRequested state. ResetAbort must work, but the
596         abort_exc object has not been created because interruption
597         has not began.
599 2010-03-22  Geoff Norton  <gnorton@novell.com>
601         * locales.c: Its possible for CFStringGetCStringPtr
602         to return null and not convert encodings.  Use
603         CFStringGetCString instead.
605 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
607         * class-internals.h, class.c, object.c: introduce compressed
608         interface bitmaps (for now only under small config): this saves
609         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
610         startups.
612 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
614         * mono-debug.c: don't try to get the method header, it causes a
615         deadlock and it is not used for anything anymore.
617 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
619         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
620         broken by the last change.
622 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
624         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
625         SOCK_RDM.
626         
627         Code is contributed under MIT/X11 license.
629 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
631         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
632         nursery.
634         Code is contributed under MIT/X11 license.
636 2010-03-19  Martin Baulig  <martin@ximian.com>
638         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
639         dummy field, containing an empty string.
640         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
643 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
645         * class.c: setup_interface_offsets() refactor to not call
646         mono_class_get_implemented_interfaces () more times than needed and
647         to reduce the runtime memory requirements to be O(num_interfaces)
648         instead of O(max_interface_id).
650 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
652         * mono-mlist.[ch]: add mono_mlist_set_next ().
654 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
656         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
657         associated changes to support holes in the protected range of a
658         try block.
660         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
661         retrieves the holes table from a given MonoJitInfo.
663 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
665         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
666         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
667         hide the contents of the MonoString and MonoArray structs from the
668         public API. Change the accessor macros to accessors functions where
669         needed. Adjusted the array API to allow for pointer-sized lengths and
670         starting positions, so 64 bit arrays can be optionally provided in an
671         API compatible way if needed on 64 bit systems.
673 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
675         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
676         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
678 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
680         * class-internals.h: remove the method header from MonoMethod since
681         from now on it will be transient. We have a header pointer for method
682         wrappers, since in that case we need to keep track of it. For this
683         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
684         structs now. The same happens with MonoMethodInflated.
685         * class.c: reset the sre_method flag for inflated method structures:
686         this makes the code that cares look at the header in the MonoMethodInflated
687         structure.
688         * loader.c: lookup the method header in the appropriate field now that
689         it is removed from MonoMethod.
690         * metadata-internals.h: add a flag to the method header to know if it
691         can be freed inside mono_metadata_free_mh ().
692         * method-builder.c: updates after moving the header field from
693         MonoMethod to MonoMethodWrapper.
694         * reflection.c: MonoMethods generated from Reflection.Emit use
695         MonoMethodWrapper structs if they need a method header now (later take
696         advantage of this and remove all the current unsafe uses of method_aux_hash).
697         * metadata.c: make method header parsing not leak when verification
698         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
699         These changes save a few hundred KB of runtime memory in a mcs
700         bootstrap or a monodevelop startup.
702 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
704         * verify.c: Improve error message.
706 2010-03-12  Jb Evain  <jbevain@novell.com>
708         * reflection.c (add_exported_type): populate the exported
709         table with the type's nested type.
711 2010-03-10  Mark Probst  <mark.probst@gmail.com>
713         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
714         can't read parentheses.
716 2010-03-10  Mark Probst  <mark.probst@gmail.com>
718         * threads.c (thread_cleanup): Add a guard to dereferencing
719         "thread" to avoid an unlikely race condition.
721 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
723         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
724         instead of an empty string.
726 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
728         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
729         convert to a boolean, recent gcc versions compile this differently.
731 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
733        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
734        inlined.
736 2010-03-09  Mark Probst  <mark.probst@gmail.com>
738         * sgen-gc.c (STRING_SIZE): Off by one.
740 2010-03-09  Mark Probst  <mark.probst@gmail.com>
742         * sgen-archdep.h: Fix the signal context register access for
743         AMD64.
745 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
747         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
749 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
751         * verify.c: Store the initial basic block returned by mono_basic_block_split
752         so we can release the whole list and not just the first one.
754 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
756         * verify.c, debug-helpers.c, profiler.c, loader.c,
757         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
758         MonoMethodHeader a transient entity.
760 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
762         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
763         uncontrolled growth of the gray stack.
765         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
766         added items are removed first, improving cache locality. Avoid freeing queue
767         segments in the fast path, use the list of segments as the free list, truncate
768         it to its max size at the start of collection.
770 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
772         * metadata-internals.h: more memory savings, both with small config and without.
775 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
777         * appdomain.c, domain-internals.h, domain.c, object.c:
778         make class_vtable_hash into an array to reduce memory usage.
780 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
782         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
783         object-internals.h, object.c, reflection.c, threadpool.c:
784         reduce resource usage when the small config is selected.
785         In particular, up to 64K of methods/fields/properties/events
786         are allowed and "other" methods in events are ignored.
788 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
790         * threads.c: reduce resource usage when compiled for a small config.
792 2010-03-05  Mark Probst  <mark.probst@gmail.com>
794         * sgen-gc.c: Also collect number of degraded-alloced objects with
795         heavy statistics.
797 2010-03-04  Geoff Norton  <gnorton@novell.com>
799         * assembly.c: Only support OSX bundling if the bundle is 
800         actually detectable.
802 2010-03-04  Geoff Norton  <gnorton@novell.com>
804         * loader.c: The marshal specs are freed at the end of the call
805         but it explicitly frees the strings as well as the container,
806         so we need to dup them too to avoid referencing free'd memory.
808 2010-03-04  Geoff Norton  <gnorton@novell.com>
810         * icall-def.h:
811         * icall.c: Add a new private internal icall to construct
812         an object from its type without running the ctor.
814 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
816         * profiler.c: allow multiple profiler engines to be loaded
817         at the same time.
819 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
821         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
822         profiler event to track object moves.
824 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
826         * object.c, profiler.c, profiler.h, string-icalls.c:
827         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
829 2010-03-03  Miguel de Icaza  <miguel@novell.com>
831         * decimal.c (mono_double2decimal): Add support for reducing the
832         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
833         expected.
835 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
837         * icall-def.h:
838         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
840 2010-03-03  Marek Habersack  <mhabersack@novell.com>
842         * mono-config.c (mono_config_parse_assembly_bindings): added -
843         parses assembly binding redirections from appdomain's config
844         file.
846         * metadata-internals.h: added definition of a new function -
847         mono_config_parse_assembly_bindings - to support parsing assembly
848         binding redirections defined in appdomain's config file.
850         * domain-internals.h: added two new fields to _MonoDomain - a list
851         of assembly bindings and a flag to parse the config file only
852         once.
854         * assembly.c (assembly_binding_maps_name): empty culture name and
855         NULL culture name are considered equal.
856         (mono_assembly_apply_binding): added support for domain specific
857         assembly binding redirections, read from the appdomain's
858         configuration file. Fixes bug #580185
860 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
862         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
863         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
864         support.
866 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
868         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
869         from this function. The new function receive the parent token instead of a type.
871         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
872         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
873         typebuilders. This make it possible to properly encode generic type builders since
874         their unmanaged type don't have generics data while unfinished.
876         Fixes #583655.
878 2010-03-02  Mark Probst  <mark.probst@gmail.com>
880         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
881         writing binary log files (can be enabled by #define'ing
882         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
883         bugs in longer running programs.
885 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
887         * metadata.c: added some API documentation.
889 2010-03-01  Robert Jordan  <robertj@gmx.net>
891         * filewatcher.h: Include glib.h to fix the MSVC build.
893 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
895         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
896         a GC handle instead. This is a bit slower to access, but avoids burdening the
897         GC with 100s of individual roots.
899         * reflection.c (mono_class_get_ref_info):
900         (mono_class_set_ref_info):
901         (mono_class_free_ref_info): New internal helper fuctions.
903         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
904         of accessing klass->reflection_info directly.
906         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
907         words.
909         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
910         the previous array.
912 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
914         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
915         needs an indirection.
917 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
919         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
920         so all generic sharing code is in one place.
922         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
923         we don't call setup_interface_offsets () for unfinished types.
925 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
927         * class.c (mono_class_generic_sharing_enabled): Move this to
928         generic-sharing.c.
930         * image.c: Add an unload hook which is called before an image is unloaded.
932         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
933         metadata.c having to depend on generic sharing.
935 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
937         * class.c: reduce size of ridiculously large cache.
939 2010-02-26  Martin Baulig  <martin@ximian.com>
941         * mono-debug.h
942         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
944         * threads.c (mono_thread_internal_reset_abort): New method; resets
945         the abort, but doesn't throw any exception if no abort was requested.
947 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
949         * class.c (get_implicit_generic_array_interfaces): Call
950         mono_class_setup_interface_offsets () before accessing
951         eclass->interface_offsets_count. This only shows up on platforms without IMT for
952         some reason.
954 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
956         * environment.c, environment.h, icall.c: make the GetOSVersionString()
957         icall internal.
959 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
961         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
962         direct access to the MonoType fields.
964 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
966         * threads.h: Move some internal functions which were added to this header by
967         mistake to threads-types.h.
969         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
971 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
973         * class-internals.h, class.h, object.h: make MonoRemoteClass
974         and mono_remote_class() internal.
976 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
978         * metadata-internals.h, class-internals.h, metadata.h: make the
979         MonoType guts internal as well.
981 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
983         * reflection.h: the MonoTypeNameParse guts are internal now.
984         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
985         are internal now, provide accessors as needed.
986         * metadata.h, metadata-internals.h: the MonoMethodSignature
987         guts are internal now.
988         * Makefile.am: mempool.h is an internal header now.
989         * *.h, *.c: remove glib.h usage from the public headers.
991 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
993         * culture-info-table.h : regenerated.
995 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
997         * metadata.c: Add mono_method_get_header_summary which returns minimal
998         information about the header of a method. This is the information used
999         by the inline oracle to reject methods.
1001         This method doesn't decode local variables and doesn't cache it's result,
1002         so it should cause a minimal reduction in memory usage.
1004         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1005         mono_method_get_header_summary.
1007 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1009         * threads.c (mono_thread_exit): Make sure that the main thread is
1010         non-null before dereferencing it.
1012 2010-02-21  Geoff Norton  <gnorton@novell.com>
1014         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1015         locale.
1016         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1017         before falling back to the posix lookup.
1019 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1021         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1022         the DONT_MANAGE flag set.
1024 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1026         * domain.c: Remove old v1 version strings. Let the runtime
1027         default to 2.0 instead of failing because it can't find a
1028         working 1.0 instalation.
1030 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1032         * domain.c: Add v4 RC version string.
1034 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1036         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1037         of overflow checking function.
1039 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1041         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1042         generic methods.
1044         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1045         cases for ParameterInfo.
1047         Fixes #579493.
1049 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1051         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1052         have has_cctor set. Fixes #575946.
1054 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1056         * appdomain.c: display a warning if the parsing the config file
1057         produces any error.
1058         Skip the BOM in UTF-8 files.
1059         Copy the AppDomainSetup before setting the privateBinPath so that the
1060         correct configuration file is read.
1062 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1064         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1065         vtable trampoline per vtable slot index. Not used yet.
1067 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1069         * icall-def.h:
1070         * icall.c: add internal call that returns the system page size.
1072 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1074         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1075         'int' for system classes.
1077 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1079         * icall.c, icall-def.h: new icall to check for sufficient
1080         stack space.
1082 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1084         * reflection.c (ensure_complete_type): Check that reflection_info
1085         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1087 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1089         * attrdefs.h:
1090         * tabledefs.h: Add NoOptimization flag.
1092 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1094         * sgen-gc.c: Don't consider it a missing remset if the target
1095         object is pinned - we might have done the store but not added the
1096         remset yet.
1098 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1100         * sgen-gc.c: When checking for missing remsets, don't assert on
1101         the first one, but print them all and then assert.
1103 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1105         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1107 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1109         * console-unix.c: On OSX Control-Y is assigned to
1110         VDSUSP (non-Posix), the
1111         suspend-program-next-time-it-tries-to-read-input command (this is
1112         different than C-z, which suspends immediately).
1114         Do the same thing that bash does and ignore this setting,
1115         making our repl/getline support pasting.
1117 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1119         * sgen-gc.c: Simple plausibility check for scan_starts.
1121 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1123         * sgen-gc.c: Round up when calculating the number of scan starts.
1125 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1127         * reflection.c: Export mono_get_object_from_blob.
1129         * object-internals.h: Ditto.
1131         * icall.c: New icall property_info_get_default_value to get the default
1132         value of a property. Since using this is not common, no caching is done.
1134         * icall-def.h: Add new icall.
1136 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1138         * class.c: Add mono_class_get_property_default_value.
1140         * class-internal.h: Export mono_class_get_property_default_value.
1142 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1144         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1146 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1148         * sgen-gc.c: introduced critical regions to allow some lockless
1149         operations and increase scalability.
1151 2010-02-10  Geoff Norton  <gnorton@novell.com>
1153         * reflection.c: Support building with DISABLE_REFLECTION
1155 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1157         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1158         Closes bug #566057.
1160         * exception.c: fix typo in comment.
1162 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1164         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1165         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1167         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1169         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1170         the internal API.
1172         Fixes #574434.
1174 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1176         * threads.c: Removed two assertions that were too strict.  Added a
1177         clarifying comment.  Fixes #577090.
1179 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1181         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1182         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1184         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1186         * verify.c (mono_type_get_stack_name): Fix a warning.
1188 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1190         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1191         mono_marshal_wrapper_info_from_wrapper.
1193         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1194         mono_marshal_method_set_wrapper_data, and export.
1196         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1197         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1198         by calling mono_marshal_get_wrapper_info ().
1200         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1201         small objects which does no size checks.
1203 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1205         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1207 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1209         * verify.c (mono_method_verify): Use the new basic block formation pass
1210         to avoid verifying dead basic blocks. This is the same behavior as the
1211         runtime MS verifier.
1213 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1215         * mono-basic-block.c:
1216         * mono-basic-block.h: New implementation of a basic block formation pass.
1217         The formation pass does static liveness analysis as well to detect dead
1218         basic blocks.
1220 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1222         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1223         'this' argument in icalls.
1225 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1227         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1229 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1231         * object.c, domain.c: When using SGen, we must register
1232         vtable->type as a root if it's not a MonoType, because then it
1233         wasn't pin-alloced.
1235 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1237         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1238         at the start of nursery collections, because we might have had
1239         degraded allocations which changed next_data.
1241 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1243         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1244         custom attr so this function works in cross-compiling mode.
1246 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1248         * class.c (make_generic_param_class): Initialize interface offsets since we
1249         set klass->inited. Fixes #574819.
1251 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1253         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1254         calling the JIT domain cleanup hook.
1256 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1258         * pedump.c (main): Properly set the verifier mode when running the metadata
1259         verifier.
1261 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1263         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1264         overlapping fields now that we're called before has_references is set.
1266         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1267         method. Otherwise all sort of weird stuff happens.
1269 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1271         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1272         Fixes #572874.
1274 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1276         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1277         Fixes #573322.
1279 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1281         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1282         pin_staging_area_index is greater than 0.
1284 2010-01-22 Miguel de Icaza (miguel@novell.com)
1286         * loader.c: Since we do nothing with the error returned, pass NULL
1287         to ignore the error.
1289 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1291         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1292         happened before starting to encode the actual fields. This avoid ciclic
1293         dependencies and eventual crashes.
1295         Fixes #572660.
1297 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1299         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1300         atomic and remove the half-constructed hack in SGen.
1302 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1304         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1305         has a recursive reference to itself.
1307         Fixes #571863.
1309 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1311         * loader.c (mono_method_signature): Fix error message.
1313 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1315         * sgen-gc.c: Reuse to-space sections between nursery collections.
1317 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1319         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1320         from the current assembly or mscorlib. Fixes bug #322957.
1322 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1324         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1325         get_wrapper_target_class.
1327 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1329         * sgen-gc.c: Fix warnings.
1331 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1333         * verify.c (store_local): Better error message.
1335 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1337         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1338         arguments.
1340 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1342         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1343         function is generics variance aware.
1345 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1347         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1348         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1350 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1352         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1353           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1355         Code is contributed under MIT/X11 license.
1357 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1359         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1360         on a GTD.
1362 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1364         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1365         return a point to a wrapper specific info structure describing the wrapper.
1366         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1368 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1370         * sgen-gc.c: Make minor collection section allowance adaptive,
1371         depending on the amount of memory reclaimed in the last major
1372         collection.  If more memory was reclaimed (i.e. more garbage
1373         produced), do the next collection earlier.
1375 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1377         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1378         to itself.
1380         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1381         the token as parameter.
1383         * verify-internals.h: Ditto.
1385         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1387         Fixes #571460.
1389 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1391         * sgen-gc.c: Make store_remset_buffer_index long.
1393 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1395         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1397         Fixes #569579.
1399 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1401         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1402         off precise marking if it is available.
1403         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1405 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1407         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1409         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1410         pinned objects.
1412         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1413         to the array allocator.
1415 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1417         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1418         result of mono_compile_method (), it already includes an ftnptr.
1420 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1422         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1424 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1426         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1427         hash value which doesn't depend on glib/eglib versions.
1428         (mono_metadata_type_hash): Use it.
1430         * object.c (mono_method_get_imt_slot): Ditto.
1432 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1434         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1435         independently of the GTD.
1437         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1439         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1440         to the upper limit since instance_size includes this amount.
1442         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1444         Fixes #569544.
1446 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1448         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1449         with static methods.
1451         * object.c (build_imt_slots): Avoid asserting when static methods are
1452         encountered in an interface.
1454 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1456         * sgen-gc.c (to_space_expand): Fix assertion.
1458 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1460         * string-icalls.c: missing declaration fixes.
1461         * sgen-gc.c: portability fixes.
1463 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1465         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1467         * class.c:
1468         * cominterop.c:
1469         * icall.c:
1470         * object.c: 
1471         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1473 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1475         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1476         it can fail loading the type.
1478         * class.c: Add mono_class_inflate_generic_class_checked.
1480         * class.c:
1481         * verify.c:
1482         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1484 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1486         * loader.c (mono_method_signature_checked): New internal function taking an
1487         MonoError argument.
1489         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1490         Fixes build on rh 7.3.
1492 2010-01-10  Aaron Bockover  <abockover@novell.com>
1494         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1495         at runtime in the same way as on Windows, which yields a relocatable
1496         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1497         of the running mono process.
1499         On TARGET_ARM, fallback () will always be executed.
1501 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1503         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1505 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1507         * class.c (mono_class_is_assignable_from_slow): Support variant
1508         generic delegates.
1510         * class.c (mono_class_implement_interface_slow): Support types with
1511         variant generic arguments.
1513 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1515         * verify.c: Remove some code duplication.
1517 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1519         * object.c: Update docs.
1521 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1523         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1525         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1526         fallback trampoline as well.
1528         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1529         out argument that is set to TRUE if the match was direct. 
1531         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1533         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1535 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1537         * class.c: Add mono_class_interface_offset_with_variance function that does same
1538         as mono_class_interface_offset but takes variance into account.
1540         * class-internal.h: Export mono_class_interface_offset_with_variance.
1542         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1544 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1546         * object.c:
1547         * icall.c:
1548         * class.c: Add some FIXME for due to variant generic arguments.
1550         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1551         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1552         the bitfield check fails.
1554 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1556         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1557         to be easier to read and fix bugs in the case a non generic type implements a variant
1558         interface.
1560         * class.c (mono_class_has_variant_generic_params): Make non static.
1562         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1563         the private API.
1565 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1567         * assembly.c: fix MONO_PATH debug output.
1569 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1571         * culture-info-table.h : regenerated.
1573 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1575         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1576         types that are meant to not have a parent.
1578 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1580         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1581         from the image mempool, so it is not leaked.
1583 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1585         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1587 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1589         * verify.c (verify_valuetype_layout_with_target): Fix case
1590         that can lead to infinite recursion. Fix bug #567861
1592 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1594         * pedump.c: Run code verifier even if image verification fails
1595         due to a failed type we. This allows more errors to be shown.
1597 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1599         * class.c (count_virtual_methods): Remove the assert and now
1600         fail properly.
1601         
1602         * class.c (setup_interface_offsets): This can fail now.
1604         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1605         errors. Check setup_interface_offsets errors.
1607         * class.c (setup_interface_offsets): Simplify the return error logic
1608         and remove class_init_ok.
1610         Fixes #560327.
1612 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1614         * class.c (mono_class_init): Do class verification at the beginning. Add
1615         some asserts to avoid tripping into invalid memory.
1617         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1618         g_error and a decent message.
1620         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1622         Fixes #567548.
1624 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1626         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1627         as inline functions instead of defining them in mempool.c.
1629         * metadata-internals.h (MonoImageSet): New structure representing a set of
1630         MonoImages, which own a collection of generic instances.
1632         * metadata.c: Get rid of the global generic caches, instead assign each generic
1633         instance to the image set which consists of all the images referenced by the
1634         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1635         the memory used by generic instances to be allocated from a per image-set mempool
1636         later.
1638 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1640         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1642 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1644         * appdomain.c (zero_static_data): Fix a warning.
1646         * locales.c (construct_culture_from_specific_name): Applied patch from
1647         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1648         not found. Fixes #567900.
1650 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1652         * loader.c (mono_method_get_signature_full): Remove two asserts.
1653         Return NULL instead so that the verifier can handle both cases 
1654         gracefully.
1656 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1658         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1659         so we can properly fail types instead of crashing.
1661         Fixes #567676.
1663 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1665         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1666         generic method.
1668 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1670         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1672 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1674         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1675         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1676         we can't remove it from it since we don't hold the lock.
1677         (mon_new): Free the orphaned events here when a mon structure is added to the
1678         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1679         this down.
1681 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1683         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1684         as max stack might be zero.
1686         Fixes #562320.
1688 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1690         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1692         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1693         instances if the GTD did.
1695         * class.c (mono_class_setup_properties): Ditto.
1697         * class.c (mono_class_setup_events): Ditto.
1699         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1701         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1702         error setting.
1704         * class.c (mono_class_init): Fail if GTD did.
1706         * cominterop.c:
1707         * generic-sharing.c:
1708         * icall.c:
1709         * loader.c:
1710         * object.c:
1711         * verify.c: Properly handle failure of mono_class_setup_methods.
1713 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1715         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1716         mono_class_inflate_generic_method_full internal.
1718         * class.c (inflate_generic_context): Now takes a MonoError argument.
1720         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1721         errors.
1723 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1725         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1726         they cannot be patched. Partly fixes #564408.
1728 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1730         * metadata-internals.h, reflection.c: Use the
1731         MonoDynamicImage.handleref hash table only with unmanaged keys,
1732         and add a managed hash table handleref_managed for managed keys.
1734 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1736         * sgen-gc.c: Unset to-space bumper between collections.  It might
1737         become invalid due to degraded allocations.
1739 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1741         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1742         with the one from the original method.
1744         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1745         compatibility.
1747         * verify-internals.h: Add new function to the internal API.
1749 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1751         * culture-info-tables.h: regenerated it to include the Georgian culture.
1753 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1755         * sgen-gc.c: Include mono/utils/memcheck.h.
1757         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
1758         instead of the current domain, since the two might not match if this is called
1759         from the debugger.
1761         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
1762         domain which created this assembly.
1764 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1766         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
1768 2009-12-17  Mark Probst  <mark.probst@gmail.com>
1770         * sgen-gc.c: Managed implementation of the specialized generic
1771         store write barrier.
1773 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
1775         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
1776         A private virtual newslot method is used to implement an interface method without exposing
1777         it to users. When querying for public instance methods, such method would hide a public one
1778         on a parent type.
1780         Fixes #564379.
1782 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1784         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
1785         conventions.
1787 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1789         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
1791 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1793         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
1794         as they are no longer used.
1795         
1796          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
1798         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
1800 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1802         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
1803         if the owner class has not been finished before returning reflection_info.      
1805         Fixes #565127.
1807 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1809         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
1810         param doesn't have custom attributes. Fixes #565117.
1812         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
1813         #565120.
1815 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1817         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
1819 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1821         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
1822         same amount done by a core-clr enabled runtime.
1824 2009-12-15  Marek Habersack  <mhabersack@novell.com>
1826         * appdomain.c (mono_make_shadow_copy): make sure access mode of
1827         the target files is reset to writable by owner and readable by
1828         everyone else to prevent problems when updating shadow copies of
1829         files whose source is read-only. Fixes bug #556884
1831 2009-12-15  Mark Probst  <mark.probst@gmail.com>
1833         * class.c (mono_generic_class_get_class): Allocate the generic
1834         class via malloc again, so that it can be freed when any one of
1835         the images of its constituent types is closed.
1837         * metadata.c: When closing an image, don't free generic insts and
1838         generic classes right away, but put them into a list for later
1839         freeing.
1841         * image.c, metadata-internals.h: Store the free list and in the
1842         second pass of closing an image, free it.
1844 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1846         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
1848         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
1849         types in type_hash.
1851         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
1853 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1855         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
1856         user type.
1858         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
1859         is used.
1861 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1863         * verify.c (mono_method_verify): The Unused opcodes produce an
1864         InvalidProgramException on .NET
1866 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
1868         * loader.c (mono_method_get_header): Move assert after the verifier
1869         has been called on the method header.
1871 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1873         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
1875         * appdomain.c: Bump corlib version.
1877 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1879         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
1880         types as well since otherwise generic instances would not return UT as arguments but
1881         their undelying system type.
1883         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
1884         to reflect the fact that they can have now multiple different types.
1886         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
1888         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
1890         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
1892         * reflection.c (mono_reflection_register_with_runtime): Init super types
1893         if the image is not dynamic.
1895         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
1896         check if the generic type definition is a TypeBuilder.
1898         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
1899         doesn't belong to a dynamic image, skip initialization.
1901         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
1902         base definition is not a dynamic type.
1904 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1906         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
1907         mono_profiler_string_allocation
1909         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1910         if string profiling is enabled, call
1911         mono_profiler_string_allocation
1913         * profiler.h: added two MonoProfileFlags -
1914         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1915         installation functions for the hooks below.
1917         * profiler-private.h, profiler.c: added two hooks:
1918         mono_profiler_string_allocation called whenever a string is
1919         allocated by InternalAllocateStr and mono_profiler_iomap called
1920         whenever IOMAP code performs an adjustement on a file path.
1922 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
1924         * boehm-gc.c: fixed race condition while getting the target of a
1925         disappearing link (bug #522233).
1927 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1929         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
1930         the error.
1932 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1934         * reflection.c: Add mono_reflection_register_with_runtime icall to
1935         allow a MonoGenericClass to register itself as the managed mirror of
1936         a given generic instance.
1937         This is a temporary workaround until all MGC instantiation happens in
1938         managed code.
1940         * object-internals.h: Ditto.
1942         * icall-def.h: Ditto.
1944 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1946         * sgen-gc.c (find_in_remsets): Also search the generic store
1947         remsets.
1949 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1951         * sgen-gc.c: Don't access class names in debugging code when
1952         unloading a domain, because they might not be valid anymore.
1954 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1956         * domain.c, domain-internals.h: New function mono_domain_unset().
1958         * appdomain.c (unload_thread_main): Detach the thread again at the
1959         end.
1961         * threads.c: When a thread exists or is detached, unset its domain
1962         so that it's NULL when, for example, a pthread destructor runs.
1964         * sgen-gc.c: Assert that there is no domain set after a thread is
1965         done.
1967 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1969         * class.c (mono_generic_class_get_class),
1970         metadata.c (free_generic_class): Allocate generic MonoClass's from
1971         the image mempool, not via malloc.  The problem with malloc is
1972         that when unloading a domain those classes are freed before
1973         clearing the heap and SGen needs the classes.  Rewriting the
1974         unloading code to do the free later would be more work and there's
1975         no point in using malloc anyway.
1977 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
1979         * loader.c (mono_method_signature): Always call mono_loader_unlock 
1980         before returning.
1982 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1984         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
1985         user string blobs.
1987         * verify-internals.h: Add new function to the internal API.
1989         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
1990         check if it's a valid string.
1992         * object.c (mono_ldstr): Ditto.
1994         Fixes #561943.
1996 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1998         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
1999         from a method before returning it. This is the expected behavior.
2001 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2003         * reflection.c (inflate_method): Handle the case of a regular system type.
2005 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2007         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2008         gathering code.
2010         * mempool.c, mempool-internals.h: New function
2011         mono_mempool_get_bytes_allocated().
2013         * Makefile.am: sgen-pinning-stats.c added.
2015 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2017         * sgen-gc.c (create_allocator): Only use the fast path if the
2018         object size is within the small object size limit.
2020 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2022         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2023         possibly adding padding to sizeof (GCMemSection).
2025 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2027         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2028         reference is not in the nursery.
2030 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2032         * class.c (mono_class_from_typeref): Bounds check idx against the 
2033         assemblyref table.
2035 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2037         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2038         through the potential roots, then sort the results and find the
2039         pinned objects from there.
2041         * Makefile.am: sgen-pinning.c added.
2043 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2045         * sgen-gc.c: Record generic stores in specialized remset buffers.
2047 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2049         * sgen-gc.c: Make pinned chunks the same size as major heap
2050         sections, and align them as well, so that we can check whether an
2051         object is in a pinned chunk or a major section in constant time.
2053 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2055         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2057 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2059         * sgen-gc.c: Make all major heap sections the same size (currently
2060         128k) and allocate them on aligned addresses.  Small heap sections
2061         give us better granularity with pinned objects - we can free up
2062         much more memory.
2064 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2066         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2067         output removed.
2069 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2071         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2073         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2074         names in addition to the runtime generated one.
2076         * mono/metadata/image.h: Add a function to take the real name of the assembly
2077         image.
2079         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2080         use it instead of the runtime generated one.
2082         Code is contributed under MIT/X11 license.
2084 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2086         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2087         before the other checks to prevent problems if the DateTime class is blittable.
2088         Hopefully fixes #559600.
2090 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2092         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2093         returns the largest string length that will not be put into the
2094         LOS.
2096         * sgen-gc.c, gc-internal.h: New function that returns the largest
2097         object size that will not be put into the LOS.
2099         * appdomain.c: Bump corlib version.
2101 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2103         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2105         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2107 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2109         * reflection.c (inflate_method): Fix signature.
2111         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2112         in managed code.
2114 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2116         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2118 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2120         * sgen-gc.c: Abstract to-space handling.
2122 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2124         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2126         Fixes #559906.
2128 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2130         * sgen-gc.c: Only add references from outside the nursery to
2131         within the nursery to the global remset list.
2133 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2135         * appdomain.c (create_exceptions): Set the domain temporarily if
2136         necessary to avoid cross-domain references.
2138 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2140         * verify.c (get_stack_type): Return that the type is invalid instead of
2141         asserting.
2143         * verify.c (mono_method_verify): Verify that all locals and arguments
2144         have valid stack types.
2146         Fixes #559913.
2148 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2150         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2151         bounds checking overflow aware.
2153         Fixes #559910.
2155 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2157         * verify.c (do_invoke_method): Check for invalid method signatures.
2159         Fixes #553450.
2161 2009-12-02  Jb Evain  <jbevain@novell.com>
2163         * appdomain.c (MONO_CORLIB_VERSION): bump.
2164         * icall-def.h (get_base_definition): renamed to get_base_method
2165         and add a boolean argument indicating we want the original
2166         method definition, or the immediate base method.
2167         * icall.c: apply the get_base_definition to get_base_method change.
2169 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2171         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2173         Fixes #558042.
2175 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2177         * class.c: remove asserts for invalid type token in
2178         mono_class_name_from_token(), mono_assembly_name_from_token() and
2179         mono_class_create_from_typedef () (fixes bug #553318).
2181 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2183         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2184         incorrect assemblies (bug #553322).
2186 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2188         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2190         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2192         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2194         * class.c (inflate_generic_context): Ditto.
2196         * loader.c (method_from_methodspec): Ditto.
2198         Fixes #558230.
2200 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2202         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2204         * class.c (mono_class_create_from_typespec): Ditto.
2206         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2208         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2210         Fixes #558184.
2212 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2214         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2216         * verify.c (verify_delegate_compatibility): Ditto.
2218         * verify.c (do_newobj): Ditto.
2220         Fixes #558046.
2222 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2224         * sgen-gc.c: Use a gray queue instead of requiring that gray
2225         objects are in a contiguous region.
2227         * sgen-gray.c: The gray queue implementation.
2229         * Makefile.am: sgen-gray.c added.
2231 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2233         * appdomain.c: When unloading a domain, zero its static data and
2234         perform a minor collection when using SGen.  That will get rid of
2235         all the remsets pointing into that domain's static data.
2237         * sgen-gc.c: Allow remsets into static data.  By doing this we
2238         need less checks so we're more efficient.
2240 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2242         * verify.c (mono_method_verify): Check for catch clauses with broken
2243         types.
2245         Fixes #558465.
2247 2009-12-01  Jb Evain  <jbevain@novell.com>
2249         * class.c (make_generic_param_class): set the namespace of
2250         the generic parameter class from its owner, if available.
2252 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2254         * verify.c (code_bounds_check): Do proper overflow checking.
2256         * verify.c (mono_method_verify): The number of switch entries is
2257         an unsigned int. Properly bounds check it.
2259         Fixes #558594.
2261 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2263         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2264         mono_metadata_method_has_param_attrs which only checks if a given param
2265         list has a non zero flags entry.
2267         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2268         to inform how many params should we expect to decode.
2270         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2271         as it's faster than mono_metadata_get_param_attrs.
2273         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2274         add mono_metadata_method_has_param_attrs.
2276 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2278         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2279         failures.
2281         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2282         is -1 but its class is broken.
2284         Fixes #558522.
2286 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2288         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2289         for parameter overflow.
2291         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2292         of mono_metadata_get_param_attrs.
2294         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2295         API.
2297         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2299 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2301         * class.c (mono_class_setup_fields): Check for fields with broken types.
2303         Fixes #558741.
2305 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2307         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2308         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2309         its TypeBuilder::CreateType ().
2311         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2312         if not needed.
2314         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2315         to make setup_interface_offsets happy.
2317         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2318         compilation now works.
2320 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2322         * appdomain.c (create_exceptions): New helper function extracted from
2323         mono_runtime_init () to precreate objects used during exception handling.
2324         (mono_runtime_init): Call it.
2325         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2327 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2329         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2330         compilation until the proper one is found.
2332 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2334         * class.c (mono_class_setup_vtable_general): Cache the result of
2335         get_virtual_methods () since it can be slow because of the metadata
2336         optimization.
2338         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2339         from a MonoValueHashTable for now, since the later is based on an earlier
2340         version of hpj's internal probing code and seems to have serious collision
2341         issues.
2343         * loader.c (mono_get_method_full): Update after the change above.
2345 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2347         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2349 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2351         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2352         the GTD instead of the DGC instead of crashing.
2354         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2355         required. Inflate fields if needed.
2357         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2358         finished. Renamed.
2360 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2362         * class.c (check_interface_method_override): Check for NULL signatures and fail
2363         the type.
2365         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2367         Fixes #553428.
2369 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2371         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2372         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2374 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2376         * loader.c (field_from_memberref): Resolve the class first then the field
2377         signature. Remove a lot of duplicated code and make sure we don't pass valid
2378         values to mono_loader_set_error_field_load.
2380         Fixes #553306.
2382 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2384         * class.c (inflate_generic_type): Change code to use new signature of
2385         mono_error_set_bad_image.
2387         Fixes #558124.
2389 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2391         * verify.c (mono_method_verify): Don't free ctx.params items if 
2392         we aborted while inflating the ctx.locals. Complete previous fix
2394 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2396         * verify.c (mono_method_verify): Use the uninflated type name, 
2397         when the inflated is null, to report errors. Also take care when
2398         freeing, not to free everything since, in case of an error, some
2399         stuff would be copies (i.e. not allocated by the function itself)
2400         Fix bug #558145
2402 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2404         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2405         or overflow. The caller must have done this check explicitly. This guard us
2406         from accessing invalid memory.
2408         * verify.c (do_push_static_field): Check for stack overflow.
2410         Fixes #553333.
2412 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2414         * loader.c (find_method_in_class): Don't crash if the signature cannot
2415         be resolved.
2417         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2418         of asserting for the case of invalid params.
2420         Fixes #553304.
2422 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2424         * image.c (mono_image_load_module): Fix crash when a bad assembly
2425         has no module at all (fix bug #553412) and also replace the 
2426         g_assert with a return NULL (documented return value for failure)
2428 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2430         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2432 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2434         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2435         file attribute to managed code and avoid doing the mask/attribute
2436         checks here. 
2438 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2440         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2441         the managed world.
2443         * icall-def.h: New entry points.
2444         
2445 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2447         * process.c: Don't put references to managed objects into a
2448         g_ptr_array.
2450 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2452         * class.c (can_access_internals): Allow CoreCLR to participate in
2453         allowing (or not) [InternalsVisibleTo] between assemblies.
2454         * security-core-clr.c|h: Make sure that only trusted code (a 
2455         superset of platform code) can access the internals of platform
2456         code.
2458 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2460         * reflection.c: use the correct base class to get the virtual method
2461         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2463 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2465         * security-core-clr.c (get_caller_no_reflection_related): 
2466         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2467         it's still reflection and must be filtered correctly.
2469 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2471         * object.c (compute_class_bitmap): Fix for large bitmaps.
2473 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2475         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2477         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2478         koush@koushikdutta.com). Disable GC_no_dls on android.
2480 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2482         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2483         tlab_next points outside the TLAB because the allocator was
2484         interrupted.
2486 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2488         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2490 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2492         * object-internals.h: Change signature for mono_string_to_utf8_image.
2494         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2495         argument.
2497         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2498         exceptions due to mono_string_to_utf8.
2500 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2502         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2504         * object.c (mono_remote_class): Make sure all resources are released before
2505         raising an exception.
2507         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2509 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2511         * mono-perfcounters.c (network_get_impl): Change variable initialization
2512         ordering to fix potential memory leak in case of exceptions.
2514         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2515         encoded strings.
2516         
2517 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2519         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2520         variable initialization ordering to fix potential memory leak in case
2521         of exceptions.
2523 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2525         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2526         needed.
2528 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2530         * appdomain.c: Fix shadow path code to better deal with exceptions.
2532 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2534         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2535         exception in the middle of the runtime code.
2537 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2539         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2540         leak memory with broken envvar value.
2542 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2544         * reflection.c (mono_reflection_setup_internal_class): Because
2545         nested classes are not added to the name cache, we must put them
2546         in the reflection_info_unregister_classes list.
2548 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2550         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2551         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2552         platform (trusted) code. Instead we return a TypeLoadException to
2553         be thrown later. This is the exception thrown by Silverlight 2 if
2554         a type, inside application (user) code is marked with [ComImport]
2556 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2558         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2559         mono_is_debugger_attached () too.
2561         * mono-debug.c (mono_is_debugger_attached): New helper function.
2562         (mono_set_is_debugger_attached): Ditto.
2564 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2566         * object-internals.h: Add mono_string_to_utf8_checked.
2568         * object.c: Implement mono_string_to_utf8_checked.
2570 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2572         * class.c: Add missing check for load errors after every
2573         call to mono_class_setup_fields
2575         Fixes #552282.
2577 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2579         metadata-verify.c (verify_tables_schema): Fix the error message.
2581 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2583         * metadata.c: Change event table schema to use TDOR for event type
2584         as this is what it's meant to be.
2586         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2587         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2588         entry.
2590         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2591         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2592         rows in MONO_TABLE_GENERICPARAM.
2594         Fixes #552289.
2596 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2598         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2599         insertion.
2601         * reflection.c (mono_reflection_setup_internal_class): Avoid
2602         registering a gc root the same MonoClass multiple times.
2603         Don't register nested types on the global scope as they should
2604         not be available there.
2606 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2608         * culture-info-tables.h: regenerated.
2610 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2612         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2614 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2616         * string-icalls.c|h: Remove string internal calls that are not 
2617         used anymore by the class libraries.
2618         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2619         which is not used in the class librairies.
2620         * icall-def.h: Update tables.
2622 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2624         * class.h: Move mono_class_inflate_generic_type_checked...
2626         * class-internals.h: to here and make it internal. We don't want to
2627         further expose MonoGenericContext. 
2629 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2631         * verify.c (mono_method_verify): Improve error message.
2633 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2635         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2636         the token is already properly encoded. Fixs 4.0 build.
2638 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2640         * locales.c (construct_number_format): Check if the number index is
2641         valid before trying to use it, if not, just return.
2642         
2643 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2645         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2646         since that loses the abort state. Fixes #539394.
2648 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2650         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2651         explicit this argument to the call signature.
2652         (mono_marshal_get_icall_wrapper): Ditto.
2654 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2656         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2657         to indicate which assembly to use when resolving a custom-mod.
2659         Fixes handling of volatile fields used across assemblies as reported in #551513.
2661 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2663         * loader.c: Improve error messages.
2665 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2667         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2668         of interfaces. Fixes IKVM.
2670         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2672 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2674         * verify.c (verifier_inflate_type): Return the inflated type on success.
2676 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2678         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2680         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2682         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2684         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2685         flag set.
2687         * profiler.c: Add new profiler callbacks for runtime invoke.
2689         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2691 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2693         * sgen-gc.c: Keep track of the reason for a major collection and
2694         write it to the heap-dump file.
2696 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2698         * threads.c: refactor the code that initializes the
2699         thread_start_args into a reusable function and use this in the two
2700         methods that start up threads.
2702 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2704         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2705         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2707 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2709         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2710         Until now, we only had the per-cpu(core) counters.
2712 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2714         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2715         mono_gc_get_suspend_signal(), which returns the suspend signal
2716         number used by the GC.
2718 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2720         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2722         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2723         signalling start_notify.
2725 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2727         * appdomain.c: do not test the st_mode field for shadow-copies.
2728         Fixes bug #545276.
2730 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2732         * threadpool.[ch]: added hooks for thread start/finish and item
2733         processing begin/end. For monotouch use only.
2735 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2737         * threads.c (mono_thread_get_name): New helper function.
2739         * reflection.c (resolve_object): Set handle_class for strings too.
2740         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2741         a cattr blob into a set of arrays and structures without creating the custom
2742         attributes themselves.
2743         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2745         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2747         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2748         function.
2750 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2752         * verify.c: Replace calls to mono_class_inflate_generic_type with
2753         mono_class_inflate_generic_type_checked. Fixes #480005.
2755 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2757         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
2758         object since not all paths lead to callees initing it.
2760 2009-10-23  Alp Toker  <alp@nuanti.com>
2762         Fix embedding API breakage from r144688. mono-compiler.h is an internal
2763         header and should not be shipped:
2765         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
2766         which is specific to the mono build. Not going to work.
2768 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
2770         * security-manager.c: Report if core-clr is active from
2771         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
2772         to allow Moonlight BCL to behave appropriately (both in browser
2773         and outside, e.g. smcs)
2775 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2777         * mono-config.c: ignore UTF-8 BOM and report parser errors.
2778         Fixes bug #549108.
2780 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2782         * class.c: fix typo.
2784 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
2786         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
2787         a MonoError parameter.
2789         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
2790         version that can does proper error handling.
2792         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
2794         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
2796         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
2798 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2800         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
2801         NO_UNALIGNED_ACCESS is defined.
2803 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2805         * marshal.c (mono_string_builder_to_utf16): Applied patch from
2806         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
2807         Fixes #549173.
2809 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2811         * sgen-gc.c: Shorten sections whenever possible.
2813 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2815         * sgen-gc.c: Use our portable semaphore #defines.
2817 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2819         * sgen-gc.c: A debug option for dumping the heap layout to a file
2820         after each collection.
2822 2009-10-21  Mark Probst  <mark.probst@gmail.com>
2824         * sgen-gc.c: Make managed write barriers atomic via
2825         thread-restarts.
2827 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
2829         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
2830         methods. Fixes #543021.
2832 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2834         * socket-io.[ch]: fix VS build.
2836 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2838         * icall-def.h:
2839         * socket-io.[ch]: implemented SendFile.
2841 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2843         * class.c (mono_class_create_from_typedef): Initialize class->element_class
2844         before the interfaces to avoid crashes later if class initialization fails.
2845         Fixes #548417.
2847         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
2848         Fixes #548276.
2850 2009-10-20  Marek Safar  <marek.safar@gmail.com>
2852         * domain.c: Bump 4.0 version.
2854 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2856         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
2857         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
2858         check since 'pubkey' can't be NULL at this stage
2859         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
2860         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
2861         initialization of 'iter'
2863 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
2865         * cominterop.c : Search the interface parts of vtable to find 
2866           method matches.  Fixes 547030.
2868         Code is contributed under MIT/X11 license.
2870 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
2872         * marshal.c: BeginInvoke cannot be called on multicast delegates with
2873         multiple targets. Fixes bug #574426.
2875 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2877         * profiler.h: Put here the definition of
2878         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
2879         (and fix the build...).
2881 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2883         * profiler.c, profiler.h, profiler-private.h:
2884         Added support for different ways of getting call chains in stat mode.
2886 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2888         * object.c, object-internals.h: New function for computing the
2889         size of an array, factored out of mono_array_new_full().  Use
2890         SGen's functions for allocating arrays and vectors.
2892         * sgen-gc.c, gc-internal.h: Special functions for allocating
2893         arrays and vectors without race conditions.  A managed array
2894         allocator method.
2896         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
2898 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2900         * object.c, object.h, icall.c: Write barriers do the copying now,
2901         as well, so no need for an additional memcpy.
2903         * sgen-gc.c: Lock when storing remsets.  Do the memory
2904         copying/moving in the write barriers.
2906         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
2908         * reflection.c: Added an assert.
2910 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2912         * threads.c, process.c: A few missing write barriers.
2914 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2916         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2917         network performance counters for bytes sent per second, bytes
2918         received per second, and bytes total per second.
2920         Code is contributed under MIT/X11 license.
2922 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2924         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2925         Fix warning.
2927 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2929         * threads.c, object-internals.h, object.c: Move code for
2930         transferring an object to a different domain (via
2931         serialization/remoting) to object.c.
2933         * object.c (call_unhandled_exception_delegate): If the exception
2934         is in a different domain than the delegate, transfer the exception
2935         to that domain.
2937 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
2939         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
2940         Fixes #322934.
2942 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
2944         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
2946 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2948         * object.c (mono_method_return_message_restore): Handle the case
2949         where the argument is an instance of a generic type.  Fixes
2950         #544446.
2952 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2954         * object.c (set_value): Write barrier fix - we must pass the
2955         count, not the size.
2957 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
2959         * domain.c (mono_init_internal): Print a useful error message when encountering
2960         an old mscorlib, instead of crashing. Fixes #544307.
2962 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
2964         * appdomain.c (copy_app_domain_setup): Fix a warning.
2966         * debug-helpers.c (dis_one): Ditto.
2968 2009-10-04  Mark Probst  <mark.probst@gmail.com>
2970         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
2971         into the new domain, instead of referencing the original one.
2973         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
2974         non-static.
2976         * appdomain.c: Corlib version bump.
2978 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2980         * threadpool.c: one more...
2982 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2984         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
2985         threads to die because we're shutting down. delgate5.exe works again.
2987 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
2989         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
2990           ccw_interface_hash table when a ccw is finalized.
2992         Code is contributed under MIT/X11 license.
2994 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2996         * assembly.c, domain.c, image.c, metadata-internals.h: Split
2997         domain and image unloading into two steps.  We must do this
2998         because clearing the domain in SGen requires the class metadata to
2999         be intact, but we need to free the mono_g_hash_tables in case a
3000         collection occurs during domain unloading and the roots would trip
3001         up the GC.
3003 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3005         * object-internals.h: Remove serialized culture fields from
3006         MonoInternalThread.
3008         * icall-def.h, thread-types.h, threads.c: Remove serialized
3009         culture icalls.
3011         * appdomain.c: Corlib version bump.
3013 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3015         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3016         Fixes #543133.
3018 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3020         * sgen-gc.c: Try to shorten the new section after a major
3021         allocation to avoid ever-growing sections.
3023 2009-10-13  Martin Baulig  <martin@ximian.com>
3025         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3026         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3027         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3028         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3030         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3032 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3034         * threadpool.c: fixed the order in which 'completed' and the wait
3035         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3036         No need to use the wait_handle field of ASyncCall. Make sure the
3037         threadpool is active when adding a job or queueing an idle thread.
3039 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3041         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3043         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3044         when using --compile-all.
3046 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3048         * metadata.c (free_generic_class): Unregister the field_objects
3049         roots if we're using SGen.
3051 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3053         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3054         for GenericParamTableEntry.gparam.
3056 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3058         * marshal.c: don't create the handle when calling. It is created later
3059         if needed.
3061 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3063         * sgen-gc.c: Warning fixes.
3065 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3067         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3068         whole heap for cross-domain references before each collection.
3070         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3071         object.
3073         * threadpool-internals.h, threadpool.c: New function
3074         mono_thread_pool_is_queue_array() for checking whether a given
3075         array is used as a (cross-domain) queue by the thread pool code.
3077 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3079         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3080         searches the whole heap for objects containing a specific
3081         reference.  Only for debugging.
3083 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3085         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3087         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3088         byte arrays between domains.
3090 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3092         * threadpool.c:
3093         * class-internals.h:
3094         * mono-perfcounters-def.h:
3095         * mono-perfcounters.c:
3096         -There is a list of idle threads
3097         -Each of those idle threads wait on their own WaitHandle instead
3098         of all of them using the same semaphore. When a new work item is
3099         added, the job is assigned directly to an idle thread or a newly
3100         created one if possible and then the handle for that thread is
3101         signaled. Compare that to the current approach where all the
3102         threads in the pool compete to dequeue a job from the same
3103         queue.
3104         -New struct ThreadPool that brings together the bunch of static
3105         variable for each threadpool (IO and regular).
3106         -New performance counters: # of items added and its rate per
3107         threadpool. The rate will be used later, perhaps together with
3108         other perf. counters, to decide when idle threads should exit.
3110 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3112         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3113         Fix typo on Windows build.      
3114         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3115         
3116         Code is contributed under MIT/X11 license.
3118 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3120         * object-internals.h: The Thread class is split up into Thread and
3121         InternalThread now.  We have exactly one InternalThread per
3122         thread, and at most one Thread per appdomain per thread.  Most
3123         data is stored in InternalThread.  All InternalThread objects live
3124         in the root domain.
3126         * class-internals.h: Add internal_thread_class to MonoDefaults.
3128         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3129         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3130         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3131         resulting from the split of the Thread class.
3133         * gc-internal.h: Prototype for new function for checking whether a
3134         thread is the finalizer thread.
3136         * appdomain.c: Corlib version bump.
3138 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3140         * appdomain.c|h: Add a mono_domain_try_unload method which is
3141         equivalent to mono_domain_unload, except that it returns an exception
3142         instead of throwing it. Make mono_domain_unload use the
3143         mono_domain_try_unload method to avoid code-duplication.
3145 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3147         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3148         a problem.
3150 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3152         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3153         aborting when a conversion is not implemented.
3155 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3157         * verify.c: when comparing culture strings, use g_ascii_strcmp
3159         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3160         when comparing public key tokens to use memcmp on 16 bytes.   I do
3161         not believe this ever worked as advertised in the past.
3163         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3164         which would have always failed earlier.
3166 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3168         * gc.c: Raise a NullArgumentException if the object passed is
3169         null.
3171 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3173         * image.c (mono_image_close): Atomically decrement the reference count and
3174         remove the image from the hash tables, to prevent another thread from seeing a
3175         dying MonoImage. Fixes #541194.
3177 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3179         * threadpool.c: actually use the minimum number of 'completion ports'
3180         (for us is just a potential worker thread).
3182 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3184         * threadpool.c: remove ares_htable. It does not make sense any more
3185         since the same objects are now stored in GC-tracked arrays while they are
3186         in the queue.
3188 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3190         * threadpool.c: increase the minimum length of the queues to 128.
3191         Remove warning.
3193 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3195         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3196         return the modified signature used by string ctors.
3198 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3200         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3201         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3202         method, to be used by full-aot.
3204 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3206         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3207         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3208         be known to be good.
3210         * class.c (mono_class_init): Fail array types if their element type fails initialization
3211         as well.
3213         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3214         initialization, additionally we request the element_type vtable to be initialized as well.
3216         This is fine and should not increase the working set in any meaningful way since it's reasonable
3217         to assume       that most code will create an array and eventually populate it, which will require the
3218         type's vtable to be initialized.
3220         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3222 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3224         * normalization-tables.h : regenerated.
3226 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3228         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3229         a leb128 encoding can take up to 5 bytes.
3231 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3233         * class.c (verify_class_overrides): Remove useless argument.
3235         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3236         before interface enumeration as this is no longer required.
3238 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3240         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3241         used under mono_class_init context. This functions avoid any code path that
3242         calls mono_class_init, which leads it to be slow as some things like the interface
3243         bitmap are not available.
3245         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3246         of it's own broken version. Fixes the verifier part of #538588.
3248         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3249         API.
3251 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3253         * class.c (mono_class_init): Always set an exception in a class if
3254         vtable setup fails.  Fixes #538577.
3256         * generic-sharing.c: Raise an exception if mono_class_vtable()
3257         returns NULL.
3259 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3261         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3262         methods of vtypes, as they could be incorrectly shared with static methods
3263         taking an IntPtr argument.
3265 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3267         * domain.c:
3268         * object.c:
3269         * class-internals.h: renamed waithandle_class to
3270         manualresetevent_class.
3271         * marshal.c: propagate the exception if a remoting BeginInvoke call
3272         fails.
3274 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3276         * object.c: Properly handle vtable failures.
3278 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3280         * socket-io.c: Assert on vtable failure.
3282         * mono-mlist.c: Assert on vtable failure.
3284 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3286         * marshal.c: Assert on vtable failure.
3288 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3290         * icall.c: Properly handle vtable failures.
3292 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3294         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3296 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3298         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3300         * console-unix.c (do_console_cancel_event): Same.
3302 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3304         * class-internals.h: Add mono_class_vtable_full function that allows control
3305         if an exception should be raised or not.
3307         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3308         to do what its documentation say, that is to return NULL and set exception_type on
3309         failure.
3311         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3312         and change the code to honor it.
3314 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3316         * verify.c: Fix typo in error message.
3318 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3320         * security-core-clr.c: Fix default_platform_check so it can run
3321         the runtime coreclr tests (without an infinite recursion when
3322         throwing an exception).
3324 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3326         object.c (mono_delegate_ctor_with_method): Guard against null method.
3328 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3330         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3331         that should be replaced with error handling later.
3333 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3335         * marshal.c (mono_delegate_end_invoke): Fix warning.
3337 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3339         * loader.c (mono_field_from_token): Properly handle invalid
3340         dynamic tokens.
3342 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3344         * pedump.c (verify_image_file): Skip types that can't be
3345         decoded.
3347 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3349         * verify.c: Look for recursive valuetypes only against the
3350         type been initialized as this is a lot simpler and works.
3352 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3354         * verify.c: Ensure that fields are properly loaded before
3355         checking them.
3357 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3359         * object.c (mono_object_get_virtual_method) : Call 
3360           mono_cominterop_get_invoke if the object is a COM object.
3362         Code is contributed under MIT/X11 license.
3364 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3366         * verify.c: Check for recursive valuetype definitions.
3368 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3370         Use inheritance-aware interface offsets. Inherited types use the same offsets
3371         of their parents. This reduce offset duplication in case more than one type in
3372         the inheritance tree explicitly implements the same interface.
3374         This also removes a source of vtable bubbles found in #532409. An abstract type
3375         isn't required to provide abstract methods to all interfaces it implements, which
3376         resulted in a bubble with the previous scheme as the child would get a non-full
3377         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3378         should be fixed.
3380         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3381         it's expected to not cause any significant increase beyond that.
3383         * class.c (setup_interface_offsets): Compute super class iface offsets
3384         first to force sharing.
3386         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3387         dumping only the relevant ones.
3389         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3390         methods a new slot regardless if they belong to an interface or not. This allows
3391         an inherited type to override the iface method separately from the class one.
3393 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3395         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3396         applications that take less than 2s to execute.
3397         Bug #524984 fixed.
3399 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3401         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3403         * object.c (mono_get_runtime_callbacks): New helper function to return
3404         the runtime callbacks.
3406         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3407         mono_get_runtime_build_info () as the display name.
3408         
3409 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3411         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3412         argument, since NEWARR expects a native int. Fixes #481559.
3414 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3416         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3417         against broken SRE methods.
3419 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3421         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3422         a NULL variable. Abort early on failure.
3424 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3426         * class.c (can_access_type): Fail visibility test for non nested
3427         types with nested visibility.
3429 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3431         * assembly.c (parse_public_key): Avoid allocating (and not 
3432         freeing) the public key array when it's not requested by the 
3433         caller.
3434         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3435         ves_icall_System_Threading_Thread_Thread_internal): Free 
3436         allocated memory on error.
3438 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3440         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3442 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3444         * class.c (mono_class_setup_fields): Remove duplicated local variable
3445         named gklass.
3446         Rename gklass to gtd to reflect the fact that it points to the generic
3447         type definition.
3448         Remove the duplicated call to mono_class_setup_fields on gtd and move
3449         the error check to the beginning.
3451 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3453         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3454         Remove cruft of the previous patch.
3456 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3458         * metadata-verify.c (verify_method_table): Check for abstract + final.
3459         Fixes #534175.
3461 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3463         * verify.c (verify_class_fields): Check for duplicate fields.
3465 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3467         * metadata-verify.c: Verify the typeref table for duplicates.
3469 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3471         This reverts r140936 and properly handles interfaces with static methods. The
3472         right fix is to ensure vtables without bubles which is an easier to verify
3473         constraint. We should avoid such special cases as of the reverted patch as those
3474         only make the runtime more brittle.
3476         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3477         static methods on interfaces.
3479         * class.c (setup_interface_offsets): Use the number of virtual methods when
3480         calculating interface offsets instead of the number of methods. This way we
3481         avoid bubles on the layout.
3483 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3485         * metadata-verify.c (verify_metadata_header): Some very smart
3486         obfuscators like to add extra stream headers. Ignore them.
3488 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3490         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3491         methods correctly.
3493 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3495         * metadata-verify.c: Verify for duplicated types.
3497 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3499         * metadata-verify.c (verify_typedef_table): Verify for nested types
3500         without an entry on the nested class table.
3502 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3504         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3505         <tom_hindle@sil.org>. Add locking around hash table accesses.
3507 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3509         * verify.c (mono_verifier_verify_class): Verify all interface if
3510         really are interfaces. Fixes #534184.
3512 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3514         * pedump.c: Initialize all types during metadata validation so we report
3515         errors only detected as part of class initialization.
3517 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3519         * metadata-verify.c (verify_method_table): PInvoke requires method to
3520         be static. Fixes #534189
3522 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3524         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3525         being NULL.
3527 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3529         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3530         for holes or bad methods. Fixes #525314.
3532 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3534         * class.c (setup_interface_offsets): Don't allocate slot
3535         for the same interface multiple times. This creates bubbles
3536         that waster space and make vtable verification harder.
3538         The same interface get a slot multiple times since we need
3539         to get the closure of all implemented interfaces, which means
3540         the same interface is reported multiple times.
3542 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3544         * verify.c (mono_verifier_verify_class): Don't check the fields
3545         of generic instances since the context on which they got expanded
3546         might lead to false positives.
3548         Such thing happens when a generic type is inflated in the context
3549         of a generic method and the inflated type of a field turns into a
3550         generic method argument, which causes the checking code to think
3551         it's an invalid class when it's not.
3553 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3555         * verify.c (mono_type_is_valid_in_context): Verify if type
3556         is NULL and remove duplicate test.
3558 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3560         * verify.c (mono_verifier_verify_class): Check fields for
3561         invalid generic arguments.
3563 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3565         * class.c (verify_class_overrides): Verify if for static
3566         and non virtual methods.
3568 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3570         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3571         Check for errors after retrieving the vtable.
3573 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3575         * class.c (mono_class_setup_vtable_general): Verify
3576         if method overrides are valid before processing them.
3578 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3580         * marshal.c (mono_array_to_lparray): Fix minimal build with
3581         cominterop disabled.
3583         * marshal.c (mono_free_lparray): Same.
3585 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3587         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3588         the hash function for the ares_htable.
3590 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3592         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3593         bit for assembly flags. MS is ok with it but there is no spec anywhere
3594         on its mean
3596 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3598         * class.c (mono_class_create_from_typedef): Emit profiler events
3599         in all cases.
3601 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3603         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3604         Release memory on failure.
3606 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3608         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3609         to the internal API.
3611         * metadata.c (get_constraints): Use a single-linked table as we don't
3612         traverse it backward. Fail and return FALSE if only of the contraint types
3613         is not found.
3615         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3616         to mono_metadata_load_generic_param_constraints except for having a return value.
3617         This has to be done since the later is part of the public API.
3619         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3620         and fail the type.
3622         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3623         and fail the method.
3625 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3627         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3628         with MS broken behavior of emmitting EH section sizes without the
3629         header size added.
3631 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3633         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3634         memory until we're sure that we'll need it. This avoids leaking for
3635         broken types or duplicated instantiation.
3637 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3639         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3640         mistake.
3642 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3644         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3645         and expected size calculation.
3647 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3649         * class.c (mono_class_get_field_idx): Add fixme for broken
3650         behavior for types with multiple fields with the same name.
3651         I would rather fix it, but have no idea on how to generate
3652         such artifact for testing.
3654 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3656         * verify.c (verifier_load_field): We should allow references to
3657         fields to be made using the generic type definition. It's up to
3658         the loader system to fail invalid ops.
3660         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3661         are invalid.
3663 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3665         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3667         * metadata-internals.h: Fix declaration of 
3668         mono_metadata_interfaces_from_typedef_full.
3670         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3671         heap_alloc_result parameter that controls if the result should be
3672         g_malloc'd.
3674         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3675         array be g_malloc'd and properly document this public API function.
3677 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3679         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3680         remove METHOD_HEADER_TINY_FORMAT1.
3682         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3684         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3686         Both spec and MS uses only 2 bits to enumerate the kind of header.
3687         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3688         is superfluous, only used for tiny headers with odd code lengths.
3690         This change also make sure that mono doesn't wronly interpret bit 2
3691         of fat header flags, which is currently reserved.
3693 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3695         * metadata.c (do_mono_metadata_parse_type): Do error
3696         checking for element types. Don't abort if presented
3697         with a broken type kind.
3699 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3701         * metadata.c (mono_metadata_parse_method_signature_full):
3702         Gracefully fail bad vararg signatures.
3704 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3706         * profiler.c:
3707         * class.c: Fix warnings for uninitialized variables.
3709 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3711         * icall.c: Fix _NSGetEnviron method declaration warning.
3713 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3715         * icall.c:
3716         * reflection.c: Make bitwise checks explicit.
3718 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3720         * debug-helpers.c:
3721         * marshal.c: Fix printf warnings.
3723 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3725         * reflection.c (encode_cattr_value): Fix a warning.
3727 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3729         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3730         of array bounds.
3732 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3734         * loader.c (mono_method_signature): Don't assert on broken
3735         signature. Print a more useful error message.
3737 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3739         * loader.c (mono_method_get_marshal_info): Assert if
3740         signature is invalid. Bounds check stores to the
3741         mspecs array;
3743 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3745         * loader.c (field_from_memberref): Fix warning.
3747 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3749         * loader.c (mono_method_get_param_names): Check if signature
3750         is null. Don't store beyond the size of the name array.
3752 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3754         * loader.c (mono_get_method_constrained): Check if signature
3755         is null.
3757 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3759         * loader.c (mono_loader_set_error_bad_image): Improve
3760         error messages.
3762 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3764         * loader.c (mono_get_method_full): Convert an assertion
3765         into a loader error.
3767 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3769         * class-internals.h, class.c: Better naming and documentation.
3771 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
3773         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
3774         obj is NULL.
3776 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3778         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
3779         parsing fails.
3781 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3783         * loader.c (mono_loader_error_prepare_exception): Handle missing field
3784         errors with no class set.
3786         * loader.c (field_from_memberref): If the field signature is of the wrong
3787         type fail with a MissingFieldException instead of a BadImageException as
3788         this is the behavior observed on MS. 
3790 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3792         * loader.c (field_from_memberref): Don't crash if either the field
3793         signature or the typespec class are invalid.
3795 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3797         * verify.c (verifier_load_field): Don't allow field related
3798         ops to reference fields on generic type definition.
3800 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3802         * metadata-verify.c: Add new warning level for errors specified
3803         by ECMA 335 but that MS ignores.
3805         * metadata-verify.c (verify_method_table): Make compiler controled
3806         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
3807         this check is safe because the end result will only be some visibility
3808         exceptions been thrown.
3810 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3812         * verify.c (get_boxable_mono_type): Don't allow the
3813         use of the generic type definition on boxed type positions.
3815         Fixes #531237.
3817 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3819         * threadpool.c: Make sure no cross-domain references remain in
3820         ares_htable or the arrays that are thrown away when resizing.
3822 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3824         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
3825         list of classes for which we have to unregister reflection_info
3826         with the GC and which are not in the namespace cache.
3828         * reflection.c (mono_reflection_initialize_generic_parameter): Add
3829         the class to the list.
3831 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3833         * domain.c (mono_domain_free): Unregister the GC roots in
3834         MonoDomain.
3836 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3838         * reflection.c (mono_reflection_type_get_handle): Fix typo.
3840 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3842         * class.c: Add mono_class_get_field_from_name_full which does
3843         the same as mono_class_get_field_from_name but does check field
3844         signature as well.
3846         * class-internals.h: Export mono_class_get_field_from_name_full as
3847         part of the internal API.
3849         * loader.c (field_from_memberref): Search fields by name and signature
3850         as it's valid to have two fields with same name but different types.
3852         Fixes #528055.
3854 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
3856         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
3858         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
3860         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
3861         System.Type.
3863 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
3865         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
3867         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
3869 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3871         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
3872         to sgen-scan-object.h, which can be included and parameterized via
3873         macros.
3875         * Makefile.am: sgen-scan-object.h added.
3877 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3879         * gc.c: #define GC_dont_gc if we're compiling with SGen.
3881 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3883         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
3884         before clearing a domain in the GC.
3886 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3888         * exception.c (mono_exception_from_name_domain): Actually create
3889         the exception in the specified domain.
3891         * appdomain.c (mono_domain_create_appdomain_internal): Create the
3892         OutOfMemoryException a bit later so that the domain is inialized
3893         "enough" that it works.
3895 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3897         * threads.c (thread_cleanup): Clean up the cached_culture_info
3898         array to prevent cross-domain references.
3900 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3902         * metadata.c: more documentation for MonoType accessors.
3904 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
3906         Fix incorrect size definitions where the tail array isn't a list
3907         of pointers
3908         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3909         define size.
3910         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3911         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3912         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3914 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3916         * reflection.h:
3917         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
3919 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3921         * metadata.c:
3922         * loader.c:
3923         * metadata-internals.h:
3924         * method-builder.c:
3925         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
3927 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3929         * cominterop.c:
3930         * metadata.c:
3931         * metadata.h:
3932         * loader.c:
3933         * marshal.c:
3934         * reflection.c: #define for sizeof in MonoType and
3935         MonoMethodSignature.
3937 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3939         * domain.c:
3940         * domain-internals.h: add and use #define's instead of sizeof()
3941         for MonoJitInfo and MonoJitInfoTable.
3943 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3945         * object.c:
3946         * class.h: use #define instead of sizeof() for MonoRemoteClass.
3948 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3950         * metadata.c:
3951         * metadata.h:
3952         * object.c:
3953         * class-internals.h:
3954         * generic-sharing.c:
3955         * marshal.c: use a #define instead of sizeof() for a few
3956         structures that use a zero-length array.
3958 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3960         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
3961         to handle inflated generic methods.
3963         * appdomain.c: Bump corlib version.
3965         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
3966         instances.
3968         * reflection.c (fixup_method): Same
3970         * reflection.c (resolve_object): Same.
3972         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
3973         g_error and a decent message.
3975 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
3977         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
3978         from the object because it could not yet be available globally
3979         (it happens if the profiler tries to create a gchandle on the
3980         MonoThread object of a thread that is still registering itself
3981         with the runtime).
3983 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
3985         * reflection.c (mono_generic_class_get_object): Initialized the
3986         managed type arguments array.
3988         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
3990         * appdomain.c: Bump corlib version.
3992 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
3994         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
3995         #527902.
3997 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
3999         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4000         Avoid a crash if synch_cs is not set.
4001         
4002         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4003         Handle the case when the handle is 0.
4005         * appdomain.c: Bump corlib version.
4007 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4009         * reflection.c (mono_type_get_object): Fix a warning.
4011 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4013         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4014         descriptor here.  We assume it's already been computed.
4016         * generic-sharing.c (instantiate_other_info): Compute the GC
4017         descriptor for info type MONO_RGCTX_INFO_KLASS.
4019 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4021         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4022         type, so don't use MONO_OBJECT_SETREF to set a field.
4024 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4026         * gc.c: We were missing one case where invoking a finalizer would
4027         not reset the domain.  Also, in the finalizer thread loop, assert
4028         that we're in the root domain.
4030 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4032         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4033         if the type is not an array.
4035 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4037         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4038         method bound to the declaring type of the method. Raise an exception
4039         if the type is not a generic param.
4041 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4043         * class.c (print_unimplemented_interface_method_info): Print the
4044         full type name.
4046         * class.c (mono_class_setup_vtable_general): When dealing with a
4047         generic instance first check if the generic type definition is
4048         not broken.
4050 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4052         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4054         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4056         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4058         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4060         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4062         Code is contributed under MIT/X11 license
4064 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4066         * verify.c: Fix naming of stelem and ldelem.
4068 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4070         * generic-sharing.c: Replace the templates lock with the loader
4071         lock because of very hard to resolve deadlock issues.
4073 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4075         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4076         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4077         directly. Fixes #525338.
4079         * class.c (mono_class_get_vtable_size): New helper function.
4081         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4082         the field belongs to the type. Fixes #525733.
4084 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4086         * sgen-gc.c: When we stop a thread and its stack top is not within
4087         its allocated stack (because it's in an altstack signal handler),
4088         restart it and stop it again, until it is.
4090 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4092         * sgen-gc.c: Take a thread's stack top and registers from the
4093         sigcontext in the suspend signal handler.
4095         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4096         stuff to sgen-archdep.h.
4098         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4099         caller, because have code in sgen-archdep.h to acquire that data.
4101 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4103         * profiler.c, profiler.h, profiler-private.h:
4104         Added support for keeping track of code chunks and buffers.
4106 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4108         * metadata-verify.c: Fix endianness problems on decoding functions.
4109         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4111 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4113         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4114         schema for vectors and one dimension SZARRAY.
4116 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4118         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4119         schema for vectors and one dimension SZARRAY.
4121 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4123         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4124         Interlocked.(Compare)Exchange with object arguments, which invoke
4125         write barriers.
4127 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4129         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4130         passed invalid arguments.   Fixes another crasher in the
4131         Silverlight test suite.
4133         * class.c (mono_class_array_element_size): Return 0 for the size
4134         of the class;  This fixes the crasher exposed by :
4136         typeof (void).MakeArrayType ();
4138         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4139         if there is no method to dereference.    Put all the code that
4140         depends on this inside the if (method) block.
4142         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4143         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4145         With this change, we pass the test.
4146         
4147         * reflection.c (mono_reflection_sighelper_get_signature_local):
4148         Only dereference the assembly if it has been set.    Fixes a
4149         crasher exposed by #525328
4151 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4153         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4154         don't perform the store in mono_gc_wbarrier_generic_nostore().
4155         Remove the second argument (value), which is not needed.
4157 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4159         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4160         the build.
4162         * boehm-gc.c: Ditto.
4163         
4164 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4166         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4167         not perform the store itself.  Introduce
4168         mono_gc_wbarrier_generic_nostore(), which is the same as
4169         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4170         store.
4172 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4174         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4175         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4176         we still need the memcpy().
4178 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4180         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4181         so that big arrays are handled correctly.  Always use
4182         safe_object_get_size() to calculate array object sizes, which
4183         takes bounds into account.
4185 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4187         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4188         GC descriptor is computed before we use it.
4190 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4192         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4193         write barrier if necessary.
4195 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4197         * icall-def.h, icall.c, thread-types.h: New separate icall for
4198         VolatileWrite(object&,object) that uses a write barrier.
4200         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4201         barriers in icalls which write to "ref" or "out" arguments.
4203 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4205         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4206         handler in a separate icall, to reduce the size of the wrappers.
4208 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4210         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4212 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4214         * metadata-verify.c (parse_field): Allow byref field.
4216         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4218         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4220 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4222         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4223         Fixes #522784.
4225 2009-07-20  Robert Jordan  <robertj@gmx.net>
4227         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4228         Fix invalid IL in valuetype handling (STOBJ must push the
4229         corresponding class). Fixes bug #523149.
4231         Code is contributed under MIT/X11 license.
4233 2009-07-20  Geoff Norton  <gnorton@novell.com>
4235         * gc.c: Use proper semaphores where available on posix and darwin.
4237 2009-07-19  Geoff Norton  <gnorton@novell.com>
4239         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4241 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4243         * refletion.c (is_sre_usertype): Change name to is_usertype and
4244         invert it's result so it returns true if the type is an user type
4245         and not the opposite.
4247         * reflection.c (is_*_type): Change all of those to use new macro
4248         check_corlib_type_cached that cached the type lookup so we don't
4249         need to do string comparisons all the type. Changed the signature
4250         to take a MonoClass instead.
4252         * reflection.c: Change mono_image_create_token and resolve_object
4253         to use is_sre_* functions.
4255 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4257         * sgen-gc.c: Check for writes to the stack in the managed
4258         wbarrier as well.
4260 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4262         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4263         but put them on a list which is processed with the other thread's
4264         remsets.
4266 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4268         * sgen-gc.c: Fix and enable the internal allocator instead of
4269         using malloc/free (which causes deadlocks).
4271 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4273         * refletion.c: Fix builds with SRE disabled by adding a minimal
4274         implementation of mono_reflection_type_get_handle.
4276 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4278         * refletion.c: Make mono_reflection_type_get_handle non static.
4280         * object-internals.h: Export mono_reflection_type_get_handle.
4282         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4283         unmanaged handle using mono_reflection_type_get_handle.
4285 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4287         * refletion.c: Replace all reads of MonoReflectionType::type with
4288         calls to mono_reflection_type_get_handle. Only the functions that
4289         deal with constructing TypeBuilder::type have not been changed
4290         because they have to deal with NULL values.
4292         This is a first step into supporting reflection types that don't
4293         map directly into their unmanaged counterpart.
4295 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4297         * metadata-verify.c (parse_locals_signature): Don't complain
4298         on signature with zero locals since MS generates it and doesn't
4299         bother with.
4301 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4303         * reflection.c (mono_image_get_array_token): Resolve return
4304         type using mono_reflection_type_get_handle.
4306         * reflection.c (mono_image_get_array_token): Resolve array method
4307         parent type using mono_reflection_type_get_handle.
4309 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4311         * reflection.c (mono_image_basic_init): Applied patch from
4312         <Dax@daxxfiles.net>. Set the public key token from the assembly
4313         builder. Fixes #518909.
4315         * appdomain.c: Bump corlib version.
4317 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4319         * class.c (mono_class_needs_cctor_run): Make this return false if
4320         the class has no cctor.
4322 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4324         * sgen-gc.c: When the minor GC needs to allocate a new section,
4325         invoke the major GC afterwards.
4327 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4329         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4330           Applying the window_style field to the SHELLEXECUTEINFO struct.
4332         Code is contributed under MIT/X11 license.
4334 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4336         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4337         locking earlier.  Fix it in the managed allocator by making sure
4338         that no thread is stopped there before the GC runs.  If we do stop
4339         a thread there, we restart it and let it run a but, until it stops
4340         somewhere else.
4342         * gc-internal.h, gc.c: Function for getting the IP from a signal
4343         context via a function registered by mini.
4345 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4347         * object-internals.h (MonoIntPtr): New structure describing a boxed
4348         IntPtr.
4350         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4351         returns. Fixes #519953.
4353         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4355 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4357         * class-internals.h, generic-sharing.c: New RGCTX info type for
4358         getting a remoting invoke with check wrapper.
4360 2009-07-07  Geoff Norton  <gnorton@novell.com>
4362         * icall-def.h: Fix the enable-minimal build.
4364 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4366         * object-internals.h: Add MonoReflectionDerivedType.
4368         * reflection.c: Implement support for PointerType.
4369         Fixed tons of warnings.
4371 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4373         * object-internals.h: Add MonoReflectionByRefType.
4375         * reflection.c: Implement support for ByRefType.
4377 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4379         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4381         * object-internals.h: Add MonoReflectionArrayType and
4382         mono_reflection_create_unmanaged_type.
4384         * reflection.c: Implement support for ArrayType.
4386 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4388         * metadata-verify.c (is_valid_method_header): Parse EH block
4389         flags correctly.
4391 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4393         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4394         processing the disappearing links, and process disappearing links
4395         in a loop until no new objects are copied.
4397 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4399         * object.c (handle_enum): Invoke the write barrier when copying
4400         value type instances.
4402         * sgen-gc.c: Register remsets for unmanaged write barriers only
4403         when the address written to is actually on the heap.  This makes
4404         set_value() in object.c work without requiring that the result be
4405         on the heap.
4407 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4409         The runtime wrappers are all bound to a given type that must
4410         exist in the same image. For regular images we use the <Module>
4411         type, which is required to exist for all images.
4413         The <Module> type can't be used for dynamic images because it
4414         might not exist at the time the wrapper is required, so we create
4415         a synthetic type to use instead.
4417         The current code works because of the 2 stage setup of MonoClass,
4418         but once this is gone it will no longer work.
4420         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4422         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4424         * object-internals.h: Export mono_image_set_wrappers_type icall
4425         as part of the internal API.
4427         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4428         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4430         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4431         image wrappers_type to the provided value.
4433 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4435         * appdomain.c (deregister_reflection_info_roots): No need
4436         to use the image lock here.
4438 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4440         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4442 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4444         * threads.c: Store the thread start argument in a hash table instead of
4445         registering it as a root, as libgc doesn't support unregistering roots
4446         under windows, leading to 'too many root sets' errors when many threads
4447         are created.
4449         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4450         shutdown, they can still be referenced by the other dying objects.
4451         Fixes #514506.
4453 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4455         * socket-io.c: DontLinger does not allow LingerOptions.
4457 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4459         * metadata-verify.c: The spec doesn't mention that it's possible to add
4460         custom attribute to a generic parameter. Fixed.
4462 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4464         * class.c (inflate_generic_type): Don't crash while trying to output a message
4465         on why we're aborting.
4467 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4469         * socket-io.c: DontLinger can take an int or a boolean too.
4471 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4473         * gc.c: check for a null argument to SuppressFinalize () and
4474         ReRegisterForFinalize ().
4476 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4478         * loader.c (method_from_methodspec): Call into the verifier to check
4479         the signature.
4481         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4483         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4484         part of the internal API.
4486 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4488         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4489         the signature.
4491         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4493         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4494         part of the internal API.
4496 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4498         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4499         the signature.
4501         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4502         blob verification.
4504         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4505         part of the internal API.
4507 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4509         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4510         when doing basic verification. 
4512         This check must be done since the runtime peeks into signatures in much
4513         more places than it does decoding so it makes sense to ensure that all
4514         pointers to blob objects are well formed.
4516 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4518         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4519         Use proper overflow dectection. Fix usage of it.
4521 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4523         * loader.c (field_from_memberref): Call into the verifier to check
4524         the signature.
4526         * loader.c (mono_method_get_signature_full): Same.
4528         * loader.c (method_from_memberref): Same.
4530         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4532         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4533         part of the internal API.
4535 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4537         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4538         or unloaded, still return an AsyncResult, but don't add it to the
4539         threadpool.
4541 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4543         * threads.c: fix missing colon when DEBUG is defined.
4545 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4547         * threadpool.c: Don't add new calls to a threadpool if the domain
4548         of the call is unloading or unloaded.  When dequeuing a job, null
4549         the reference in the queue.
4551 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4553         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4554         generation if an object was moved.
4556 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4558         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4559           parameters of type SAFEARRAY[VARIANT].
4561         * reflection.c (encode_marshal_blob): Properly generate element type
4562           (SafeArraySubType marshal attribute option).
4564         Code is contributed under MIT/X11 license.
4566 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4568         * reflection.c: in mono_method_clear_object () really ensure all the
4569         objects are removed.
4571 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4573         * loader.c (mono_method_signature): Call into the verifier to check
4574         the method signature.
4576         * metadata-verify.c (verify_method_table): Move signature verification
4577         to verify_method_table_full.
4579         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4581         * verify-internals.h: Export mono_verifier_verify_method_signature as
4582         part of the internal API.
4584 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4586         * loader.c (mono_method_get_header): Call into the verifier to
4587         check the method header.
4589         * metadata-verify.c: Add mono_verifier_verify_method_header.
4591         * verify-internals.h: Export mono_verifier_verify_method_header as
4592         part of the internal API.
4594 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4596         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4597         check the field signature. Replace an assert with an explicit check.
4599         * class.c (mono_class_setup_fields): Call into the verifier to check
4600         the field signature.
4602         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4604         * verify-internals.h: Export mono_verifier_verify_field_signature as
4605         part of the internal API.
4607 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4609         * class.c (mono_class_find_enum_basetype): Simplify this function
4610         by moving code outside of the loop and not decoding static fields.
4612 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4614         * metadata-verify.c (verify_typedef_table): Check the extends
4615         token here. Move to here a flags check from verify_typedef_table_full.
4617 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4619         * metadata-verify.c (is_valid_method_header): Fix a warning.
4621         * metadata-internals.h (MonoImage): Remove the unused 
4622         static_rgctx_invoke_wrapper_cache.
4624         * image.c marshal.c: Ditto.
4626 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4628         * image.c (do_mono_image_load): Enable table data verification.
4630 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4632         * metadata-verify.c (is_valid_constant): Fix nullref check.
4634 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4636         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4638 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4640         * sgen-gc.c: Managed allocation with pthreads TLS.
4642         * threads.c, threads-types.h: Functions for the JIT to tell the
4643         runtime whether it supports the MONO_TLS opcode.
4645 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4647         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4648         without methods.
4650 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4652         * metadata-verify.c (is_valid_constant): Fix the string length check.
4653         Use safe overflow checking. Add decent error messages.
4655 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4657         * metadata-verify.c: Move remaininh blob checks to the offline
4658         verification path.
4660 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4662         * metadata-verify.c: Move more blob checks to the offline verification
4663         path.
4665 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4667         * object-internals.h : Adding interrupt_on_stop field.
4669         * threads.c (mono_thread_request_interruption) : On Windows exit the
4670           thread if interrupt_on_stop is set.
4672         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4673          Removing old interrupt logic and setting the interrupt_on_stop for the
4674          thread when calling accept.
4676         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4677          setting the interrupt_on_stop for the thread when calling accept.
4679         Contributed under MIT/X11 license.
4681 2009-06-20  Martin Baulig  <martin@ximian.com>
4683         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4685 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4687         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4688         running in no-exec mode.
4690 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4692         * metadata-verify.c (verify_method_table): Move header
4693         checking to verify_method_table_full.
4695         * metata-verify.c (mono_verifier_verify_full_table_data):
4696         Call verify_method_table_full.
4698 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4700         * metadata-verify.c (verify_field_table): Move signature
4701         checking to verify_field_table_full.
4703         * metata-verify.c (mono_verifier_verify_full_table_data):
4704         Call verify_field_table_full.
4706 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4708         * metadata-verify.c (verify_typedef_table): Move remaining
4709         stuff to verify_typedef_table_full.
4711 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4713         * metadata-verify.c: Kill is_corlib from VerifyContext.
4714         It is only used by the offline mode.
4715         So we better remove it from the runtime path.
4717 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4719         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4720         function that perform the offline metadata verification steps.
4722         * metadata-verify.c (verify_typedef_table): Move some checks to
4723         verify_typedef_table_full and make it been called by new function
4724         mono_verifier_verify_full_table_data.
4726         * pedump.c: Call mono_verifier_verify_full_table_data.
4728         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4729         part of the internal API.
4731 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4733         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4734         check.
4736         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4737         flags bits. SupportLastError was confused as bit 7 instead of 6.
4739         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4740         to check against the module ref table instead of module.
4742         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4744         * pedump.c: Call mono_image_load_names.
4746 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4748         * image.c: Extract mono_image_load_names from do_mono_image_load.
4750         * metadata-internals.h: Export mono_image_load_names as part of
4751         the internal API.
4752         
4753 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4755         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4756         first, as it could reference data in the other caches.
4758 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4760         * metadata-verify.c: Finished with method header verification.
4762 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4764         * metadata-verify.c: Added more header verification code.
4765         Now only EH clauses are missing.
4767 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4769         * marshal.c (get_runtime_invoke_type): Don't share primitive types
4770         for return values.
4772 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4774         * metadata-verify.c: Initial method header verification.
4776 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4778         * metadata-verify.c (verify_import_table): The IAT contents
4779         might end been patched by the windows DL when running with
4780         coree enabled.
4782 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
4784         * class.c (mono_class_from_typeref): If the enclosing type is not
4785         found return null instead of crashing. Fixes #508487.
4787 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
4789         * normalization-tables.h : updated to the latest unicode charcter
4790           data.
4791         * appdomain.c : bump corlib version.
4793 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
4795         * class.c (mono_class_from_name): Fix support for assembly references
4796         in the EXPORTEDTYPE table. Fixes #511704.
4798 2009-06-13  Geoff Norton  <gnorton@novell.com>
4800         * domain.c: Ensure that mono_domain_assembly_open actually opens the
4801         assembly in the target domain.
4803 2009-06-12  Robert Jordan  <robertj@gmx.net>
4805         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
4806         because "this" of the managed signature has become an
4807         ordinary parameter in the unmanaged signature.
4809 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
4811         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
4812         field for owner-less generic containers.
4814         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
4815         image field of the owner-less generic containers created here.
4817         * metadata.c (mono_metadata_load_generic_params): Ditto, the
4818         contain is ownerless until the caller sets its owner.
4820         * metadata.c (type_in_image): Handle owner-less generic containers
4821         correctly.
4822         
4823 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4825         * image.c (mono_image_close): Support debug_assembly_unload for
4826         dynamic images too.
4828 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
4830         * class.c: Fix some typos in comments.
4832 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4834         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
4836         * threads.c (mono_thread_execute_interruption): Avoid creating the
4837         abort exception object while holding the synch_cs lock.
4839 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4841         * metadata-verify.c: Verify basic cattr content.
4843 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4845         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
4846         nested types.
4847         
4848         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
4849         support for nested types. Fixes #511704.
4851 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4853         * metadata-verify.c: Verify methodspec signatures.
4855 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4857         * metadata-verify.c: Verify typespec signatures.
4859 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4861         * metadata.c (free_inflated_method): Call 
4862         mono_marshal_free_inflated_wrappers (), which was missed earlier.
4864 2009-06-08  Miguel de Icaza  <miguel@novell.com>
4866         * mono-config.c: Small change to report the PPC64/ILP32 model.
4868 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4870         * metadata-verify.c (parse_type): Check szarray.
4872 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4874         * metadata-verify.c (parse_type): Check fnptr.
4876 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4878         * metadata-verify.c (parse_type): Check generic instances.
4880 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4882         * metadata-verify.c (parse_type): Check array shape.
4884 2009-06-05  Robert Jordan  <robertj@gmx.net>
4886         * class.c (mono_class_create_from_typedef): Check only for
4887         mscorlib's System.Array.
4889 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4891         * metadata-verify.c (parse_type): Check pointer, class/valuetype
4892         and generic params. 
4894         * metadata-verify.c (parse_field): Check the signature.
4896 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4898         * metadata-verify.c: Implement locals signature check.
4900 2009-06-04  Marek Safar  <marek.safar@gmail.com>
4902         * domain.c: Add .NET 4.0 Beta 1 version.
4904 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
4906         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
4907           For QueryInterface on CCWs consider the base class
4908           interfaces as well.
4910         Code is contributed under MIT/X11 license.
4912 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4914         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4916         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4917         used.
4919         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4920         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
4922         * generic-sharing.c (inflate_other_data): Ditto.
4923         
4924 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
4926         * metadata-verify.c: Implement property signature check.
4928 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4930         * sgen-gc.h: Register saving support for PPC.
4932 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4934         * sgen-gc.c: Fixed a pthread TLS screwup.
4936 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4938         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
4939         supported.
4941 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4943         * sgen-gc.c: Disable TLA and managed allocation if the __thread
4944         keyword is not supported.
4946 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4948         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
4949         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
4950         the inflated method is freed. Fixes #508389.
4952         The code is contributed under the MIT/X11 license.
4953         
4954 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
4956         * marshal.c (get_wrapper_target_class): New helper function.
4957         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
4958         the <Module> class of the image. Fixes #509049.
4960 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4962         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
4963         Check if the thread was interrupted and proccess it straight away.
4964         Makes abortion much more responsive.
4966 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4968         * threads.c (mono_thread_execute_interruption): Use atomic cas with
4969         MonoThread::interruption_requested to match it's counterpart.
4971         Fixes a hang in abort-stress-1 on a 2 core x86.
4973         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4974         Fix warning.
4976 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4978         Change MonoImage::name_cache to be protected by the image lock
4979         instead of the loader lock.
4981         * appdomain.c (deregister_reflection_info_roots): Protect access
4982         to name_cache.
4984         * class.c (mono_image_init_name_cache): Change from the loader lock
4985         to the image lock. Check if the cache wasn't already created.
4987         * class.c: Change from the loader to the image lock.
4989         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
4990         the code to hold the image lock while iterating over name_cache and
4991         not go into mono_array_new holding it.
4993         * metadata-internals.h: Add a comment about this change.
4995 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4997         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4998         Under the 2.0 profile raise the loader error.
5000         Fixes #508532.
5002 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5004         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5005         of ldind opcode for generic instances so we don't fail for direct wrappers.
5006         This only affect direct calls.
5008 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5010         * reflection.c (create_dynamic_mono_image): Fix warnings.
5012         * generic-sharing.c (other_info_equal): Ditto.
5013         
5014 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5016         * metadata-verify.c: Implement field signature check.
5018 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5020         * metadata-verify.c: Implement standalone signature check.
5022 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5024         * metadata-verify.c: Implement methodref signature check.
5026 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5028         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5029         callbacks supplied by the runtime.
5031         * object.c (mono_install_callbacks): New internal function to install
5032         the callbacks.
5034         * object.c (mono_create_ftnptr): Move the implementation of this to
5035         mini/.
5037         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5039 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5041         * metadata-verify.c (parse_return_type): Proper byref check.
5042         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5043         generic signatures and method params.
5045 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5047         * metadata-verify.c (decode_signature_header): Fix bounds check.
5049         * metadata-verify.c (parse_custom_mods): Check custom mods.
5051         * metadata-verify.c (parse_type): Do initial basic verification
5052         of valid values.
5053         
5054         * metadata-verify.c (is_valid_method_signature): Parse the generic
5055         param count.
5057 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5059         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5060         discarded based on their most specific definition so we set the method_slots
5061         array before checking if the method is acceptable or not.
5063         Fixes #506757.
5065 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5067         * icall.c: Free the old array when resizing a mono_ptr_array.
5069 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5071         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5072         for the hashes whose keys are managed objects.
5074 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5076         * object-internals.h, threads.c: Set the execution context on
5077         thread start here, not in corlib.
5079         * appdomain.c: Bump corlib version.
5081 2009-05-27  Martin Baulig  <martin@ximian.com>
5083         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5084         if `_mono_debug_using_mono_debugger' is set to make things work
5085         properly when embedding Mono.
5087 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5089         * class.c (mono_class_setup_fields): Don't mark simd types as having
5090         16 bytes alignment as the whole runtime doesn't support.
5092 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5094         * metadata-verify.c (safe_read): Use endian safe read macros.
5096 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5098         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5099         it is read-only when using full aot.
5101 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5103         * metadata-verify.c (is_valid_method_signature): Verify parts
5104         of the return type. Provide an error message in case of failure.
5106 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5108         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5110 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5112         * metadata-verify.c: Include the size prefix in the bounds check.
5114 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5116         * icall.c: Remove warnings.
5118         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5119         prevent auto-detection based on GCC defines.
5121         Add PS3
5123         * metadata-verify.c: Do not include signal.h
5125         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5126         messages.  Not sure why the g_assert_not_reached is not enough to
5127         quiet the compiler.
5128         
5130         * appdomain.c: Remove code that is not used when
5131         DISABLE_SHADOW_COPY is set.
5133         * image.c: use g_getenv
5135 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5137         * reflection.c: Remove code that it not used with
5138         DISABLE_REFLECTION_EMIT is defined.
5140 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5142         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5143         invoke wrappers.
5145 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5147         * socket-io.c
5148         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5149         the ifdef here and instead put that on io-layer
5151 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5153         * metadata-verify.c: Verify the generic param constraint table.
5155 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5157         * metadata-verify.c (verify_generic_param_table): Fix
5158         thinko on the valid flags bits for generic params.
5160 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5162         * metadata-verify.c: Verify the methodspec table.
5164 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5166         * metadata-verify.c: Verify the generic param table.
5168 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5170         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5172 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5174         * sgen-gc.c: Use generation enum more consistently and use the
5175         correct generation in mono_gc_register_for_finalization().
5177 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5179         * metadata-verify.c: Verify the nested class table.
5181 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5183         * metadata-verify.c: Verify the manifest resource table.
5185 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5187         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5189 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5191         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5192         wrappers, this is now done in the JIT.
5193         
5194         * class.c (mono_set_generic_sharing_supported): New internal function.
5195         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5197 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5199         * metadata-verify.c: Verify the exported type table.
5201 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5203         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5205 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5207         * metadata-verify.c: Verify the file table.
5209 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5211         * metadata-verify.c (verify_assembly_table): Fix an error message.
5213         * metadata-verify.c: Verify the assemblyref table.
5215 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5217         * metadata-verify.c (verify_assembly_table): Fix the valid
5218         bits mask for flags.
5220 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5222         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5223         generic methods as well.
5225 2009-05-15  Geoff Norton  <gnorton@novell.com>
5227         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5228         use-case and is significantly more performant than the wapi layer.
5230 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5232         * metadata-verify.c: Verify the assembly table.
5234 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5236         * metadata-verify.c: Fix rows limit check.
5238 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5240         * metadata-verify.c: Verify the fieldrva table.
5242 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5244         * sgen.c: Speed up weak links and finalizers by grouping them by
5245         generation.
5247 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5249         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5250         free the old GCHandle (only applies to SGen).
5252 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5254         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5255         mono_metadata_load_generic_params () for non-generic methods.
5257 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5259         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5260         New function for returning a monitor's weak link if it has one.
5262         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5263         one) when clearing a domain.  These can still be around because
5264         the object might not have been collected.
5266 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5268         * gc.c: Fix a warning.
5270 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5272         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5273         prevous wait that resulted in a deadlock on Windows when initializing
5274         the runtime form DllMain. Also results in improved startup time.
5275         (finalizer_thread): Get rid of thread_started_event.
5276         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5277         resulting MonoThread.
5279         Contributed under MIT/X11 license.
5281 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5283         * metadata-verify.c: Verify the implmap table.
5284         Don't require that #US and #Strings be present.
5286 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5288         * security-core-clr.c: Delegate checks are done at creation time,
5289         not a invocation time. Fix exception for Telerik Silverlight demo
5291 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5293         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5294         case for the Thread class.
5296         * threads.c: Do clean-up of abort exception/state in
5297         thread_cleanup() instead of Thread.free_internal().  Also clean up
5298         current_appcontext.  The reason we have to do that is because
5299         those references might point into another domain and if that
5300         domain is unloaded before the thread is finalized, they point to
5301         invalid data.
5303 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5305         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5306         stub signatures.
5307         
5308         Contributed unter MIT/X11 license.
5310 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5312         * verify.c, metadata-verifier.c: Add support for disabling the
5313         verifier in some builds.
5315         [ Sorry, my previous commit accidentally commited some work in
5316         progress ]
5318 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5320         * class.c (mono_class_setup_fields): Set class->field.first for
5321         generic instances.
5323 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5325         * metadata-verify.c: Verify the typespec table.
5327 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5329         * metadata-verify.c: Verify the module table.
5331 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5333         * metadata-verify.c: Verify the methodimpl table.
5335 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5337         * metadata-verify.c: Verify the property table.
5339 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5341         * debug-helpers.c (mono_method_desc_match): Add support for generic
5342         glob patterns.
5344 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5346         * metadata-verify.c: Verify the propertymap table.
5348 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5350         * metadata-verify.c: Verify the event table.
5352         * metadata-verify.c (search_sorted_table): Fix offset
5353         calculation.
5355 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5357         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5359 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5361         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5362         because mono_delegate_free_ftnptr() needs it.
5364 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5366         * metadata-verify.c: Verify the eventmap table.
5368 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5370         * metadata-verify.c: Verify the standalonesig table.
5372 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5374         * metadata-verify.c: Verify the field layout table.
5376 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5378         * class.c (mono_type_get_name_recurse): Don't crash
5379         for ownerless generic params.
5381         * debug-helpers.c (mono_type_get_desc): Correct the format
5382         for ownerless generic params.
5384 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5386         * metadata-verify.c: Verify the class layout table.
5388 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5390         * metadata-verify.c: Verify the decl security table.
5392 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5394         * domain.c (mono_domain_set_internal_with_options): Don't do
5395         anything if the old domain is the same as the old one.  Fixes
5396         #499326.
5398 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5400         * appdomain.c: Deregister the reflection_info roots when unloading
5401         a domain.
5403         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5404         memory allocated by a domain and frees its disappearing links.
5406         * boehm-gc.c, null-gc.c: Empty implementation of
5407         mono_gc_clear_domain().
5409 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5411         * appdomain.c (clear_cached_vtable): Free the static fields memory
5412         block.
5414 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5416         * gc.c: Set the correct domain when invoking finalizers.
5418         * appdomain.c: Set the correct domain when creating threads.
5420 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5422         * sgen-gc.c: Fix skip size for vectors.
5424 2009-05-03  Martin Baulig  <martin@ximian.com>
5426         * mono-debug-debugger.c
5427         (mono_debugger_check_breakpoints): Check class init handlers even
5428         if we don't have any method load handers.
5430 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5432         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5433         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5435 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5437         * metadata-verify.c: Verify the field marshal table.
5439 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5441         * metadata-verify.c: Verify the custom attribute table.
5443 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5445         * metadata-verify.c: Verify the constant table.
5447 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5449         * metadata-verify.c: Verify the memberef table.
5451 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5453         * metadata-verify.c (get_coded_index_token): Remove
5454         dead argument.
5456 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5458         * metadata-verify.c: Verify the interfaceimpl table.
5460 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5462         * verify.c: Improve error message.
5464         * debug-helpers.c (mono_type_get_desc): Harden the code that
5465         deals with VAR and MVAR.
5467 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5469         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5470         part of #498692.
5472 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5474         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5475         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5477 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5479         * security-core-clr.c: Avoid redundant checks for platform code, 
5480         e.g. check for method and for class (very common) and check
5481         for class and outer class (less common)...
5483 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5485         * reflection.c: Avoid returning random cattrs for synthetic methods.
5486         Fixes #498545.
5488 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5490         * assembly.c: assemblies in the GAC should never be shadow-copied.
5492 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5494         * domain.c, domain-internals.h: Disable
5495         track_resurrection_{objects,handles}_hash in MonoDomain if using
5496         SGen.
5498 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5500         * metadata-verify.c: Verify the param table.
5502 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5504         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5505         MethodList.
5507         * metadata-verify.c (verify_method_table): Proper check the ParamList
5508         field.
5510 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5512         * metadata-verify.c (verify_method_table): Check for runtime
5513         implemented functions such as delegate .ctors. Remove spurious
5514         printf.
5515         
5516 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5518         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5520 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5522         Don't allocate MonoGenericInfo for ownerless generic params.
5523         * class-internals.h (MonoGenericParam::info): Move field to ...
5524         (MonoGenericParamFull): ... this.  New struct.
5525         (MonoGenericContainer::type_params): Change type to
5526         MonoGenericParamFull.
5527         (MonoGenericParam, MonoGenericContainer): Update accessors.
5528         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5529         'info' field for ownerless generic param.
5530         (mono_metadata_load_generic_params): Update to changes.
5531         * reflection.c (mono_reflection_create_generic_class): Likewise.
5532         (reflection_methodbuilder_to_mono_method): Likewise.
5533         (mono_reflection_initialize_generic_parameter): Likewise.
5535 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5537         Don't use MonoGenericParamInfo for ownerless generic params.
5538         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5539         use ParamInfo class at all.
5540         (mono_class_from_generic_parameter): Use them.
5541         (make_generic_param_class): Fix a couple of instances where 'pinfo
5542         == NULL' wasn't handle.
5544 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5546         * class.c (make_generic_param_class): Carve out of ...
5547         (mono_class_from_generic_parameter): ... here.
5549 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5551         Simplify mono_class_from_generic_parameter
5552         * class-internals.h (MonoGenericParamInfo::token): New field.
5553         * metadata.c (mono_metadata_load_generic_params): Initialize it
5554         from metadata.
5555         * class.c (mono_class_from_generic_parameter): Use it instead of
5556         searching through metadata.
5558 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5560         * metadata-verify.c: Add verification of the method table.
5562 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5564         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5565         Delegate::Invoke optimization.
5567 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5569         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5570         string returned by get_shadow_assembly_location_base.
5572         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5573         about caller's ownership.
5575 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5577         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5578         reflection memory on domain unload.
5580         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5581         reflection cleanup code do it.
5583         * domain-internals.h: Add mono_reflection_cleanup_domain.
5585         This fixes a memory leak for managed mirrors of reflection objects
5586         on domain unload. 
5588 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5590         * metadata-verify.c: Implement more verification of the field table.
5592 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5594         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5595         doesn't try to parse the input assembly, which can be broken.
5597 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5599         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5600         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5601         by using the lowest bit in the link to store whether the link is
5602         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5604 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5606         * Makefile.am: Split the console support in platform specific code
5607         and put together a framework for making this easy in the future so
5608         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5610 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5612         * pedump.c: Fix a warning.
5614 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5616         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5617         mono_class_from_mono_type to avoid bad interactions with the dual representation
5618         of the generic type definition.
5620 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5622         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5623         get the MonoClass for the call context type as it might be a generic
5624         instance.
5626         Fixes #491483.
5628 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5630         * object-internals.h: The Thread object has no execution_context
5631         member anymore.
5633         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5634         the execution context.
5636         * appdomain.c: Bump corlib version.
5638 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5640         * verify.c (do_newobj): Improve error message.
5642 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5644         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5645         is nested in the filter block.
5647         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5648         block is not fully nested.
5650         Fixes #495656.
5652 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5654         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5655         not MonoType to check for equality of valuetypes as the generic type
5656         definition allows for two different encodings: the generic type definition
5657         class or a generic instance over the GTD arguments.
5659         Fixes #496175.
5661 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5663         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5665         * verify.c (do_initobj): Improve error message.
5667 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5669         * metadata-verify.c: Enable pe verification as the issue with #496453
5670         is that the authenticode data directory have a different unspecified
5671         format. Ignore it for now.
5673         * pedump.c: Run the metadata verifier together with the IL verifier.
5675         Fixes ##496453.
5677 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5679         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5681 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5683         * class.c (can_access_type): Check visibility against
5684         the element type for pointers and arrays.
5686         Fixes #496150.
5688 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5690         * metadata-verify.c: Fix cli and table verification to use information
5691         from the MonoImage. A lot of duplicated code got killed.
5693 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5696         This patch starts to integrate the metadata verifier with the runtime code.
5698         This patch causes major regression in functionality for the metadata verifier
5699         as cli and table verification are disabled since they require to be ported to
5700         use MonoImage information.
5702         * image.c (do_mono_image_load): Split the code in this function
5703         into mono_image_load_pe_data and mono_image_load_cli_data.
5704         Add     care_about_pecoff parameter to not load pecoff data.
5705         Call into the metadata verifier for pecoff and cli verification.
5707         * image.c (mono_image_open_raw): New function that doesn't perform
5708         any parsing of the image contents.
5709         
5710         The reason for the 3 new functions is to give pedump better control
5711         into the interaction with the verifier.
5713         * metadata-internals.h: Add new functions from image.c as part of the
5714         internal mono API.
5716         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5717         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5718         to make those functions work together with the runtime.
5720         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5721         true if the image needs to be verified.
5723         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5725         * pedump.c: Use new metadata verifier API.
5727 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5729         * object.c (mono_install_vtable_trampoline): Make this receive a
5730         trampoline creation function instead of trampoline, allowing the JIT
5731         to use a different trampoline for each vtable.
5733 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5735         * object.c (mono_raise_exception): Don't reset the thread abort
5736         exception state here.
5738 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5740         * icall-def.h: New icall for getting the thread abort exception
5741         state for a thread.
5743         * object.c, thread.c, object-internals.h: A thread's abort
5744         exception state is now a GC handle.  To get the object it stands
5745         for, we must move it into the current app domain, if it's
5746         different than the one where it originated from.
5748         * appdomain.c: Bump corlib version.
5750         * domain.c, domain-internals.h: New function for setting the
5751         domain and migrate the thread abort exception or not.
5753 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5755         * metadata-verify.c: Add initial verification of the
5756         field table.
5758 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5760         * metadata-verify.c: Add a macro to conditionally enable
5761         dumping of verification information. Add  make_coded_token
5762         and search_sorted_table to enable search sorted tables
5763         by a given coded token.
5765 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5767         * metadata-verify.c: Add array mapping from table index
5768         to description offset. Add get_col_offset and get_col_size
5769         functions.
5771 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5773         * metadata-verify.c: Add remaining table descriptions offsets.
5774         Add remaining coded index descriptions.
5776 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5778         * metadata-verify.c: Fixed constant table description.
5779         Fixed calculation of HasCustomAttribute coded index size.
5780         Fixed calculation of size for many table indexes. 
5782 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5784         * pedump.c (dump_metadata): Dump table offset instead
5785         of useless pointer in memory.
5787 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5789         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
5791 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5793         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
5794         a missing of for interface types.
5796 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5798         * metadata-verify.c (verify_pe_optional_header): Add comment of why
5799         the code is commented.
5801         * metadata-verify.c (verify_resources_table): Remove spurious printf
5802         and don't fail if there are unmanaged resources. Gmcs generates a useless
5803         one     for all assemblies - I bet it's some MS compatibility junk.
5805 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5807         * metadata-verify.c (verify_typedef_table): Verify the extends field.
5809         * metadata-verify.c (mono_image_verify): Add a is_corlib.
5811         * verify-internals.h: Same.
5813         * pedump.c: Fix for mono_image_verify new signature.
5815 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5817         * metadata-verify.c (verify_typedef_table): Verify for some invalid
5818         flags combinations.
5820 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5822         * metadata-verify.c (verify_module_table): Ignore the generation field.
5824 2009-04-15  Martin Baulig  <martin@ximian.com>
5826         * debug-mono-symfile.c
5827         (mono_debug_symfile_lookup_location): Don't print a warning for
5828         unknown extended opcodes if they're within 0x40 and 0x7f.
5830 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
5832         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
5833         invoke signatures returning an enum. Fixes #494847.
5835 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5837         * metadata-verify.c: Initial code to verify the typedef table.
5839 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5841         * verify.c (mono_method_verify): Don't fail if an unconditional branch
5842         with non empty stack happens before the beginning of a try block.
5844         Fixes #494812.
5846 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5848         * metadata-verify.c: Verify typename and typenamespace fields of
5849         the typeref table.
5851 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5853         * metadata-verify.c: Initial code to verify the typeref table.
5855 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5857         * verify.c (verify_delegate_compatibility): Fix error message.
5859 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5861         * security-core-clr.c: Fix typo
5863 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5865         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
5866         a MonoGHashTable to keep its values alive.
5867         (emit_marshal_boolean): Fix a warning.
5869 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5871         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
5872         not have any interface configured for IPv4/IPv6.
5874 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5876         * assembly.c: fix typo in error message.
5878 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5880         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
5881         allocating the location holding the this argument to prevent
5882         'too many root sets' errors.
5884         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
5885         to mark fields as special static.
5886         (mono_field_static_get_value): Handle special static fields.
5887         (mono_field_static_set_value): Ditto.
5889         * class-internals.h (struct _MonoClassField): Document this.
5891 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5893         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
5894           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
5895           case.  This will handle when managed code returns null to native code.
5897         Code is contributed under MIT/X11 license.
5899 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5901         * object.c (build_imt_slots): Changing a free to a g_free to match
5902           the g_malloc0 in add_imt_builder_entry that allocated this memory.
5904         Code is contributed under MIT/X11 license.
5906 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5908         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5909           the correct TRUE value is passed through the marshaling layer.
5911         Code is contributed under MIT/X11 license.
5913 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5915         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5916         correctly. Fixes #492330.
5917         
5918         * marshal.c: Fix the embedding of object pointers into JITted code in
5919         the native-to-managed wrappers by allocating some GC tracked memory, and
5920         embedding the address of that.
5922 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5924         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
5925         pointers into the vtable.
5927 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
5929         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
5931         * verify.c (verify_ldftn_delegate): Improve error message.
5933 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5935         * reflection.c (my_mono_class_from_mono_type): Remove.
5937 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5939         Prepare to reduce memory usage of owner-less generic parameters (1/n)
5940         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
5941         and constraints fields into ...
5942         (MonoGenericParamInfo): ... this.
5943         (mono_generic_param_info, mono_generic_container_get_param_info):
5944         New accessors.
5945         * class.c, debug-helpers.c, icall.c: Update to changes.
5946         * metadata.c, reflection.c, verify.c: Likewise.
5948 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
5950         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
5952         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
5953         
5954         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
5955         booleans with sbytes.
5957 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5959         * class.c (can_access_instantiation): Verify accesibility of element types
5960         for arrays and pointers.
5962         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
5964         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
5966         Fixes #493068.
5968 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5970         * verify.c (do_invoke_method): Improve error messages.
5972 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5974         * verify.c:  Fixing the MSVC build.
5976         Code is contributed under MIT/X11 license.
5978 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
5980         * security-core-clr.c: Simplify get_reflection_caller not to call
5981         mono_method_get_last_managed (another stack walk) and adjust the
5982         callers to handle a (should not happen) NULL return value.
5984 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5986         Add accessors to some MonoGenericParam fields
5987         * class-internals.h (mono_generic_param_owner): New accessor.
5988         (mono_generic_param_num): Likewise.
5989         (mono_type_get_generic_param_owner): New helper.
5990         (mono_type_get_generic_param_num): New helper.
5991         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
5993 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5995         * class-internals.h (mono_generic_container_get_param): New wrapper.
5996         * class.c, icall.c, metadata.c, verify.c: Use it.
5998 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6000         Fix gtest-252.cs
6001         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6002         the standard case/loop.  In particular, don't complain about
6003         references to generic type definitions.
6005 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6007         * debug-helpers.c (dis_one): Decode string arguments.
6009 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6011         * pedump.c (dump_verify_info): Dump type name correctly.
6013 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6015         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6016         are larger than code size.
6018         This can happen in valid code if the try/catch block is not followed by any instruction
6019         and do a backward branch on the leave instruction.
6021         Fixes #492494.
6023 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6025         * security-core-clr.c: Fix typo while comparing second method names
6026         in can_avoid_corlib_reflection_delegate_optimization
6028 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6030         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6032         Fixes #487738.
6034 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6036         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6037         a MVAR using a class context.
6039         Fixes #490335.
6041 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6043         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6045         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6047         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6048         functions supplied by the JIT for the SGEN GC.
6050         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6051         
6052 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6054         monitor.c (mono_monitor_try_enter_internal):
6055         Added calls to profile monitor contentions.
6056         Also duplicated a small piece of code (the "get the monitor" logic)
6057         from the fast path to the slow path, and changed the relevant goto
6058         statements, so that monitor acquisition events can be emitted from the
6059         slow path (this is by Paolo Molaro).
6061 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6063         * profiler.c, profiler.h, profiler-private.h:
6064         Added support for profiling monitor contentions.
6066 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6068         * metadata-verify.c: Verify the modules table.
6070 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6072         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6073         using the context of the method been verifier and not of the method been called.
6075         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6076         safely inflate generic types. 
6078 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6080         * security-core-clr.c: Change the strategy for checking the 
6081         "reflection using delegates optimization" to avoid unneeded 
6082         attributes in multiple class libraries.
6084 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6086         * sgen-gc.c: Remove object element in the disappearing link struct
6087         by storing the object pointer in the link.
6089 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6091         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6093 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6095         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6097         * verify.c (mono_method_verify): Do proper bounds checking of exception
6098         clause ranges.
6100 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6102         * loader.c (mono_field_from_token): Don't crash if the field parent could
6103         not be decoded.
6105 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6107         * sgen-gc.c: Execute critical finalizers after ordinary
6108         finalizers.
6110         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6111         mono_defaults.
6113 2009-03-31 Jb Evain <jbevain@novell.com>
6115         * verify.c (do_ldstr): don't check if a string is in the user strings
6116         heap if the current image is dynamic.
6118 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6120         * sgen-gc.c: Wait until the last finalizer has executed when
6121         returning from WaitForPendingFinalizers.
6123 2009-03-31  Martin Baulig  <martin@ximian.com>
6125         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6126         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6127         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6128         (mono_debugger_event_create_appdomain): New function.
6129         (mono_debugger_event_unload_appdomain): New function.
6131         * appdomain.c (mono_domain_create_appdomain_internal): Call
6132         mono_debugger_event_create_appdomain().
6134 2009-03-31  Martin Baulig  <martin@ximian.com>
6136         * mono-debug-debugger.c
6137         (mono_debugger_register_class_init_callback): Also register the
6138         class init callback if the class is already initialized to make
6139         things work with shadow copied assemblies.
6141 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6143         * security-core-clr.c
6144         (mono_security_core_clr_ensure_reflection_access_field): Let 
6145         critical code access the field (just like we do for methods). Use
6146         check_field_access helper.
6147         (mono_security_core_clr_ensure_reflection_access_method): Use 
6148         check_field_access helper.
6150 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6152         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6153         call the run-finalize function directly.
6155         * gc.c, gc-internal.h: Make run_finalize() non-static.
6157 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6159         * sgen-gc.c: Use a separate struct for disappearing links.
6161 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6163         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6164         * MaxIOVectorLength enabled, just ignore them.
6165         Fixes bug #349688.
6167 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6169         * metadata-verify.c: Fix eglib build.
6171 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6173         * threads-types.h: Fix the win32 build.
6175 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6177         * class.c: move coreclr inheritance/override checks to 
6178         security-core.clr.c
6179         * security-core.clr.c|h: add code from class.c with additional
6180         documentation. Fix override check when the method is not critical.
6182 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6184         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6185         (match_class): Ditto.
6187 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6189         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6191         * metadata-verify.c: Implement table layout row size calculation. Verify
6192         the total size of the tables.
6194 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6196         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6198 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6200         * appdomain.c:
6201         * console-io.[ch]: added new mono_console_init() to make sure that
6202         file descriptors 0, 1 and 2 are opened.
6203         Bug #489019 fixed.
6205 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6207         * appdomain.h: Export a new callback type and a new function to
6208         set this callback. This allow a mono host to provide it's own
6209         definition for "platform code".
6210         * metadata-internals.h: Add a core_clr_platform_code flag on 
6211         _MonoImage to (cache and) know if it is representing platform 
6212         code.
6213         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6214         on platform code images.
6215         * security-core-clr.c|h 
6216         (mono_security_set_core_clr_platform_callback): Allow the host
6217         to provide it's own platform check definition.
6218         (mono_security_core_clr_determine_platform_image): Detect if an 
6219         image is platform code (using the specified callback).
6220         (mono_security_core_clr_is_platform_image): Return cached value 
6221         for platform code.
6223 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6225         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6226         which has different parameter types for the 'tid' argument in windows and
6227         the io-layer.
6229         * appdomain.c attach.c threads.c: Use the new helper.
6231 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6233         * metadata-verify.c: Verify valid table bits.
6235 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6237         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6239         * metadata-verify.c: Add initial table schema verification.
6241 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6243         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6244         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6245         #488383.
6247         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6249         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6251 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6253         * security-core-clr.c: Add/update documentation
6255 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6257         * marshal.c (emit_marshal_object): Generate code to throw an exception
6258         instead of throwing it. Fixes #488670.
6260 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6262         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6263         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6264         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6265         and add a call to mono_security_core_clr_ensure_delegate_creation
6266         to do the extra checks required by CoreCLR.
6267         * security-core-clr.c|h: Add function to check delegate creation,
6268         both in the binding and accessibility, under CoreCLR.
6270 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6272         * reflection.c (mono_reflection_create_dynamic_method): when 
6273         coreclr is enabled make sure that every resolved object are
6274         checked (e.g. field and method access).
6275         * security-core-clr.c|h: Add function to check objects resolved
6276         when a dynamic method is created.
6278 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6280         * metadata-verify.c: Cache directory rva translations.
6282         * metadata-verify.c: Add cli-header and streams verification.
6284 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6286         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6287         the wrong offset (8 instead of 6).
6289 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6291         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6292         methods, return the native function address itself. Fixes
6293         #487758.
6295 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6297         * console-io.c: some of the values for control characters might not be
6298         present.
6300 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6302         * exception.c|h: Add helpers to create [Field|Method]AccessException
6303         * icall.c: Add required coreclr check calls for field reflection.
6304         Move the existing (method) check logic into security-core-clr.c
6305         * security-core-clr.c: Add functions to check if the access of a
6306         field or method is allowed when reflecting under coreclr. This is
6307         mostly done using a stack walk to find the "real" caller: i.e. the
6308         code that is calling the reflection
6310 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6312         * gc-internal.h: Change location of gc_wrapper.h
6314 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6316         * class.c: Simplification to coreclr checks for overrides that
6317         makes it easier to set breakpoints.
6319 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6321         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6322         mono_security_core_clr_method_level): Avoid potential 
6323         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6324         user/application code) and make it easier to set breakpoints
6326 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6328         * metadata-verify.c: Reject cli header tables that mono don't handle.
6330 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6332         * pedump.c: Fix CLI header dumping.
6334 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6336         * metadata-verify.c: More CLI header verification.
6338 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6340         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6342 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6344         * metadata-verify.c: Initial verification of the CLI header.
6346 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6348         * metadata-verify.c (verify_resources_table): Fix verification of zero
6349         sized resource section and id entries count.
6351 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6353         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6355 2009-03-17  Jb Evain  <jbevain@novell.com>
6357         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6359 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6361         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6362         (mono_gc_make_descr_for_array): Ditto.
6364 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6366         * verify.c (mono_verifier_is_class_full_trust): Add support for
6367         CoreCLR security mode where trusted assemblies are defined as
6368         "platform code".
6370 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6372         * metadata-verify.c: Add minimal PECOFF resource verification.
6374 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6376         * metadata-verify.c: Be less restrictive with some coff fields.
6378 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6380         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6381         params as boxed values on stack. Fixes #485706.
6383 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6385         * console-io.c: the termios values may vary in different flavors of unix.
6387 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6389         * console-io.[ch]: return the entire set of control characters when
6390         initializing the terminal.
6391         * appdomain.c: bump corlib version.
6393 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6395         * mono-perfcounters.c: added support for in-process custom
6396         performance counters.
6398 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6400         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6402 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6404         * metadata-verify.c: Verify the data pointed by the import table. 
6406 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6408         * metadata-verify.c (load_data_directories): Store data
6409         directory contents.
6411         * metadata-verify.c: Verify the import table. 
6413 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6415         * metadata-verify.c: Verify data directories.
6417 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6419         * metadata-verify.c: Check section header flags.
6421 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6423         * appdomain.c: if the assembly name is a shadow-copied file, return
6424         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6425         in mono_make_shadow_copy.
6426         * icall.c: if the assembly name is a shadow-copied file, replace it
6427         with the original assembly path.
6429         Bug #484244 fixed. NUnit tests for corlib can be run without
6430         --noshadow now.
6432 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6434         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6435         entries when the table is reallocated.
6437         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6438         mono_gc_alloc_fixed () since it contains GC refs.
6440 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6442         * reflection.c (ensure_complete_type): New helper function to call
6443         type resolve handlers for unfinished dynamic types.
6444         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6446 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6448         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6449         #483247.
6451 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6453         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6455 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6457         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6458         between GCHandles of type WeakTrackResurrection and the objects they
6459         point to.
6461         * gc.c: Partly implement the sematics of GCHandles of type 
6462         WeakTrackResurrection: these handles should only be cleared after the
6463         finalizer of the object they are pointing to has ran.
6465 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6467         * icall.c: Partially revert r126631 because using the jump
6468         trampolines for generic shared methods makes it superfluous.
6470 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6472         * threads.c (handle_store): Create the 'threads' hash table with the proper
6473         MONO_HASH_VALUE_GC type.
6475 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6477         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6478         FIRST_GC_TRACKED.
6480         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6481         and LAST_GC_TRACKED as a GC root.
6483         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6485         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6486         the static data even if it consists of 1 reference.
6488         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6489         if there is a GC descriptor.
6491         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6492         instead of through the GC since they contain no object references.
6494 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6496         * generic-sharing.c (instantiate_other_info): Always return a jump
6497         trampoline for method code.
6499 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6501         * culture-info-tables.h: generated to include the en-tt culture.
6503 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6505         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6506         capture the thread context.
6508         * object.c (mono_async_result_new): Cache the invoke wrappers to
6509         ExecutionContext::Capture.
6511 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6513         * marshal.h: Add a prototype for what mono_compile_method returns
6514         for invoke wrappers.
6516         * gc.c: Use the new prototype declaration.
6518 2009-03-04  Geoff Norton  <gnorton@novell.com>
6520         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6521         * gc-internal.h:
6522         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6524 2009-03-04  Martin Baulig  <martin@ximian.com>
6526         * mono-debug.h
6527         (mono_debugger_runtime_invoke): Removed.
6529         * mono-debug-debugger.c
6530         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6532 2009-03-02  Martin Baulig  <martin@ximian.com>
6534         * mono-debug.h
6535         (mono_debugger_unhandled_exception): Removed.
6536         (mono_debugger_handle_exception): Removed.
6537         (mono_debugger_throw_exception): Removed.
6539         * mono-debug.c
6540         (mono_debug_debugger_version): Bump to 5.
6542         * mono-debug-debugger.c: Moved the exception handling code to
6543         ../mini/debug-mini.c
6545 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6547         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6548         finalize_objects_hash.
6550         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6551         
6552         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6553         field.
6555         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6556         cache.
6558         * image.c (mono_image_close): Free it.
6559         
6560         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6561         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6562         on the this argument.
6564         * gc.c (run_finalize): Optimize the calling of the finalizers.
6566 2009-03-03  Martin Baulig  <martin@ximian.com>
6568         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6569         of the `MonoGenericInst' changes.
6571 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6573         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6574         mono_array_class_get_cached to reduce locking contention. Extract
6575         a domain var.
6577         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6578         intermediary managed arrays. Use caching version of mono_array_new
6579         to allocate the result array.
6581         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6583         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6585         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6586         to reduce locking contention.
6588 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6589                 
6590         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6591         thunk builder code for the non-interface case.
6593 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6595         * object.c (get_generic_virtual_entries): New helper function to collect
6596         the virtual generic method instances which need to be added to an IMT
6597         thunk.
6598         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6599         Instead of creating a new IMT thunk, reset the vtable slot to the
6600         trampoline, the thunk will be created the next time the trampoline is called.
6601         (build_imt_slots): Add support for virtual generic methods in interfaces by
6602         adding to the IMT thunk all the methods registered using 
6603         mono_method_add_generic_virtual_invocation ().
6605         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6606         (struct _MonoIMTCheckItem): Ditto.
6608         * object.c (mono_method_add_generic_virtual_invocation): Take a
6609         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6610         the IMT thunk to include all items.
6611         
6612         * object.c (mono_class_create_runtime_vtable): Add a missing
6613         mono_loader_unlock ().
6615 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6617         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6619         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6621 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6623         * object-internals.h: Rename _MonoReflectionEvent to
6624         MonoReflectionMonoEvent so it reflects the right managed type.
6625         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6627         * icall.c:
6628         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6629         type.
6631 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6633         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6634         intermediary managed arrays. Use caching version of mono_array_new
6635         to allocate the result array.
6637 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6639         * reflection.c: Use cached version of mono_array_new alongside
6640         the mono_reflection_get_custom_attrs_by_type call path.
6642 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6644         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6645         intermediary managed arrays. Use caching version of mono_array_new
6646         to allocate the result array.
6648         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6650 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6652         * icall.c: Add small implementation of a growable stack bound array.
6654         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6656         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6657         intermediary managed arrays. Use caching version of mono_array_new
6658         to allocate the result array.
6660 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6662         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6663         helps Enum::CompareTo to be implemented without reboxing all enums
6664         to their underlying type.
6665 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6667         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6668         since it acquires a global lock leading to scalability problems.
6670         * profiler.c: Make the stat profiler work with multiple appdomains, this
6671         currently only works when no appdomains are unloaded.
6673 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6675         * appdomain.c: make the check to avoid copying when the assembly is
6676         already shadow copied actually work.
6678 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6680         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6682         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6683         changes to the managed side.
6685 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6687         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6688         classes + a separate lock for it, as it is used frequently at runtime, not
6689         just during metadata loading/JIT compilation.
6691         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6692         for szarrays.
6693         
6694         * object-internals.h (mono_class_from_name_cached): New macro to cache
6695         the results of the lookup locally without having to declare a static
6696         variable to hold it.
6697         (mono_class_get_field_from_name_cached): Ditto.
6698         (mono_array_class_get_cached): Ditto.
6700         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6701         the new macros.
6702         
6703         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6704         slower search in metadata.
6706         * pedump.c: Fix a warning.
6708 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6710         * reflection.c (encode_locals): Add checks for user types.
6711         (method_encode_clauses): Ditto.
6712         (method_encode_code): Ditto.
6713         (mono_image_create_token): Ditto.
6715         * object-internals.h: Change the type of more fields from MonoReflectionType*
6716         to MonoObject*.
6718 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6720         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6721         the a thread does not suspend within 100ms.
6723         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6724         in addition to StopRequested as well.
6726         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6728         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6729         search the method_hash before inserting a new entry, to avoid crashes when
6730         the same method is inserted multiple times, causing the old 
6731         MonoDebugMethodInfo structure to be freed by the value dtor function.
6733 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6735         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6736         SO_EXLUSIVEADDRUSE where available.
6738 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6740         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6741         runtime invoke wrappers, this time it is string ctor wrappers, which
6742         pass a dummy string as 'this' instead of their obj argument. Fixes
6743         #478473.
6745 2009-02-21  Jb Evain  <jbevain@novell.com>
6747         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6748         only get create_culture once.
6750 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6752         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6753         check before the locking.
6754         
6755         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6756         (mono_reflection_create_runtime_class): Ditto.
6757         (mono_reflection_sighelper_get_signature_local): Ditto.
6758         (mono_reflection_sighelper_get_signature_field): Ditto.
6760         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
6761         is a System.MonoType object or similar.
6762         (monotype_cast): New helper function to cast a MonoObject to a 
6763         MonoReflectionType object.
6765         * object-internals.h: Change MonoReflectionType* members in structures to
6766         MonoObject* members to force the usage of the monotype_cast () function.
6768         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
6769         structures/arrays. This causes us to assert instead of crashing when 
6770         instances of user defined subclasses of System.Type are encountered.
6772 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6774         * cil-coff.h:
6775         * icall-def.h:
6776         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
6777         win32 resource loaded from a PE file.
6779         * image.c: fix mono_image_lookup_resource.
6781 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6783         * icall-def.h:
6784         * threads-types.h:
6785         * threads.c: added internal call for WaitHandle.SignalAndWait.
6787 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
6789         * cominterop.c : Adding cominterop_type_from_handle and 
6790           registering it as an icall.  Replacing all references
6791           to type_from_handle.
6793         Code is contributed under MIT/X11 license.
6795 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6797         * Makefile.am: Add lock-tracer.h and lock-trace.c.
6799         * appdomain.c: Call the tracer init function.
6801         * domain-internals.h: Enable the tracer for the domain locks.
6803         * image.c: Enable the tracer for image locks.
6805         * loader.c: Enable the trace for the loader lock.
6807         * lock-tracer.h:
6808         * lock-tracer.c: Initial implementation of the lock trace utility.
6809         The tracer requires a compile time define to be enabled and a env var
6810         to be enabled at runtime.
6812 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6814         * domain.c (mono_domain_code_foreach): Improve documentation.
6816 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6818         * appdomain.c:
6819         * generic-sharing.c:
6820         * object.c:
6821         * reflection.c:  Adjust locking order to the new semantics where the loader lock
6822         comes first.
6824 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6826         * domain.c: Add mono_domain_code_* functions that perform locking
6827         around the domain codeman.
6829         * domain-internals.h: Export those functions.
6831         * object.c: Use new functions instead of acquiring the domain lock.
6833 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
6835         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
6836         delegate. Fixes #477396.
6838 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6840         * reflection.c (create_custom_attr): Get rid of alloca.
6842 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
6844         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
6845           Adding exception handling for all CCW calls.
6847         Code is contributed under MIT/X11 license.
6849 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6851         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
6853         * marshal.c (emit_marshal_boolean): Add null checks to the new 
6854         native->managed marshalling code. Fixes #476247.
6856 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6858         * class.c (mono_class_get_vtable_entry): Move the addition of
6859         static rgctx invoke wrappers for vtable methods here, this simplifies
6860         a lot of code and causes fewer rgctx wrappers to be created.
6862         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
6863         name of the statistics to begin with an uppercase.
6865 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6867         * reflection.c: Revert previous change as it breaks the build.
6868         
6869 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6871         * verify.c: Properly handle SZARRAY element type.
6873         Fixes #474271.
6875 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6877         * reflection.c (mono_image_create_method_token): Correctly encode
6878         MethodDef MemberRefParent token.
6880         Fixes #472845.
6882 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6884         * image.c (mono_image_close): Delete the critical section before
6885         freeing the memory holding it.
6887 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6889         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
6890         Fixes #476257.
6892 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6894         * pedump.c (main): Call mono_marshal_init so pedump
6895         doesn't crash.
6897 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6899         * loader.c (method_from_memberref): Properly fix #474271 and
6900         don't break the runtime bad.
6902 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6904         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
6905         (mono_domain_alloc0): Ditto.
6907 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6909         * loader.c (method_from_memberref): Don't abort if the array
6910         method is not found. A regular loader failure is more informative
6911         and correct.
6913         Fixes #474271.
6915 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6917         *loader.c: Guard MonoImage::method_cache/methodref_cache
6918         using the image lock instead of the loader lock.
6920         * metadata.h: Add comments about which fields are protected by
6921         the image lock.
6923 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6925         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
6927         * generic-sharing.c (mono_method_construct_object_context): Remove the
6928         wrapper_type == NONE assert, it is not needed.
6930 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6932         * reflection.c (clear_cached_object): New helper function.
6933         (mono_method_clear_object): New function to clear the cached reflection
6934         objects for a dynamic method.
6936         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
6937         Partly fixes # 463323.
6938         
6939 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6941         * class.c:
6942         * loader.c:
6943         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
6945 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6947         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
6948         take the image lock instead of the loader lock.
6950         * metadata-internals.h: Export new functions.
6952 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6954         * domain.c (app_config_parse): Remove another use of stat that is
6955         not necessary as g_file_get_contents already does the presence
6956         check. 
6958 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6960         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
6962         * marshal.c: Move the bstr handling code to cominterop.c.
6964         * marshal.c: Remove some COM interop code missed previously.
6966 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6968         More Paolo patches from the Wii port:
6969         
6970         * security.c: Remove ves_icall_System_Environment_get_UserName
6971         from here.
6973         * icall.c: And put ves_icall_System_Environment_get_UserName
6974         here. 
6976         * appdomain.c (mono_set_private_bin_path_from_config): Remove
6977         redundant call to stat that was only used to test for the file
6978         existence.   Patch from Paolo.
6980         * gc.c (run_finalize): If COM is disabled, do not link in
6981         mono_marshal_free_ccw.
6983         * generic-sharing.c: Use alloca.h here as well.
6985 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
6987         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
6989 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6991         * cominterop.c cominterop.h: New files.
6993         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
6994         function/typedefs which are needed by cominterop.c global.
6996 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6998         * generic-sharing.c: Don't take the loader lock to guard image
6999         mempool allocs.
7001 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7003         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7004         called without the loader lock which is required to guard MonoImage:tokens.
7006 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7008         * class.c:
7009         * metadata.c:
7010         * method-builder.c:
7011         * marshal.c:
7012         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7014 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7016         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7017         Rework the code to use regular mono_image_alloc/0.
7019         * loader.c: Rework the code to use regular mono_image_alloc/0.
7021         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7023 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7025         * object-internals.h : Fixing a typo in the 
7026           MonoReflectionComVisibleAttribute struct.
7028         * marshal.c (cominterop_com_visible): Check the implemented 
7029           interfaces for ComImport.
7031         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7032           assume that bools should be treated as VARIANTBOOLs.
7034         * marshal.c (emit_marshal_boolean): Adding cases for 
7035           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7037         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7038           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7040         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7041           should be treated as VARIANTBOOLs.    
7043         Code is contributed under MIT/X11 license.
7045 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7047         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7048         allocation with the image lock.
7050 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7052         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7053         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7055         * object.c: Add mono_string_to_utf8_image.
7057         * object-internals.h: Export mono_string_to_utf8_image.
7059         * reflection.c: Rework all explicit references to the the image mempool to go thought
7060         the mono_image_alloc set of functions.
7062 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7064         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7065         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7066         and generics-sharing.c.
7068         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7069         as first argument. Note that this function remains broken as it doesn't perform locking around the
7070         mempool allocation.
7072         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7074         * image.c: Add g_slist_append_image.
7076         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7077         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7079         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7080         Fix all related code to do the same.
7082         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7084         * metadata-internals.h: Fix the signatures.
7086 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7088         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7089         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7090         and similar to work using MonoImage.
7092         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7093         MonoMemPool.
7095         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7097         * class.c (mono_metadata_signature_deep_dup): Same.
7099         * class.c (inflate_generic_type): Same.
7101         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7103         * metadata.c (mono_metadata_signature_dup_full): Same.
7105         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7106         mono_metadata_signature_dup_full.
7108         * metadata.c (mono_metadata_type_dup): Same.
7110         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7112         * reflection.c: Same.
7114         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7116         * metadata-internals.h: Fix the signatures.
7118         * class-internals.h: Same.
7120 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7122         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7123         and use mono_image_alloc set of functions instead. 
7125         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7126         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7127         of a MonoMemPool.
7129         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7131         * class.c (g_list_prepend_mempool): Removed.
7133         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7135         * image.c: Add g_list_prepend_image.
7137         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7139         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7142 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7144         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7145         mono_image_unlock.
7147         * image.c (mono_image_init): Init the lock field.
7149         * image.c (mono_image_init): Cleanup the lock field.
7151         * image.c: Add mono_image_(un)lock functions.
7153 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7155         * class.c, class-internals.h: mono_method_get_context_general()
7156         combines the functionality of mono_method_get_context() and
7157         mini_method_get_context().
7159         * generic-sharing.c, domain-internals.h:
7160         mono_method_construct_object_context() and
7161         mono_domain_lookup_shared_generic() moved from mini.
7163         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7164         method doesn't have the correct instantiation because it's shared
7165         generic code.  Fixes #473999.
7167 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7169         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7171         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7172         
7173 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7175         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7177         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7179         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7180         and recheck the cache for dups after it.
7182         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7184         Fixes one of the deadlocks found in #473150.
7186 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7188         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7189           For Win32, add additional break conditions for accept.
7191         Code is contributed under MIT/X11 license.
7193 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7195         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7196         lazily initialize the native wrapper cache.
7197         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7198         cache, since they are different from the normal wrappers.
7200         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7202         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7203         AOT compiled native wrappers.
7205 2009-02-09  Geoff Norton  <gnorton@novell.com>
7207         * appdomain.h:
7208         * security-core-clr.c: Allow enabling core-clr from the embedding
7209         API.
7211 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7213         * socket-io.c: when requesting all the local ips, if there are no
7214         interfaces up and running, MS returns 127.0.0.1.
7216 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7218         * mono-perfcounters-def.h: processor time is an inverse time.
7219         Fixes bug #468625.
7221 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7223         * socket-io.c: an empty host name returns the list of local IPs.
7224         Fixes bug #386637 part 1/2.
7226 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7228         * verify.c (mono_class_interface_implements_interface): Call
7229         mono_class_setup_interfaces ().
7230         (merge_stacks): Ditto.
7232 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7234         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7235         klass->interfaces.
7236         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7237         (mono_generic_class_get_class): Ditto.
7239 2009-02-06  U-QUACK\miguel  <miguel@quack>
7241         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7242         they live in security.c
7244         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7245         another bit from Paolo's code.
7247 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7249         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7250         methods which will be discarded by add_imt_builder_entry ().
7252         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7253         need to be boxed.
7255         * loader.c: Add a statistics for the size of the memberref signature cache.
7256         
7257         * loader.c (find_cached_memberref_sig): New helper function.
7258         (cache_memberref_sig): Ditto.
7260         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7261         they will be parsed again for every generic instantiation, leading to unbounded
7262         memory growth.
7264 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7266         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7267         parameters of generic methods.
7269         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7270         after the original method is copied to the inflated method.
7271         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7273         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7274         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7276         * class.c metadata.c: Update after the changes above.
7278 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7280         * metadata-verify.c: Simplified error handling and added
7281         section table validation.
7283 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7285         * class-internals.h (MonoClassExt): New structure containing rarely used
7286         fields of MonoClass.
7287         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7288         through a new 'ext' field.
7290         * class.c (mono_class_alloc_ext): New helper function to allocate 
7291         class->ext.
7293         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7295 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7297         * object.c (mono_object_get_virtual_method): Properly inflate
7298         generic methods.  Fixes #472692.
7300 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7302         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7303         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7304         for the parent type, the created type must be ready to be used on a generic
7305         instantiation.
7306         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7307         we won't have duplicated entries in generic_inst_cache.
7309         Fixes #469553.
7311 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7313         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7314         replace with plain BSD per the comments on the bug MONO77637.
7316 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7318         * class.c (mono_class_get_generic_class): New accessor function.
7319         (mono_class_get_generic_container): Ditto.
7321         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7322         fields, similar to the ones in MonoMethod.
7324         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7325         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7327         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7328         
7329         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7330         the same information as element_class->byval_arg.
7332         * class.c reflection.c: Remove references to class->byval_arg.
7334         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7335         klass->enum_basetype directly.
7337         * verify.c metadata.c object.c icall.c reflection.c: Use 
7338         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7339         directly.
7341 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7343         * icall-def.h: Remove internal calls for sockets when
7344         DISABLE_SOCKET is defined, file system writing features when the
7345         OS only support reading and not writing data and Policy support if
7346         the Policy is disabled.
7347         
7348         * image.c (do_mono_image_open): Apply Paolo's patches for using
7349         mono_file_map_ APIs here.
7351         * assembly.c: Add support for platforms to avoid prefix
7352         auto-detection. 
7354 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7356         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7357         warning.
7359         * class.c (mono_class_inflate_generic_class): New helper function.
7361         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7362         statistics for inflated methods/classes.
7364         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7366         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7367         the call is made from Delegate.CreateDelegate () for the invoke method of
7368         a delegate.
7370         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7372         * metadata.c (mono_metadata_signature_size): New helper function.
7374         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7375         generic instances.
7377         * metadata.c (inflated_method_in_image): Avoid calling 
7378         mono_method_signature () if the method does not already have a signature.
7380 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7382         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7383         valuetype is compatible with target type, check by inheritance as a
7384         VT is not really compatible with System.ValueType, for example.
7386         * verify.c (do_invoke_method): Improve error message.
7388         * verify.c (do_box_value): If boxing a nullable, use the type argument
7389         on stack instead.
7391         * verify.c (do_newobj): Improve error message.  
7393         Fixes #469549.
7395 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7397         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7399 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7401         * generic-sharing.c: Don't hold domain lock when calling
7402         instantiate_other_info().  Fixes #471958.
7404         * domain-internals.h, loader.c: Describe locking policy of domain
7405         lock vs loader lock.
7407 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7409         * verify.c (mono_delegate_signature_equal): Make it possible to check
7410         first-arg-bound delegates to static method.
7412         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7413         static methods with the first arg bound.
7415         Fixes #469529.
7417 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7419         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7420         errors.
7422         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7423         under strict mode. Any type, when boxed can be seen as a reference type.
7425         Fixes #469528.
7427 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7429         * object.h: The lower bound of an array is a signed integer value.
7430         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7431         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7433         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7434         calculate the upper bound.
7435         
7436         Fixes #471252.
7438 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7440         From Paolo's work, refactored, cleared up:
7441         
7442         * threadpool.c, icall.c: ifdef code that requires a working socket
7443         stack.
7445         * metadata.c (mono_metadata_field_info): Do not attempt to return
7446         a value from a function declared as void.
7448         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7449         from the console stack.
7451         * assembly.c: use strrchr instead of rindex.
7453         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7454         alloca.h on systems that have it.
7456         * environment.c: Avoid code that uses stuff from
7457         HAVE_SYS_UTSNAME_H
7458         
7459         * appdomain.c: Include sys/time.h.
7461         * console-io.c: include sys/ioctl.h if it is available.
7463 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7465         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7467         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7468         the method builder.
7470         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7471         after it was created and cached, as the later is not thread safe.
7472         
7473 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7475         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7476         called while the debugging module is not initialized. Fixes #471669.
7478 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7480         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7482         Fixes #471255.
7484 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7486         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7487         loader lock is not taken while the templates lock is held.  Fixes
7488         #471089.
7490 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7492         * metadata.c (type_in_image): Added a check to fix a monodis
7493         crash.
7495 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7497         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7498         nullable arguments.
7500         * object.c (mono_runtime_invoke_array): Ditto.
7501         
7502         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7503         freeing wrappers of dynamic methods.
7505         * loader.c (mono_free_method): Call it. Fixes #463323.
7506         
7507         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7508         methods taking vtype/byref arguments, to fix yet another bug caused by
7509         the sharing of runtime invoke wrappers. Partly fixes #471259.
7511 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7513         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7514         <first file in file table>:1 when the IL offset does not have an associated
7515         line number.
7517 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7519         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7520         variable info for a method.
7522         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7523         
7524 2009-01-30  Jb Evain  <jbevain@novell.com>
7526         * pedump.c: reuse code from monodis to make sure pedump honors
7527         MONO_PATH, which is needed to verify net_2_1 assemblies.
7529 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7531         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7532         there is no line number info.
7534 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7536         Avoid some MonoType allocations
7537         * reflection.c (mono_reflection_initialize_generic_parameter):
7538         Reuse MonoType from param->pklass rather than allocating one.
7539         (mono_dynamic_image_free): Update to changes.
7541 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7543         Rearrange some code to improve consistency
7544         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7545         (mono_reflection_initialize_generic_parameter): ... here.
7547 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7549         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7550         with type constraints as an experiment.
7552         * boehm-gc.c (on_gc_notification): Update mono_stats.
7554 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7556         Avoid some allocations
7557         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7558         pointer to tail array to avoid extra allocation.
7559         * metadata.c (free_generic_inst): Update to changes.
7560         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7561         on-stack struct.
7563 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7565         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7566         return TRUE if the two type objects are the same.
7568 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7570         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7571         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7572         klass->min_align, since klass->min_align contains the managed alignment,
7573         while the native alignment can be different, like for longs on x86.
7574         Fixes #469135.
7576         * class-internals.h (MonoMarshalType): Add a min_align field.
7578 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7580         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7581         the 1.0 format.
7583 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7585         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7586         some comments about the usage of the used_regs field.
7588         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7589         Fixes #469217.
7591 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7593         * appdomain.c: return NULL instead of throwing FileNotFoundException
7594         when LoadAssembly() fails.
7596 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7598         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7599         image if the owner is NULL.  Fixes the AOT failures.
7601 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7603         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7604         MonoGenericParam structure using memset so the image field is initialized
7605         as well.
7607 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7609         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7610         a plain store.
7612 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7614         * class.c (mono_class_setup_vtable_general): In the generic instance
7615         optimization, set method->slot for abstract virtual methods. Fixes part of
7616         #467834.
7618 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7620         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7621         which signals that the unloading has started but all appdomain services must
7622         remain operational.
7624         * appdomain.c (mono_domain_unload): The initial state for unloading now
7625         is unloading_start and we switch to unloading after the managed call to
7626         AppDomain::DomainUnload has finished.
7628         The new unloading state has to be created because managed code in the
7629         DomainUnload event can depend on things like the threadpool still working.
7630         The domain must remain fully functional while the event executes.
7632         This shown as an issue due to Process::WaitForExit, which waits for
7633         async reads of stdout and stderr to complete. Since those are processed
7634         in the threadpool the code deadlocks because the DomainUnload callback 
7635         waits for the async read finished event, which should have been set by a
7636         threadpool job but has been discarded due to the domain been in unload
7637         state.
7639 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7641         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7642         image must match.
7644 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7646         * reflection.c (resolve_object): For fields, inflate the class and
7647         then get the field in the inflated class.
7649 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7651         * object-internals.h (struct _MonoException): Added a comment
7652         explaining the new use of trace_ips.
7654 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7656         * generic-sharing.c (inflate_other_data): Inflate array methods
7657         correctly.
7659         * loader.c, class-internals.h: Rename search_in_array_class() to
7660         mono_method_search_in_array_class() and make it non-static.
7662 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7664         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7665         Hopefully fixes #458168.
7667 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7669         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7670         as it is performed elsewhere.
7672         Code is contributed under MIT/X11 license
7674 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7676         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7677         requests queued.
7678         * object.c (mono_raise_exception): Increment the exceptions total
7679         counter when an exception is thrown.
7680         * class-internals.h: Add a location for storing the total number of
7681         asp.net requests served.
7682         * mono-perfcounters.c: Implement update support for asp.net counters
7683         from the class libraries. Implement read support for asp.net counters
7684         and exceptions total counter.
7686 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7688         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7689         accessing klass->methods. Fixes #467385.
7691 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7693         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7694         for byval arguments without an [Out] attribute. Fixes #467212.
7696         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7697         Fix compilation under android.
7698         
7699         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7700         processed, scan them directly after they are copied, to achieve better locality
7701         and cache usage.
7703         * socket-io.c: Applied patch from Koushik Dutta
7704         (koush@koushikdutta.com). Disable IPV6 when running under android.
7706 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7708         * icall.c (ves_icall_InternalExecute): Add write barriers.
7710         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7711         the GC code.
7713         * sgen-gc.c: Implement write barriers in IL code.
7715 2009-01-17  Geoff Norton  <gnorton@novell.com>
7717         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7719 2009-01-17  Geoff Norton  <gnorton@novell.com>
7721         * image.c: When unloading the image->references table, there can be gaps
7722         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7723         when unloading an appdomain.
7725 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7727         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7728         speed up ptr-in-nursery checks.
7730         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7731         threads_lock () to prevent deadlocks.
7733         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7734         does not need to be scanned during minor collections, since writes to it
7735         must use write barriers.
7737 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7739         * metadata-verify.c: Add pe nt header verification.
7740         
7741 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7743         * gc.c: Fix a few warnings when using SGEN.
7745 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7747         * metadata-verify.c: Add pe optional header verification.
7749 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7751         * sgen-gc.c: Add support for user defined marker functions, used by
7752         MonoGHashTable to avoid registering a GC root for every hash node.
7754 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7756         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
7757         non-pinned roots into separate hashes to avoid having to traverse them
7758         in functions which are only interested in one kind.
7760 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7762         * metadata-verify.c: Add pe header machine field verification.
7763         
7764 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7766         * metadata-verify.c: Add pe header size verification.
7768 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7770         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
7771         using the GC, they don't contain references.
7773         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
7775 2009-01-13  Geoff Norton  <gnorton@novell.com>
7777         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
7778         AppDomains created on the native side can be cleaned up on the native side.
7780 2009-01-13  Geoff Norton  <gnorton@novell.com>
7782         * appdomain.c: Ensure that we call mono_context_init for the embedding api
7783         as well as the managed api.
7785 2009-01-13  Geoff Norton  <gnorton@novell.com>
7787         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
7788         with a MonoAppDomain initialized against it.
7790 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7792         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
7793         
7794         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
7796         * marshal.c: Avoid setting the exception clauses after a method has been entered 
7797         into the wrapper caches. Fixes #465700.
7799         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
7800         method builder.
7801         (mono_mb_create_method): Set the clauses from the method builder.
7803 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7805         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
7806         Patch from Makoto Kishimoto.
7808 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7810         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
7811         encoding them as ROOT_DESC_COMPLEX.
7812         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
7814 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7816         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
7817         no longer point to the nursery.
7819         * sgen-gc.c: Add a few comments/FIXMEs.
7820         
7821         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
7823         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
7824         initialization of the various _method variables thread safe. Fixes
7825         #465377.
7827 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7829         * domain.c, domain-internals.h: Remove the shared_generics_hash
7830         and its lookup functions.
7832 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
7834         * socket-io.c:  Fixing the MSVC build. 
7836         Code is contributed under MIT/X11 license.
7838 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
7840         * metadata-verify.c: Add pe header watermark verification.
7842 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7844         * metadata-verify.c: Add lfanew verification.
7846 2009-01-12  Jb Evain  <jbevain@novell.com>
7848         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
7849         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
7851 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7853         * socket-io.c: Fix the build.
7855         * environment.c: Fix an #ifdef.
7857 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7859         * threadpool.c (async_invoke_thread): Handle the wait function returning
7860         WAIT_IO_COMPLETION as well.
7861         (async_invoke_io_thread): Ditto.
7863 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
7865         * threads.c: Fixing the Windows build.
7867         Code is contributed under MIT/X11 license.
7869 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7871         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
7872         interrupt a wait.
7873         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
7874         the thread to wait again.
7876 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7878         * metadata-verify.c: Initial skeleton of the metadata verifier.
7880         * pedump.c: Add support for the metadata verifier.
7882         * verify-internal.h: Export the whole assembly metadata verifier function.
7884 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7886         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
7888 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7890         * Makefile.am: Upgrade dtrace-prelink.sh location.
7892 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7894         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
7895         well. Otherwise the shutdown deadlock that happens on unix will can happen
7896         as well.
7897         If the main thread code finishes too fast it's possible that the finalizer
7898         thread won't have executed yet, won't record itself as the finalizer thread
7899         and the shutdown sequence will wait on it forever.
7901 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7903         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
7904         with MSVC.
7906 2009-01-08  Miguel de Icaza  <miguel@novell.com>
7908         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7909         Robert Jordan for pointing this out.
7911 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7913         * icall.c
7914         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7915         ves_icall_System_IO_DriveInfo_GetDriveType.
7917 2009-01-07  Miguel de Icaza  <miguel@novell.com>
7919         * icall.c: Wrap calls to mono_strtod in CriticalSection
7920         invocations when using eglib, to work around #464316.
7922 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7924         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
7925         return value of GetCurrentDirectory to never access unitialized memory.
7927 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7929         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
7930         return value of GetCurrentDirectory and expand the buffer if needed.
7932         Fixes #459094.
7934 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
7936         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
7937           Adding a call to mono_init_com_types.
7939         Code is contributed under MIT/X11 license.
7941 2009-01-07  Geoff Norton  <gnorton@novell.com>
7943         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
7944         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
7945         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
7946         be the value of the ip buffer.
7948 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7950         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
7951         interfaces_packed here.
7953         Fixes part of #463294.
7955 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7957         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
7959         Fixes part of #463294.
7961 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7963         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
7964         is a boxed complex as well.
7966         Fixes part of #463294.
7968 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7970         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
7971         control if a methodspec should be created for the generic method definition from external assemblies.
7972         Caching of methodspec is done using the handleref hash table.
7974         Fixes #462592.
7976 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
7978         * loader.c (find_method): When searching the interfaces of a class
7979         check the transitive closure of implemented interfaces.
7981         Fixes #463303.
7983 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7985         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
7986         
7987 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7989         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
7990         interfaces calculation to fill_valuetype_array_derived_types.
7992         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
7993         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
7994         for example.
7996         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
7997         interfaces for valuetypes if needed.    
7999         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8000         for their basetype as well. Types are array expanded if rank is > 0.
8002         Fixes #400716.
8004 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8006         * socket-io.h : Changing the signature of
8007           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8008           the blocking state.
8010         * icall-def.h :  Changing the signature of
8011           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8013         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8014           For Windows only.  Avoid blocking when calling accept by
8015           querying for a connection via select.  The loop also queries
8016           the thread state every 1000 micro seconds for the thread
8017           stop state.  This will avoid the process hanging on shutdown
8018           when using a TcpChannel that is never connected to.
8020         Code is contributed under MIT/X11 license.
8022 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8024         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8026 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8028         * class.c (get_implicit_generic_array_interfaces): Extract common
8029         code to a helper function making it a lot easier on the eyes.
8031 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8033         * class.c (get_implicit_generic_array_interfaces): If the internal
8034         enumerator is an interface inflate System.Object instead of itself.
8036         Fixes #461261.
8038 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8040         * object.c (mono_runtime_invoke_array): Don't assert with
8041         byref nullable types.
8043         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8044         byref nullables we unbox the object and store it on the
8045         stack. 
8046         We can't use the boxed object since it is the T of Nullable<T>
8047         and the boxed representation of a nullable it's underlying type
8048         or null.
8049         We could cheat and create a boxed nullable and use the same
8050         machinery of other byref VTs but this feels like a hack and
8051         using the stack has the bonus of reducing heap pressure.
8053         Fixes #461941.
8055 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8057         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8058         return value.
8060         Fixes #461867.
8062 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8064         * icall-def.h : Adding an internal call definition for 
8065           System.Environment.internalBroadcastSettingChange.
8067         * icall.c : Adding a Windows only implementation to broadcast a 
8068           WM_SETTINGCHANGE when an environment variable has changed.
8070         Code is contributed under MIT/X11 license.
8072 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8074         * class.c, class-internals.h: Made
8075         mono_class_has_parent_and_ignore_generics() non-static.
8077 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8079         * image.c: deal with the mmap failing when loading an image.
8081 2008-12-17  Geoff Norton  <gnorton@novell.com>
8083         * threadpool.c: Ensure that the io_queue_lock is initialized
8084         in all circumstances, as we always attempt to cleanup against it.
8086 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8088         * icall.c (ves_icall_System_Environment_get_Platform): For
8089         compatibility reasons for existing client code we will keep
8090         returning 4 for a while.   
8092         For how long will depend on the documentation being updated, and
8093         for us to give client code a chance to be updated.
8095         This reverts the original decison on #433108 since we did not
8096         catch roughly 33 instances of the broken code in our own source
8097         code base, we did not catch failures on the buildbots, and QA did
8098         not bring this as a problem.
8100         Only today I found some customer's code breaking due to our own
8101         class libraries not being fully updated and tracked it down to
8102         this change.  I am reverting it because if we could not even get
8103         our story straight in our own code base, how can we hope that our
8104         end user code be fixed?
8106         As of this morning, our Wiki page that documents how to detect
8107         Unix had not been fixed.    
8109 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8111         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8113         * class.c (mono_class_get_fields): Handle loading errors.
8115 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8117         * 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.
8118         
8119 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8121         * mono-perfcounters.c: avoid warning.
8123 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8125         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8126         make sure all interfaces have MonoClass::interface_id set.
8128         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8129         method table is property set.
8131 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8133         * class.c: New function mono_class_setup_interface_id that setup
8134         MonoClass::interface_id if needed.
8136         * class-internals.h: Export new function.
8138 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8140         * class.c: Add code to sanity check the vtable after setup_vtable_general
8141         has done it's work.
8143 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8145         * icall.c: make Assembly.GetExecutingAssembly work properly when
8146         reflection is used to invoke the method.
8147         Bug #321781 fixed.
8149 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8151         * metadata/generic-sharing.c: Look for constraints in all type
8152         arguments, not just the first one.
8154 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8156         * appdomain.c: return the correct CodeBase for an Assembly instance
8157         that was loaded from the shadow-copy directories.
8158         Bug #458190 fixed.
8160 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8162         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8164         * sgen-gc.c (check_object): New debugging helper function.
8166         * object.c: Fix calls to mono_value_copy_array ().
8168 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8170         * class.c (mono_class_setup_fields): If working on an inflated class
8171         first check if the generic definition did init with success.
8173         Fixes #445361.
8175 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8177         pedump.c (main): Fix a warning.
8179 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8181         * object-internals.h : Adding a definition for 
8182           MonoReflectionComVisibleAttribute.
8184         * marshal.c (cominterop_com_visible) :  Method added to check the 
8185           ComVisible attribute of a class.
8187         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8188           cominterop_raise_hr_exception added to consolidate common code 
8189           to raise hr exceptions.
8191         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8192           if a managed class should support IDispatch.
8194         * marshal.c 
8195           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8196           Added additional checks for managed object when getting 
8197           an IDispatch interface.
8199         Code is contributed under MIT/X11 license.
8201 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8203         pedump.c (main): Handle mono_get_method () returning NULL. 
8205 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8207         * marshal.h: Fix a warning.
8209 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8211         * marshal.c : Adding cominterop_release_all_rcws to release all
8212           runtime callable wrappers held by the runtime.
8214         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8215           
8216         Code is contributed under MIT/X11 license.
8218 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8220         * metadata.c (mono_image_alloc_lock): New helper function.
8221         (mono_image_alloc0_lock): Ditto.
8223         * metadata.c: Use the alloc_lock () helper functions for allocating
8224         memory from the image mempool.
8226 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8228         * class.c (mono_class_from_generic_parameter): Document it's
8229         locking behavior. Fix double checked locking here, we stored in
8230         param->pklass a partially initialized MonoClass and no membar was used.
8232 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8234         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8235         (3) functions are present in the C library use them to do the
8236         job. If they are absent, make sure that the sum of int_part and
8237         dec_part is rounded before returning. This is necessary due to the
8238         division of dec_part by the power of 10 before the final addition
8239         is performed - if the result is not rounded in some cases it will
8240         yield invalid results.
8242 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8244         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8245         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8246         instruction instead of a pointer constant.
8248 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8250         * loader.c (mono_method_get_header): Do most of the work outside the
8251         loader lock, to avoid assembly load hook deadlocks.
8253         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8254         (mono_metadata_parse_type_full): Ditto.
8256 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8258         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8259         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8260         funtions. Finally, use a lock to produce well ordered output.
8262         The lock looks silly, as all calls to the corlib mempool should be guarded
8263         with the loader lock, but for some reason this fact doesn't help. 
8265         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8267 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8269         * socket-io.c: 64 bit big-endian fixes.
8271 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8273         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8274         targets that require strict compatibility between the types.
8276         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8277         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8278         Kill the strict argument and create a new one valuetype_must_be_boxed.
8280         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8281         state that all valuetypes must be boxed.
8283         Fixes #448560.
8285 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8287         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8288         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8290         Contributed under MIT/X11 license.
8292 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8294         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8295         the inflate_generic_type machinery should handle it.
8297         This avoids a crash when the field's flags is zero and it's type is
8298         a primitive.
8299         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8300         is zero and will return one of the cached built-in primitive types. Since
8301         those types live in read-only memory, the code that copies it crashes.  
8303 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8305         * object.c: Don't put function descriptors into generalized IMT
8306         thunks.
8308 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8310         * class.c: Enable generic code sharing on PPC64.
8312 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8314         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8315         from mini/mini.c.
8317         * generic-sharing.c: Allocate the method template slists from the
8318         image mempool so it doesn't leak.
8320 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8322         * class.c (generic_array_methods): Release the linked list.
8324 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8326         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8327         invocation to g_utf16_to_utf8().
8329 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8331         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8332         arguments on big endian archs.
8334 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8336         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8337         the type name (test added in corlib).
8339 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8341         * pedump.c: initialize perf. counters. Fixes a segv.
8343 2008-11-25  Martin Baulig  <martin@ximian.com>
8345         * mono-debug-debugger.c
8346         (mono_debugger_runtime_invoke): Return the exception object if an
8347         exception was thrown.  Visual Studio displays the exception object
8348         in the locals window.
8350 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8352         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8353         ftnptr.
8355 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8357         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8358         MONO_TYPE_U are sizeof (gpointer), too.
8360 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8362         * marshal.c (mono_type_native_stack_size): Fixed size and
8363         alignment for reference types.
8365 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8367         * class.c (mono_class_generic_sharing_enabled): Disable generic
8368         code sharing for PPC64.
8370 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8372         * icall.c (mono_method_get_equivalent_method): Make sure
8373         method->klass->methods is inited before looping over it.
8375 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8377         * object.c: when calling ExecuteAssembly in a newly created domain,
8378         the configuration file and application base are already set up.
8379         Bug #446353 take 2 fixed.
8381 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8383         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8384         Fixes #444715. Fix a warning.
8386 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8388         * appdomain.c: write the full path of the assembly to the .ini file
8389         created when "shadow-copying"
8390         Bug #446353 fixed.
8392 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8394         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8395         if signature==FALSE.
8397 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8399         * marshal.h : Fix the cygwin build.
8400            marshal.c:12442: undefined reference to `_IID_IMarshal'
8401           
8402         Code is contributed under MIT/X11 license.
8404 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8406         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8407           free threaded marshaler when QueryInterface is called on a COM callable
8408           wrapper requesting the IMarshal interface.
8409           
8410         Code is contributed under MIT/X11 license.
8412 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8414         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8416         * reflection.c (mono_type_get_object): Special case the very common
8417         void type.
8419         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8420         hold typeof(void).
8422 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8424         * process.h : Adding method declaration for
8425           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8426           
8427         * process.c : Adding implementation for
8428           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8429           
8430         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8431           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8433         Code is contributed under MIT/X11 license.
8435 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8437         * appdomain.c (unload_thread_main): Clean up threadpool by
8438         calling mono_thread_pool_remove_domain_jobs.
8440         * domain-internals.h (struct _MonoDomain): Add new fields to
8441         help coordinate the cleanup of the threadpool.
8443         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8444         that cleans up the threadpool of all jobs associated with an appdomain.
8445         It does that by cleaning up the queues and making sure all active
8446         threads are accounted.
8448         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8449         unloaded or in the process of. Take this is such way that there is
8450         no race condition between another thread starting the unload and the
8451         current thread acknowledging it.
8453         * threadpool.c (async_invoke_thread): Same.
8455         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8456         firing the new thread.
8458         * threadpool.c (start_tpthread): Same.
8460         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8462         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8464 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8466         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8467         Add support for DuplicateHandle.
8468         
8469         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8470         Add support for DuplicateHandle.
8471         
8472         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8473         Add support for DuplicateHandle.
8475         Code is contributed under MIT/X11 license.
8477 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8479         * class-internals.h: Make min_align into a whole byte.
8481         * class.c: Set min_align for SIMD types to 16.
8483 2008-11-05  Geoff Norton  <gnorton@novell.com>
8485         * attach.c: Default the attacher to enabled for all cases including
8486         embedded.
8488 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8490         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8491         change r117650.
8493 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8495         * monitor.c, monitor.h: New function for querying offsets of
8496         members of MonoThreadsSync.
8498 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8500         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8501         to speed up this function and to avoid the boundless memory growth caused by
8502         the signature_dup () calls.
8504 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8506         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8507         wrapper.
8509         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8510         by 1 bit.
8512         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8514 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8516         * appdomain.c:
8517         * domain-internals.h: made mono_set_private_bin_path_from_config()
8518         "internal".
8519         * object.c: call the above function after setting the configuration
8520         file path for the root domain.
8521         Fixes bug #314478.
8523 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8525         * assembly.c: when the assembly is loaded from an absolute path, end
8526         basedir with a directory separator.
8527         Bug #440781 fixed.
8529 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8531         * monitor.c (mono_monitor_get_fast_enter_method): If
8532         CompareExchange is not available, don't create the fastpath
8533         instead of asserting.  (The method is missing in the 1.1 profile.)
8535 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8537         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8539         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8540         Monitor.Exit IL fastpaths.
8542 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8544         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8546 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8548         * class.c (mono_class_create_from_typedef): Added Vector2l.
8550 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8552         * class.c (mono_class_create_from_typedef): Added Vector2d.
8554 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8556         * appdomain.c: translate \ into / for cache_path.
8557         * domain-internals.h: new mono_is_shadow_copy_enabled().
8558         * icall.c: (fill_reflection_assembly_name) do the same path
8559         manipulations that get_code_base does.
8560         (get_code_base) use mono_is_shadow_copy_enabled.
8562 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8564         * appdomain.c: shadow-copied assemblies go to CachePath +
8565         ApplicationName when both are set. DynamicBase has nothing to do with
8566         shadow copies.
8567         Bug #406877 fixed.
8569 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8571         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8572         STANDALONESIG table.
8574         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8575         standalone signatures.
8577         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8578         comparison code: instead of comparing the signatures using a custom
8579         equals function, transform them to a common signature and compare that. This
8580         works better with AOT.
8582 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8584         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8586         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8587         call for generic instances.
8588         (mono_class_setup_properties): Call setup_properties () before accessing
8589         gklass->properties.
8591         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8592         over the virtual methods of a class using metadata if possible, avoiding the
8593         creation of MonoMethod's for non-virtual methods.
8594         
8595         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8596         get_virtual_methods () to iterate over the virtual methods of classes.
8598 2008-10-25  Martin Baulig  <martin@ximian.com>
8600         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8602 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8604         * class.c (mono_class_create_from_typedef): Added Vector4i.
8606 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8608         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8609         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8610         special-casing applies to eliminate the call completely.
8612 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8614         * class.c (mono_class_create_from_typedef): Added Vector8s.
8616 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8618         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8620 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8622         * icall.c: get rid of annoying warning.
8624 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8626         * threadpool.c: in 1.x, if you change the background status of the
8627         threadpool thread, it's not reset.
8628         Remove unnecessary calls to SetState.
8630 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8632         * threadpool.c: asynchronously create a set of idle threads upon first
8633         use of the threadpool. SetMinThreads will now start the appropriate
8634         number of idle threads if they are not already running. The default is
8635         1 threadpool thread per CPU. Increased the maximum number of threads
8636         per CPU to 10.
8638 2008-10-22  Martin Baulig  <martin@ximian.com>
8640         Revert r116521 from Zoltan, it breaks the debugger:
8642         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8643         over the virtual methods of a class using metadata if possible, avoiding the
8644         creation of MonoMethod's for non-virtual methods.
8645         
8646         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8647         get_virtual_methods () to iterate over the virtual methods of classes.
8649 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8651         * threads.c: when creating a threadpool thread, set its state to
8652         'background'.
8653         * threadpool.c: reset the background state of a threadpool thread
8654         after finishing each work item
8655         Bug #437888 fixed.
8657 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8659         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8660         
8661         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8662         generic instances which works by inflating the methods in the container
8663         class's vtable.
8665         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8666         variant which doesn't make a copy if no inflation was done.
8667         (mono_class_setup_fields): Use it.
8669         * metadata.c (mono_metadata_get_shared_type): New helper function to
8670         return a shared instance of a given MonoType.
8672         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8673         a copy of most non-generic types.
8675 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8677         * threadpool.c: remove one more GetSystemInfo () call.
8679 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8681         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8682         use the code in mono-proclib.h to get processor information.
8684 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8686         * appdomain.c: fixed the logic that determines whether assemblies in a
8687         directory are "shadow-copied" or not. Bug #433483 fixed.
8689 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8691         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8692         warning.
8694 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8696         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8697         returning a vtype.
8699         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8700         reflection.c: Use mono_field_get_name () for accessing a field's name.
8702         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8703         class.c
8705         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8706         field.
8708         * loader.c (find_method_in_class): Reenable the metadata optimization by
8709         not using it for generic instances.
8711         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8712         data/def_type fields from MonoClassField into a separate structure.
8713         (struct MonoClassField): Remove data/def_type fields.
8714         (struct _MonoClass): Add a 'field_def_values' array to store the default
8715         values/RVA for fields.
8717         * class.c reflection.c: Update after the changes.
8718         
8719         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8720         for accessing field->data.
8722         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8724         * loader.c (find_method_in_class): Revert the last change for now as
8725         it breaks Mono.C5 unit tests.
8727         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8728         'field_generic_types' and 'field_objects' which contain the information
8729         previously stored in MonoInflatedField.
8730         (MonoInflatedField): Delete.
8731         (struct _MonoClassField): Delete 'generic_info' field.
8733         * reflection.c: Store the information which was previously in 
8734         field->generic_info in MonoDynamicGenericClass instead.
8736         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8737         MonoClassField changes.
8739 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8741         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8742         store the value inside the data array of the MonoMethodWrapper.
8743         This saves memory, is faster and fixes the lifetime issues (methods
8744         were never removed from the hash previously). May also fix bug#436996.
8746 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8748         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8749         generic instances, compute the type from the generic definition instead of
8750         looking in field->generic_info.
8752         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8753         for inflated fields, the only user was get_fieldref_token () which no
8754         longer needs it.
8756         * class.c (mono_class_init): Revert the last change as it seems to cause
8757         crashes.
8759         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
8760         bytes on 64 bit platforms.
8762         * object.c (mono_class_create_runtime_vtable): Fix a warning.
8763         
8764         * object.c (mono_class_create_runtime_vtable): Don't initalize
8765         field->data/field->def_type here, it is done lazily by 
8766         mono_class_get_field_default_value ().
8768         * icall.c (ves_icall_get_enum_info): Call 
8769         mono_class_get_field_default_value () instead of directly accessing
8770         field->data and field->def_type.
8772         * object.c (get_default_field_value): Ditto.
8774         * class.c (mono_field_get_data): Ditto.
8775         
8776         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
8777         call for generic instances.
8779         * loader.c (find_method_in_class): If klass != from_class, then inflate
8780         the method with the context of from_class, since the caller assumes this.
8782 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
8784         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
8785         for accessing method->slot.
8787 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
8789         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
8791 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8793         * class.c (mono_method_get_vtable_index): Use
8794         mono_method_get_vtable_slot () for accessing method->slot.
8796         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
8797         accessing klass->methods.
8799         * class.c (mono_method_get_vtable_slot): New helper function.
8800         (mono_class_get_vtable_entry): Ditto.
8801         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
8802         accessing method->slot.
8804         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
8805         method to get_inflated_method ().
8807         * class.c (mono_class_get_inflated_method): New helper method to obtain
8808         a method of an inflated class without calling setup_methods ().
8809         (mono_class_get_cctor): Use get_inflated_method.
8811         * generic-sharing.c (mono_class_get_method_generic): Ditto.
8812         
8813         * marshal.c image.c: Lazily create all the marshal caches.
8815         * image.c (mono_image_init): Move initialization of runtime_invoke
8816         caches to marshal.c.
8818         * marshal.c (get_cache): New helper function to lazily initialize a 
8819         wrapper cache.
8820         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
8822         * debug-helpers.c (mono_method_full_name): Include generic arguments.
8824 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
8826         * loader.c: fixed check for interface type.
8828 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8830         * appdomain.c: check for NULL setup before it's referenced.
8833 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8835         * class.c: remove the unused old vtable setup code.
8837 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8839         * class.c: don't depend on interface order in
8840         setup_interface_offsets (bug #435777).
8841         * reflection.c: sort the InterfaceImpl table (patch from
8842         Jb Evain  <jbevain@novell.com>).
8844 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8846         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
8847         the low level assemblies lock.
8849 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
8851         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
8852         object.c, reflection.c, socket-io.c, threads.c: introduced
8853         mono_framework_version () to return the major framewrok version,
8854         changed the code that was using more complex patterns to use it.
8855         Return the correct value for PlatformID for OSX.
8857 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
8859         * icall-def.h, process.h, process.c: added an icall to get info about
8860         processes using mono-proclib.
8862 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
8864         * mono-perfcounters.c: use the mono-proclib functions to
8865         access process information.
8867 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8869         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
8870         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
8871         reflection.c: remove rawbuffer usage: mmap support is more sanely
8872         provided by utils/mono-mmap.
8874 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
8876         * gc.c: use posix semaphores when possible so that
8877         mono_gc_finalize_notify() is signal safe.
8879 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
8881         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
8882         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
8883         be #ifdef-ed out, the linker will remove the rest.
8885         * marshal.c: Implement DISABLE_COM.
8887         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
8889 2008-10-11  Miguel de Icaza  <miguel@novell.com>
8891         * locales.c (string_invariant_compare_char): Optimization: do not
8892         call g_unichar_type unless we actually need the information.
8894 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8896         * object.c, class-internals.h: Also create remoting trampolines
8897         for generic methods.  Pass the domain to the remoting trampoline
8898         creation function, too.
8900 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8902         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
8904 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8906         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
8907         Vector4ui.
8909 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8911         * assembly.c:
8912         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8914 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8916         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8917         for the least possible amount of time (extending the fix in r113458).
8919 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8921         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
8923 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8925         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
8926         as possible simd intrinsic types.
8927         Optimized the test to check for the common prefix first.
8929 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
8931         * class.c: back out part of a broken optimization committed on
8932         May 23th (bug #433908).
8934 2008-10-09  Mark Probst  <mark.probst@gmail.com>
8936         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
8937         Win32.  Should fix #432388 for most cases until we have the new
8938         profiler on Win32.
8940 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
8942         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
8943         instead of using inst->id so the hash is stable for AOT.
8945 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8947         * appdomain.c:
8948         * icall.c: create a .ini file for shadow-copied assemblies that
8949         contains the location of the original assembly. Use this to return the
8950         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
8951         Also fix the number of '/' for windows when returning the CodeBase.
8952         Fixes bug #430920.
8954 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8956         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
8958         Code is contributed under MIT/X11 license.
8960 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8962         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
8963           if if the class vtable needs initialized.
8965         Code is contributed under MIT/X11 license.
8967 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8969         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
8970           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
8971           STRING->BSTR, and CLASS->INTERFACE.
8973         Code is contributed under MIT/X11 license.
8975 2008-10-07  Marek Habersack  <mhabersack@novell.com>
8977         * sysmath.h: changed the declaration of the
8978         ves_icall_System_Math_Round2 icall by adding an extra
8979         away_from_zero parameter.
8981         * sysmath.c (ves_icall_System_Math_Round2): added support for
8982         away from zero rounding. The icall now takes an extra boolean
8983         parameter to signal that away from zero operation is requested.
8985 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8987         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
8988         the delegate klass so it can work with full-aot.
8989         (mono_marshal_get_delegate_end_invoke): Ditto.
8990         (mono_marshal_get_delegate_invoke): Ditto.
8992 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
8994         * gc.c, attach.h, attach.c: remove a bad pattern:
8995         add_finalizer_callback () is not implemented correctly, it can't
8996         without adding more overhead to the finalizer loop and it's not
8997         even needed, since we know exactly what we need to call, so there is
8998         no need to do so through an expensive function pointer.
9000 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9002         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9003         for the no-gc case.
9004         * attach.c (mono_attach_init): Remove the #ifdef.
9006 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9008         * attach.c (mono_attach_init): Don't use
9009         mono_gc_add_finalizer_thread_callback when compiling without GC.
9010         Fixes #432306.
9011         
9012         Code is contributed under MIT/X11 license.
9014 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9016         * class.c (mono_class_create_from_typedef): Remove the 
9017         #ifndef DISABLE_SIMD stuff.
9019 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9021         * class-internals.h (MonoClass): Added simd_type bit field.
9023         * class.c (mono_class_create_from_typedef): Check if type is a simd
9024         intrinsic.
9026 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9028         * object.c (mono_method_add_generic_virtual_invocation): Only add
9029         instantiations to the thunk whose count is at least as large as
9030         the threshold.
9032 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9034         * icall.c: changed the Type of the exception thrown when trying to
9035         invoke a constructor on an abstract class. Part of the fix for bug
9036         #324185.
9038 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9040         * class.c, class-internals.h (mono_method_get_vtable_index): New
9041         function which returns the index into the vtable and properly
9042         handles inflated virtual generic methods.
9044 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9046         * object.c, domain.c, object-internals.h, domain-internals.h:
9047         Generalize IMT thunk machinery to also handle thunks for virtual
9048         generic method invokes.  When a virtual generic method is invoked
9049         more than a number of times we insert it into the thunk so that it
9050         can be called without lookup in unmanaged code.
9052         * generic-sharing.c, class-internals.h: Fetching a
9053         MonoGenericInst* for a method from an (M)RGCTX.
9055 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9057         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9058         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9059         marshalling. Fixes #431304.
9061 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9063         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9064           handle when ref is specified without In or Out.
9066         Code is contributed under MIT/X11 license.
9068 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9070         * loader.c (mono_get_method_constrained): Don't expand method with
9071         the class's context, because it's already a method of that class.
9073 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9075         * attach.c : should be correct build fix.
9077 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9079         * attach.c: Fix the previous change.
9081 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9083         * attach.c : quick w32 build fix.
9085 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9087         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9088         crashes MonoDevelop: #430455.
9090 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9092         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9093         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9095         * domain.c: Remove initialization/cleanup of the removed fields.
9097 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9099         * class.c (mono_class_generic_sharing_enabled): Enable generic
9100         code sharing for PPC.
9102 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9104         * attach.c : Fixing the Windows builds.
9106         Code is contributed under MIT/X11 license.
9108 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9110         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9111         the default generic sharing mode to 'all'.
9113 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9115         * generic-sharing.c, class-internals.h: New function for checking
9116         whether a method needs a static RGCTX invoke wrapper.  A few
9117         funtions moved from mini/generic-sharing.c.
9119         * icall.c: New function used.
9121 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9123         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9124         Static RGCTX invoke wrapping applies to value type methods, too.
9126         * class.c (mono_class_setup_vtable_general): In generic-shared
9127         value types, wrap methods with a static RGCTX invoke wrapper.
9129 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9131         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9132         osx build.
9134 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9136         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9137         register a callback which is called when the finalizer thread is woken
9138         up.
9139         (finalizer_thread): Call the callback if it exists.
9141         * attach.h attach.c: New files, implementing the attach mechanism.
9143         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9144         
9145         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9146         by the previous change.
9148 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9150         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9151         loader.c, marshal.c, metadata-internals.h, metadata.c,
9152         method-builder.c, object.c, reflection.c: introduced specific functions
9153         to allocate from the domain and image mempools and cleaned up most of
9154         the code to use them (still missing a few in reflection.c).
9155         Keep the loader bytes counter updated.
9157 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9159         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9160         loader-related counters.
9162 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9164         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9165         added more MS-compatible counters.
9167 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9169         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9170         class->blittable. Fixes #428217.
9172 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9174         * reflection.c (mono_image_get_field_on_inst_token): Call 
9175         field_encode_signature () since that handles custom modifiers too.
9176         Fixes #424663.
9178 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9180         * reflection.c (add_custom_modifiers): New helper function to merge custom
9181         modifiers stored in objects to a MonoType.
9182         (fieldref_encode_signature): Encode custom modifiers.
9183         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9184         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9186 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9188         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9189         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9190         64-bit IL only images because imports are not resolved for IL only images.
9191         Special thanks to Bill Holmes for finding this bug and testing the patch.
9192         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9194         Contributed under MIT/X11 license.
9196 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9198         * mono-config.c (dllmap_start): Add support for the bits keyword
9199         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9201 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9203         * reflection.c (inflate_mono_method): When the class the method is
9204         to be inflated for is itself not inflated, just return the method.
9206 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9208         * mono-perfcounters.c: use more user friendly process instance names.
9210 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9212         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9213           handle "[in] ref" and "[in][out] ref" cases.
9215         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9216           to mono_mb_create_method.  This was causing problems calling native to
9217           managed passing Variants by value.
9219         Code is contributed under MIT/X11 license.
9221 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9223         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9224         before accessing the friend_assembly_names field.
9226         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9227         times.
9228         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9229         called lazily when it is needed.
9231         * metadata-internals.h (struct _MonoAssembly): Add 
9232         'friend_assembly_names_inited' flag.
9234 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9236         * mono-perfcounters-def.h: fix the types of a few counters.
9237         * mono-perfcounters.c: implemented the instance names getter
9238         and a few bugfixes.
9240 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9242         * culture-info-table.h : regenerated.
9244 2008-09-17  Robert Jordan  <robertj@gmx.net>
9246         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9247         context bound objects. Fixes #415577.
9249         Code is contributed under MIT/X11 license.
9251 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9253         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9254         implementation (bug #423582).
9256 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9258         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9259         is not set. Fixes #426309.
9261 2008-09-16  Jb Evain  <jbevain@novell.com>
9263         * class.c (mono_class_from_name): fix the exported type look up
9264         when the type is defined in a referenced assembly.
9266 2008-09-16  Jb Evain  <jbevain@novell.com>
9268         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9269         increment the next index counter on each iteration to make that work
9270         for more than one type forwarder. Unmanaged part to fix #422929.
9272 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9274         * object-internals.h: enum ComInterfaceType in
9275         MonoInterfaceTypeAttribute is guint32, not guint16.
9277 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9279         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9280         writing code.
9282 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9284         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9285         not gboolean.
9287 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9289         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9290         Endianness fixes for MonoSymbolFileOffsetTable.
9292 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9294         * process.c (complete_path) : Removing quotes from the 
9295           input path.  The glib file routines do not handle file paths
9296           that have quotes around them.
9298         Code is contributed under MIT/X11 license.
9300 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9302         * socket-io.h : Adding a comment to provide locations where 
9303           changes to MonoSocketAsyncResult need to be synced.
9305         Code is contributed under MIT/X11 license.
9307 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9309         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9310         parameters as well. Fixes #425001.
9312 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9314         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9315         windows build.
9317 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9319         * console-io.c: Add support for tracking the window size if it
9320         changes.
9322         The setup is very simple: the TtySetup function will now return a
9323         pointer to a location in memory that tracks the current console
9324         size.  The managed code checks its current value every time its
9325         queried against the last value set, and updates accordingly.
9327         With this setup we can work with multiple consoles, and we do not
9328         require to poke into managed code from a signal handler.
9330         Additionally, the environment for COLUMNS and LINES is now handled
9331         in unmanaged code.
9333         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9335 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9337         * marshal.c (mono_type_native_stack_size): Treat
9338         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9340 2008-09-04  Jb Evain  <jbevain@novell.com>
9342         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9343         to nullables.
9345 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9347         * verify.c (verify_type_compatibility_full): Revert change
9348         to allow converting a native int to unmanaged pointer be verifiable
9349         under non-strict mode.
9350         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9352         * verify.c: Added some TODOs.
9354 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9356         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9357           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9358           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9360         Code is contributed under MIT/X11 license.
9362 2008-09-02  Jb Evain  <jbevain@novell.com>
9364         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9366 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9368         reflection.c (typebuilder_setup_fields): Handle classes with
9369         explicit size.
9371 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9373         class.c (mono_class_setup_events): Add memory barrier due to
9374         double checked locking.
9375         
9376         class.c (mono_class_setup_properties): Same.
9378 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9380         * class.c (mono_class_is_assignable_from): Fix the build.
9381         
9382         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9383         before accessing klass->interface_bitmap. Fixes #421744.
9385 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9387         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9388         the runtime into no-exec mode, useful when running the AOT compiler.
9390         * appdomain.c gc.c object.c: Avoid executing managed code when running
9391         in no-exec mode.
9392         
9393         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9395         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9396         special case when the mono_assembly_loaded () returns NULL because the 
9397         search hook is not installed.
9399 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9401         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9402         crashes in bstr marshalling on linux.
9404 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9406         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9407         with more than one parameter.
9409 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9411         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9412         start/stop flow control as well when turning off ICANON (allows
9413         C-s and C-q to be read by Console.ReadKey).
9415 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9417         * class.c (mono_class_init): Move the initialization of nested classes
9418         into mono_class_get_nested_types (). Fixes #418433.
9420         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9421         flag.
9423         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9424         iterating tough the nested classes of a class.
9426 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9428         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9429         on arm.
9431 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9433         * console-io.c (sigcont_handler): Support signal chaining for
9434         SIGCONT.
9436         (console_set_signal_handlers): Use best practices with sigaction,
9437         clear the structure before using it. 
9439 2008-08-22  Robert Jordan  <robertj@gmx.net>
9441         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9442         Fix the Windows build.
9444 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9446         * class.c (mono_class_generic_sharing_enabled): Make the default
9447         sharing mode 'corlib'.
9449 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9451         * console-io.c (console_set_signal_handlers): Fix a warning.
9453         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9454         method normally, the JIT will take care of avoiding recursion.
9456 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9458         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9460         Code is contributed under MIT/X11 license.
9462 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9464         * console-io.c (sigcont_handler): We need to restore the entire
9465         termios state, not only the original settings, as things like echo
9466         can be controlled after this (Booish exposes this issue with its
9467         own ReadLine implementation).
9469         Additionally, we need to set the terminal back into keypad_xmit
9470         mode.
9471         
9472         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9473         string as a paramter as well.   Otherwise we get different
9474         keyboard sequences.
9476 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9478         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9479         delegates with byref out parameter passing. Fixes #351520.
9481         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9482         a generic context.
9483         (mono_type_get_desc): Add the type arguments for GENERICINST.
9484         (mono_method_full_name): Stringify the class name using mono_type_full_name
9485         so it picks up generic arguments.
9487 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9489         * console-io.c: Removed debug output.
9491 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9493         reflection.c (mono_reflection_create_runtime_class): Alloc
9494         the nested classes linked list using the dynamic image mempool.
9495         Fixes leak in corlib compilation.
9497 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9499         * console-io.c: Fix incredibly annoying behavior on the console
9500         after resuming execution after control-z.   This affected every
9501         console application.
9503 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9505         * mempool-internals.h: Header for mono private mempool functions. The first
9506         two function are for allocating glib linked lists using pools.
9508         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9510         * Makefile.am: Added mempool-internals.h.
9512 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9514         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9515         (mono_domain_free): Ditto.
9517         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9518         be used by the JIT to store its domain-specific information, instead of putting
9519         it directly into MonoDomain.
9521         * domain.c (mono_install_create_domain_hook): New helper function to install
9522         a hook which initializes domain->runtime_info.
9524         * domain.c (mono_install_free_domain_hook): Ditto.
9525         
9526 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9528         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9529         asserting if the ares parameter is null.
9531         * mono-perfcounters.c: Fix warnings.
9533         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9534         is not needed, don't check for interruptions either.
9535         (mono_marshal_get_delegate_end_invoke): Ditto.
9537 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9539         * mono-perfcounters.c (predef_readonly_counter): added support for
9540         reading the ASP.NET Requests Queued counter from another process.
9542 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9544         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9545         MonoImage to simplify the AOT code.
9547 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9549         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9550         marshalling. Fixes #416078.
9552 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9553         
9554         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9555         it is set, looking up the icall address is deferred to the JIT, since 
9556         in embedded scenarios, the icall might not be registered in the runtime
9557         doing the AOT compilation. Backported from the 2.0 branch.
9559 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9561         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9562         Fixes #415621.
9564 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9566         * Makefile.am: added support for cross-compilation.
9568 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9570         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9572 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9574         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9576 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9578         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9579         mono-perfcounters.c: performance counters implementation.
9581 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9583         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9584         to gpointer, letting the AOT code decide what to store in it.
9586 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9588         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9589           mono_class_setup_methods if the methods are not initialized.
9591         Code is contributed under MIT/X11 license.
9593 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9595         * verify.c: Remove some debug code I commited by accident.
9597         * verify.c (mono_method_is_valid_in_context): Change the return value
9598         to make possible to distinguish between invalid and unverifiable.
9600         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9601         methods.
9603 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9605         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9606         constraints. Fixes regression in gtest-253.
9608 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9610         * verify.c (mono_verifier_verify_class): Don't allow generic types
9611         with explicit layout.
9613         * verify.c (mono_method_verify): Check locals and argument types.
9615 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9617         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9618         wait if the thread is in StopRequested state.
9620         * class.c (mono_class_from_name): Refactor the module searching code into
9621         a separate function so it can be reused in the AOT case too.
9623 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9625         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9626         Check both the type and it's generic type definition for loader errors.
9627         
9628         * verify.c (mono_method_is_valid_in_context): Don't generate another
9629         error when a type errors occur, this leads to the wrong exception been
9630         thrown.
9632 2008-07-28  Dick Porter  <dick@ximian.com>
9634         * icall-def.h
9635         * process.c
9636         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9637         New internal calls to duplicate and close a process handle.
9639 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9641         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9643 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9645         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9647 2008-07-27  Robert Jordan  <robertj@gmx.net>
9649         * class.c (mono_class_init): Don't compute class.has_finalize for
9650         valuetypes. Fixes #412477.
9652 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9654         * verify.c: Implement constraint equivalence checking.
9655         This is required when a generic parameter is used as
9656         argument to a constrained one.
9658         Fixes #410637.
9660 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9662         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9664         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9666         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9667         synch with managed object layout.
9669 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9671         * verify.c (do_branch_op): Handle valuetypes and generic
9672         arguments properly.
9674         * verify.c (do_cmp_op): Same.
9676         Fixes #410383.
9678 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9680         * generic-sharing.c: Fix memory leaks.
9682         * class.c, class-internals.h: Make
9683         mono_class_inflate_generic_type_with_mempool() non-static.
9685 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9687         * pedump.c (dump_verify_info): Dump full class name.
9689 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9691         * generic-sharing.c: Removed some old code that didn't do anything.
9693 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9694         * profiler.c: Added runtime_initialized_event,
9695         mono_profiler_install_runtime_initialized and
9696         mono_profiler_runtime_initialized. This new hook tells the profiler
9697         when the runtime is sufficiently initialized to be able to call
9698         mono_thread_attach on the root appdomain.
9699         * profiler.h, profiler-private.h: Likewise.
9701 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9703         * verify.c (do_cast): Do boxing for generic arguments as well.
9705         * class.c (is_nesting_type): Drop generic instantiations before
9706         checking for nesting.
9708         * class.c (can_access_instantiation): Allow access to generic
9709         arguments.
9711 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9713         * verify.c (verify_class_for_overlapping_reference_fields):
9714         On some cases, the field size might be zero, guard against that.
9715         Fix the explicit layout check to work as expected.
9717 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9719         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9720         mono_thread_resume () during shutdown, since the thread we want to abort
9721         might be suspended.
9723 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9725         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9726         warning.
9728         * debug-mono-symfile.c: Fix a warning.
9730         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9732         * object.c (mono_class_vtable): Check if exception_type is set, and return
9733         NULL as defined by the function comments.
9735 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9737         * mempool.c: Use malloc for every single mempool allocation if the
9738         configure option is set.  This makes it easier to track mempool
9739         allocations with tools like Valgrind.
9741 2008-07-22  Jb Evain  <jbevain@novell.com>
9743         * reflection.c (create_dynamic_mono_image): emit the same
9744         metadata version that SL2 does when creating a SL2 image.
9746 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9748         * icall-def.h:
9749         * icall.c: New icall System.Enum:get_hashcode. This function
9750         avoids the overhead of boxing the enum to the underlying type.
9752 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9754         * reflection.c (mono_method_get_object): Don't let static RGCTX
9755         invoke wrappers get into MonoReflectionMethods.
9757 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
9759         * object-internals.h:
9760         * object.c: New mono_runtime_class_init_full function
9761         that makes throwing the exception optinal.
9763         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
9764         for the case where the exception object is supplied.
9766 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
9768         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
9769         old ld versions.
9771         Contributed under MIT/X11 license.
9773 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9775         * string-icalls.c (ves_icall_System_String_InternalSplit):
9776         Optimize array allocation by caching the MonoClass of the
9777         array type.
9779         * icall.c (ves_icall_Type_GetMethodsByName): Same.
9781         * reflection.c (mono_param_get_objects): Same.
9783 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9785         * icall-def.h:
9786         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
9787         It inflates the given type using the class context.
9789 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
9791         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
9792         the vtable if it already exists.
9794         * object-internals.h: Add mono_class_try_get_vtable as part of the
9795         internal API.
9797         * reflection.c (mono_type_get_object): Use the MonoObject from the
9798         vtable when possible. Reduces locking contention on reflection heavy
9799         code.
9801 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
9803         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
9804         g_bit_nth_msf () since that macro is not implemented in eglib.
9806 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9808         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
9809         on platforms which do not support it.
9811 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9813         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
9815 2008-07-11  Martin Baulig  <martin@ximian.com>
9817         * mono-debug-debugger.h
9818         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
9820         * mono-debug-debugger.c
9821         (_mono_debugger_interruption_request): New global volatile variable.
9822         (mono_debugger_check_interruption): New public function.
9824         * threads.c
9825         (mono_thread_current_check_pending_interrupt): Call
9826         mono_debugger_check_interruption().
9827         (mono_thread_interruption_checkpoint_request): Likewise.
9829 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9831         * verify.c: Add more type checks for loaded types. Verify the result
9832         handle from ldtoken.
9834 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9836         * loader.c (field_from_memberref): Don't crash if the field
9837         wasn't found.
9839 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9841         * verify.c: Verify if type and method instantiations
9842         don't have invalid VAR or MVAR arguments.
9844 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9846         * verify.c: Fix double free of function pointer list.
9848 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9850         * object.c (mono_string_to_utf8): Comment the new code as it
9851         breaks under eglib.
9853 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
9855         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
9857 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9859         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
9860           is not throw too many times.
9862         Code is contributed under MIT/X11 license.
9864 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9866         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
9867         debugging is turned off.
9869 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9871         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
9873 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9875         * class-internals.h, class.c: Added new generic sharing option:
9876         Share only stuff in System.Collections.Generic, which is now the
9877         default.
9879 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9881         * generic-sharing.c, class-internals.h: New function for getting a
9882         generic method in a generic class given the corresponding method
9883         for a different instantiation of the class.  Partly refactored
9884         from mini-trampolines.c.
9886         * class.c: Make sure generic methods have a class_inst if they are
9887         part of a generic class.
9889         * metadata.c (mono_type_stack_size_internal): Handle type
9890         variables.
9892 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9894         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
9895         Signifies whether information on the this/vtable/mrgctx variable
9896         is available.
9898 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9900         * object.c, object-internals.h, icall.c: New function
9901         mono_delegate_ctor_with_method(), which does the same as
9902         mono_delegate_ctor(), but takes an explicit method argument
9903         instead of taking the method from the jit info.
9905         * marshal.c: When creating a delegate with an inflated method take
9906         the "this" argument as the target class for the castclass.
9908 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9910         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9911         mono_jit_info_table_find() to perform very badly in some cases.
9913 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9915         * icall.c (type_from_typename): Handle 'string'.
9917         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
9918         wrappers into the wrapper_hash, since the key is not a MonoMethod.
9920 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9922         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
9924         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
9925         number of available managed allocator types.
9927         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
9928         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
9930 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9932         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
9933         which is a low level lock protecting just the 'jit_code_hash' hash table.
9935         * domain.c: Initialize+cleanup jit_code_hash_lock.
9936         
9937 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9939         * coree.c (mono_load_coree): Set coree_module_handle global variable only
9940         after initialization.
9942         * coree.h: Make MonoFixupExe internal.
9944         Contributed under MIT/X11 license.
9946 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9948         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
9949         because that is platform independent. Check NumberOfRvaAndSizes in PE32
9950         as well.
9951         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
9952         image being loaded is a CLI image and _CorValidateImage gets called.
9954         * coree.h: Add MonoLoadImage.
9956         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
9957         instead of LoadLibrary.
9959         Contributed under MIT/X11 license.
9961 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
9963         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
9964         for any primitive type.
9966 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9968         * object.c (mono_array_new_specific): Optimize this and the other allocation
9969         functions a bit.
9970         
9971         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
9972         domains too if mono_dont_free_domains is set.
9974         * domain-internals.h (mono_dont_free_domains): New internal option controlling
9975         whenever to free appdomain data after it has been unloaded.
9977         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
9978         
9979 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
9981         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
9982         (mono_method_get_equivalent_method): Fix a warning.
9984         * object.c (mono_message_init): Avoid looking up array types for each call.
9986 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9988         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
9989         call.
9991         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
9992         even more.
9994         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
9995         each iteration.
9997         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
9998         fields of an enum.
10000 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10002         * object.c (mono_value_box): Fix boxing of nullables.
10004 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10006         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10007         mono_module_handle that is defined by the linker; no initialization required.
10008         * coree.h: Remove mono_module_handle, add __ImageBase, update
10009         mono_image_open_from_module_handle.
10010         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10011         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10012         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10013         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10014         to 4 GB away from image base address. IA64 version is not tested but was very
10015         easy to implement and should work if we ever need it.
10016         * domain.c (mono_init_internal): Avoid system error message boxes.
10017         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10018         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10019         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10020         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10021         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10023         Contributed under MIT/X11 license.
10025 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10027         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10028         as part of the private mono API.
10029         
10030         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10031         Do proper argument checking for methods that belong to generic classes.
10032         Do proper type resolution for GMFH/2.
10033         Fixes #377324.
10034         
10035 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10037         * verify.c (do_switch): Fix a memory corruption bug with
10038         the jump index is out of bound.
10040 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10042         * verify.c: Disable debug code.
10044 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10046         * reflection.c (mono_image_get_methodbuilder_token): Use
10047         mono_image_get_methodspec_token_for_generic_method_definition
10048         instead of mono_image_get_memberref_token. We cache more memberef
10049         entries now.
10051 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10053         * verify.c: Inflate exception clause types.
10054         Fixes #402606.
10055         
10056 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10058         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10059         name.
10061         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10063         * reflection.c (mono_image_create_method_token): Same.
10065 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10067         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10068         It does the same as mono_image_get_methodref_token but works on
10069         MethodBuilder.
10071         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10072         and always generate a methodspec. This follows the old behavior and fixes
10073         the regressions in System.Core. 
10075 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10077         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10078         don't event mono_class_get () succeeds. Fixes #402182.
10080 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10082         * metadata-internals.h: Added MonoDynamicImage::methodspec
10083         hashtable to store methodspec tokens created for MethodBuilders.
10085         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10086         MethodBuilders as open instantiations if a methodspec was requested.
10088         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10090         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10092         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10094         Fixes bug #349190.
10096 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10098         * loader.c (method_from_methodspec): Avoid crashing if the
10099         method lookup fails.
10101 2008-06-20  Dick Porter  <dick@ximian.com>
10103         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10104         classes being in a different assembly.  Fixes bug 399184.
10106 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10108         * loader.c (mono_loader_init): Make this callable multiple times.
10109         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10110         the runtime is initialized. Fixes #401755.
10112 2008-06-19  Dick Porter  <dick@ximian.com>
10114         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10115         Fixes bug 349688.
10117 2008-06-19  Dick Porter  <dick@ximian.com>
10119         * socket-io.c:
10120         * icall-def.h: Implement Socket generic Send() and Receive()
10121         methods.  Fixes bug 395168.
10123 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10125         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10127         Contributed under MIT/X11 license.
10129 2008-06-18  Martin Baulig  <martin@ximian.com>
10131         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10132         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10133         set to 80.0.  The debugger <-> runtime interface is now frozen as
10134         well.   
10136         * mono-debug.c
10137         (mono_debug_debugger_version): Bump to 4.
10139 2008-06-18  Martin Baulig  <martin@ximian.com>
10141         * debug-mono-symfile.c
10142         (load_symfile): Don't check the minor version.
10144         * debug-mono-symfile.h: Bump the version number to 50.0.
10146 2008-06-18  Martin Baulig  <martin@ximian.com>
10148         * debug-mono-symfile.c
10149         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10150         minimum required version.
10152 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10154         * reflection.c (mono_custom_attrs_from_property): Fix support for
10155         retriveving cattrs of dynamic inflated generic types.
10157         * reflection.c (mono_custom_attrs_from_event): Same.
10159         * reflection.c (mono_custom_attrs_from_field): Same;
10161         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10163         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10164         Moved to metadata.c.
10166         * metadata.c: New functions to retrive the equivalent field, event
10167         of property from the generic type definition.
10169         * metadata-internals.h: Added new functions from metadata.c.
10171 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10173         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10174         to cached in a mempool is used.
10176         * metadata.c (free_generic_class): In some situations field generic_info type
10177         is not properly dup'ed and leads to double free'ing.
10179         Fixes #400643.
10181 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10183         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10184         this arguments (will be needed later for generic methods).
10185         Collect stats.
10187 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10189         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10190         Create a static RGCTX invoke wrapper for methods which require it.
10192 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10194         * object.c, class-internals.h: New function for checking whether
10195         an individual field is special static.
10197 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10199         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10200         linear search since the table is sorted.
10202         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10203         Fixes #324180.
10205 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10207         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10208         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10210         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10212         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10213         
10214         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10215         InterlockedCompareExchange to query and modify 
10216         thread->interruption_requested.
10218         * object-internals.h (struct _MonoThread): Change interruption_requested
10219         to a gint32 so it can be modified by atomic operations. Add 
10220         'critical_region_level' from the managed side, change small_id to a guint32,
10221         add new set of 'unused' fields.
10223         * appdomain.c: Bump corlib version.
10225 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10227         * class.c (mono_class_from_name): Search modules as well. Fixes
10228         #322332.
10230 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10232         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10233         templates.  Templates are generalized with an additional type_argc
10234         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10235         have type_argc>0.
10237         * domain-internals.h, domain.c: New hash table for looking up
10238         MRGCTXs.
10240         * metadata.c, metadata-internals.h: Rename hash and equal
10241         functions for MonoGenericInst's and make them public.
10243         * class-internals.h: New data structures for the MRGCTX.  Macros
10244         for distinguishing slots in the RGCTX and the MRGCTX.
10246 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10248         * object.c (mono_method_get_imt_slot): Put the same methods of
10249         different instantiations of the same generic interface in the same
10250         IMT slots, to make generic sharing simpler.
10252 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10254         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10256         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10257         This function works just like mono_metadata_field_info, but
10258         accept a mempool as argument to be used allocating memory.
10260         * marshal.c (mono_marshal_load_type_info): Use new function
10261         to load marshal data into image mempool.
10263 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10265         * class.c (mono_class_inflate_generic_type_with_mempool):
10266         This function allows to inflate a generic type using
10267         a mempool.
10269         * class.c (inflate_generic_type): Take a mempool as argument
10270         and use it to do type dup'ing.
10272         * class.c (mono_class_setup_fields): Field type for generic
10273         generic classes are allocated from the image mempool.
10275         * metadata.c (free_generic_class): Inflated field type is
10276         now allocated in the image mempool.
10278 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10280         * threads.c (thread_cleanup): Free MonoThread::name.
10282 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10284         * appdomain.c (ensure_directory_exists): avoid unnecessary
10285         mkdir(2) calls when the shadow directory already exists.
10286         (mono_make_shadow_copy): copy also satellite assemblies from the
10287         private bin directories.
10289 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10291         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10292         
10293         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10294         a page boundary. Fixes #396219.
10296 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10298         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10299         due to double-checked locking.
10301 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10303         * assembly.c (build_assembly_name): Release memory on failure.
10305         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10307 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10309         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10310         memory on failure.
10312 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10314         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10315         memory on failure.
10317 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10319         * loader.c (field_from_memberref): Check if field signature type is equal
10320         to the non-inflated type of the field. Fixes #398980.
10322 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10324         * assembly.c (mono_assembly_load_from_full): Call 
10325         mono_assembly_load_friends () outside the assemblies lock, since it can
10326         acquire the loader lock. Fixes #323696.
10328         * reflection.c (resolve_object): Inflate the inst with the context for
10329         FieldOnTypeBuilderInst. Fixes #399010.
10331 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10333         * reflection.c (mono_image_get_field_on_inst_token): Don't
10334         inflate the field to encode it's signature. If it's a
10335         VAR or MVAR it should stay that way in the signature.
10336         Fixes #399047.
10338 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10340         * reflection.c (resolve_object): Release memory of inflated types.
10342 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10344         * loader.c (mono_method_get_signature_full): Remove assert about
10345         loading a methodspec to a generic method. We have such methods, such as
10346         System.Threading.Interlocked::CompareExchange<T>.
10347         This assert was removed since it crashes the verifier when it checks
10348         methods calling CompareExchange<T>.
10350 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10352         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10353         of Type array and not MonoType.
10355 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10357         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10358         <lupus@ximian.com>
10360 2008-06-10  Martin Baulig  <martin@ximian.com>
10362         * debug-mono-symfile.h
10363         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10364         changes to the file format, but we were generating incorrect
10365         source file indices in the line number table due to a bug, which
10366         made backtraces report an incorrect source file.
10368 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10370         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10371         mini/debug-mini.c to here.
10373         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10375         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10376         use it to release structs returned by mono_debug_find_method.
10378 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10380         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10381         since it needs to set method->slot for all interface methods.
10383 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10385         * class-internals.h: Forgot to add.
10387 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10389         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10391         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10392         Lookup the custom attributes from property_hash.
10394         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10395         in property_hash. Allocate all data using the image mempool.
10397         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10398         for dynamic_custom_attrs to checks if the image is dynamic.
10400 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10402         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10403         assemblies array.
10404         
10405         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10406         runtime functions while holding the domain assemblies lock.
10408 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10410         * verify.c: Reapplied the last bit of the reverted changes.
10412 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10414         * verify.c: Reapplied more of the reverted changes.
10416 2008-06-09  Martin Baulig  <martin@ximian.com>
10418         * debug-mono-symfile.c (load_symfile): Check the major version
10419         first; if it's wrong, don't print the minor version in the error message.
10421 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10423         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10424         lock instead of the domain lock to avoid deadlocks, since the thread might
10425         already hold the loader lock.
10427         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10428         (mono_thread_attach): Ditto.
10430         * monitor.c: Use a TLS variable for holding the current thread id instead
10431         of calling pthread_self ().
10432         (mono_monitor_init_tls): New internal function to initialize the TLS
10433         variable.
10434         (mono_monitor_try_enter_internal): Put the owner == id check after the
10435         owner == 0 check.
10437         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10438         missed optimizations when using gcc-4.3.
10440 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10442         * reflection.c (mono_dynamic_image_free): Free the memory
10443         used by MonoGenericParam in MonoDynamicImage::gen_param.
10445         * reflection.c (mono_reflection_setup_generic_class): Allocate
10446         container from mempool.
10448         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10449         container from mempool.
10451 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10453         * threads.c (mono_set_pending_exception): New internal function to set the
10454         pending exception of the current thread.
10455         (mono_thread_get_and_clear_pending_exception): Check for 
10456         thread->pending_exception as well.
10458         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10460         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10461         it can trigger a collection.
10463 2008-06-06  Martin Baulig  <martin@ximian.com>
10465         Merged the `debugger-kahalo' branch.
10467         * mono-debug.h
10468         (MONO_DEBUGGER_VERSION): Bumped to 72.
10470         * debug-mono-symfile.h
10471         (MonoSymbolFileMethodIndexEntry): Removed.
10472         (MonoSymbolFileMethodEntry): New public typedef.
10473         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10474         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10475         `data_offset'.
10476         (MonoSymbolFileMethodEntry): Removed.
10477         (MonoSymbolFileLexicalBlockEntry): Removed.
10478         (MonoSymbolFileLineNumberEntry): Removed.
10479         (MonoDebugLexicalBlockEntry): Removed.
10480         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10481         removed `num_il_offsets' and `il_offsets'.
10482         (MonoSymbolFile): Replace `version' with `major_version' and
10483         `minor_version'.
10484         (MONO_SYMBOL_FILE_VERSION): Replace with
10485         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10486         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10488         * debug-mono-symfile.c
10489         (mono_debug_symfile_lookup_location): Add support for the new line
10490         number table format.
10492 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10494         * metadata.c (free_generic_class): Release the inflated
10495         MonoClass of dynamic generic classes if it's not a generic
10496         type definition.
10498 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10500         * verify.c: Reapplied more of the reverted changes.
10502 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10504         * reflection.c (lookup_custom_attr): Clean the cached flag or
10505         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10506         for SRE types.
10508 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10510         * verify.c: Reapplied a small part of the reverted changes.
10512 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10514         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10516         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10517         previously in managed code.
10518         (mono_monitor_exit): Ditto.
10519         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10521         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10522         the managed definition.
10524 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10526         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10528 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10530         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10531         
10532         * monitor.c: Add some micro optimizations.
10534         * icall.c (type_from_typename): Handle 'bool'.
10536 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10538         * verify.c: Implement constructor verification per P III 1.8.1.4.
10539         Fixes #396716.
10541 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10543         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10544         holding the assemblies lock here too.
10546 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10548         * verify.c: Kill stack_top function.
10550 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10552         * verify.c: Kill stack_get function.
10554 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10556         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10558 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10560         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10561         more reliable.
10563         * verify.c (mono_method_verify): Inflate params and locals to avoid
10564         mismatch when checking for compatibility.
10566 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10568         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10569         Length prefix should be size in bytes. Fix bug #339530.
10570         
10571         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10572         Length prefix should be size in bytes. Fix bug #339530.
10574         Code is contributed under MIT/X11 license.
10576 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10578         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10580         Contributed under MIT/X11 license.
10582 2008-06-05  Martin Baulig  <martin@ximian.com>
10584         * mono-debug-debugger.c
10585         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10587 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10589         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10590         while holding the assemblies lock to prevent deadlocks. Handle the case
10591         where the search hook returns NULL but the assembly was still loaded.
10592         Fixes #323696.
10594         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10595         modify domain state.
10597 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10599         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10600         * Makefile.am (pedump_LDADD): Post-process object files and
10601         add dtrace-generated object file, if necessary.
10603         Code is contributed under MIT/X11 license.
10605 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10607         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10609 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10611         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10613 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10615         * threads.c: Try to free everything from the delayed free table
10616         when shutting down threads, and set the variable to NULL after the
10617         table is freed so that calling
10618         mono_thread_hazardous_try_free_all() when shutting down the root
10619         domain doesn't crash.
10621 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10623         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10624         the caller if resulting type was inflated.
10626         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10627         was inflated.
10629         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10632 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10634         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10635         class library tests.
10637         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10638         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10639         #396989.
10641 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10643         * domain.c, domain-internals.h: The JIT infos are now freed by the
10644         JIT info table code.  They are freed immediately if there only a
10645         single JIT info table in circulation.  If there is more, the free
10646         is delayed via a queue.
10648         * threads.c, threads-types.h: New hazard pointer function for
10649         freeing all freeable delayed items in one sitting.
10651 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10653         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10655         * reflection.c (typebuilder_setup_properties): Same.
10657         * reflection.c (typebuilder_setup_events): Same.
10659 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10661         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10662         and use it for allocating memory.
10664         * reflection.c (mono_marshal_spec_from_builder): Same.
10666         * reflection.c: Change code to use new signatures.
10668         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10670 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10672         * decimal.c (rescale128): Put back one line which was accidently commented
10673         out.
10674         
10675         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10676         to cause crashes.
10678 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10680         * reflection.c (mono_reflection_generic_class_initialize): Name must
10681         be always malloc'ed so we can free it later on. Do this for field, property
10682         and event.
10684         * metadata.c (free_generic_class): Free field, property and event names.
10686 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10688         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10689         instead of g_memdup.
10691         * reflection.c (typebuilder_setup_fields): Same.
10693 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10695         * decimal.c (rescale128): Optimize this function a bit more.
10697 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10699         * metadata.c (free_generic_class): Release some memory from
10700         SRE generic classes.
10702 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10704         * reflection.c (mono_image_get_generic_field_token): No reference
10705         to name is kept, free it.
10707         * reflection.c (mono_reflection_generic_class_initialize): Free
10708         more memory of the inflated field.
10710 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10712         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10713         code.
10715 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10717         * reflection.c (mono_dynamic_image_free): Release memory used by
10718         MonoDynamicImage::array_methods elements.
10720         * reflection.c (assembly_add_win32_resources): Release memory after
10721         encoding.
10723 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10725         * decimal.c (log2_32): Use an optimized version for this function too.
10726         
10727         * decimal.c (log2_64): Fix this on 32 bit machines.
10729 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10731         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10733         * class.c (mono_metadata_signature_deep_dup): Same.
10735         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10736         a mempool.
10738         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10740         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10742         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10744         * class-internals.h: Update signatures to take a MonoMemPool.
10746 2008-06-02  Dick Porter  <dick@ximian.com>
10748         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10749         * icall-def.h: Add
10750         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10751         FormatMessage API to get the error text.  Fixes bug 321827.
10753 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10755         * decimal.c: Add some micro optimizations to make decimal operations faster.
10757 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
10759         * reflection.c (method_encode_clauses): Take a mempool
10760         as parameter and use it to allocate the clause array.
10762         * reflection.c (mono_image_get_field_on_inst_token): Free
10763         the inflated type after encoding it.
10765         * reflection.c (mono_dynamic_image_free): Free each element
10766         of MonoDynamicImage::gen_params.
10768         * reflection.c (reflection_methodbuilder_to_mono_method):
10769         Allocate the generic param array from the mempool.
10770         Allocate signature params from the mempool.
10772         * reflection.c (mono_reflection_generic_class_initialize):
10773         Free inflated fields after been used.
10775 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10777         * icall.c: Reapply the memory leak fixes as they no
10778         longer make mono crash.
10780 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10782         * reflection.c (mono_type_get_object): Don't store the suplied
10783         MonoType with type_hash. A caller which pass a type that
10784         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
10785         might end with a pointer to freed memory.
10786         The solution is to use byval_arg or this_arg from the associated
10787         MonoClass of the supplied type.
10789 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
10791         * icall.c: Revert the rest of the last change as it breaks the build too.
10793 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10795         * icall.c: Revert a leak fix as it's breaking the build.
10797 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10799         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
10801 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10803         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
10805 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10807         * icall.c: Fix some memory leaks.
10809 2008-05-29  Dick Porter  <dick@ximian.com>
10811         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
10812         async socket operations from the pending list when a socket
10813         closes.  Leaving it until the threadpool services the event
10814         exposes a race condition when a socket descriptor is reused.
10815         Fixes bug 377589.
10817 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10819         * object.c: Fix negative index check for array alocation.
10821 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10823         * icall.c, marshal.c: Delegate wrappers should skip visibility.
10824         This check is performed by the verifier for IL created delegates
10825         and by Delegate::CreateDelegate for programatically created ones.
10826         Fixes #372406.
10828 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10830         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
10831         Fix code to use mono_array_size_t instead of int.
10833         Based on patch by Luis F. Ortiz.
10834         Contributed under X11 license.
10835         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10837 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10839         * icall.c: Added ves_icall_System_Array_GetLongLength and
10840         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
10841         arrays.
10843         * icall.h: Export both new functions.
10845         Based on patch by Luis F. Ortiz.
10846         Contributed under X11 license.
10847         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10849 2008-05-28  Martin Baulig  <martin@ximian.com>
10851         The debugger now requires exactly r103463.
10853         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
10854         This version is not supported by the debugger, wait for 72.
10856 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10858         * object.h: Changed array related functions to use
10859         mono_array_size_t instead of guint32. Forgot to commit this file.
10861         Patch by Luis F. Ortiz.
10862         Contributed under X11 license.
10863         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10866 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10868         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
10869         don't define it. Use the number literal instead.
10871 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10873         * icall.c: Changed array related functions to use
10874         mono_array_size_t instead of guint32.
10876         * icall.c (ves_icall_System_Array_GetLength): Check for length
10877         overflow under MONO_BIG_ARRAYS.
10879         Based on patch by Luis F. Ortiz.
10880         Contributed under X11 license.
10881         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10883 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10885         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
10887         Based on patch by Luis F. Ortiz.
10888         Contributed under X11 license.
10889         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10891 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10893         * object.c, object.h: Changed array related functions to use
10894         mono_array_size_t instead of guint32.
10896         Patch by Luis F. Ortiz.
10897         Contributed under X11 license.
10898         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10900 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10902         * object.h: Introduced mono_array_size_t typedef. This must be used
10903         in all places an array length is expected. This is 64bits wide if
10904         MONO_BIG_ARRAYS is enabled.
10906         Patch by Luis F. Ortiz.
10907         Contributed under X11 license.
10908         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10910 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10912         * security-manager.c class.c: Set the class exception info by calling
10913         mono_class_set_failure ().
10915         * class.c (mono_class_get_exception_data): New accessor function.
10916         (mono_class_set_failure): Store exception_data in the property hash.
10918         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
10919         the struct as a property.
10921         * loader.c (mono_get_method_full): Store the lookup result for method
10922         tokens in method_cache, the others in methodref_cache to decrease the memory
10923         usage of hash tables.
10925         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
10926         (mono_image_init): method_cache is lazy inited now.
10928         * metadata-internals.h (struct _MonoImage): Change method_cache to
10929         a MonoValueHashTable, add a separate methodref_cache.
10931 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
10933         * number-formatter.h: Fix tables to avoid arithemtic overflow in
10934           Double.ToString as exposed by Bug #383531.
10936 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
10938         * number-formatter.h: Make some tables static.
10940         * class.c (mono_method_set_generic_container): New accessor function.
10941         (mono_method_get_generic_container): Ditto.
10943         * class-internals.h (struct _MonoMethod): Remove rarely used 
10944         'generic_container' field, store it in the property hash instead. Add 
10945         'is_generic' boolean field instead.
10947         * image.c (mono_image_init): Initialize property_hash.
10948         (mono_image_close): Destroy property_hash.
10950         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
10951         hold rarely used fields of runtime structures belonging to this image.
10953         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
10954         to get/set method->generic_container.
10956         * loader.c (mono_get_method_from_token): Avoid loading the method header for
10957         generic methods.
10959 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
10961         * class.c (mono_class_inflate_generic_method_full): Don't increase
10962         mono_stats.inflated_method_count for methods found in the cache.
10964         * threads.c (mono_thread_request_interruption): Add a comment about 
10965         QueueUserAPC ().
10967 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
10969         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
10970         interface_offsets_packed table.
10971         
10972         * class.c (mono_class_init): Remove some dead code.
10974         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
10975         mono_class_setup_vtable () when CAS is active to detect security problems.
10977 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
10979         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
10981         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
10982         parameters as it's irrelevant for delegate checking.
10984 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
10986         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
10988         * class.c (mono_class_init): Control the creation of a generic vtable using
10989         a global which is true by default, but set to false by the runtime startup code.
10990         
10991         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
10992         Disabled for now since it breaks the embedding API.
10993         Move the setup of class->methods for arrays to mono_class_setup_methods ().
10994         (mono_class_setup_methods): Add a memory barrier.
10996         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
10997         when mono_class_init () doesn't compute the generic vtable.
10998         
10999 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11000         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11001         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11002         to support call chains (backtrace) in the stat profiler.
11003         * profiler.c, profiler-private.h: Likewise.
11005 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11007         * generic-sharing.c: Init generic class when a method of it is
11008         requested via a runtime generic context.
11010 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11012         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11014         * reflection.c (mono_type_get_object): Add a FIXME.
11016         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11018         * class.c (mono_class_get_method_by_index): New helper function, returning an
11019         entry in the class->methods array.
11021 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11023         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11024         Avoid creating a generic vtable for generic instances as well.
11025         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11026         generic instances.
11028 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11030         * loader.c (mono_get_method_constrained): Inflate the signature
11031         with class context. Fix #325283.
11033 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11035         * object.c (mono_class_create_runtime_vtable): Add a comment.
11037         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11038         where needed.
11039         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11040         (mono_class_setup_vtable_general): Add an assert.
11041         (mono_class_init): Avoid creating a generic vtable for arrays.
11043         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11044         here, let mono_class_init () do that.
11046         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11047         interfaces in mscorlib.
11049         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11050         interfaces. Add some comments.
11051         (mono_class_init): Call mono_class_setup_methods () here since it is no
11052         longer called by mono_class_setup_vtable ().
11054         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11055         not set in class->vtable.
11056         (mono_class_create_runtime_vtable): Reenable the disabled code.
11058         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11059         now as it causes some test failures.
11061         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11062         if using the vtable trampoline. Also remove some strange code which put the
11063         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11064         stuff as it is no longer needed.
11066 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11068         * pedump.c: Give make --verify all option check code as well.
11069         Using --verify code won't check for metadata now.
11071 2008-05-19  Martin Baulig  <martin@ximian.com>
11073         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11075         * mono-debug.c
11076         (_mono_debug_using_mono_debugger): New global variable; it's set
11077         directly by the debugger, so mono_debug_using_mono_debugger() also
11078         works after attaching.
11080 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11082         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11083         as we do double checked locking on MonoClass::runtime_info and
11084         MonoClassRuntimeInfo::domain_vtables.
11086 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11088         * debug-helpers.c (print_field_value): Fix a warning.
11090 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11092         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11093         set in the AOT case.
11095 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11097         * class.c (mono_class_setup_vtable_general): Use memory barriers
11098         as we do double checked locking on MonoClass::vtable.
11100 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11102         * reflection.c (resolve_object): Inflate only if the generic context
11103         is not null. Fixes #389886.
11105 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11107         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11108         instead of g_free.
11110         Code is contributed under MIT/X11 license.
11112 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11114         * class.c: Revert unrelated change.
11116 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11118         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11119         a generic instantiation, use mono_class_from_mono_type instead of playing
11120         with MonoType directly.
11122 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11124         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11125         checks must ignore generic instantiations, so mono_class_has_parent is not
11126         suitable. Fixes #390128.
11128 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11130         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11131         it to avoid registering tokens during metadata generation. Fixes #390023.
11133 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11135         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11136         consistent.
11138         Contributed under MIT/X11 license.
11140 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11142         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11143         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11144         to fixup the EXE image.
11145         (mono_cleanup): Use mono_close_exe_image.
11146         (mono_close_exe_image): New function.
11147         * image.c: Include "marshal.h".
11148         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11149         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11150         counting when the image is loaded outside of mono_image_open_full. Set status
11151         based on GetLastError.
11152         * coree.c: Include required headers. Add init_from_coree.
11153         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11154         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11155         (_CorExeMain): Set init_from_coree.
11156         (CorExitProcess): Only call ExitProcess for now.
11157         (CorBindToRuntimeEx): New stub implementation.
11158         (CorBindToRuntime): New function.
11159         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11160         (MonoFixupExe): ILONLY executables require no fixups.
11161         (mono_set_act_ctx): New function to set activation context.
11162         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11163         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11164         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11165         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11166         as MONO_INTERNAL.
11167         * domain-internals.h: Add mono_close_exe_image.
11169         Contributed under MIT/X11 license.
11171 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11173         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11174         size for generic param and event tables. Fixes #388977.
11176 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11178         * loader.c (mono_method_signature): Use memory barriers because of the double
11179         checked locking pattern.
11181         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11182         aborting or aborted as well. Fixes #376391.
11183         
11184         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11185         existing runtime state in the Suspend handler during shutdown.
11187 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11189         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11191         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11192         which are starting up or shutting down.
11194         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11195         this function never returns if the runtime is already shutting down.
11197         * icall.c (ves_icall_System_Environment_Exit): Update after 
11198         mono_threads_set_shutting_down () signature change.
11199         
11200 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11202         * class.c: Added can_access_instantiation to verify if the instantiation
11203         is visible. Fix access check for nested types as they returned TRUE
11204         before doing type and generic instantiation visibility checks.
11206 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11208         * reflection.c (mono_reflection_create_generic_class): The created type
11209         must have a different container from its TypeBuilder. Otherwise they
11210         will end sharing generic arguments, which is wrong.
11212         Due to the sharing, making a generic instance of the created type using
11213         the TypeBuider generic arguments resulted in the generic type definition
11214         been returned, which is wrong as well.
11216         As a bonus the code was leaking the type_params array. This memory should
11217         be allocated from the image mempool.
11219         This fixes bug #354047.
11221 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11223         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11224         to here         as they are now used in assembly.c new code.
11225         Added a skipverification flag to MonoAssembly.
11226         New internal function mono_assembly_has_skip_verification.
11228         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11229         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11230         part of #387274.
11232 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11234         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11235         needed. Fixes #387034.
11237         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11239 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11241         * assembly.c (mono_assembly_load_reference): Prevent crash while
11242         disassembling Silverlight 2.0 executables while we still do not
11243         have GACed libraries.
11245 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11247         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11249 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11251         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11252         of the dynamic case. Fixes #387404.
11254 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11256         *verify.c (mono_verifier_is_class_full_trust): If under
11257         verify_all and the verifier mode was not set, only
11258         gac and corlib types are fulltrust. This makes --verify-all
11259         usable to detect unverifiable code, which is the expected
11260         use case.
11262 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11264         * verify.h: Ops, commited the header with debug
11265         enabled.
11267 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11269         * verify.c (merge_stack): Use the new value on unverifiable
11270         stack merges.
11272         * verify.c (verify_type_compatibility_full): Comparison
11273         of nullable types can't use mono_class_is_assignable_from.
11275         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11276         that makes all verification errors be reported.
11278         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11279         mono_method_verify.
11281 2008-05-05  Robert Jordan  <robertj@gmx.net>
11283         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11284         support for value types. See #386415.
11286         * object.c: comments.
11288         Code is contributed under MIT/X11 license.
11290 2008-05-05  Martin Baulig  <martin@ximian.com>
11292         * debug-mono-symfile.h
11293         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11294         for old pre-terrania symbol files.
11296 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11298         * mono-config.c: Add ppc64 architecture.
11300         Code is contributed under MIT/X11 license.
11302 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11304         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11305           PPC64 uses function descriptors as well.
11307         Code is contributed under MIT/X11 license.
11309 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11311         * object.c (compute_class_bitmap): Ignore literal static fields.
11313         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11314         var has an invalid format.
11315         (describe_ptr): Add some sanity checks for the vtable.
11316         (add_nursery_frag): Clear unused nursery fragments.
11317         (major_collection): Clear all remaining nursery fragments.
11319 2008-05-03  Robert Jordan  <robertj@gmx.net>
11321         * image.c, metadata-internals.h: add thunk_invoke_cache.
11323         * marshal.c, marshal.h: implement
11324         mono_marshal_get_thunk_invoke_wrapper ().
11326         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11328         Code is contributed under MIT/X11 license.
11330 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11332         * verify.c (do_leave): Empty the stack.
11334 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11336         * class.c (mono_class_is_assignable_from): Variance
11337         doesn't work between reference and value types. For example,
11338         given type C<T+>, C<int32> is not assignable to C<object>.
11339         Break the argument checking loop on first error. 
11341 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11343         * icall.c : base64_to_byte_array() needs some more strict
11344           check for sequence of '=' characters. Patch by Santa
11345           Marta (http://deee.g.hatena.ne.jp/santamarta).
11347           Contributed under MIT/X11 license.
11348           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11350 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11352         * domain.c: Disable LoadLibrary support to fix Win32 build.
11354         Code is contributed under MIT/X11 license.
11356 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11358         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11359         to help with cache behaviour.
11361 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11363         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11364         method. 
11366 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11368         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11370 2008-05-01  Dick Porter  <dick@ximian.com>
11372         * process.c (process_get_fileversion): Only pass 16 bits of
11373         language ID to VerLanguageName.  Fixes bug 381204.
11375 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11377         * verify.c (mono_method_verify): Fix the comparison
11378         operator for code bounds check.
11380 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11382         * verify.c (mono_method_verify): Check the bounds of
11383         all access of the code array.
11385 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11387         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11389 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11391         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11392         not valid.
11394 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11396         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11397         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11398         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11399         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11400         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11401         mono_runtime_load.
11402         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11403         runtime initialization from metadata.
11404         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11405         (mono_set_rootdir): Use mono_get_module_file_name.
11406         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11407         handles.
11408         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11409         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11410         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11411         MonoCLIImageInfo. Add support for module handles.
11412         (load_cli_header): Update mono_cli_rva_image_map signature.
11413         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11414         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11415         (mono_image_rva_map): Add support for module handles.
11416         (mono_image_ensure_section_idx): Add support for module handles.
11417         (mono_image_close): Add support for module handles.
11418         (do_load_header): Add support for module handles.
11419         (mono_image_open_from_module_handle): New function for internal use.
11420         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11421         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11422         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11423         handles.
11424         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11425         * image.h: Add mono_image_fixup_vtable.
11426         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11427         support.
11428         * coree.h: New file.
11429         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11430         unsupported native code.
11431         (mono_marshal_set_callconv_from_modopt): New function splitted from
11432         mono_marshal_get_managed_wrapper.
11433         (mono_marshal_get_managed_wrapper): Use
11434         mono_marshal_set_callconv_from_modopt.
11435         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11436         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11437         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11438         that results in a deadlock when the runtime is loaded in _CorDllMain.
11439         * Makefile.am: Add coree.c and coree.h.
11441         Contributed under MIT/X11 license.
11443 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11445         * generic-sharing.c: Search for type arguments in array element
11446         types as well.
11448 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11450         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11452         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11454         * object.c: Don't setup the RGCTX when the vtable is created,
11455         because we're setting it up lazily now.
11457 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11459         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11460         64 bit support.
11462 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11464         * verify.c (verify_class_for_overlapping_reference_fields): 
11465         If class is under fulltrust allow reference types to overllap
11466         if they have the same RVA.
11468 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11470         * pedump.c: Added new flag valid-only, that makes the verifier
11471         behaves just like --security=validil. It won't fail type load
11472         due to unverifiable restrictions.
11474 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11476         * class-internals.h (struct MonoMethod): Added a verification_success
11477         field to cache verifier executions. Reduced MonoMethod:slot size by
11478         one bit.
11480 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11482         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11483         instead of a 'vt' argument to save an indirection and to allow these to be used
11484         for valuetypes.
11485         (scan_vtype): New helper function to scan an area using a gc descriptor.
11486         (mono_gc_wbarrier_value_copy): Implement this.
11487         (handle_remset): Add support for REMSET_VTYPE.
11488         (find_in_remset_loc): Ditto.
11489         (mono_gc_base_init): Allow some debugging options to be controlled through the
11490         use of the MONO_GC_DEBUG env variable.
11491         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11492         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11494 2008-04-23  Martin Baulig  <martin@ximian.com>
11496         * domain.c (mono_domain_create): Move the call to
11497         mono_debug_domain_create() down, after allocating the domain id.
11499 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11501         verify.c (verify_class_for_overlapping_reference_fields): Skip
11502         static fields while verifying for overlapping fields as they
11503         don't matter at all.
11505 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11507         * domain-internals.h: added a declaration of
11508         mono_make_shadow_copy.
11510         * assembly.c (mono_assembly_open_full): shadow copying of
11511         assemblies moved to here, so that all the assemblies within the
11512         application domain's private binary directories can be
11513         processed. Fixes bug #380546
11515         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11516         mono_make_shadow_copy and made non-static. The decision whether
11517         to shadow-copy an assembly is made based on its location - it's
11518         copied if it's in one of the private application domain binary
11519         directories and its different to the target file in the shadow
11520         directory. Fixes bug #380546
11522 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11524         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11526         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11527         types.
11529         * reflection.c (mono_image_create_token): Handle 
11530         Method/ConstructorOnTypeBuilderInst.
11531         (resolve_object): Ditto.
11532         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11533         so it can be called from resolve_object. Also handle the case when the inflated
11534         class already has its methods setup.
11536 2008-04-21  Martin Baulig  <martin@ximian.com>
11538         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11540 2008-04-20  Geoff Norton  <gnorton@novell.com>
11542         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11543         pointer dereference.
11545 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11547         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11548         portability API to look up the assembly file. Fixes behavior in
11549         situations when the application has a bin/ directory, but the
11550         assembly search patch refers to Bin/ (and thus the requested file
11551         name is Bin/SomeLibrary.dll). Fixes bug #379888
11553 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11555         verify.c (mono_type_is_generic_argument): Extracted this check
11556         from a dozen places to here.
11558         verify.c: Fixed all issues related to boxing generic arguments
11559         and their constraints.
11561 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11563         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11565 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11567         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11568         isn't finished yet. Fixes #363447.
11570 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11572         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11573         Fixes #346419.
11575 2008-04-13  Jb Evain  <jbevain@novell.com>
11577         * domain.c: update the 2.1 profile versions.
11578         Merged from the Moonlight 2 branch.
11580 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11582         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11583         mscorlibs for the non-refonly case as well.
11585         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11586         in mono_assembly_load_from_full (). Fixes #378924.
11588 2008-04-11  Geoff Norton  <gnorton@novell.com>
11590         * icall.c: The global extern environ doesn't exist on Mac.  We
11591         need to call NSGetEnviron instead.
11593 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11595         verify.c: Add generic method constraint verification.
11597 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11599         class.c (mono_class_inflate_generic_method_full): Add a long
11600         explanation to the is_mb_open hack. Remove the FIXME.
11602 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11604         * verify.c (mono_method_verify): Mark all unknown opcodes
11605         as invalid. Mark jmp as unverifiable.
11607 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11609         * verify.c: Add code to do type constraint verification on class instances.
11611         * verify.c (mono_verifier_verify_class): Use the type constraint 
11612         verification code.
11614 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11616         * class.c (mono_class_get_field_default_value): Don't pass cindex
11617         as hint to mono_metadata_get_constant_index. The local is not initialized
11618         and should contain garbage most of the time. This could only work
11619         with a lot of luck.
11621 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11623         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11625 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11627         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11629         * class.c (mono_class_from_generic_parameter): Save the token of the
11630         generic param in MonoClass::sizes.generic_param_token.
11632         * reflection.c (mono_custom_attrs_from_class): If the class type is
11633         VAR or MVAR retrieve the attributes of the generic param.
11635 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11637         * class.c (mono_class_init): Do class verification if the verifier
11638         is enabled.
11640 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11642         * verify-internal.h: Added mono_verifier_verify_class.
11644         * verify.c: Added mono_verifier_verify_class. It checks for
11645         classes with explicit layout that have overlapping reference fields.
11647         * pedump.c: Init the verifier state prior to verification. Fixed
11648         command line arguments.
11650 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11652         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11654 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11656         * verify-internals.h: Fix a warning.
11658 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11660         * verify-internals.h: New header with the verifier configuration
11661         extracted from mini.c.
11663         * verify.c: Implemented the new functions exported by verify-internals.h.
11665 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11667         * verify.c: Add proper verification of ckfinite.
11669 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11671         * verify.c (do_conversion): Improved error message to something
11672         more meanfull.
11674         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11675         with primitive types.
11677 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11679         * verify.c: Added tail prefix checking. Marked icall
11680         as unverifible.
11682 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11684         * verify.c: Fix the detection of branches to the middle
11685         of an instruction.
11687 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11689         * verify.c: Implemented verification of volatile. and
11690         unaligned. prefix. Check if a type is valid after retrieving it.
11692 2008-04-01  Dick Porter  <dick@ximian.com>
11694         * process.c (process_get_fileversion): If there's no string block,
11695         set the file language to en_US.  Fixes the other new part of bug
11696         374600.
11698 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11700         * class.c: New functions mono_method_can_access_field_full and
11701         mono_method_can_access_method_full. They perform type visibility
11702         and type site check.
11704         * class-internal.h: Added exported functions.
11706         * verify.c: Use new functions to implement proper visibility checks.
11708 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11710         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11712 2008-03-28  Dick Porter  <dick@ximian.com>
11714         * process.c (process_get_fileversion): Use the first language ID
11715         we see, rather than insisting on an invariant language.  Fixes bug
11716         374600.
11718 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11720         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11721         the streams to fix reading of invalid memory later.
11723         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11724         to ease debugging.
11726 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11728         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11729         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11731 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11732         * threads.h: Added MonoThreadManageCallback type and
11733         mono_thread_set_manage_callback prototype
11734         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11735         (used to store the mono_thread_manage callback).
11736         * threads.c: Added mono_thread_set_manage_callback, and handle
11737         "MonoThread->manage_callback" in build_wait_tids.
11739 2008-03-26  Dick Porter  <dick@ximian.com>
11741         * process.c (process_get_fileversion): Set FileVersionInfo strings
11742         to Empty when the resource doesn't have the particular info.
11743         Fixes bug 355717.
11745 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11747         * verify.c (mono_method_verify): Proper prefix validation.
11749 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11751         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11752         itself in a separate argument instead of throwing them. Fixes #373448.
11754         * appdomain.c: Bump corlib version.
11756 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
11758         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
11760 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
11762         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
11763         version macros.
11765 2008-03-20  Mark Probst  <mark.probst@gmail.com>
11767         * generic-sharing.c, class-internals.h: Code for putting
11768         reflection types into the runtime generic context.
11770 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
11772         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
11773         Fixes #340662. 
11776 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
11778         * verify.c (VerifyContext): Added instruction prefix data to the struct.
11780         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
11782         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
11784         * verify.c (do_cast): Let the result value keep the boxed status.
11786         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
11788 2008-03-17  Jb Evain  <jbevain@novell.com>
11790         * reflection.c: when running on a 2.0 runtime, emit
11791         unconditionally the #~ header version as 2.0, and the
11792         CLI header version as 2.5, for symmetry's sake with csc.
11794 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11796         * class.c: Remove the unused cache_interface_offsets stuff.
11798         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
11799         profiler.c: Fix warnings.
11801 2008-03-16  Mark Probst  <mark.probst@gmail.com>
11803         * generic-sharing.c, class-internals.h: Support for putting
11804         methods into the runtime generic context.
11806 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11808         * class.c (mono_class_setup_fields): Ignore calls made to this function for
11809         classes which are generic instances of not-yet finished typebuilders. Fixes
11810         #351172.
11812         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
11814 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
11816         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
11818         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
11819         field, replace it with a hash table in MonoDynamicImage.
11821         * reflection.c (inflate_mono_method): Access the generic definition object from
11822         image->generic_def_objects instead of imethod->reflection_info.
11824         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
11826         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
11827         
11828         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
11829         function in reflection.c so it is easier to keep in sync with the dynamic image
11830         creation code.
11832         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
11833         mono_image_close ().
11835 2008-03-15  Mark Probst  <mark.probst@gmail.com>
11837         * class.c (mono_class_generic_sharing_enabled): Disable generic
11838         sharing for all architectures except AMD64 and x86 to fix build.
11840 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11842         * verify.c: Use the generic definition MonoGenericContext when available.
11843         Remove code for checking generics instance compatibility in favor of
11844         mono_class_is_assignable_from.
11846 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11848         * marshal.c, marshal.h, metadata-internals.h, image.c,
11849         wrapper-types.h: New wrapper for invoking a shared static method
11850         without having to pass the runtime generic context argument.
11852 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11854         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
11856 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11858         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
11859         
11860         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
11861         create a token from a FieldOnTypeBuilderInst.
11862         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
11863         (resolve_object): Ditto.
11865         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
11866         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
11868 2008-03-14  Martin Baulig  <martin@ximian.com>
11870         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
11872         * debug-mono-symfile.h
11873         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
11874         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
11876 2008-03-10  Martin Baulig  <martin@ximian.com>
11878         * debug-mono-symfile.h
11879         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
11880         `lexical_block_table_offset'.
11881         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
11882         `lexical_blocks'.
11883         (MonoSymbolFile): Added `version'.
11885         * mono-debug.h
11886         (MonoDebugLexicalBlockEntry): Removed.
11887         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
11888         `lexical_blocks'.
11890         * mono-debug.c (mono_debug_add_method): Don't compute lexical
11891         blocks here; the debugger now does this internally.
11893 2008-02-27  Martin Baulig  <martin@ximian.com>
11895         * object.c (mono_runtime_exec_main): Call
11896         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
11897         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
11899 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11901         * verify.c (verify_type_compatibility_full): Allow native int to be converted
11902         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
11904 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11906         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
11907         ldftn with a virtual method.
11909 2008-03-13  Geoff Norton  <gnorton@novell.com>
11911         * decimal.c:  Only include memory.h if the platform has it.
11913 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11915         * assembly.c, class.c, metadata-internals.h: make sure public key
11916         tokesns are compared in a case-insensitive way. Also, all
11917         the lookups in the GAC use a lowercase public key token
11918         (gaacutil already does the lowercasing on install). Fixes
11919         bug #369541.
11921 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
11923         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
11924         and return value.
11926 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
11928         * image.c: when someone loads a mscorlib from a file, return the
11929         currently loaded mscorlib (fixes bug #369253).
11931 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11933         * class.c: handle types with no parents by forcing them to have
11934         System.Object as a parent and marking them as broken (this currently
11935         allows the first part of bug #369173 to work as well, likely because
11936         we don't check for typeload exceptions everywhere yet).
11938 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
11940         * class.c: more complete check that types belong to corlib
11941         (fixes second part of bug #369173).
11943 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
11945         * generic-sharing.c:  Including glib.h for the MSVC builds to define
11946           "inline" to "__inline" before including mono-membar.h.
11947           
11948         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
11949           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
11950           MSVC builds.
11952         Contributed under MIT/X11 license.
11954 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11956         * verify.c (do_invoke_method): Remove return type validation.
11958         * verify.c (do_ret): Do return type validation at return site instead of
11959         call site.
11961 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11963         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
11965         * verify.c: Some todos cleaned and improved a few error messages.
11967 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
11969         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
11971 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11973         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
11974         system types correctly.
11976         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
11977         function.
11979 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11981         * assembly.c (build_assembly_name): Fix a warning.
11983 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
11985         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
11986         the called function takes an object type argument. Fixes storing or
11987         valuetypes across remoting as well as reducing memory usage.
11988         * image.c, metadata-internals.h: remove now unused ldfld_remote and
11989         stfld_remote wrapper caches.
11991 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11993         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
11994         is not found.
11996         * reflection.c (mono_image_register_token): New helper function to save
11997         a token->object mapping.        
11999         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12000         managed code.
12002         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12003         one dimension arrays. Fixes #367670.
12004         (mono_reflection_get_type_internal): Ditto.
12006 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12008         * marshal.c: mono_load_remote_field_new() always returns object.
12009         so use the proper signature (fixes bug #366445).
12011 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12012         
12013         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12014         add an 'inline_failure' flag instead.
12016 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12018         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12019         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12020         contains the location of "this", used for exception handling.
12022 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12024         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12025         their size on all platforms for perf reasons.
12027 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12029         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12030         object-internal.h
12032         * object-internal.h: Same.
12034 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12036         * reflection.h: Fix the build I just broke.
12038 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12040         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12041         Test if a token is valid, this remove explicit usage of 
12042         MonoDynamicImage::tokens from the verifier code.
12044         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12046         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12047         instead of direct access to MonoDynamicImage::tokens.
12049 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12051         * verify.c (token_bounds_check): Fix the build I just broke.
12053 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12055         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12057         * verify.c (verifier_load_method): Fixed the errors message.
12059         * verify.c (mono_method_verify): Fixed a debug message.
12061 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12063         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12064         mono-perfcounters.h, class-internals.h: support for predefined
12065         writable counters, query of categories and counters, bugfixes.
12067 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12069         * verify.c (do_refanytype): Verify the refanytype opcode.
12071         * verify.c (mono_method_verify): Use do_refanytype.
12073 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12075         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12077         * verify.c (mono_method_verify): Use do_mkrefany.
12079 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12081         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12082         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12083         implementation.
12085 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12087         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12088         the type load exception.
12090 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12092         * verify.c: Added a few FIXME for method signatures
12094         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12095         of mono_method_get_signature and get vararg call working. Removed unused
12096         checks for return value.
12098         * verify.c (do_refanyval): Verify the refanyval opcode.
12100         * verify.c (mono_method_verify): Implemented verification of arglist and
12101         use do_refanyval.
12103 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12105         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12106         vtypes to marshal.c.
12108         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12109         it works for AOT as well.
12111 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12113         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12114         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12115         the system time is adjusted.
12117 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12119         * icall.c, icall-def.h: use the new time functions (fixes the
12120         non-monotonic behaviour of TickCount).
12122 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12124         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12125         it breaks the build.
12126         
12127         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12128         cattr is not finished yet.
12130 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12132         * verify.c: Proper token validation for field, method and type.
12134 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12136         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12138         * loader.c (method_from_memberref): Generate type load error instead of method missing
12139         if the type is not found.
12141 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12143         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12144         some of the conversions caused the generation of a marshal directive exception.
12146 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12148         verify.c: Report which exception should be thrown by the JIT.
12149         Added a lot of FIXME notes.
12151 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12153         * generic-sharing.c: Runtime generic context slots are not
12154         instantiated on init anymore.  Instead, provide function to do the
12155         instantiating on demand.
12157         * class-internals.h: Added vtable to runtime generic context.
12158         Macros for encoding direct and indirect slot offsets in one
12159         guint32.
12161 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12163         * object.c, generic-sharing.c: Moved some generic sharing code
12164         from object.c to generic-sharing.c.
12166         * generic-sharing.c: Added support for extensible runtime generic
12167         context.
12169         * metadata-internals.h: Two new hash tables in MonoImage for
12170         extensible runtime generic context support.
12172         * domain.c: Unregister generic vtables upon domain unloading.
12174         * image.c: Destroy new hash tables upon image unloading.
12176         * metadata.c: Unregister generic subclasses upon image unloading.
12178         * class-internals.h: New data structure for runtime generic
12179         context template.  New fields in the runtime generic context for
12180         extensible part.
12182         * Makefile.am: Added generic-sharing.c.
12184 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12186         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12187         there is a pending loader exception, raise it.
12189         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12190         same.
12192         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12193         same.
12195         Fixes #363450.
12197 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12199         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12201         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12202         
12203         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12204         ref-only requests for compatibility with MS.
12206 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12208         * reflection.c (mono_custom_attrs_from_method): Don't silently
12209         return an empty list for generic method instances.
12210         (mono_custom_attrs_from_param): Likewise.
12212 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12213             Raja R Harinath  <harinath@hurrynot.org>
12215         Fix #354757
12216         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12217         * class.c (mono_class_inflate_generic_method_full): Initialize it
12218         when a fully-open method is instantiated.
12219         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12220         to new field.
12221         * reflection.c (inflate_mono_method): Don't create a temporary context.
12223 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12225         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12226         Compute correct value, to prepare for imethod->reflection_info going away.
12228 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12230         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12232 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12234         * verify.c: Implement skip visibility flag.
12236 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12238         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12239         which contains an extra field to tell the kind of exception that should be thrown.
12241         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12243 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12245         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12246         'method' is updated.
12248 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12250         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12251         explicit layout as well. Fixes #360375.
12253 2008-02-11  Geoff Norton  <gnorton@novell.com>
12255         * loader.c: Guard and dereference against inflated generic methods
12257 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12259         * class.c: Include Retargetable spec in assembly name.
12260         * assembly.c: Always include PublicKeyToken spec in assembly name
12261         (with value "null" if assembly is not signed), and include
12262         Retargetable spec.
12263         * icall-def.h: Added icall for Assembly.get_fullname.
12264         * icall.c: Added icall returning the fullname of an assembly.
12266 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12268         * class.c (mono_class_setup_vtable_general): Add a missing call to
12269         mono_class_setup_methods () which is needed in the AOT case.
12271 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12273         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12274         stack type of the given MonoType.
12276         * verify.c (verify_type_compatibility_full): Handle the void type.
12278         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12279         way stack merging works.
12281         * verify.c (store_local): Improved verification message.
12283         * verify.c (do_branch_op): If the merging is invalid, the method
12284         is unverifiable and not invalid. Improved error message.
12286         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12287         a reference type diferent than System.Object. Improved error
12288         message.
12290 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12292         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12294         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12295         type of an enum even if the argument is byref.
12297         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12298         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12300         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12302         *verify.c (verify_type_compatibility_full): Make enum types
12303         compatible with their base types.
12305         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12306         types are compatible for the special case of a boxed valuetype and
12307         System.Object.
12309         * verify.c (verify_stack_type_compatibility): The function
12310         is_compatible_boxed_valuetype was extracted from here.
12312         * verify.c (push_arg): Only set ctx->has_this_store if the method
12313         is not static.
12315         * verify.c (do_ldelem): Fixed a typo in an error message and added
12316         strict check for mixing int32 and native int as the array type
12317         and ldelem type.
12319         * verify.c (merge_stacks): Consider boxed valuetypes in the
12320         compatibility checks.
12322 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12323         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12325 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12326         *class.c: use_new_interface_vtable_code: renamed the env var to have
12327         a "MONO_" prefix, and fix the logic to enable it by default.
12329 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12330         *class.c:
12331         mono_class_setup_vtable_general: rewrote the way in which interface
12332         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12333         makes the code more maintainable.
12334         For now the old code is still there, and can be activated setting
12335         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12337 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12339         * verify.c: guarded some debug functions around and #ifdef.
12341         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12343 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12345         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12346         changes for now since they seem to break too many things.
12348 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12350         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12351         mono_marshal_find_nonzero_bit_offset): Added macro and function
12352         for finding the byte- and bit-offset of a bitfield within a
12353         struct.
12355 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12357         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12358         (mono_marshal_get_struct_to_ptr): Ditto.
12360         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12361         cctor_signature.
12363 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12365         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12366         between methods for non-corlib types.
12368 2008-02-02  Geoff Norton  <gnorton@novell.com>
12370         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12371         generic parameters as well. (Fixes #342536)
12373 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12375         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12377         * verify.c (do_invoke_method): Fix for calling with byref structs.
12379         * verify.c (do_cast): push a boxed value type based on the type token and not
12380         the type of stack.
12382 2008-01-31  William Holmes  <billholmes54@gmail.com>
12384         * process.c (process_module_string_read): Check the size returned form 
12385           VerQueryValue to avoid out of memory exception. 
12387 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12389         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12390         Handle properly modules which are not in the moduleref table. Fixes
12391         #356938.
12393 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12395         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12396         the dynamic case which is now in managed code.
12397         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12399         * marshal.c (mono_string_to_bstr): Fix a warning.
12400         (init_com_provider_ms): Ditto.
12402         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12404         * exception.c (mono_get_exception_out_of_memory): New helper function.
12406 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12408         * marshal.c: Add support for BSTR marshalling
12409         using other COM systems.
12411         Code is contributed under MIT/X11 license.
12413 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12415         * object.c (mono_runtime_invoke_array): reverted previous
12416         commit as it breaks the build.
12418 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12420         * object.c (mono_runtime_invoke_array): Verify arguments for
12421         invalid types. Fixes #348522.
12423 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12425         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12426         non-final virtual calls using call. 
12428         * verify.c (do_invoke): fixed some TODOs.
12430         * verify.c (push_arg): set has_this_store for "ldarga 0".
12432 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12434         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12435         which belong to an inflated class. Fixes #356531.
12437 2008-01-26  Robert Jordan  <robertj@gmx.net>
12439         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12440         which resort to FindFirstFile when a certain error condition
12441         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12442         Code is contributed under MIT/X11 license.
12444 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12446         * marshal.c (emit_marshal_string): Fix out string marshalling
12447         to use specified encoding. Fixes #323900.
12449         Code is contributed under MIT/X11 license.
12451 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12453         * class.c (mono_class_inflate_generic_method_full): Don't modify
12454         iresult->context after cache check.
12456 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12458         * class.c (mono_class_inflate_generic_method_full): Change the
12459         struct assignments to memcpy for better visibility and add some comments.
12461 2008-01-23  Dick Porter  <dick@ximian.com>
12463         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12464         procedure, and make it work on windows.
12466 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12468         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12469         a MonoReflectionTypeBuilder since it is always of that type.
12471         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12473         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12475         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12476         
12477         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12479         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12481         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12482         instantiations from the type cache.
12484 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12486         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12488         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12490 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12492         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12494         * verify.c (mono_method_verify): removed old TODO
12496 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12498         * verify.c (do_newobj): add visibility check.
12500 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12502         * verify.c (do_load_function_ptr): add visibility check.
12504 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12505         *class.c:
12506         mono_generic_class_get_class: hook profiler events.
12507         mono_field_get_offset: added to support heap-shot in the new profiler.
12508         *class.h: exported mono_field_get_offset.
12509         * reflection.c:
12510         mono_reflection_setup_internal_class: hook profiler events.
12512 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12514         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12515         argument here too and use it to avoid checking for pending exceptions if 
12516         possible.
12518 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12520         * assembly.c (build_assembly_name): add arg for passing the assembly
12521         flags. Do not consider a PublicKey with value "null" valid.
12522         (mono_assembly_name_parse_full): added boolean argument that will be
12523         set if the assembly name contains a PublicKeyToken spec. Added support
12524         for the Retargetable spec for which only Yes or No are allowed as valid
12525         value. Consider assembly name invalid if Retargetable spec is set, but
12526         either version, culture or public key (token) are not specified.
12527         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12528         with implementation in assembly.c.
12529         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12530         from MonoAssemblyName.
12531         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12532         introduced argument for mono_assembly_name_parse_full to know if the
12533         assembly name has a PublicKeyToken spec, and if it has instruct
12534         fill_reflection_assembly_name to use default value for keyToken (if
12535         PublicKeyToken is null).
12537 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12539         * verify.c (mono_method_verify): fixed ovf ops with
12540         float values. They are unverifiable now.
12542 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12544         * class.c (set_failure_from_loader_error): add BadImageException to the
12545         list of exceptions that can cause a type to fail to load.
12547         * class.c (mono_class_get_exception_for_failure): same.
12549 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12551         * verify.c (in_any_exception_block): added, check if offset
12552         is part of any exception handling clause.
12554         * verify.c (get_stack_type): added VAR and MVAR types.
12556         * verify.c (do_stobj): better error messages.
12558         * verify.c (do_cpobj): added, check cpobj.
12560         * verify.c (do_initobj): added, check initobj.
12562         * verify.c (do_sizeof): added, check sizeof.
12564         * verify.c (do_localloc): added, check localloc.
12566         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12568 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12570         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12571         save_lmf/restore_lmf opcodes.
12573         * threads.c (mono_threads_install_notify_pending_exc): New function to
12574         install a callback notifying the JIT there is a pending exception on a thread.
12575         (mono_thread_request_interruption): Call the new callback.
12576         (mono_thread_get_and_clear_pending_exception): New function to return the
12577         exception pending on a thread.
12579         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12580         to turn off checking for pending exceptions.
12581         (mono_marshal_get_native_wrapper): Ditto.
12583 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12585         * threads-types.h: Get rid of the unnecessary extern declarations.
12587 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12589         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12590         return field from parent class if not private.
12591         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12592         returns fields from parent class if they are not private.
12593         (method_nonpublic): added function to determine if a given method
12594         should be considered non-public. Returns false for private methods
12595         on parent class, and internal methods from parent on the 1.0 profile.
12596         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12597         use method_nonpublic function to determine whether method should be
12598         returned.
12599         (property_accessor_public): use newly introduced method_nonpublic
12600         function to determine whether accessor is non-public. 
12601         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12602         event from parent class if not private. Only return static event if
12603         Static flag is set, and only return static event from parent class if
12604         FlattenHierarchy flag is set.
12605         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12606         include non-private events from parent class.
12608 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12610         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12611         warning.
12613 2008-01-16  Wade Berrier <wberrier@novell.com>
12615         * security.c: Add assembly.h header to appease some warnings
12617 2008-01-16  Dick Porter  <dick@ximian.com>
12619         * process.c (process_module_string_read): Remove trailing null
12620         when saving string.
12622 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12624         * class-internals.h: A new data structure describing the layout of
12625         a runtime generic context (MonoRuntimeGenericContextTemplate).
12627         * metadata-internals.h: Added a hash table to MonoDomain that maps
12628         from open generic classes to their runtime generic context
12629         templates.
12631         * object.c: Building of the runtime generic context, including
12632         proper handling of generic type arguments of superclasses.
12633         Building of the runtime generic context according to the template.
12635 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12637         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12638         Fixes #350856.
12640         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12641         mono_portability_find_file (). Fixes #325466.
12642         (mono_image_get_public_key): Fix a warning.
12644 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12646         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12647         Fixes #353550.
12648         (mono_class_from_name_case): Ditto.
12650 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12652         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12653           common storage for the tables used in the System/NumberFormatter class.
12655 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12657         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12659 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12661         * verify.c (get_boxable_mono_type): check if the token is valid.
12663         * verify.c (set_stack_value): changed to add an error if an
12664         invalid type is set on stack. Changed all callers due to signature change.
12666         * verify.c (do_stobj): implement stobj validation.
12668 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12670         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12671         set container->is_method, it was set earlier.
12673         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12674         generic methods.
12676         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12677         is_method of the generic container to TRUE for methods.
12679 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12681         * metadata.c (type_in_image): Handle type parameters properly.
12683         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12684         memory ownership of this structure.
12686 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12688         * verify.c (get_boxable_mono_type): make typedref types been just
12689         unverifiable. check for void type.
12691         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12693         * verify.c (do_load_function_ptr): accept method spec tokens.
12695 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12697         * marshal.c (mono_class_native_size): Always set *align even if this is called
12698         recursively.
12700 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12702         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12703         out-of-date.
12705 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12707         * verify.c: removed some old unused tables. A huge bunch of small fixes
12708         to things found while testing the verifier with mono basic.
12710         * verify.c (dump_stack_value): dump null literal flag to.
12712         * verify.c (verify_type_compatibility_full): fix comparison
12713         for types that have a generic super type.
12715         * verify.c (verify_stack_type_compatibility): fix compatibility
12716         between null literals and reference types. fix compatibility between
12717         boxed valuetypes and object. fix corner case test for enums.
12719         * verify.c (do_cmp_op): proper verification of cgt.un in case
12720         of reference types.
12722         * verify.c (do_invoke_method): fix error message.
12724         * verify.c (do_store_indirect
12726         * verify.c (check_is_valid_type_for_field_ops): proper verification
12727         of managed pointers to valuetypes and boxed valuetypes. proper verification
12728         of null literals.
12730         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12731         allow token to be a reference type.
12733         * verify.c (do_cast): proper handling of boxes valuetypes.
12735         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12736         in object[].
12738         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12739         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12740         fixed the decoding of unbox_any
12742 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12744         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12746 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12748         * verify.c (do_newobj): do delegate verification.
12750         * verify.c (verify_delegate_compatibility): perform delegate
12751         verification.
12753         * verify.c (verify_ldftn_delegate): perform tests related to
12754         ldftn delegates.
12756         * verify.c (mono_delegate_signature_equal): perform the
12757         slightly diferent signature comparison required by delegates.
12759         * metadata.c (mono_metadata_type_equal_full): added and exported
12760         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
12761         allows signature only comparison.
12763         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
12764         as MONO_INTERNAL.
12766 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
12768         * verify.c: added a bunch of stack_slot_* functions to
12769         make access to stack slot type easier. This is required to
12770         allow optional flags, like null literal, boxed value and
12771         this pointer.
12772         All access paths to IlStackDesc::stype have been changed 
12773         to use these new funcions.
12774         Removed a bunch of unused functions and cleared all warnings.
12775         This patch introduces the usage of the this pointer and 
12776         boxed value flags.
12778 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
12780         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
12782 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
12784         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
12785         match managed version.
12787         * appdomain.c: Bump corlib version.
12788         
12789         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
12790         argument.
12792 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
12794         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
12795         Set public key token to zero-length byte array if assembly is not
12796         strongnamed.
12798 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12800         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
12801         writing a vtype array elem.
12803 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
12805         * assembly.c (build_assembly_name): return FALSE if length of token is
12806         not 16 (if not "null").
12807         (mono_assembly_name_parse_full): return FALSE if value of version,
12808         culture, token or key is 0.
12809         * icall.c (fill_reflection_assembly_name): add boolean arguments to
12810         specify whether public key and public key token must be set to default
12811         value (zero-length byte array) if not available. Set versioncompat to
12812         SameMachine. If public key is available or the default is set, then
12813         set PublicKey flag.
12814         (ves_icall_System_Reflection_Assembly_FillName): if no public key
12815         is available, use empty byte array as default value. On the 2.0
12816         profile, use default value for public key token if not set.
12817         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
12818         profile, use default value for public key if not set. On the 2.0
12819         profile, use default value for public key token if not set.
12820         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
12821         default values for public key and public key token.
12823 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12825         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
12826         field to keep it in synch with the managed object.
12828         * marshal.c (emit_marshal_object): Add support for byref marshalling of
12829         delegates. Fixes #351520.
12831         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
12832         contains defined memory.
12833         
12834         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
12836         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
12837         
12838         * sgen-gc.c (check_consistency): New helper function to do a consistency check
12839         of the GC data structures.
12841         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
12843         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
12844         
12845         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
12846         barrier.
12847         (mono_array_clone_in_domain): Ditto.
12848         (mono_array_clone_in_domain): Ditto.
12850         * threads.c (start_wrapper): Register the thread start argument as a GC root.
12851         (cache_culture): Use a write barrier.
12853         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
12854         (ves_icall_get_property_info): Ditto.
12856         * object.h (MONO_STRUCT_SETREF): New macro.
12858         * class-internals.h (MonoStats): Add some GC statistics.
12860         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
12862 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
12864         * exception.c (mono_exception_from_name_two_strings):
12865         Break from loop after method is found.
12867 2008-01-04  Dick Porter  <dick@ximian.com>
12869         * process.c (process_module_string_read): Rename variable to
12870         reflect correct usage, after fixing bug 345972.
12872 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
12874         * verify.c (mono_type_create_fnptr_from_mono_method): 
12875         created a MonoType function pointer instance to be used during
12876         verification. The verifier releases this memory at end.
12878         * verify.c (mono_method_is_constructor): extracted repeated
12879         checks for constructor into a single class.
12881         * verify.c (do_push_field): use new extracted method
12882         for constructor check.
12884         * verify.c (do_newobj): same.
12886         * verify.c (do_ldftn): renamed to do_load_function_ptr
12887         and make it verify ldvirtftn too.
12889         * verify.c (mono_method_verify: proper verification
12890         of ldvirtftn. release created MonoMethod instances.
12892 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12894         * verify.c (token_bounds_check): added.
12896         * verify.c (do_ldftn): added.
12898         * verify.c (mono_method_verify): proper verificartion of ldftn.
12900 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12902         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
12903         than the table row count. It's the resposibility of the caller to
12904         make the bounds check and raise the correct error.
12906         * metadata.c (mono_metadata_decode_row_col): Same.
12908         * loader.c (mono_get_method_from_token): perform bounds check
12909         on token for methoddef table.
12911 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12913         * icall.c
12914         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12915         assert into a negative result, the managed code already coped with
12916         that.
12918         Some folks on Windows reported this error. 
12920 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
12922         * appdomain.c: Bump corlib version.
12923         * icall.c:
12924         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
12925         CultureInfo.CreateCulture to create CultureInfo for name.
12926         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
12927         create CultureInfo for name. Fixes bug #347174.
12929 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12931         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
12932         flags.
12934         * verify.c (is_valid_branch_instruction): allow branching to the
12935         first instruction of the protected block.
12937         * verify.c (is_valid_cmp_branch_instruction): same.
12939         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
12940         avoid double initialization.
12942         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
12943         detect which cases the eval stack should just be copied.
12945         * verify.c (mono_method_verify): check if the eval stack
12946         is empty when entering a protected block.
12948 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12950         * verify.c: added is_clause_in_range, is_clause_inside_range,
12951         is_clause_nested and verify_clause_relationship. They perform
12952         the verifications stated in P1 12.4.2.7.
12954         * verify.c (mono_method_verify): remove some unused variables,
12955         add the new exception clause checks, add instruction border
12956         checks for protected block start/end, improved some error 
12957         messages and fixed a bug in the way invalid instruction access
12958         is detected.
12960 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
12962         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
12963         from GC 7.0 if available.
12965         * object.c: Remove an unused define.
12966         
12967         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
12969         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
12971         * null-gc.c (mono_gc_make_descr_for_array): Implement.
12973         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
12975         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
12976         to take the same arguments as the other make_descr functions.
12978         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
12980         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
12981         directly.
12983         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
12984         mini.c.
12986         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
12987         call to boehm-gc.c.
12989         * boehm-gc.c (mono_gc_register_root): Fix a warning.
12991         * null-gc.c (mono_gc_register_root): Fix a warning.
12993         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
12995         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
12996         (mono_gc_base_init): Call GC_init ().
12998         * null-gc.c: Define mono_gc_register_root () as a no-op.
13000         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13002 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13004         * verify.c: add prototype for merge_stacks at top
13006         * verify.c (do_switch): added.
13008         * verify.c (merge_stacks): on some cases the stack merging
13009         was not happening properly. Unequal stack sizes at merge
13010         points should be invalid.
13012         * verify.c (mono_method_verify): added more debug info on stack state.
13013         verify switch properly.
13015 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13017         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13018         marshal.h.
13020         * boehm-gc.c marshal.c: Include method-builder.h.
13022         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13024         * marshal.c: Remove some code which is now in method-builder.c.
13026 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13028         * method-builder.c: New file, extraction of the method builder functionality 
13029         from marshal.c.
13031         * marshal.c: Move the mb functions into method-builder.c.
13033         * marshal.h marshal.c: Export some mono_mb_... functions.
13035         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13037         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13038         the caller.
13040         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13042         * loader.c (mono_field_from_token): Ditto.      
13044         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13045         type as well.
13046         
13047         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13048         Fixes #342565.
13050         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13051         a helper function for setting it.
13053         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13055         
13056         * assembly.c: Significally simplify code now that referenced assemblies are 
13057         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13059         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13060         #349952.
13062 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13064         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13065         instructions that were target of branches or are at protected block boundaries.
13067         * verify.c (in_same_block): handle filter clauses.
13069         * verify.c (is_valid_branch_instruction): added. checks the target of
13070         instructions br or brtrue/false.
13072         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13073         binary branch instructions such as beq and bge.
13075         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13076         and made it pin the instruction as been part of the exception block.
13078         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13079         of in_same_block.
13081         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13082         of in_same_block.
13084         * verify.c (do_ret): ret from a protected block is unverifiable and
13085         not invalid.
13087         * verify.c (do_static_branch): verify br and br.s instructions.
13089         * verify.c (merge_stacks): add extra param to support detection
13090         of branches in the middle of instructions.
13091         
13092         * verify.c (mono_method_verify): verify branches and exception blocks
13093         that target the middle of instructions. Proper verification of br and br.s.
13095 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13097         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13098         skip_visibility field.
13099         (reflection_methodbuilder_from_dynamic_method): Ditto.
13101         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13102         registrations. Fixes #348193.
13104         * threads.h: Move the internal mono_thread_get_pending_exception () to
13105         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13107 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13109         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13110         icall registration. Fixes #348193.
13112         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13113         for corlib classes into object. Fixes #349621.
13115 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13117         * icall.c (property_accessor_nonpublic): new function to determine
13118         whether an accessor allows a property to be considered non-public.
13119         Returns false for private accessor(s) from parent class, and internal
13120         accessor(s) from parent on 2.0 profile (and higher).
13121         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13122         to determine whether property should be included if NonPublic flag
13123         is set. Fixes bug #349078.
13125 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13127         * verify.c (init_stack_with_value): added.
13129         * verify.c (mono_method_verify): extracted common
13130         code for exception initialization into init_stack_with_value.
13132         * verify.c (mono_method_verify): initialize the exception
13133         for handler clauses as well.
13135         * verify.c (mono_method_verify): fix the exception clause
13136         ordering rules, it should use handler end offset and not
13137         start offset.
13139 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13141         * rawbuffer.c: remove useless warning.
13143 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13145         * threads.h, threads-types.h: move functions to the correct header
13146         (fixes bug#349952).
13148 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13150         * verify.c (mono_method_verify): proper verification
13151         of exception handling clauses ranges and fallthru in
13152         and out of protected blocks.
13154 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13156         * verify.c (mono_method_verify): fixed compilation issue.
13158 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13160         * verify.c (mono_method_verify): a printf slipped in, changed
13161         to use verifier debug macro.
13163 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13165         * verify.c (is_correct_leave): check for filter clauses.
13167         * verify.c (do_filter): added.
13169         * verify.c (mono_method_verify): property verification of leave.
13172 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13174         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13175         Win32 build, until we figure out how to do the proper thing on
13176         Win32.
13178 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13180         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13181         by the previous patch.
13182         
13183         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13184         the assembly resolve handler for refonly assemblies.
13186 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13188         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13189         Make sure only one thread is allowed to commence shutdown, and
13190         don't allow new threads to be started once shutdown is in
13191         progress.
13193 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13195         * verify.c (is_correct_endfilter): added.
13197         * verify.c (is_unverifiable_endfilter): added.
13199         * verify.c (do_endfilter): added.
13201         * verify.c (mono_method_verify): property verification of endfilter
13202         and fixed a corner case or endfinally.
13204 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13206         * verify.h: new flags to support fail fast of unverifiable code and
13207         do non-strict verification. Non-strict verification is required to
13208         have MS runtime compatibility. There are a huge amount of unverifiable
13209         code that it accepts as verifiable. The strict mode verifies the code
13210         as the specs says.
13211         Non-strict mode will be required in cases where code needs to be
13212         accepted as verifiable but fails under strict mode.
13214         * pedump.c: added support to fail fast and non-strict verification.
13216         * verify.c: added support for both fail fast and non-strict verification.
13218 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13220         * verify.c (is_correct_endfinally): added.
13222         * verify.c (mono_method_verify): property verification of endfinally.
13224 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13226         * verify.c (in_any_block): check for filter clauses.
13228         * verify.c (is_correct_rethrow): added.
13230         * verify.c (mono_method_verify): property verification of rethrow.
13232         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13234 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13236         * verify.c (do_throw): added.
13238         * verify.c (mono_method_verify): property verification of throw
13240 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13242         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13243         assemblies. Fixes #346425.
13245 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13247         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13248         FieldBuilders.
13250         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13252         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13253         prevent asserts when this is called with a token which might not be valid.
13255         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13256         lookup_dynamic_token_class with valid_token == FALSE.
13258         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13260         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13262         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13263         
13264 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13266         * gc.c: Don't delay threadpool thread finalization unless Mono is
13267         shutting down.
13269 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13271         * threads.c: turn an assert into a non-fatal warning.
13273 2007-12-09  Robert Jordan  <robertj@gmx.net>
13275         * icall.c (GetVirtualMethod): Add missing argument validation.
13277 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13279         * verify.c (do_cast): added.
13281         * verify.c (mono_method_verify): property verification of castclass and isinst.
13284 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13286         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13288         * verify.c (do_stelem): added.
13290         * verify.c (mono_method_verify): property verification of stelem.X.
13292 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13294         * class.c, class-internals.h: Introduce an environment variable
13295         (MONO_GENERIC_SHARING) through which the extent of generic code
13296         sharing can be controlled (share all classes, share only corlib
13297         classes, or share nothing).
13299         * object.c: Only create runtime generic context for classes for
13300         which sharing is enabled.
13302 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13304         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13306         * verify.c (mono_method_verify): property verification of ldelem.any.
13308 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13310         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13311         added ldelem.X opcodes.
13313         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13315         * verify.c: proper verification of ldelem.X 
13317 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13319         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13321 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13323         * verify.c (mono_method_verify): null literal requires special handling,
13324         the value pushed on stack need to be flagged as so.
13326         * verify.c (do_ldelema): Verify ldelema properly.
13328 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13330         * verify.c: Verify ldlen properly.
13332 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13334         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13335         to the target object's type. Fixes #346160.
13337 2007-12-05  Dick Porter  <dick@ximian.com>
13339         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13340         Solaris needs the same workaround as BSD-derived systems.  Fixes
13341         bug 323524, patch by Burkhard Linke
13342         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13344 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13346         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13347         handle to use when error dialog is shown; otherwise, update mask
13348         to show no error dialog when an error occurs.
13350 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13352         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13354         * class.c (mono_class_get_field_default_value): New helper function to initialize
13355         field->def_type and field->data.
13357 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13359         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13360         the general one.
13362         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13364         * marshal.c: Avoid depending on delegate->method_info being set.
13366         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13367         
13368         * object.c (mono_delegate_ctor): Set delegate->method.
13370         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13372         * appdomain.c: Bump corlib version.
13374 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13376         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13377         equality check if we're comparing canonicalized MonoGenericInsts.
13379 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13381         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13382         accessing class->methods.
13384 2007-11-22  Dick Porter  <dick@ximian.com>
13386         * threads.c: Ensure that the synch_cs is set before trying to use
13387         it.
13389 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13391         * profiler.c: r89126 broke the statistial profiler, unbreak.
13393 2007-11-22  Martin Baulig  <martin@ximian.com>
13395         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13397         * mono-debug.c
13398         (mono_debug_debugger_version): Bump to 3.
13399         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13400         -> mono_debugger_class_initialized().
13402         * mono-debug-debugger.c
13403         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13405         * class.c
13406         (mono_debugger_start_class_init_func): Removed.
13407         (mono_debugger_class_loaded_methods_func): Added.
13408         (mono_class_setup_methods): Call it here.
13410 2007-11-22  Martin Baulig  <martin@ximian.com>
13412         * mono-debug.c
13413         (mono_debug_add_delegate_trampoline): New public method.
13414         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13416         * mono-debug.h
13417         (MonoSymbolTable): Added `global_data_table'.
13418         (MonoDebuggerTypeKind): Removed.
13420 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13422         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13423         these methods.
13425         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13426         
13427 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13429         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13431 2007-11-20  Martin Baulig  <martin@ximian.com>
13433         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13435         * mono-debug-debugger.c
13436         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13437         (mono_debugger_remove_breakpoint): Likewise.
13438         (mono_debugger_check_breakpoints): Likewise.
13439         (mono_debugger_register_class_init_callback): New public method.
13440         (mono_debugger_remove_class_init_callback): Likewise.
13441         (mono_debugger_add_type): Likewise.
13443         * mono-debug-debugger.h
13444         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13446 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13448         * class.c: more interface implementations needed for the
13449         array enumerator (fixes bug #341112).
13451 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13453         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13454         fix ParamName of ArgumentNullExceptions.
13456 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13458         * reflection.c (mono_reflection_encode_sighelper): Generate the
13459         modopts and modreqs.   I have a useless test that crashes monodis,
13460         but that shows the code working.
13462 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13464         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13465         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13467 2007-11-15  Dick Porter  <dick@ximian.com>
13469         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13470         When joining a thread, it's the thread that's calling Join that
13471         gets WaitSleepJoin state not the target.  Fixes the standalone
13472         test case in bug 334740, and hopefully the whole bug too.
13474 2007-11-15  Dick Porter  <dick@ximian.com>
13476         * process.c: Read file version info from the files pointed at by
13477         process modules, not the current process.  Fixes bug 315969.
13479         Use windows typedef names in some places to fix warnings on the
13480         windows build.
13482 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13484         * image.c, metadata-internals.h: Added a generic_class_cache hash
13485         to MonoImage for looking up generic classes when sharing generics.
13487 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13489         * sgen-gc.c: warning cleanups.
13491 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13493         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13494         inherited properties.
13496 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13498         * object.c, class-internals.h: Added more information to the
13499         runtime generic context.
13501 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13503         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13504         instead of just the target method. Generalize the abstract method handling to
13505         handle any non-static method.
13507         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13508         mono_marshal_get_delegate_invoke () signature change.
13510 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13512         * class.c, class-internals.h: Made
13513         mono_type_get_basic_type_from_generic () public.  Fixed member
13514         access check for shared generics.
13516         * loader.c: Don't insert field into field cache if it's part of a
13517         non-inflated generic class.
13519         * domain.c, domain-internals.h: The generic sharing context is now
13520         part of the jit info data structure.  Added two accessor
13521         functions.
13523 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13525         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13526         the array Get/Set/Address methods, since the JIT inlines them.
13528         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13530         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13531         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13533         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13534         mono_marshal_get_delegate_invoke signature change.
13536         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13537         an additional argument. Add support for invoking abstract methods.
13539         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13541         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13543 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13545         * class.c: Do field layout for open generic classes as well.
13547 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13549         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13550         other objects, because the threadpool is still around.  Put them
13551         in a list instead and after finalizing all other objects in the
13552         root domain shut down the thread pool and then finalize the
13553         threads.  Fixes bug #337383.
13555         * threads.c, thread-types.h: New mono_thread_create_internal()
13556         function for marking a thread with the threadpool flag before it
13557         started.  Set synch_cs to NULL after freeing it.
13559         * threadpool.c: Mark threadpool threads before they start.
13561 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13563         * reflection.h, reflection.c: don't export random functions
13564         and lazy load dbnull and missing objects.
13566 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13568         * class.c: Initialize COM types if COM interfaces
13569         are present (not just COM classes).
13570         
13571         Code is contributed under MIT/X11 license.
13573 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13574         * reflection.c:
13575         create_dynamic_mono_image: hook module profiler events (dynamic case).
13576         mono_image_basic_init: hook assembly profiler events (dynamic case).
13578 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13579         * profiler.c:
13580         simple_appdomain_unload: completely terminate the profiler
13581         instead of only processing the statistical samples.
13582         simple_shutdown: make sure this is really called exactly once,
13583         even in multithreaded applications, and always listen to
13584         appdomain events.
13585         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13586         here, the "[un]load" functions will do it.
13587         Fixes bugs #333791 and #325261.
13589 2007-11-07  Geoff Norton  <gnorton@novell.com>
13591         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13592         rather than depend on __APPLE__.
13594 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13596         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13598 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13600         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13601         UTF16 MonoString. Fix the crash from bug #335488
13603 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13605         * marshal.c: Correct (for non-Win32 OS) length != size in 
13606         mono_string_from_bstr. Fix #339530.
13608 2007-11-06  Geoff Norton  <gnorton@novell.com>
13610         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13611         to succeed
13613 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13615         * process.c: Added run-time GetProcessId API detection for Windows.
13617 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13619         * reflection.c  (mono_param_get_objects): If a parameter has the
13620         attribute [System.Runtime.InteropServices.Optional] we should
13621         set the DefaultValue of the ParameterInfo to be
13622         System.Reflection.Missing instead of DBNull.
13624         See bug #339013.
13626         (mono_get_reflection_missing_object): New method,
13627         returns the System.Reflection.Missing.Value singleton instance.
13629 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13631         * culture-info-table.h : regenerated.
13633 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13635         * icall.c: Use GetEnvironmentStrings on windows
13636         so we are using the same environment block as 
13637         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13638         #333740.
13639         
13640         Code is contributed under MIT/X11 license.
13642 2007-10-31  Martin Baulig  <martin@ximian.com>
13644         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13646         * mono-debug-debugger.h
13647         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13649 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13651         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13652         classes.
13654 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13656         * culture-info-table.h : regenerated.
13658 2007-10-30  Robert Jordan  <robertj@gmx.net>
13660         * icall-def.h, icall.c:
13661         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13663         Code is contributed under MIT/X11 license.
13665 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13667         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13668         inflated class instead of inflating them again.
13669         
13670         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13671         dynamic case.
13673         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13674         Call setup_supertypes () after klass->parent is set.
13675         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13677         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13678         for inflated instances of not yet created dynamic generic classes.
13679         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13680         times from inflated_method.
13681         (methodbuilder_to_mono_method): Ditto.
13683 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13685         * gc.c: code cleanup and removed old untested option of not creating the
13686         finalizer thread.
13688 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13690         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13691         creating a jump trampoline for dynamic methods.
13693 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13695         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13696         generic TypeBuilders when called from another method of the same type (bug #335131).
13699 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13701         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13702         doesn't seem to work perfectly.
13703         
13704         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13705         called multiple times.
13706         (methodbuilder_to_mono_method): Ditto.
13707         (resolve_object): Inflate FieldBuilder's.
13709 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13711         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13712         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13713         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13715 2007-10-26  Dick Porter  <dick@ximian.com>
13717         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13718         Thread initialisation changes
13720 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13722         * verify.c: fix compatibility check between arrays and System.Array
13724 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13726         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13727         too. Fixes #336999.
13729 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13731         * object.c (mono_value_box): Use typed allocation here.
13733 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13735         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13736         trampoline instead of compiling the method right away.
13738         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13740 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13742         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13743         related fields for dynamic classes. Fixes #334493.
13745 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13747         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13748         
13749         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13751         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13752         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13754         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13756         * reflection.c (create_generic_typespec): Initialize klass->generic_container
13757         if needed.
13758         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
13760 2007-10-18  Jonathan Chambers <joncham@gmail.com>
13762         * marshal.c: Use correct key when removing item
13763         from ccw_hash.
13764         
13765         Code is contributed under MIT/X11 license.
13767 2007-10-17  William Holmes  <billholmes54@gmail.com>
13769         *marshal.c: Adding a case to marshal booleans to U1
13771         Code is contributed under MIT/X11 license.
13773 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
13775         * class.c (mono_class_from_name): Search the modules compromising dynamic
13776         assemblies. Fixes #331601.
13778 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
13780         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
13781         exception if the type name contains an assembly component. Fixes #334203.
13783         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
13784         modules inside dynamic assemblies. Fixes #334200.
13785         
13786         * reflection.c: Set image->public_key and image->public_key_length;
13788         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
13789         fields.
13791         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
13792         
13793 2007-10-16  Mark Probst  <mark.probst@gmail.com>
13795         * metadata.c: Implemented correct comparing of generic classes.
13796         An inflated generic class can be equal to a non-inflated one if it
13797         is inflated with generic type variables as type arguments.  Fixes
13798         bug #333798.
13800 2007-10-15  Dick Porter  <dick@ximian.com>
13802         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
13803         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
13804         81646.
13806         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
13807         instead of a monitor lock.  This means that monitor_try_enter and
13808         co can set the thread state safely.
13809         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
13810         thread_interrupt_requested, so interrupt actually works.
13812         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
13813         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
13814         state accessor function
13816 2007-10-15  Martin Baulig  <martin@ximian.com>
13818         * mono-debug.h
13819         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
13820         the debugger with the current runtime.
13822 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13824         * object.c, object-internals.h: added the ability to set a single
13825         trampoline for all the slots in a vtable.
13827 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13829         * marshal.c: deal with a possible race condition during multicast
13830         delegate invocation.
13832 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13834         * class.c: ensure value type methods don't have the synchronized
13835         flag set.
13837 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13839         * string-icalls.c, string-icalls.h: reverted unapproved patch that
13840         breaks the build.
13842 2007-10-11  Joel Reed  <joelwreed@comcast.com>
13844         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
13845         to take an options parameter so that empty entries can be removed during
13846         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
13848 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13850         * marshal.c: make sure we don't store the signature from a dynamic
13851         method into the runtime invoke cache (bug #327189).
13853 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13855         * marshal.c: make sure the wrapper methods are properly initialized.
13857 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13859         * metadata.c, metadata-internals.h: Generalized
13860         mono_type_stack_size() to mono_type_stack_size_internal() which
13861         takes an additional argument specifying whether it allows open
13862         types.
13864 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
13866         * verify.c (do_invoke_method): handle typedbyref params
13867         correctly and check for unverifiable return values.
13869         * verify.c (do_newobj): fix a warning.
13871 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13873         * verify.c: don't tread typedbyref as allways unverifable,
13874         so uses, like (ld/st)loc.0 are valid. verify for the cases
13875         that it matters, like boxing related operations.
13877 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13879         * verify.c: add verification of the newobj opcode. verification
13880         of delegate instantation still missing due ldftn and virldftn not
13881         pushing the function type on stack
13883 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13885         * class-internals.h: Runtime generic context data structure
13886         definition.
13888         * object.c: Initialization of runtime generic context at runtime
13889         vtable creation time.
13891 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
13892         * class.c (mono_class_create_from_typedef,
13893         mono_class_from_generic_parameter, mono_ptr_class_get,
13894         mono_fnptr_class_get, mono_bounded_array_class_get)
13895         * domain.c (mono_domain_create, mono_domain_free)
13896         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
13897         * image.c (do_mono_image_load, mono_image_close):
13898         Hooked up load-unload profiler events.
13900 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13902         * domain.c: track statistics about the actual amount of native code
13903         allocated.
13905 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13907         * class.c: the valuetype enumerators don't have the additional
13908         supertypes interfaces.
13910 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13912         * class.c: need more interfaces setup for the IEnumerator<T>
13913         object created for arrays (tests/ienumerator-interfaces.2.cs).
13915 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13917         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
13919 2007-10-05  Alp Toker  <alp@atoker.com>
13921         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13922         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13923         #315863.
13925 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13927         * verify.c (verify_type_compatibility_full): verification of
13928         compatibility improved, validates correctly non-strict checks between
13929         native int and I4 types different than (unsigned)int32.
13931         * verify.c (do_store_indirect): added, do all verification of
13932         ldind.X opcodes. 
13934         * verify.c (get_load_indirect_mono_type): renamed to
13935         get_indirect_op_mono_type, as it now returns the MonoType for 
13936         ldind.X and stind.X opcodes.
13938 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13940         * reflection.c: Fix the encoding of generic type definition for
13941         TypeBuilders.
13943         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
13944         mono_image_typedef_or_ref but allows to specify if typespec lookups should
13945         be made. Typespec check is done prior to typeref cache lookup.
13947         * reflection.c (mono_image_typedef_or_ref): now just delegate to
13948         mono_image_typedef_or_ref_full.
13950         * reflection.c (encode_generic_class): encode the generic class
13951         directly instead of calling encode_type.
13953         * reflection.c (encode_type): encode the generic type definition
13954         MonoClass as a generic instantiation.
13956         * reflection.c (create_typespec): cache typespec tokens in
13957         the assembly->typespec cache. Don't create typespec for a generic
13958         instance MonoClass. Create typespec for the generic type defintion.
13960         * reflection.c (create_generic_typespec): encode the generic
13961         class directly instead of calling encode_type.
13963         * reflection.c (mono_image_create_token): encode the generic
13964         type definition not using a typespec for MonoType instances.
13967 2007-10-04  Raja R Harinath  <rharinath@novell.com>
13969         Fix #328812
13970         * class.c (mono_image_init_name_cache): Don't return nested
13971         'protected internal' classes.
13972         (mono_class_from_name_case): Likewise.
13974 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
13976         * icall-def.h, icall.c : get_bundled_machine_config() is now the
13977           common function used by both DefaultConfig in System.dll and
13978           InternalConfigurationHost in System.Configuration.dll.
13980 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13982         * class.c: automatically add to vectors only a few essential explicit
13983         generic interfaces. The rest of the interfaces that arrays should
13984         provide are currently implicitly added (but still not lazily, see the
13985         design in the discussion of bug#325495 for the details of what is
13986         needed for that). Additionally, implicit interfaces are assigned the
13987         same vtable slot as the explicit interfaces (as they are compatible):
13988         this enables huge memory savings since we don't need to instantiate
13989         as many memthods and as large vtables anymore. Also, Since
13990         GetEnumerator<T> returns an instance of a type that is required to
13991         support a similarly large set of interfaces as arrays, we add
13992         implicit interfaces and interface offset sharing support to those
13993         types, too. This change adds all the required interfaces so that
13994         the anonarray.cs test case in the bug report works (we don't add
13995         all the interfaces to arrays of arrays 3-level deep and more because
13996         of the memory requirements explained in the bug and since they are much
13997         less common: the lazy-loading support will enabled them to work, too).
13999 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14001         * verify.c (merge_stacks): major clean up, all type compatibility
14002         checks are done by verify_type_compatibility. This fix my earlier lack
14003         of understanding of the CLR type system and merge_stacks no longer looks
14004         scary.
14006         * verify.c: fixed some bad spelling.
14008 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14010         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14011         a given stack slock.
14012         
14013         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14014         verify_type_compatibility_full. This removed a near indentical function and fixed
14015         handling of Int32 and IntPtr across all opcodes.
14017 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14019         * class.c: only vectors have the additional generic interfaces.
14021 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14023         * mono-config.c: Use g_strcasecmp instead of
14024         strcasecmp like everywhere else to fix
14025         compilation with MSVC.
14026         
14027         Code is contributed under MIT/X11 license.
14029 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14031         * object.c, object-internals.h: refactored the IMT code to enable
14032         building a single slot at a time and lazily creating the IMT trampolines
14033         and thunks.
14035 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14037         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14039         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14040         Fixes #328501.
14041         
14042 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14044         * loader.c (method_from_methodspec): Rearrange to avoid
14045         un-necessary exposition.  Don't assert out if the method's
14046         declaring type is a generic type definition.
14048 2007-09-28  Martin Baulig  <martin@ximian.com>
14050         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14052 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14054         * class-internals.h: optimize field layout of MonoClass to
14055         requires less cachelines at runtime and save a few bytes on 64 bit
14056         systems.
14058 2007-09-28  Jb Evain  <jbevain@novell.com>
14060         * reflection.c: when encoding type names in custom attributes,
14061         if the type is a closed generic type, its generic arguments
14062         have to be serialized as AssemblyQualifiedName, so that when
14063         they are deserialized, it's possible to re-create them properly.
14064         Fixes #329450.
14067 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14069         * object.c, class-internals.h: added delegate-creation counter.
14071 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14073         * class.c: cleanup of the code that synthetizes interfaces for
14074         arrays in 2.0: saves quit a bit of corlib mempool memory.
14075         Code to fix bug #325495 ifdeffed out for now until the issues
14076         with memory usage and O(n^2) behaviour are fixed.
14078 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14080         * marshal.c: when possible, do not duplicate the name of the methods
14081         in the method builder and in the generated MonoMethod.
14083 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14084         * verify.c: added support for type checking ldind_* opcodes.
14086 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14088         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14089         which is used to distinguish the fully open instantiation of a TypeBuilder
14090         with the rest. This temporary hack is required to restore the property that
14091         the fully open instantiation is the same type of the generic type definition.
14093         * class-internals.h (mono_generic_class_is_generic_type_definition):
14094         new function as part of the internal API.
14096         * class.c (inflate_generic_type): return NULL when the generic inst is
14097         fully open. The fully open generic type is now the same as the generic type
14098         definition for non TypeBuilder types.
14100         * class.c (mono_generic_class_get_class): removed assert since it is
14101         no longer valid, gklass->cached_class can point to the generic type definition.
14103         * class.c (mono_generic_class_is_generic_type_definition): new.
14105         * metadata.c (mono_generic_class_hash): added is_tb_open field
14106         to the hash calculation.
14108         * metadata.c (free_generic_class): if the generic class is associated
14109         with the generic type definition, its field will come from the mempool and
14110         must not be freed.
14112         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14113         new, this function identifies the corner case of a TypeBuilder fully open
14114         instantiation.
14116         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14117         for lookup. Set gclass->cached_class to be the container class in case of
14118         the fully open instantiation of non TypeBuilder types.
14120         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14121         to compare generic classes.
14123         * reflection.c (method_encode_methodspec): remove assert that
14124         no longer is valid.
14126         * reflection.c (mono_reflection_generic_class_initialize): add
14127         an aditional assert to ensure the proper type is used.
14129 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14131         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14132         to enjoy it.
14134 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14136         * verify.c (push_arg): Fixed support for ldarga
14137         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14138         MonoType used as first arg in case of instance calls.
14140 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14142         * verify.c: Support for verifying VAR and MVAR types, 
14144 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14146         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14147         accessors correctly.
14149 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14151         * threads.c: support OSX and other systems in
14152         mono_thread_get_stack_bounds (bug #328026).
14154 2007-09-25  Martin Baulig  <martin@ximian.com>
14156         * mono-debug.h
14157         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14159 2007-09-24  Martin Baulig  <martin@ximian.com>
14161         * mono-debug.h
14162         (MonoDebugClassEntry): Moved the definition of this struct into
14163         mono-debug.c to make it private.
14165         * mono-debug.c
14166         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14167         type table per symbol file, we don't need to store the symfile id
14168         any longer.
14170 2007-09-24  Martin Baulig  <martin@ximian.com>
14172         Create one type table per symbol file, since a `MonoClass *' gets
14173         invalid when its image is unloaded.
14175         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14176         (MonoDebugHandle): Added `type_table'.
14178 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14180         * mempool.c, mempool.h: added mono_mempool_new_size () API
14181         to be able to specify a smaller initial size for the pool.
14182         Adjusted the code to slowly increase pool size before using
14183         the previous default size.
14184         * image.c: use a small initial size for image mempools.
14186 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14188         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14189         Fixes ##320990.
14191         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14192         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14194 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14196         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14197         free. Fixes #327438.
14199 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14201         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14202         generic instantiations, etc.
14203         <MONO_TYPE_ARRAY>: Likewise.
14205 2007-09-21  Martin Baulig  <martin@ximian.com>
14207         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14208         these structs were never defined.
14209         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14211 2007-09-21  Martin Baulig  <martin@ximian.com>
14213         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14215 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14217         * image.c: removed the guid hash tables: we can get the same info
14218         without the additional memory usage hit (partially fixes also bug #327052).
14220 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14222         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14223         event to handle unloading methods. After the event is called, the
14224         corresponding MonoMethod* must be considered invalid.
14225         * loader.c (mono_free_method): call the new mono_profiler_method_free
14226         event.
14228 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14230         * domain-internals.h: New flag in MonoJitInfo which marks shared
14231         generic methods.  New hash table (shared_generics_hash) in
14232         MonoDomain to keep track of shared generic methods.  Prototypes
14233         for functions to register and lookup shared generic methods.
14235         * domain.c: Support for registering and looking up shared generic
14236         methods via a hash table (shared_generics_hash) in MonoDomain.
14238         * class-internals.h: New exception to signal failure of shared
14239         compilation of a generic method.  New counters for generics
14240         sharing in MonoStats.
14242 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14244         * image.c, metadata-internals.h: don't keep a file descriptor open
14245         for loaded assemblies (bug#325988).
14247 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14249         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14250         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14251         use the corresponding datatypes.
14252         (type_in_image): Update to changes.
14253         (CleanForImageUserData): Simplify.
14254         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14255         Avoid quadratic behaviour in handling the "stolen" list by
14256         separating the filter predicate out, and by prepending the stolen
14257         items rather than appending them.
14258         (steal_ginst_in_image): Likewise.
14259         (mono_metadata_clean_for_image): Update to changes.
14261 2007-09-19  Martin Baulig  <martin@ximian.com>
14263         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14265 2007-09-19  Martin Baulig  <martin@ximian.com>
14267         * mono-debug.c (mono_debug_cleanup): Don't call
14268         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14270 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14272         Fix crash on 'make run-test' in mcs/errors
14273         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14274         Avoid more potential allocations in mono_class_from_mono_type.
14275         (ginst_in_image): Update to changes.
14276         (gclass_in_image): Rearrange slightly.
14278 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14280         * class.c (mono_class_init): Move the code that sets up class->methods to 
14281         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14283         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14284         canonical instance of an inflated generic signature.
14285         (mono_type_create_from_typespec): Remove an invalid free.
14287         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14289 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14291         * domain-internals.h: added a declaration of the
14292         mono_assembly_load_full_nosearch internal function.
14294         * assembly.c (mono_assembly_load_with_partial_name): use
14295         mono_try_assembly_resolve return value properly.
14296         (mono_assembly_load_full_nosearch): copied the function body from
14297         mono_assembly_load_full, without the code to invoke assembly
14298         search hooks.
14299         (mono_assembly_load_full): calls the above new function and if the
14300         assembly is not resolved, invokes the search hooks.
14302         * appdomain.c (mono_runtime_init): restore the global postload
14303         assembly search handlers.
14305 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14307         * class.c (mono_class_init): Make sure class->methods and class->properties
14308         are never NULL in the generics case.
14310         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14312 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14314         * metadata.c (free_generic_class): Disable some code to fix the build.
14316         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14318         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14319         from the image mempool.
14321         * metadata.c (free_generic_class): Free more data from the inflated class.
14323         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14325         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14326         mempool.
14327         (mono_type_create_from_typespec): Ditto.
14329         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14330         MonoImage to the caller.
14331         (mono_init_internal): Save the opened image in a global variable.
14332         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14334         * reflection.c (resolve_object): Fix a leak.
14336         * metadata.c: Fix the freeing of data in the generics caches.
14337         
14338         * metadata.c (free_generic_inst): Comment this out to fix the build.
14339         (free_generic_class): Ditto.
14341         * metadata.c: Free cached generic methods, instantinations and classes when
14342         they are removed from the caches.
14343         (mono_metadata_free_type): Free the type itself.
14345         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14346         places.
14348 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14350         * boehm-gc.c: restrict managed allocs to __thread supporting
14351         architectures.
14353 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14355         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14356         (mono_generic_class_get_class): Fix a leak.
14358         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14359         mono_metadata_free_type ().
14360         (mono_metadata_inflate_generic_inst): Fix a leak.
14362 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14364         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14366         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14367         mempool.
14369         * mono-debug.c (mono_debug_close_image): Fix call to 
14370         g_hash_table_remove ().
14372 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14374         * icall-def.h: redirect all the string ctor to the managed
14375         CreateString () methods.
14376         * string-icalls.c, string-icalls.h: removed dead code for string
14377         ctors and icalls.
14379 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14381         * mono-debug.c: Fix memory leaks.
14383 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14385         * threads-types.h: Implement mono_hazard_pointer_set and 
14386         mono_hazard_pointer_clear macros using do/while(0) to fix
14387         compilation with MSVC.
14388         
14389         Code is contributed under MIT/X11 license.
14391 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14393         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14394         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14396 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14398         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14399         icalls.
14401 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14403         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14404         managed-code allocated as well.
14406 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14408         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14410 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14412         * boehm-gc.c: fixed the build after the AOT changes.
14414 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14416         * wrapper-types.h: Add an ALLOC wrapper type.
14418         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14419         reference managed allocator methods.
14421 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14423         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14424         of Type array and not MonoType, a fix suggested by Hari.
14425         
14426 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14428         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14429         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14430         
14431         Code is contributed under MIT/X11 license.
14433 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14435         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14437 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14439         * image.c (do_mono_image_open): if assembly file fails to open and
14440         MONO_IOMAP is in effect, try to find the path in a
14441         case-insensitive way.
14443         * appdomain.c (mono_runtime_init): do not install postload hooks -
14444         tests show that MS.NET doesn't use anything of that sort to
14445         trigger the AppDomain.AssemblyResolve event.
14446         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14447         made non-static.
14448         (mono_runtime_init): init portability helpers here.
14450         * assembly.c (mono_assembly_load_with_partial_name): if other   
14451         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14452         to resolve the assembly.
14454         * domain-internals.h: added mono_try_assembly_resolve and marked
14455         it as internal.
14457 2007-09-11  Jb Evain  <jbevain@novell.com>
14459         * object-internals.h (MonoReflectionDynamicMethod): add
14460         a `MonoReflectionType *owner` field. The owner is used
14461         * reflection.c:
14462         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14463         method as the class declaring the dynamic method.
14464         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14465         dynamic method to the declaring type of the methodbuilder.
14467 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14469         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14470         rules for calling methods via reflection.
14472 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14474         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14475         Inflate MonoType's.
14477 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14479         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14480         provide a managed method that does fast allocations without needing
14481         a managed->unmanaged transition. Boehm GC implementation currently
14482         enabled for ptrfree objects on sane architectures.
14484 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14486         * marshal.c, marshal.h: exported a couple of useful functions and
14487         added mono_mb_get_label () to easily handle backward branches.
14489 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14491         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14493 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14495         * loader.c (find_method): Fixed the regression introduced while
14496         fixing bug #81466.
14498 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14500         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14501         well.
14502         
14503         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14504         icall.c reflection.c: Pass a MonoGenericContext argument to 
14505         mono_lookup_dynamic_token ().
14507         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14508         #82744.
14509         
14510 2007-09-09  Robert Jordan  <robertj@gmx.net>
14512         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14513         for generic methods.
14515         * object.c (mono_object_get_virtual_method): Handle generic methods.
14516         Fixes bug #78882.
14518         Code is contributed under MIT/X11 license.
14520 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14522         * image.c: fix locking in mono_image_load_file_for_image ().
14524 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14526         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14527         used only as a cache: added an icall to fill it.
14529 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14531         * reflection.h: exposed mono_reflection_free_type_info
14532         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14533         since mono_reflection_bind_generic_parameters makes a copy of it.
14534         * reflection.c (free_type_info): subinfos should be freed.
14535         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14536         made non static.
14537         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14538         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14539         this fixes #82695 and #81726.
14540    
14542 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14544         * process.h, process.c:  added support for user profile/info in
14545           ProcessStartInfo. For now only Windows works.
14547 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14549         * metadata.c: consider the generic arguments when comparing
14550         signatures (bug #82614).
14552 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14554         * cil-coff.h, image.c: updated assembly loader to cope with the
14555         PE32+ 64 bit file format.
14557 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14559         * assembly.c, class.c, domain.c, loader.c: remove useless
14560         inclusion of cil-coff.h.
14562 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14564         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14565         if interface is marked with CoClassAttribute. 
14566    
14567         Code is contributed under MIT/X11 license.
14569 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14571         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14572         if it's seen twice in major collections.
14574 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14576         * sgen-gc.c: big objects are not copied to the gray area, but they
14577         need to be considered for scanning, too, if they are brought alive
14578         by an object ready for finalizations or a survived one.
14580 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14582         * sgen-gc.c: properly account the number of disappearing links when
14583         they are nullified.
14585 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14587         * sgen-gc.c: share the code to scan the registered roots between the
14588         different types of collections.
14590 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14592         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14594 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14596         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14597         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14599 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14601         * security-manager.c (mono_security_manager_get_methods):
14602         LinkDemandSecurityException now has 2 arguments instead of 3.
14604 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14606         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14607         platforms which need it.
14609 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14611         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14612         dtor.
14614 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14616         * threads.c: free the thread static data on thread exit.
14618 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14620         * class.c: walk the hierarchy to find the generic definition for
14621         a class (fixes runtime part of bug #82498).
14623 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14625         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14626         ...
14628         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14630 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14632         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14634 2007-08-24  Robert Jordan  <robertj@gmx.net>
14636         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14638 2007-08-24  Jb Evain  <jbevain@novell.com>
14640         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14641         for byref types.
14643 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14645         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14646         #82286.
14648 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14650         * assembly.c: Fix a warning.
14651         
14652 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14654         * appdomain.c: parse the <runtime> section looking for the probing
14655         element with the 'privatePath' attribute, which sets additional
14656         directories in which the runtime should look for assemblies.
14658 2007-08-23  Robert Jordan  <robertj@gmx.net>
14660         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14661         Fixes #82499.
14663 2007-08-23  Martin Baulig  <martin@ximian.com>
14665         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14666         _mono_debug_init_corlib() and remove it from the header file.
14668 2007-08-23  Martin Baulig  <martin@ximian.com>
14670         * mono-debug-debugger.c
14671         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14672         don't notify the debugger about it.
14674         * mono-debug-debugger.h
14675         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14677 2007-08-23  Robert Jordan  <robertj@gmx.net>
14679         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14680         Code is contributed under MIT/X11 license.
14682 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14684         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14686 2007-08-22  Martin Baulig  <martin@ximian.com>
14688         * mono-debug.c: Store debugging info on a per-domain basis and
14689         free it on domain unload.  Add support for unloading symbol files.
14691         * mono-debug.h
14692         (MonoDebugList): New typedef.
14693         (MonoSymbolTable):
14694         - add `data_tables and `type_table'.
14695         - replace 'symbol_files' and `num_symbol_files' with a
14696           `MonoDebugList *'.
14697         (mono_debug_data_table): Removed.
14698         (mono_debug_list_add): New public function.
14699         (mono_debug_list_remove): New public function.
14700         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14701         (mono_debug_init_2_memory): Renamed into
14702         mono_debug_open_image_from_memory().
14703         (mono_debug_close_image): New public function.
14704         (mono_debug_domain_create): Likewise.
14705         (mono_debug_domain_unload): Likewise.
14706         (MONO_DEBUGGER_VERSION): Bump to 60.
14708         * mono-debug-debugger.h
14709         (MonoDebuggerEvent):
14710         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14711         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14712         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14713         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14714           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14715         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14716           meaning.
14717         (mono_debugger_add_symbol_file): Removed.
14718         (mono_debugger_add_type): Removed.
14719         (mono_debugger_lookup_type): Removed.
14720         (mono_debugger_lookup_assembly): Removed.
14722         * domain.c
14723         (mono_domain_create): Call mono_debug_domain_create().
14724         (mono_init_internal): Call mono_debug_init_corlib().
14726         * assembly.c
14727         (mono_assembly_close): Call mono_debug_close_image().
14729 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14731         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14732         mmap call.
14734 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14736         * sgen-gc.c: ensure section->pin_queue_end is initialized
14737         correctly when non pinning objects in the section have been found.
14739 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14741         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14742         containing a list of directories separated by ':'. MSDN docs say
14743         the directories should be separated with ';'. Part of a bugfix for
14744         bug #81446
14746 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14748         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14749         it should MonoType and not MonoClass.
14751 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14753         * culture-info-table.h : regenerated.
14755 2007-08-20  William Holmes  <billholmes54@gmail.com>
14757         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
14758          to call ReplaceFile Kernel32 on windows or in io-layer.
14759         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
14760         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
14761          as an internal call.
14763         Code is contributed under MIT/X11 license.
14765 2007-08-20  Jb Evain  <jbevain@novell.com>
14767         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
14768         and MONO_EXCEPTION_FIELD_ACCESS.
14770         * debug-helpers.[c|h]: new mono_field_full_name function.
14772 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14774         * class.c: Removed class_security_level() and moved it to
14775         security-core-clr.c.
14777         * security-core-clr.c, security-core-clr.h: class_security_level()
14778         is now public and renamed to mono_security_core_clr_class_level().
14779         It also looks for security attributes in the classes a class is
14780         nested in.
14782 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14784         * security-core-clr.c, security-core-clr.h: CoreCLR security
14785         utility functions.
14787         * Makefile.am: Added security-core-clr.[ch].
14789         * security-manager.c, security-manager.h: Functions and enum for
14790         setting and getting the security mode.
14792         * class.c: CoreCLR security checks.
14794 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14796         * icall-def.h, process.c, process.h: implemented icall to get
14797         user/system processor times.
14799 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14801         * domain.c, threads.c, class-internals.h, domain-internals.h: New
14802         reader-lock-free jit_info_table.
14804 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
14806         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
14808         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
14810         * object-internals.h (MonoException): Add missing _data member.
14812 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14814         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
14815         checking that only methods with matching qname or fqname are picked
14816         from implemented interfaces.
14818 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14820         * verify.c (do_newarr):added, do type verification of
14821         newarr ops, push the right value on the eval stack.
14822         * verify.c (mono_method_verify): use do_newarr
14825 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14827         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
14828         factored the common code into get_boxable_mono_type, which
14829         is now using mono_type_get_full, this fixed byref related tests.
14831 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14833         * class.c: added mono_type_get_full, this function has the same
14834         behavior of mono_class_get_full but the returned MonoType has
14835         all metadata of the associated token in case of a typespec token.
14836         * class.c: added mono_type_retrieve_from_typespec, used by 
14837         mono_type_get_full to retrieve the token type.
14838         * class.c (mono_class_create_from_typespec): changed to use
14839         mono_type_retrieve_from_typespec.
14840         * class.c (mono_ldtoken): changed to use mono_type_get_full
14841         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
14842         * class-internals.h: exported mono_type_get_full for internal use.
14844 2007-08-16  Jb Evain  <jbevain@novell.com>
14846         * domain.c (supported_runtimes): add entry for
14847         the 'moonlight' runtime version.
14849 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14851         * verify.c (mono_method_verify): small typo sliped in.  
14853 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14855         * verify.c (do_unbox_value): added, do type verification of
14856         unboxing ops
14857         * verify.c (mono_method_verify): use do_unbox_value
14860 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14862         * verify.c (dump_stack_value): fixed typo, was printing string
14863         instead of object on stack.
14864         * verify.c (do_box_value): moved the byref check up as it leads
14865         to invalid code and should be done earlier.
14866         * verify.c: improved error messages for and ldobj
14868 2007-08-15  William Holmes  <billholmes54@gmail.com>
14870         * marshal.c (emit_marshal_custom): Omit the call to 
14871           marshal_native_to_managed when calling native to managed 
14872           and the argument is specified as an out argument.
14874         Code is contributed under MIT/X11 license.
14876 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14878         * verify.c: fixed the type checks for generics, function pointers and vectors.
14879         Added type verification for ldobj and ldtoken. The verifier
14880         would segfault if header or signature of a method contained references
14881         to non-existant types.
14883 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14885         * marshal.c (cominterop_get_ccw): Patch from
14886         Bill Holmes to no walk up interface hierarchy. 
14887         All parent methods should be present in the interface for COM.
14888    
14889         Code is contributed under MIT/X11 license.
14891 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14893         * marshal.c (emit_marshal_com_interface): Patch from
14894         Bill Holmes to handle COM Interfaces as return values
14895         for native->managed calls.
14896    
14897         Code is contributed under MIT/X11 license.
14899 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
14901         * marshal.c (cominterop_get_idispatch_for_object): Implement
14902         for runtime callable wrappers.
14903    
14904         Code is contributed under MIT/X11 license.
14906 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
14908         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14909         so 2.0 types are accessible
14912 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14914         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14915         once we load mscorlib.   Due to the order in which we initialize,
14916         the mono_assembly_load_full routine that loads mscorlib did not
14917         load friends.   We now load it once we load the
14918         mono_defaults.internals_visible_class class. 
14920         * assembly.c: Expose the mono_load_friend_assemblies method.
14922 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
14924         * verify.c: improved the handling of boxing, better
14925         type checking for unary ops and conversion. Fix bug
14926         regarding managed pointer compatibility checking
14928 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14930         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
14932         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
14934 2007-08-09  Raja R Harinath  <rharinath@novell.com>
14936         * reflection.c (dup_type): Remove.
14937         * class.c (dup_type): Remove.
14938         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
14939         instead of the dodgy 'dup_type'.
14940         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
14941         handle the case where 'dup_type' needed the second argument.
14943 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
14945         * domain.c: Fix a warning.
14947 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14949         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
14950         checking that methods with the same fqname are not overridden
14951         with a method from an ancestor.
14953 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
14955         * threads.c (free_thread_static_data_helper): Avoid a crash if
14956         thread->static_data is not yet set.
14958 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
14960         * marshal.c: Use correct image when emitting
14961         native wrapper for COM calls.
14962    
14963         Code is contributed under MIT/X11 license.
14965 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
14967         * icall-def.h, security.c, security.h :
14968           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
14970 2007-08-07  Martin Baulig  <martin@ximian.com>
14972         * mono-debug-debugger.h
14973         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
14975         * domain.c (mono_domain_free): Call
14976         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
14978 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
14980         * verify.c (check_underflow, check_overflow): error message now returns IL offset
14981         * verify.c (in_same_block): code should test if either offset is inside the clauses
14982         * verify.c (mono_method_verify): push the exception into the eval stack of exception
14983         and filter blocks
14985 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14987         * image.c (mono_image_close): Fix a leak.
14989         * object.c (mono_runtime_invoke_array): Avoid using alloca.
14991         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
14993 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14995         * domain.c, threads.c, threads-types.h: fix memory retention issue
14996         with thread static variables not being cleared on domain unload.
14997         Reuse thread static slots after domain unload.
14999 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15001         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15002         nullable type.
15004         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15005         now done in mono_runtime_invoke_array.
15007         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15008         receiver is a nullable type.
15010         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15011         generic parameter.
15013 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15015         * marshal.c: Implement COM Objects as return type for 
15016         managed->unmanaged calls. Added Release calls for COM Object
15017         out/return values in managed->unmanaged calls.
15019         Code is contributed under MIT/X11 license.
15021 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15023         * threads.h, threads-type.h: move the hazard pointer declarations
15024         to the private header.
15026 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15028         * file-io.c, appdomain.c: memory leak fixes.
15030 2007-08-02  Dick Porter  <dick@ximian.com>
15032         * socket-io.c
15033         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15034         SO_REUSEADDR setting into io-layer/sockets.c.
15036 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15038         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15039         from Object when called on a generic parameter. Fixes #82211.
15041 2007-08-01  Dick Porter  <dick@ximian.com>
15043         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15044         Fixes bug 79250 yet again.
15046 2007-07-30  Martin Baulig  <martin@ximian.com>
15048         Merged the `debugger-dublin' branch.
15050         * mono-debug.h
15051         (MonoDebugDataTable): New typedef.
15052         (MonoDebugMethodAddressList): New typedef.
15053         (MonoDebugWrapperData): Removed.
15054         (MonoDebugSymbolTable): Removed `current_data_table',
15055         `current_data_table_size', `current_data_table_offset'.
15056         (MonoDebugDataItemType): Moved into mono-debug.c.
15057         (MonoDebugMethodJitInfo): Remove `address'.
15058         (mono_debug_data_table): New global variable.
15059         (mono_debug_lookup_method_addresses): New public function.
15060         (mono_debug_find_method): Take a `MonoMethod *', not a
15061         `MonoDebugMethodInfo *'.
15063         * mono-debug.c: Drop support for the old symbol tables.
15065 2007-06-28  Martin Baulig  <martin@ximian.com>
15067         * mono-debug.c (mono_debug_debugger_version): New public variable.
15069 2007-07-31  William Holmes  <billholmes54@gmail.com>
15071         * metadata.c Changed mono_type_create_from_typespec to not insert
15072           the type into the hash map until after
15073           do_mono_metadata_parse_type has completed.
15074         Fixes Bug #82194
15075         Code is contributed under MIT/X11 license.
15077 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15079         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15080         generic parameter. Fixes #82211.
15082 2007-07-27  Jb Evain  <jbevain@novell.com>
15084         * pedump.c (dump_metadata, dump_metadata_header): dump
15085         versions contained in the metadata header.
15087 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15089         * threads.c: register small_id_table with the GC.
15091 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15093         * threads.c, threads.h, class-internals.h, object-internals.h:
15094         Hazard pointers, to be used by lock-free parallel algorithms.
15096 2007-07-26  Dick Porter  <dick@ximian.com>
15098         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15099         routine on non-windows platforms, as I've not managed to think of
15100         a non-kludgy way of doing this.  Finishes off bug 78739.
15102 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15104         * object.c: properly setup interface_bitmap in proxy vtables.
15106 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15108         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15109         to create unique shadow copy target directories, use the domain's
15110         serial number instead. Each domain gets a unique target directory
15111         that way.
15113         * domain.c (mono_domain_create): added code to increment domain
15114         shadow copy serial number and cache the value in the current
15115         domain structure.
15117         * domain-internals.h (struct _MonoDomain): added a new field -
15118         shadow_serial to hold the serial number used in generation of
15119         shadow-copy directories. This is to make sure that the directory
15120         name is unique for each and every domain created. We avoid a race
15121         condition with overriding assemblies already in use by other app
15122         domains.
15124 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15126         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15127         binding generic parameters.
15129 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15131         * metadata.c (do_mono_metadata_parse_generic_class): Use
15132         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15133         error.
15135 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15137         * loader.c, class-internals.h, reflection.c: removed the per-method
15138         generics hashtable: we use the global one through the call of
15139         mono_class_inflate_generic_method ().
15141 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15143         * class.c, metadata.c, class-internals.h: introduce yet another
15144         generics global cache for inflated methods (fixes 98% of the perf
15145         issue in bug #81806).
15147 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15149         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15150         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15151         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15152         return a MonoGenericInst containing (a copy) of those types.
15153         (mono_metadata_inflate_generic_inst): Update to changes.
15154         (mono_metadata_parse_generic_inst): Likewise.
15155         (mono_get_shared_generic_inst): Likewise.
15156         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15157         (mono_reflection_bind_generic_method_parameters): Likewise.
15158         * metadata-internals.h: Likewise.
15159         * icall.c (free_generic_context): Kill.
15160         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15162         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15163         mono_metadata_type_dup.
15164         * marshal.c (mono_mb_create_method): Likewise.
15166         * metadata.c (mono_metadata_type_dup): Rename from
15167         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15168         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15169         * marshal.c, metadata-internals.h: Update to changes.
15171 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15173         * class.c: fixed a small leak for array classes and removed warning.
15175 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15177         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15178         Return 0x8000000 for return parameters. Fixes #82161.
15180 2007-07-21  Marek Habersack  <grendello@gmail.com>
15182         * appdomain.c (get_shadow_assembly_location): append the current
15183         ticks value to the path. Avoids overwriting the same assemblies by
15184         several threads at the same time.
15186 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15187         and Raja R Harinath  <rharinath@novell.com>
15189         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15190         Simplify slightly.
15191         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15192         property for testing if a method is a generic method definition.
15194 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15196         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15198 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15200         * verify.c: used function from private branch, reverted to the one in class.h 
15202 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15204         * verify.c: a typo slipped in and the code wont compile
15206 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15208         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15209         disabled box instruction as it is doing the wrong thing
15210         improved stack dump messages, now it is easier to debug type related issues
15213 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15215         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15217 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15219         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15220         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15221         grouped with class and valuetype. This change will simply 
15222         the code as it should be handled just like unmanaged pointers.
15224 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15226         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15228 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15230         * verify.c: several stack merge issues fixed, reference comparisons now
15231         check the type size. strict type check now works correctly.
15232         added more uses of IS_MANAGED_POINTER macro.
15233         fixed issues pointed by running the test suite against .net.
15234         
15236 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15238         * class.c, loader.c, class-internals.h: Removed the
15239         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15240         defines.
15242         * icall.c: Better error checking in some internal reflection
15243         methods.
15245 2007-07-18  William Holmes  <billholmes54@gmail.com>
15247         * filewatcher.c : removed unused variable 'filename' in 
15248           ves_icall_System_IO_FSW_SupportsFSW
15250 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15252         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15253         obsolete, removed.
15255 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15257         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15258         
15259         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15261 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15263         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15264         Implement generics support.
15265         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15267         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15268         type_args and method_args arguments.
15269         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15270         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15271         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15273 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15275         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15276           It adds a rootimage parameter to mono_reflection_get_type_internal,
15277           adds new function mono_reflection_get_type_with_rootimage and use
15278           the rootimage to resolve the types instead of the current image
15280 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15282         * culture-info-table.h: Forgot to update after r78304.
15284 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15286         * class.c (mono_class_is_open_constructed_type)
15287         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15289 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15291         * class.c (mono_bounded_array_class_get):  method fails if used with
15292         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15293         avoiding calculating the size for such array as it cannot be instantiated.
15294         Fix bug #82015
15296 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15298         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15299         field.
15300         * metadata.c, reflection.c: Update to changes.
15302 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15304         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15305         mono_class_is_valid_enum, they are used to valide a enum when loading.
15306         * reflection.c: used new functions to throw TypeLoadException when and
15307         invalid enum is build with TypeBuilder. Fixes #82018
15308   
15309 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15311         * object.c: forgot commit of mono_class_setup_methods () to access
15312         iface->methods.
15313         * object-internals.h: added a few more handy fields to
15314         MonoIMTCheckItem.
15316 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15318         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15319         iface->methods.
15321 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15323         * class-internals.h, object-internals.h, object.c: IMT-based
15324         interface invocation core from Massimiliano Mantione
15325         (massi@ximian.com) with a reworked arch-specific interface,
15326         bsearch implementation and a few bugfixes and memory savings by me.
15328 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15330         * class.c (mono_class_create_from_typedef): mono would segfault if 
15331         an enum did not have a __value field. It now throws a TypeLoadException
15332         for such cases. Fix bug #82022
15334 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15336         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15338 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15340         * class.c (mono_class_init): If a class is already inited but has
15341         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15343 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15345         * class.c: Properly handle the case of an unimplemented interface
15346         method.  Fixes: 81673.
15348 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15350         * class-internals.h, object.c: cleanup patch from massi: use
15351         MonoVTable->interface_bitmap since the vtable interfaces offset array
15352         is going away.
15354 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15356         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15357         GetMDStreamVersion icall instead.
15359 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15361         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15362         not use mono_dl_build_path() with a full library name: makes
15363         fallbacks to libgaim and libfam work.
15365 2007-07-06  William Holmes  <billholmes54@gmail.com>
15367         * assembly.c: Added a continue statement in probe_for_partial_name when
15368          parse_assembly_directory_name fails.  Fixes : 82002
15370 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15372         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15373         and added a verification  for TYPEDBYREF.
15374         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15375         make native int interchangeable with int32 and some small cleanup and formating.
15376         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15377         handle byref of byref.
15378         * verify.c (push_local): handle byref of byref.
15379         * verify.c (do_binop): invalid mix of values is unverifiable
15380         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15381         added visibility checks
15382         * verify.c (field related method): added visibility checks
15383         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15385 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15387         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15388         string.
15390 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15392         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15394         * marshal.c (emit_marshal_string): When returning a string from managed code,
15395         allways make a copy even for unicode strings. Fixes #81990.
15397 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15399         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15400         of byref generic inst types (bug #81997).
15402 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15404         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15405         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15407 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15409         * marshal.c (emit_marshal_string): Add support for unicode strings in
15410         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15412 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15414         * verify.c: field load/store are now verified, missing only access checks now
15416 2007-06-28  Martin Baulig  <martin@ximian.com>
15418         * mono-debug.c (mono_debug_debugger_version): New public variable.
15420 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15422         * locales.c: When constructing DateTimeFormat or NumberFormat for
15423         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15424         MonoCultureInfo contructed from the current locale is always
15425         read-only and has UseUserOverride set to true. All MonoCultureInfo
15426         instances returned for GetCultures have both IsReadOnly and
15427         UseUserOverride set to true. Fixes part of bug #81930.
15429 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15431        * icall-def.h: Update System.__ComObject icalls
15432        * marshal.c: Avoid managed transition (and object creation)
15433        when looking up COM interface in RCW.
15434        * marshal.h: Ditto.
15435        
15436        Code is contributed under MIT/X11 license.
15438 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15440         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15441         to avoid crashes during assembly unloading.
15443 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15445         Fix MethodInfo.IsGenericMethodDefinition
15446         * reflection.c (mono_reflection_bind_generic_method_parameters):
15447         Rearrange code to ensure we always uses a generic method definition.
15448         * class.c (mono_class_inflate_generic_method_full): Set
15449         'generic_container' field only for generic method definitions.
15450         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15451         Use presense of 'generic_container' field as indication of being a
15452         generic method definition.
15454 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15456         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15458         * object-internals.h: Reflect changes in the layout of the managed Delegate
15459         class.
15460         
15461         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15462         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15463         runtime memory used by the dynamic method. Fixes #77146.
15465 2007-06-21  Dick Porter  <dick@ximian.com>
15467         * file-io.h: 
15468         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15469         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15470         81767.
15472 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15474         * reflection.c (method_encode_methodspec): Add a tripwire.
15475         * class.c (inflate_generic_type): The fully open generic type is
15476         not the same as the generic type definition.
15478 2007-06-21  Martin Baulig  <martin@ximian.com>
15480         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15482         * mono-debug-debugger.h
15483         (MonoDebuggerBreakpointInfo): Removed.
15484         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15485         (mono_debugger_remove_breakpoint): Likewise.
15486         (mono_debugger_breakpoint_callback): Likewise.
15487         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15489 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15491         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15492         generic type is not the same as the generic type definition.
15493         * class.c (mono_generic_class_get_class): Likewise.
15495 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15497         * icall.c: The second argument to 
15498         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15499         is a MonoType not a MonoClass.
15501 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15503         * verify.c: support for function pointers in the verifier
15505 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15507         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15509 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15511         * assembly.c: removed Mono.Data.SqliteClient from the list of
15512         forward-compatible assemblies as it breaks the ABI (bug #81899).
15514 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15516         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15517         lookup/update with the loader lock.
15518         * reflection.c (mono_class_bind_generic_parameters): No need to
15519         protect mono_metadata_lookup_* with the loader lock.
15520         * class.c (inflate_generic_type): Likewise.
15521         
15522         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15523         on a generic instantiated type.
15525 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15527         *verify.c: produce meanfull error messages on verification error
15528         *verify.c: fixed some cases of verification errors reported as validation errors
15529         *pedump.c: fixed the error name array, now it shows validation errors properly
15530         *verify.h: fixed the contant that should be used for verification errors
15532 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15534         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15535         for bug #77596, 81858 and 80743 (generics data structures on domain
15536         unload).
15538 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15540         Avoid allocating 'MonoGenericContext' on the heap.
15541         * class-internals (_MonoMethodInflated::context): Make field
15542         inline, not a pointer.
15543         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15544         stack.  Use the context embedded within the inflated method as the
15545         hash key, rather than 'new_context'.
15546         * class.c (inflate_generic_context): Simplify.  Return a struct
15547         rather than allocating on the heap.
15548         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15549         doesn't salt away a copy of the context -- simplifying the
15550         lifetime rules of a 'MonoGenericContext *'.
15551         (mono_method_get_context): Return pointer to embedded context.
15552         (setup_generic_array_ifaces): Allocate temporary context on stack.
15553         * reflection.c (inflate_mono_method): Likewise.
15554         (mono_reflection_bind_generic_method_parameters): Likewise.
15555         Use the context embedded within the inflated method as the hash key.
15557         Avoid a source of allocation of 'MonoGenericContext'.
15558         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15559         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15560         * class.c: Update to changes.
15561         (mono_generic_class_get_context): Simplify drastically.  Now just
15562         returns a pointer to the field.
15563         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15564         argument as a const pointer.
15565         (mono_metadata_generic_context_equal): Likewise.
15566         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15567         Update to changes.
15569 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15571         * verify.c improved the handling of brtrue/brfalse, factored out common code
15573 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15575         Kill MonoGenericMethod.
15576         * class-internals.h (MonoGenericContext::method_inst): Rename from
15577         'gmethod' and convert to a MonoGenericInst.
15578         (MonoGenericMethod): Remove.
15579         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15580         * loader.c (method_from_methodspec): Update to changes.  Use a
15581         MonoGenericContext as the key to the hashtable.
15582         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15583         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15584         (mono_metadata_generic_context_hash): Likewise from
15585         'mono_metadata_generic_method_hash'.  Change hash function.
15586         (mono_metadata_load_generic_params): Update to changes.
15587         (mono_get_shared_generic_method): Remove.
15588         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15589         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15590         (inflate_generic_context): Likewise.
15591         (mono_class_inflate_generic_method_full): Likewise.
15592         (setup_generic_array_ifaces): Likewise.
15593         (mono_class_create_from_typespec): Likewise.
15594         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15595         (method_encode_methodspec): Update callsite.
15596         (reflection_methodbuilder_to_mono_method): Update to changes.
15597         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15598         MonoGenericContext as the key to the hashtable.
15599         (inflate_mono_method): Update to changes.
15601         * class-internals.h (MonoGenericMethod::container): Remove.
15602         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15604 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15606         * profiler-private.h, profiler.c, profiler.h: added API to profile
15607         exception events.
15609 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15611         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15613 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15615         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15616         Fixed overflow and underflow not aborting the verification process.
15618 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15620         * class-internals.h (MonoStats): Added stats entries for dynamic
15621         code allocations.
15623 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15625         * loader.c (mono_free_method): Free header->locals and header->clauses.
15627         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15628         dynamic case.
15630         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15632         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15634 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15636         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15637         the tables.
15639 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15641         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15643 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15645         MonoGenericMethod on a diet
15646         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15647         here ...
15648         (_MonoGenericMethod::reflection_info): ... from here.
15649         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15650         Update to changes.
15651         * reflection.c (inflate_mono_method): Likewise.
15652         (mono_reflection_bind_generic_method_parameters): Likewise.
15654 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15656         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15657         *verify.c: factored long ldarg forms to share code with short forms
15659 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15661         *verify.c: fixed code formating factored some duplicate code
15662         into a new function
15664         *verify.h: fixed binary incompatibility introduced earlier
15666         *pedump.c: fixed formating
15668 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15670         Fix assertion when disassembling Mono.C5.dll
15671         * loader.c (method_from_methodspec): Avoid inflating a method
15672         twice with the same context.  If the methodref is inflated, use
15673         the declaring method instead.
15675         * class.c (mono_class_from_generic_parameter): Fix case similar to
15676         bug #81830 handled below, but for method containers.
15678 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15680         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15681         get_shared_generic_class.  Directly inflate the instance.
15682         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15683         (inflate_generic_class): Delete.
15684         (get_shared_generic_class): Delete.  Move setting of
15685         'cached_class' and 'cached_context' ...
15686         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15688         * metadata.c (mono_metadata_lookup_generic_class): Change
15689         signature to take the components of a MonoGenericClass rather than
15690         an allocated MonoGenericClass.  Change semantics to be intern-like.
15691         * reflection.c (mono_class_bind_generic_parameters): Update to
15692         changes.  Make locking region tighter.
15693         * class.c (inflate_generic_class): Update to changes.
15694         (get_shared_generic_class): Likewise.
15695         * metadata-internals.h: Likewise.
15697         * reflection.c (mono_class_bind_generic_parameters): Take and
15698         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15699         (mono_reflection_bind_generic_parameters): Use
15700         'mono_class_bind_generic_parameters' rather than duplicate the code.
15701         * class.c (mono_bounded_array_class_get): Update to changes.
15702         * object-internals.h: Likewise.
15704         * reflection.c (mono_class_bind_generic_parameters): Only support
15705         parameterizing generic type definitions.  Remove support for other
15706         open types.
15708 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15710         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15712         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15713         in the dynamic case.
15715 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15717         * threads.c: When cleaning up thread, reset the Background bit.
15718         Fixes bug #81720.
15720 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15722        * metadata.c: Move variable declarations to top of scope.
15723        * verify.c: Move variable declarations to top of scope.
15725        Code is contributed under MIT/X11 license.
15727 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15729         * reflection.c (mono_class_bind_generic_parameters): Replace
15730         open-coded loop with mono_metadata_inflate_generic_inst.
15732         * class.c (get_shared_generic_class): Don't call
15733         mono_get_shared_generic_inst.  Use the container's own
15734         'class_inst'.
15736         * metadata.c (mono_metadata_load_generic_params): Move
15737         initialization of 'context' field here from ...
15738         * class.c (mono_class_create_from_typedef): ... here, and ...
15739         * loader.c (mono_get_method_from_token): ... here.
15741         * class.c (get_shared_generic_class): Rename from
15742         mono_get_shared_generic_class and make static.
15743         (mono_get_shared_generic_inst): Move to metadata.c.
15744         * loader.c (mono_get_shared_generic_method): Likewise.
15745         * class-internals.h, metadata-internals.h: Update to changes.
15747         Fix #81830
15748         * class.c (mono_class_from_generic_parameter): Don't assume a
15749         generic container owner exists.  Generic containers from monodis
15750         don't have any.
15752 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15754         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15755         * verify.h: new typedefs to returns the non-verifiable status
15756         * verify.c: initial implementation of generics, stack merging and object compatibility check
15758 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15760         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15761         a MonoInternalHashTable again (fixed bug in internal hash table
15762         code).
15764 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15766         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15767         MonoInternalHashTable again (fixed bug in internal hash table
15768         code).
15770 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15772         * class.c, image.c, class-internals.h, domain.c,
15773         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
15774         changes.  Have to figure out what makes them break the SWF
15775         regression.
15777 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15779         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15780         a MonoInternalHashTable now.
15782 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15784         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15785         MonoInternalHashTable now.
15787 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15789         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
15790         invoke_impl code.
15792         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
15794         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
15795         dependent trampoline.
15797         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15799         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
15801 2007-05-29  Robert Jordan  <robertj@gmx.net>
15803         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
15805 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
15807         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
15809 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
15811        * marshal.c: Fix interface lookup loops for
15812        cominterop_get_com_slot_for_method and 
15813        cominterop_get_method_interface. Only need to lookup
15814        if type is a class, else use interface type method is on.
15816        Code is contributed under MIT/X11 license.
15818 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
15820         * reflection.c: HasSecurity can be present even if no specially 
15821         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
15822         SecurityAttribute). Fix CAS regression tests on buildbot.
15824 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15826        * appdomain.c: Add configure checks for header files.
15827        * image.c: Add configure checks for header files.
15828        * file-io.c: Add configure checks for header files.
15829        * debug-mono-symfile.c: Add configure checks for header files.
15830        * threadpool.c: Add configure checks for header files.
15831        * console-io.c: Add configure checks for header files.
15832        * profiler.c: Add configure checks for header files.
15833        * rawbuffer.c: Add configure checks for header files.
15834        * icall.c: Add configure checks for header files.
15835        * rand.c: Add configure checks for header files.
15836        * socket-io.c: Add configure checks for header files.
15838        Code is contributed under MIT/X11 license.
15840 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
15842         * reflection.c (mono_custom_attrs_from_builders): Remove the 
15843         assertion as it breaks the build.
15844         
15845         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
15847         * reflection.c (lookup_custom_attr): Make a copy here too.
15849         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
15850         dynamic images.
15852         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
15853         images.
15855         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
15856         info.
15858 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15860         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
15861         (load_cattr_value): Ditto.
15863 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
15865         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
15867 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
15869         * threads.c: In "start_wrapper", set apartment_state to MTA if
15870         apartment_state is Unknown and we're running on 2.0 profile or
15871         higher.
15872         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
15873         to main method, then set apartment_state to Unknown on 1.0 profile,
15874         and MTA on 2.0 profile.
15876 2007-05-16  Jb Evain  <jb@nurv.fr>
15878         * class-internals.h (MonoDefaults): Add an attribute_class and
15879           customattribute_data_class.
15880         * domain.c (mono_init_internal): Populate them.
15881         * reflection.c: Use them to remove duplicates. Make a vew
15882         MonoClass variables `static'.
15884 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15886         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
15887         step in implementing IMT, so that all isinst checks now can go
15888         through the bitmap.
15889         This was needed because vtables for TransparentProxy need to look
15890         like the vtable of the "target" class, so they need to point to
15891         its interface bitmap directly.
15893         * object.c: inside "mono_class_create_runtime_vtable" and
15894         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
15896 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15898         * object-internals.h
15899           culture-info.h : added territory field in MonoCulture and
15900           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
15901         * locales.c : fill territory field above too.
15902         * culture-info-table.h : regenerated.
15904 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15906         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
15907         Fixes #81599.
15909 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15911         * object.c: Always initialize apartment, even if 
15912         there is no custom attributes on entry point.
15913         
15914         Code is contributed under MIT/X11 license.
15916 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15918         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
15919         * metadata.c: If no encoding is set, check for unicode
15920         on class.
15921         
15922         Code is contributed under MIT/X11 license.
15924 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15926         * threads.c: Handle if mono_thread_current returns NULL 
15927         
15928         Code is contributed under MIT/X11 license.
15930 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15932         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
15933         in start_wrapper. Added mono_thread_init_apartment_state and
15934         mono_thread_cleanup_apartment_state.
15935         * object.c: Initialize thread apartment state on main thread
15936         by checking for STAThreadAttribute on entry point.
15937         * object-internals.h: Add apartment_state field to MonoThread.
15938         * threads-types.h: Add unmanaged definition of 
15939         System.Threading.ApartmentState, MonoThreadApartmentState.
15940         
15941         Code is contributed under MIT/X11 license.
15942         
15943 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
15945         * class.c: Fix windows build.
15946         * class-internals.h: Fix windows build.
15947         
15948         Code is contributed under MIT/X11 license.
15950 2007-05-08  Robert Jordan  <robertj@gmx.net>
15952         * process.c (CreateProcess_internal):
15953         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
15954         .CreateNoWindow was specified. Fixes #81496.
15956 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15958         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
15959         step in implementing IMT, replaced it with two compact arrays
15960         (interfaces_packed and interface_offsets_packed) and a bitmap that
15961         is used for isinst checks (interface_bitmap).
15963         * class.c: (compare_interface_ids): compare function to pass to
15964         bsearch when looking for an interface with a given id.
15965         (mono_class_interface_offset): reimplemented using bsearch on
15966         interfaces_packed, getting the offset from interface_offsets_packed.
15967         (print_implemented_interfaces): utility debugging function.
15968         (setup_interface_offsets): reworked to initialize interfaces_packed,
15969         interface_offsets_packed and interface_bitmap.
15971         * object.c: replaced all accesses to "MonoClass.interface_offsets"
15972         with uses of interfaces_packed and interface_offsets_packed.
15974 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15976         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
15977         mono_class_interface_offset prototype to wrap all accesses to
15978         "MonoClass.interface_offsets".
15980         * class.c: Implemented mono_class_interface_offset, and wrapped all
15981         accesses to "MonoClass.interface_offsets".
15983         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
15984         "MonoClass.interface_offsets".
15986 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15988         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
15989         GetMethodFromHandle overloads (bug #78637).
15991 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15993         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
15994         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
15996 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
15998         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
15999         #81498.
16001         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16002         gracefully.
16003         (mono_custom_attrs_from_index): Ditto.
16005         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16006         Fixes #81501.
16008 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16010         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16011         is now allocated from a mempool.
16013 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16015         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16016         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16018 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16020         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16021         mono_loader_clear_error () too late. Fixes #81463.
16023 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16025         * culture-info-table.h : regenerated.
16027 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16029         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16030         is missing.
16032 2007-04-25  Dick Porter  <dick@ximian.com>
16034         * Makefile.am: Put the mingw enforced-optimisation back into the
16035         PLATFORM_WIN32 section.
16037 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16039         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16040         patch.
16042         * image.c (mono_image_load_module): New API function to load a module reference.
16044         * image.c (load_modules): Load modules lazily. Fixes #80812.
16046         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16047         
16048         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16050         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16051         to mono_image_load_module_dynamic.
16053 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16055         * marshal.c: Fix calling convention for CCW on non-windows
16056         platforms. STDCALL on windows, CDECL everywhere else to work 
16057         with XPCOM and MainWin COM.
16058         
16059         Code is contributed under MIT/X11 license.
16061 2007-04-23  Martin Baulig  <martin@ximian.com>
16063         Fix #80969.
16065         * loader.c
16066         (method_from_memberref): Added `gboolean *used_context' argument.
16067         (mono_get_method_from_token): Likewise.
16068         (mono_get_method_full): Don't insert the method in the cache when
16069         `used_context' is true.
16071 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16073         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16075         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16076         create new MonoTypes for returned types.
16077         * class.c (mono_generic_class_get_class): Export mono-internal.
16078         * class-internals.h: Update to changes.
16080 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16082         * threadpool.c, threadpool.h, icall-def.h: patch from
16083         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16085 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16087         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16088         
16089         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16091         * threads.c (mono_thread_get_stack_bounds): New helper function.
16093         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16094         Correctly compute stack bounds when attaching. Fixes #81394.
16096 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16098         * reflection.c: fix handling of doubles in custom attributes
16099         for the arm-fpa format (bug #81368).
16101 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16103         * reflection.c (assembly_add_win32_resources): Mildly relax an
16104         bounds check to let the end pointer point just past the end of the
16105         allocated buffer.  (may fix #81384)
16107 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16109         * culture-info-table.h : regenerated.
16111 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16113         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16114         the thread is aborted early.
16116 2007-04-05  Dick Porter  <dick@ximian.com>
16118         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16119         FindFirstFile()/FindNextFile() to find entries.  This lets the
16120         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16121         81038.
16123         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16124         the parameters of
16125         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16127 2007-04-04  Martin Baulig  <martin@ximian.com>
16129         * debug-helpers.c
16130         (mono_method_desc_full_match): Add support for nested classes.
16132 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16134         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16136 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16138         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16139         waiting for too many threads.
16141 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16143         * environment.c: Fix return value check on uname so we can get the 
16144         executing version on Solaris operating systems.
16146 2007-03-28  Jb Evain  <jbevain@gmail.com>
16148         * class.c (mono_type_get_name_recurse): Complete the
16149         fix for the creation of assembly qualified names for
16150         pointer types. Fixes #81208.
16152 2007-03-27  Dick Porter  <dick@ximian.com>
16154         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16155         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16156         changed.
16158         * threads.c
16159         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16160         the value of ReleaseMutex().
16162 2007-03-27  Dick Porter  <dick@ximian.com>
16164         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16165         in little-endian order, not network endian, so must be converted
16166         to host endian here.  Fixes bug 80593.
16168 2007-03-22  Jb Evain  <jbevain@gmail.com>
16170         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16171         qualified names for pointer types. Fixes #81208.
16173 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16175         * marshal.c: Add support for PreserveSigAttribute. 
16176         
16177         Code is contributed under MIT/X11 license.
16179 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16181         * process.c: Fix endianness issues. Fixes #81126.
16183         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16184         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16186         * image.c (mono_image_lookup_resource): Make this work on big-endian
16187         machines.Change API contract so the caller needs to free the return value.
16188         
16189         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16190         API change.
16191         
16192 2007-03-14  Martin Baulig  <martin@ximian.com>
16194         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16195         mono_type_get_desc() as well.
16197 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16199         * icall.c:  Fix environ access in VS.  
16200         
16201 2007-03-13  Alp Toker  <alp@atoker.com>
16203         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16204         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16205         #63841.
16207 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16209         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16210         circular references among dynamic methods. Fixes #81091.
16212         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16214 2007-03-09  Martin Baulig  <martin@ximian.com>
16216         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16218 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16220         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16221         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16222         
16223         Code is contributed under MIT/X11 license.
16224         
16225 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16227         * loader.c: Reapply patch for bug #79424.
16229 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16231         * metadata.c (mono_type_to_unmanaged): Only convert object to
16232         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16234 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16236         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16237         (and incorrectly set) is_reference field from MonoGenericInst.
16239 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16241         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16242         a little earlier.
16244         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16246         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16248 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16250         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16251         FileOptions.1 value to mean "temporary", map that to
16252         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16254         Fixes 80688
16256 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16258         * appdomain.c: implement MS .Net style shadow copying. Copies of
16259         the assemblies are made in a subdirectory of the dynamic base
16260         directory, the assembly names are preserved.
16261         Copy .mdb and .config files along with the assemblies being shadowed.
16263 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16265         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16266         (emit_marshal_handleref): Ditto.
16268         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16269         on Visual C++. Fixes #80671.
16271 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16273         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16274         for clone operations.
16276 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16278         * marshal.c: Fix warnings.
16280 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16282         * loader.c: allow case-insensitive matching of the dll name
16283         in dllmap handling when prefixed with "i:".
16285 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16287         * threads.c: Fix #ifdef for dummy_apc function for VS.
16289 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16291         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16293 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16294         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16295         giving precedence to the methods with a fully qualified name
16296         (InterfaceName.MethodName) when building the interface sections
16297         of the vtable.
16299 2007-02-16  Dick Porter  <dick@ximian.com>
16301         * threadpool.c (append_job): Fix fast-path array handling, so it's
16302         less likely the array will grow exponentially when the load is
16303         heavy.
16305 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16307         * metadata-internals.h, loader.c: fix dllmap lookup order
16308         for non-function maps, too, and prepare for fallback code.
16310 2007-02-12  Robert Jordan  <robertj@gmx.net>
16312         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16313         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16314         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16315         GlobalFree. Fixes a part of bug #77075.
16317 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16319         * loader.c: implemented typedef parent in field memberref.
16321 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16323         * marshal.c: Fix warnings and remember to call Release on
16324         IUnknown of RCW.
16325         
16326         Code is contributed under MIT/X11 license.
16328 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16330         * class-internals.h: Add MonoHandleRef definition, and
16331         handleref_class to mono_defaults. 
16333         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16334         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16336         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16337         (do nothing on this stage)
16338         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16339         (emit_marshal_handleref): New method, used for argument handling
16340         of HandleRefs. 
16342 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16344         * class.c (mono_class_setup_parent): Lazily init com types.
16345         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16346         init com types.
16347         * object.c (mono_remote_class_vtable): Lazily init com types.
16348         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16349         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16350         * domain-internals.h: Expose mono_init_com_types.
16351         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16352         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16353         Add support for COM Callable Wrapper marshalling.
16354         * marshal.h: Add icall definitions.
16355         * gc.c: Handle freeing of CCWs in finalizer code.
16356         
16357         Code is contributed under MIT/X11 license.
16359 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16361         * reflection.c: changed all the signature encoding code to use
16362         a variable-sized buffer.
16364 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16366         * marshal.c: locking fixes: never take the loader lock
16367         or other runtime locks when holding the marshal lock
16368         (fixes bug#80664).
16370 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16372         * marshal.c: make the delegate function pointer mapping
16373         work for the moving GC.
16375 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16377         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16378         for bug #80618.
16380 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16382         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16383         gmodule.
16385 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16387         * threadpool.c: made the code moving-GC safe.
16389 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16391         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16392         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16393         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16394         warning cleanup.
16395         * reflection.c: warning cleanup, some threading and moving GC fixes.
16397 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16399         * class.c, loader.c: create the needed Set/Get/Address array methods
16400         as well as the .ctors in mono_class_init (), fixes bug #80567.
16402 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16404         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16405         we doesn't decrease its alignment. Should fix the sparc build.
16407 2007-01-24  Dick Porter  <dick@ximian.com>
16409         * socket-io.c
16410         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16411         Create the returned object if we need to ignore an unsupported
16412         socket option.  Fixes a segfault reported by Atsushi.
16414 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16416         * class.c, object.c: restrict GC-tracked fields to
16417         UIntPtr fields used inside corlib, so we provide better
16418         type info to the GC and also allow broken packing as in
16419         bug #80580.
16421 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16423         * sgen-gc.c: removed duplicated function.
16425 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16427         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16428         value that means that the value is not supported, but that we
16429         should not return a failure, but instead report this as a
16430         successful operation.
16432 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16434         Fix tests/bug79956.2.il
16435         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16436         (mono_generic_class_get_class): If the generic definition in an
16437         enum, copy over other fields related to it.
16439 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16441         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16442         genericinst enums (bug #79215).
16444 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16445         * class.c: Fix bug 80307.
16447 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16449         * image.c: if the file table is not present, try to load
16450         all the modules, since we don't have info about them
16451         having or not metadata (bug #80517).
16452         * assembly.c: allow mono_assembly_load_references () to
16453         work for netmodules.
16455 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16457         * image.c, metadata-internals.h, object.c: execute module
16458         cctors when running on the 2 runtime if present (bug #80487).
16460 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16462         * icall.c: optimized InitializeArray() on bigendian.
16464 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16466         * icall.c: fix for the broken ARM FPA double format.
16468 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16470         * icall.c: handle endian issues for r4 and r8 types, too, in
16471         the InitializeArray() icall.
16473 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16475         * loader.c (mono_loader_error_prepare_exception): Clear the error
16476         once we have extracted the information from it, do this before we
16477         call into the JIT's class loading mechanisms.
16479         * object.c (mono_class_create_runtime_vtable): Do not clear the
16480         loader error before calling mono_class_get_exception_for_failure
16481         as the loader error is needed inside
16482         mono_class_get_exception_for_failure to throw the error (thinko).
16484         Fixes #80521
16485         
16486 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16488         * reflection.c: align fields rva data so it's faster to load at
16489         runtime.
16491 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16493         Prepare to simplify GenericMethod handling.
16494         * class-internals.h (mono_method_get_context): New accessor function.
16495         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16496         rather than directly accessing '->context' field.
16498         * class-internals.h (_MonoGenericParam.method): Move ...
16499         (_MonoGenericContainer): ... here.  Add into union with klass field.
16500         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16501         Update to changes.
16503 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16505         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16506         the wrapper type enum and reduce relocations.
16508 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16510         * reflection.c (inflate_mono_method): Reuse method instantiation
16511         from the generic method, if available.
16513 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16515         * marshal.c (emit_marshal_variant): Fix conv_arg
16516         type in last commit, based on whether parameter is byref.
16517         
16518 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16520         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16521         marshalling.
16522         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16523         MONO_TYPE_OBJECT back for VARIANT support.
16525 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16527         * marshal.c, marshal.h, icall-def.h: Implement 
16528         Marshal.ReAllocCoTaskMem.
16530 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16532         * marshal.c: memory retention fixes: use the proper
16533         image cache for runtime_invoke method lookups.
16535 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16537         * mempool.c: added code to help debug mempool allocations.
16539 2007-01-11  Dick Porter  <dick@ximian.com>
16541         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16542         support (experimenting with faking it with IP_MTU_DISCOVER for
16543         systems that don't have IP_DONTFRAGMENT.)
16544         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16545         icall.
16547         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16549         * socket-io.h: Add new fields to MonoSocketAsyncResult
16550         corresponding to the new ones in Socket.cs.
16552 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16554         Fix IronPython regression mentioned in #80249
16555         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16556         'cached_context' field, since it may have been initialized as a
16557         side-effect of metadata parsing.
16559         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16560         (_MonoGenericClass.cached_class): Move here and rename from lone
16561         remaining field of ...
16562         (_MonoInflatedGenericClass): ... this.  Remove.
16563         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16564         to changes.
16566         Fix mcs/tests/test-128.cs regression.
16567         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16568         2007-01-10 change below.
16569         [MONO_TYPE_OBJECT]: Recurse into array case.
16571 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16573         * class-internals.h (mono_get_inflated_generic_class): Remove.
16574         * class.c (mono_get_inflated_generic_class): Remove.
16575         (mono_generic_class_get_class): Rename from
16576         mono_class_create_generic.
16577         (mono_class_from_mono_type) [GENERICINST]: Use it.
16578         * reflection.c, metadata.c: Update to changes.  Use
16579         'mono_class_from_mono_type'.
16581 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16583         * reflection.c: use passed type when encoding an array element
16584         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16586 2007-01-09  Robert Jordan  <robertj@gmx.net>
16588         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16589         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16590         Fixes bug #80392.
16592 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16594         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16596         * object.c (set_value): Avoid aliasing between type->data.klass
16597         and type->data.generic_class.
16599         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16601 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16603         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16604         between type->data.klass and type->data.generic_class.
16606 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16608         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16609         value in out parameters.
16611 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16613         Simplify invariant for MonoGenericClass::klass field.
16614         * class.c (mono_class_create_generic): Verify 'klass' is null.
16615         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16616         initialize 'klass' field.
16618 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16620         Ongoing work to avoid redundant data and simplify invariants.
16621         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16622         'generic_class', and change type to a GenericInst.
16623         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16624         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16626 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16628         * class.c : skip io-layer under PLATFORM_WIN32.
16630 2007-01-03  Tor Lillqvist  <tml@novell.com>
16632         Fix #80305: In a bundled executable, look in the bundled exe
16633         assembly to determine the runtime version. Add the possibility to
16634         bundle also the machine.config file.
16635         
16636         * assembly.c (mono_assembly_open_from_bundle): Make
16637         non-static. Allow being called even if we have no bundled
16638         assemblies, and return NULL right away in that case.
16640         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16641         here.
16643         * domain.c (app_config_parse): Take an assembly exe file name as
16644         parameter instead of a config file name. Check for a bundled
16645         config file for that assembly by calling
16646         mono_config_string_for_assembly_file() (see below) before looking
16647         for one in the file system.
16648         (get_runtimes_from_exe): Corrsponding change to call of
16649         app_config_parse().
16650         (get_runtimes_from_exe): Check for bundled assembly exe file first
16651         by calling mono_assembly_open_from_bundle(). If no bundled
16652         assembly exe file is found, call mono_image_open() as before to
16653         look it up in the file system.
16655         * mono-config.c: Add variable bundled_machinec_onfig.
16656         (mono_config_string_for_assembly_file): New function.
16657         (mono_config_for_assembly): Move code snippet that looks for a
16658         bundled assembly .config file into the above new function. Call
16659         it.
16660         (mono_register_machine_config, mono_get_machine_config): New
16661         functions to set and retrieve
16663         * assembly.h: Declare mono_register_machine_config().
16665         * mono-config.h: Declare mono_get_machine_config() and
16666         mono_config_string_for_assembly_file().
16668         * icall.c: No declaration of environ necessary on Win32. It is
16669         declared (as a macro expanding to a function call) in stdlib.h.
16670         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16671         New internal mono function. Returns the value of
16672         mono_get_machine_config() as a Mono string.
16674         * icall-def.h: Add get_bundled_machine_config().
16676 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16678         Remove redundant field
16679         * class-internals.h (_MonoGenericContext.container): Remove field.
16680         * loader.c (mono_method_get_signature_full): Don't parse a
16681         "container" for a signature parse when the signature is inflated
16682         immediately.
16683         (method_from_methodspec): Likewise, for a generic_inst.
16684         * class.c, metadata.c, reflection.c: Update to changes.
16686 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16688         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16689         'cached_context', and change semantics -- it starts off NULL, and
16690         is initialized on demand.
16691         * class.c (mono_generic_class_get_context): New accessor to
16692         replace 'context' field accesses.
16693         (mono_class_get_context): New helper.
16694         (*): Update to changes.
16695         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16697 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16699         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16700         before the memcpy.   Fixes Marshal2 regression.
16702 2007-01-02  Jb Evain  <jbevain@gmail.com>
16704         * blob.h: add a MONO_TYPE_ENUM definition
16705         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16706         fix the encoding of arrays of enums in custom attributes.
16708         Fixes #79666.
16710 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16712         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16713         string is null terminated, but only cut the string short if it
16714         overflows the buffer.   
16715         
16716         (mono_string_to_byvalstr): Also fix this routine.   The code here
16717         was not properly terminating a string (it was only terminated
16718         because of the previous catch-all memset). 
16720         I left the memset, because I do not know if applications expect
16721         the runtime to clear this region. 
16723         Fixes #79944.
16725         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16726         Clear the error before returning to unmanaged code to prevent the
16727         runtime from being confused later on (fixes  80420).
16728         (ves_icall_type_from_name): Always call mono_loader_clear_error
16729         after parsing a type that could have failed.
16730         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16732         * loader.c (mono_loader_clear_error): Fix indentation.
16734 2006-12-28  Martin Baulig  <martin@ximian.com>
16736         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16738 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16740         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16741         getting a token for an EnumBuilder.
16743 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16745         * reflection.c: be more careful in case resource generation
16746         fails to create the data array.
16748 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16750         * sgen-gc.c: write barrier for clone and fix unregister handles.
16752 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16754         * reflection.c: some fixes needed in the generics code for the moving GC.
16756 2006-12-22  Robert Jordan  <robertj@gmx.net>
16758         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
16759         account. Fixes bug #80299.
16761 2006-12-21  Raja R Harinath  <rharinath@novell.com>
16763         Fix WaitHandle usage in delegates.
16764         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
16765         * object.c (mono_wait_handle_new): Use the property set method to
16766         initialize the handle.
16767         (mono_wait_handle_get_handle): New.
16768         * threadpool.c (mono_async_invoke): Use it.
16769         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
16770         Likewise.
16771         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
16773 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
16775         * marshal.c (emit_marshal): Call emit_marshal_variant and
16776         emit_marshal_com_interface when applicable.
16777         (emit_marshal_variant, emit_marshal_com_interface): Add
16778         methods for this case and remove if's from emit_marshal_object.
16779         
16780 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
16782         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
16784 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
16786         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
16787         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
16788         and GlobalFree on Windows. Remove FIXME.
16790 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16792         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
16793         implementation for managed objects.
16795 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16797         * object.c: implemented code to be used for checking
16798         that no reference field overlaps with non-references.
16800 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16802         * threadpool.c: fix queue code to be compatible with the
16803         moving GC.
16805 2006-12-18  Miguel de Icaza  <miguel@novell.com>
16807         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
16808         in structures by throwing ArgumentNullException.
16810         (emit_marshal_safehandle): Also when they are null parameters.
16812         (emit_marshal_safehandle): Add support for ref
16813         SafeHandles parameters
16815 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16817         * profiler.c: updated to use the mono-dl API instead of
16818         gmodule.
16820 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16822         * profiler.c: updated to use the mono-dl dynamic loading
16823         API instead of gmodule.
16825 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16827         * profiler.c: use readlink, older versions of glib don't have
16828         g_file_read_link ().
16830 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16832         * profiler.c: try to detect the path to mono if libc fails to provide
16833         a useful name (bug #80286).
16835 2006-12-16  Raja R Harinath  <rharinath@novell.com>
16837         Fix #80242
16838         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
16839         instance, use the generic type definition instead.
16840         (ves_icall_Type_GetNestedTypes): Likewise.
16841         * class.c (mono_class_create_generic): Always set the
16842         nested_classes of a generic instance to NULL, even if the generic
16843         type definition has nested types.
16845 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
16847         * marshal.c (mono_string_from_bstr): Revert previous Windows change
16848         and fix on Linux.
16849         
16850 2006-12-15  Miguel de Icaza  <miguel@novell.com>
16852         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
16853         my arguments were in the wrong order.   I also fixed the Windows
16854         version which seems to have had the same issue.
16856         (mono_free_bstr): On Unix, this is g_free.
16857         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
16858         conversions (for the tests in corlib to pass).
16860 2006-12-14  Miguel de Icaza  <miguel@novell.com>
16862         * marshal.c (emit_ptr_to_object_conv): For now, ignore
16863         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
16864         exception if a ref SafeHandle in a struct has changed).
16865         
16866         (emit_struct_conv): Do not perform layout checks for classes
16867         derived from SafeHandle, as those are specially handled. 
16869         (emit_object_to_ptr_conv): Add support for
16870         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
16872         (emit_marshal_safehandle): Implement conversion of return values
16873         of safehandles (MARSHAL_ACTION_CONV_RESULT).
16874         
16875         * threads.c: WaitHandle now is compiled with two different handles
16876         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
16877         for 2.0.
16878         
16879         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
16880         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
16881         these routines to cope with both kinds of fields.
16883 2006-12-12  Miguel de Icaza  <miguel@novell.com>
16885         * metadata.c (mono_type_to_unmanaged): Handle the case where
16886         type->data.klass is a SafeHandle, and in that case, return the
16887         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
16888         MONO_MARSHAL_CONV_SAFEHANDLE. 
16890 2006-12-11  Miguel de Icaza  <miguel@novell.com>
16892         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
16893         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
16894         calling emit_marshal_object.
16896         (emit_marshal_safehandle): Implement marshalling of
16897         SafeHandle parameters (no ref support yet).
16899         (MarshalAction): Document the defines as I implement
16900         them for SafeHandle.
16902         (emit_marshal_object): indentation police.
16904         * class-internals.h: Define MonoSafeHandle.
16905         Add safehandle_class to MonoDefaults type.
16907         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
16908         list of classes to check for fields. 
16910         * domain.c (mono_init_internal): Add SafeHandle to the list of
16911         mono_defaults loaded.
16913 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16915         Fix #80253
16916         * reflection.c (mono_reflection_bind_generic_parameters): If the
16917         generic type definition is a type builder, ensure that it is fully
16918         initialized before instantiating it.  Kill some dead code.
16920 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16922         * object.c: clear the loader_error () before loading
16923         more metadata stuff (bug #80258).
16925 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
16927         * icall.c, icall-defs.h: type modifiers icalls for
16928         parameters and properties.
16930 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16932         * object.c, icall.c: fixed warnings.
16934 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16936         * marshal.c: fixed a couple of leaks and coding style in a few places.
16938 2006-12-08  Dick Porter  <dick@ximian.com>
16940         * process.c: Cope with NULL ProcessStartInfo arguments on windows
16941         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
16942         80173.
16944 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16946         * process.c: ProcessStartInfo may have only filename set and
16947         arguments can be NULL.
16949 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16951         * icall.c: fix leak found by Robert Jordan.
16953 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16955         * marshal.c, marshal.h: generate managed method to access an element
16956         of a multi-dimensional array.
16958 2006-11-30  Paolo Molaro (lupus@ximian.com)
16960         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
16962 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16964         * icall.c: back out GetFields () fix until the serialization code is
16965         fixed to not depend on the incorrect behaviour.
16967 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
16969         * profiler.c: provide defaults if none are set.
16971 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16973         * Makefile.am, attrdefs.h: new public header file with
16974         constants for attributes for use by embedders.
16976 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
16978         * icall.c: GetFields () fix for bug #80064.
16980 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
16982         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
16983         removed long unused icalls.
16985 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
16986   
16987         * marshal.c: 
16988                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
16989                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
16990                 can be generated without a delegate class.
16991                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
16992         
16993         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16995 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16997         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
16998         #80069.
17000 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17002         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17003         icall-def.h: added icalls needed by System.GC.
17005 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17007         * loader.c: ensure the class in catch clauses is handled
17008         correctly for generics methods (fixes bug#79980).
17010 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17012         * monitor.h, monitor.c: added mono_locks_dump () function
17013         to help debug deadlocks involving managed locks.
17015 2006-11-13  Dick Porter  <dick@ximian.com>
17017         * file-io.c (get_file_attributes): If the file is a symlink try
17018         and get the stat data for the target, but also add the
17019         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17020         the specs for the windows symlink support, but will probably have
17021         to be reworked when I have test data from a vista machine.  Fixes
17022         bug 79887.
17024 2006-11-13  Dick Porter  <dick@ximian.com>
17026         * gc.c (mono_domain_finalize): 
17027         * marshal.c (mono_delegate_begin_invoke): 
17028         * threadpool.c (socket_io_init, mono_thread_pool_init)
17029         (mono_thread_pool_finish): 
17030         * monitor.c (mono_monitor_try_enter_internal): 
17031         * threads.c (mono_thread_resume, mono_thread_init)
17032         (mono_thread_suspend_all_other_threads)
17033         (mono_thread_execute_interruption): 
17034         * appdomain.c (mono_domain_unload): Check for NULL error returns
17035         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17036         75733.
17038 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17040         * process.c
17041         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17042         Only close the handle if the value of the handle is not
17043         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17044         robust.
17046         Improvement for #75733, so that we do not run into this problem. 
17048         
17049         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17050         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17051         internal variables.  Fixes #79462 
17052         
17054 2006-11-09  Dick Porter  <dick@ximian.com>
17056         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17057         Use poll() not select().  Fixes bug 79397.
17059 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17061         Fix #79872
17062         * assembly.c (mono_assembly_load_from_full): Check that the given
17063         image has an assembly manifest.
17065 2006-11-09  Ankit Jain  <jankit@novell.com>
17067         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17068         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17069         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17071 2006-11-07  Dick Porter  <dick@ximian.com>
17073         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17074         Put the old resolver behaviour back for pre-2.0 profiles.
17076 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17078         * threadpool.c: precise GC and locking fixes.
17080 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17082         * class.c: don't load types that have an explicit unaligned
17083         managed reference. Provide better info in the TypeLoad exception.
17084         Part of the fix for bug #79744.
17085         * object.c: use the correct check for class type load issues.
17087 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17089         * class.c: enforce alignment of fields with managed references
17090         even when Pack=1 is forced by the user (bug #77788).
17092 2006-11-03  Dick Porter  <dick@ximian.com>
17094         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17095         If the address reverse lookup fails, return it as the hostname
17096         anyway.  Fixes bug 79721.
17098 2006-11-03  Dick Porter  <dick@ximian.com>
17100         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17101         Fix build on Windows.
17103 2006-11-02  Dick Porter  <dick@ximian.com>
17105         * icall-def.h: 
17106         * object-internals.h: 
17107         * exception.c (mono_get_exception_thread_interrupted): 
17108         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17109         Fixes bug 74525.
17111         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17112         Check for pending Thread.Interrupt.
17114 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17115         * loader.c: Fixed bug 79684.
17117 2006-10-27  Dick Porter  <dick@ximian.com>
17119         * file-io.c (get_file_attributes): Force symlinks to directories
17120         to be returned as a regular file.  Fixes bug 79733.
17121 2006-10-26  Dick Porter  <dick@ximian.com>
17123         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17124         CreateFile to open a directory then we need to set the
17125         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17127 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17129         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17130         friends.
17132 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17134         * sgengc.c: small cleanup of timer code.
17136 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17138         * sgen-gc.c: fix some warnings and start adding support for
17139         complete object removal on domain unload.
17141 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17143         * assembly.c: build_assembly_name should not consider a version
17144         number without build or revision number invalid. Fixes bug #79715.
17146 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17148         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17149         call kernel32 function OutputDebugString directly.
17150         
17151         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17152         
17153 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17155         * reflection.c: small cleanup, using a function to insert a MonoString
17156         in the string heap.
17158 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17160         * reflection.c: moving GC fixes.
17162 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17164         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17165         all the objects with finalizers belonging to an unloading appdomain.
17167 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17169         * sgen-gc.c: added ability to allocate even when the nursery is fully
17170         pinned and fixed a couple of bugs.
17172 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17174         * threads.h: Revert the last change for now.
17176         * threads.h (mono_thread_get_pending_exception): Rename this to
17177         mono_thread_get_undeniable_exception ().
17179 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17181         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17182         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17183         when fname does not refer to valid assembly. This result in a more
17184         meaningful error message.
17185         * exception.c: added mono_get_exception_bad_image_format2 which 
17186         constructs a BadImageFormatException using the ctor taking a custom
17187         message and the file name. Passing in a NULL msg results in a default
17188         message.
17189         * exception.h: define mono_get_exception_bad_image_format2 function.
17190         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17191         when file name pointed to an invalid IL image. Use 
17192         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17193         as this results in a more meaningful error message.
17195 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17197         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17198         #79465.
17200 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17202         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17203         consistency with the other _size functions.
17204         (mono_type_stack_size): Ditto.
17206         * class.c object.c icall.c: Fix warnings caused by the above change.
17208         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17210         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17212         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17214 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17216         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17217         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17218         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17219         threadpool.h, threads-types.h: mark more internal functions.
17221 2006-10-11  Dick Porter  <dick@ximian.com>
17223         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17224         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17225         reproduce the bug even before applying the fix.)
17227 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17229         * reflection.c: allow retrieving attributes for arguments in generic
17230         methods (bug #79241).
17232 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17234         * debug-mono-symfile.c: properly check fopen () result (found by
17235         coverity).
17237 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17239         * reflection.c: make error message clearer and fixed two
17240         issuelets found by Coverity.
17242 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17244         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17246 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17248         * object-internals.h, gc-internal.h, profiler-private.h:
17249         mark internal functions.
17251 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17253         * reflection.c: put data in the text section.
17254         * icall.c: recognize more types in type_from_typename ().
17255         * process.c, marshal.c: added some GC FIXMEs.
17257 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17259         * loader.c: check for NULL before initializing.
17261 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17263         * gc.c (finalizer_thread): Use a non-alertable wait here.
17265         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17266         until the correct solution is found.
17268 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17270         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17271         modules with no metadata. Fixes #79596.
17273         * image.c (load_metadata_ptrs): Put back the error message when
17274         the #- heap is encountered since the support is not complete yet.
17276 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17278         * gc.c: do not allow the user to SuppressFinalize () a
17279         delegate because it would leak the trampoline if present.
17281 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17283         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17284         PropertyPtr table.
17286 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17288         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17290         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17292         * row-indexes.h: Add definitions for *Ptr tables.
17294         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17296         * metadata.c (mono_metadata_translate_token_index): New helper function to
17297         translate table indexes used in uncompressed metadata.
17298         (mono_metadata_decode_table_row): Ditto.
17299         (mono_metadata_decode_table_row_col): Ditto.
17301         * metadata.c: Add table schema for *Ptr tables.
17303         * class.c loader.c: Use the new helper function to access the affected metadata
17304         tables.
17305         
17306         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17307         #38532.
17308         
17309 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17311         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17312         sequences which can be unbounded in size. Fixes #79583.
17314 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17316         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17317         static initialization.
17319         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17321         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17323         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17325         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17326         ctor fails, i.e. throw the same exception on subsequent accesses.
17327         
17328 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17330         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17331         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17332         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17333         Handle marshalling of interfaces and VARIANTs contained in structs.
17334         
17335         Code is contributed under MIT/X11 license.
17336         
17337 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17339         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17340         
17341         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17342         mempool.
17344 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17346         * console-io.c: ignore previous SIGINT handler.
17348 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17350         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17351         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17352         #79460, #79461, #79485.
17354         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17356         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17357         #79217.
17359 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17361         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17362         could be generated from it.
17364 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17366         * rand.c: fix read loop to correctly handle EINTR.
17368 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17370         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17371         internal calls are defined to keep methods closer to the declaring
17372         type and allow a significant reduction in runtime relocations and
17373         memory usage.
17375 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17377         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17378         exception message to have FileNotFoundException use the default
17379         assembly load error message. Fixes bug #79426.
17380         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17382 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17384         * threadpool.c: (start_thread_or_queue) use the root domain when
17385         creating the thread instead of the async object one.
17387 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17389         * class.c, object.c, class-internals.h, reflection.c:
17390         for arrays, store element_size inside MonoClass (speedup
17391         for array object creation).
17393 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17395         * icall.c: fixed CodeBase to use the file name and not the module
17396         name (bug #79365).
17398 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17400         * mono-debug.c, mono-debug.h: export find_method as
17401         mono_debug_find_method ().
17403 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17405         * debug-helpers.c, class-internals.h: added a few functions useful
17406         when debugging under gdb.
17408 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17410         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17411         characters that need special handling.
17413 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17415         * mono-config.c: make the os/cpu specification more flexible,
17416         allowing lists and negation.
17418 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17420         * marshal.c: COM Interop fixes. Handle case where method->klass.
17421         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17422         calling convention on non-windows platforms. This is for
17423         compatibility with XPCOM and MainWin COM.
17424         
17425         Code is contributed under MIT/X11 license.
17426         
17428 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17430         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17431         correctly. Fixes #79217.
17433         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17435 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17437         * mono-config.c: allow both an os and cpu attribute for dllmap
17438         and dllentry elemnets to enable a single config file to be used
17439         for multiple architectures.
17441 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17443         * loader.c: MonoLoaderError was cleared too soon on load failure.
17444         Fixes bug #79424.
17446 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17448         * icall.c: use the defining class vtable when accessing a
17449         static field, not a pobblibly derived class.
17451 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17453         * icall.c string-icalls.c: Remove references to unicode.h.
17455         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17457         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17459         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17460         indicating the image where custom marshaller types should be looked up.
17461         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17462         custom marshallers, instead of corlib. Fixes #79425.
17464 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17466         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17468 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17470         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17471         Implement Environment.ProcessorCount.
17472         
17473         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17474         Implement Environment.ProcessorCount.
17475         
17476         * icall.c: 
17477         Add Environment.ProcessorCount icall.
17478         
17479         Patch by Jason McFall.
17481 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17483         * assembly.c: don't append .exe/.dll when the filename already contains
17484         one of those extensions.
17486 2006-09-12  Martin Baulig  <martin@ximian.com>
17488         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17489         to array interfaces.
17491 2006-09-11  Martin Baulig  <martin@ximian.com>
17493         * reflection.c (mono_image_build_metadata): Create the
17494         MethodImpl's after emitting all types and methods, so we don't
17495         need another fixup pass for them.
17497 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17499         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17500         change.
17502 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17504         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17505         unload.
17507 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17509         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17510         args is not set. Fixes #78926.
17512 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17514         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17516         * image.c (load_class_names): Move this to class.c, and rename it to 
17517         'mono_image_init_name_cache'.
17518         (load_modules): Fix a warning.
17520         * class.c icall.c image.c: Initialize image->name_cache lazily.
17522         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17523         on its name using information in the AOT file.
17525         * class.c (mono_class_from_name): Use the new hook function.
17527 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17529         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17530         correctly.
17532         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17533         Fixes #79289.
17534         
17535 2006-09-06  Martin Baulig  <martin@ximian.com>
17537         * icall.c (mono_lookup_internal_call): Small fix.
17539 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17541         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17542         double g_free.
17544 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17546         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17547         when --debug is specified.
17549 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17551         * class.c (setup_generic_array_ifaces): Fix a warning.
17553 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17555         * Temporarily remove the patch to assemly.c that checks the
17556         assembly versions as it breaks our gacutil.
17558 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17560         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17562         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17563         a net 1.0 runtime.
17565         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17566         created using the default ctor. Fixes #79152.
17567         (mono_string_builder_to_utf16): Ditto.
17569 2006-09-01  Martin Baulig  <martin@ximian.com>
17571         Fix handling of the generic array interfaces.
17573         * class-internals.h
17574         (MonoDefaults): Removed `generic_array_class' and added
17575         `generic_ilist' class.
17577         * class.c
17578         (mono_bounded_array_class_get): Add the new generic array interfaces.
17579         (setup_generic_array_ifaces): New static method; create vtable
17580         entries for each method in the generic array interfaces.
17582         * metadata.c
17583         (select_container): Allow "parent-less" generic methods.
17585         * marshal.c
17586         (mono_marshal_get_generic_array_helper): New public method.
17588         * icall.c
17589         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17590         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17591         moved the interncall into System.Array.
17593 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17595         A few more cases of avoiding work on types with ->byref set.
17596         Has the real fix for #79238
17597         * icall.c (is_generic_parameter): New helper.
17598         (ves_icall_Type_GetGenericParameterPosition): Use it.
17599         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17600         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17601         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17602         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17603         reference types.
17604         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17605         reference types.
17606         (ves_icall_Type_get_IsGenericInstance): Likewise.
17607         (ves_icall_Type_get_IsGenericType): Likewise.
17609 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17611         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17612         class if possible.
17614         * mempool.h (mono_mempool_get_allocated): New helper function.
17616         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17617         change.
17619         * mempool.c: Fix warnings and the calculation of stats.
17621         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17623         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17625         * loader.c (mono_get_method_from_token): Update method_count stat.
17627         * class-internals.h (MonoStats): Add some stats.
17629 2006-08-31 Robert Jordan  <robertj@gmx.net>
17631         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17632         with managed variants.
17633         All code is contributed under the MIT/X11 license.
17634         
17635 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17637         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17638         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17640         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17642         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17643         with cycles in classes.
17645         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17647         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17648         missing a [MarshalAs] directive. Fixes #79203.
17650         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17651         klass->marshal_info. Fixes #79217.
17653 2006-08-30  Martin Baulig  <martin@ximian.com>
17655         Committing a patch from Joachim Ante <joe@otee.dk>:
17656         Add support for binary data symbol stores.
17658         * debug-mono-symfile.c
17659         (mono_debug_open_mono_symbol_file): Renamed into
17660         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17661         arguments.
17663         * mono-debug.c
17664         (mono_debug_open_image): Added `raw_contents' and `size' args.
17665         (mono_debug_init_2_memory): New public function.
17667 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17669         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17671 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17673         * appdomain.c: implement support for ShadowCopyFiles.
17675 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17677         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17678         when value is NULL (and should remove CID #51).
17680 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17682         * image.c: moved 2 functions to ../utils.
17684 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17686         * gc.c: cope with the target object of a GC handle being NULL
17687         (bug #78877).
17689 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17691         * class.c: recursively check parent's explicit implementations
17692         of interface methods (fixes bug #79125).
17694 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17696         * filewatcher.c: Avoid warnings when building, do not redefine
17697         constants that are defined.
17699         Remove warnings.
17701 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17703         * image.c: don't fail when the link points to an absolute path.
17705 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17707         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17708         Fix CID #3.
17710 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17712         * image.c (full_path): A new method used to obtain the actual path
17713         of an assembly even in the presence of symbolic links.  
17715         This is necessary for the case where we are running a binary that
17716         has been GACed, but we are using the "published" path name
17717         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17718         file in the GAC.
17720         This was the source of the failure for the `xsp' command with the
17721         recent AppDomain changes, as far as the runtime was concerned,
17722         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17723         $prefix/mono/gac/blah/version/blah.exe.
17725         (do_mono_image_open): use full path
17727 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17729         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17731 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17733         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17734         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17736 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17738         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17739         small structures. Fixes #78990.
17741 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17743         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17745         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17747 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17749         * appdomain.c:
17750         * marshal.c: don't load all the assemblies from a domain into newly
17751         created ones. The new domains might have different rules and load
17752         assemblies from different locations. Fixes bug #76757.
17754         Patch by Lluis. Conflicts resolved by Brian Crowell.
17756 2006-08-16  Alp Toker  <alp@atoker.com>
17758         * socket-io.c: First half of the fix for #79084.
17759         Set sa_size to the length of the content, not that of the struct.
17760         Don't add NULL suffix to the content, this should be done in
17761         managed code if needed.
17763 2006-08-14  Raja R Harinath  <rharinath@novell.com>
17765         Fix part of #79012
17766         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
17767         mono_metadata_parse_type returns NULL.
17769 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
17771         * normalization-tables.h : new file for string normalization data.
17772         * locales.c, locales.h, icall.c :
17773           added load_normalization_resource() for string normalization,
17774           and icall as well.
17775         * Makefile.am : added normalization-tables.h to the sources.
17777 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
17779         * marshal.c: Add more helper functions to reduce code duplication and use them
17780         everywhere.
17782 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
17784         * marshal.c: Fix non-x86 stdcall warnings.
17785         
17786         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
17787         them everywhere.
17789 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
17791         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
17792         type check on multi-dimensional arrays. Fixes #79000.
17794 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17796         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
17797         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
17798         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
17799         * class-internals.h: add is_com_object to class structure.
17800         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
17801         null checks to COM object marshalling. Fix .ctor call on RCW.
17802         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
17803         
17804         All code is contributed under the MIT/X11 license.
17806 2006-08-09  Dick Porter  <dick@ximian.com>
17808         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
17809         racing mono_monitor_allocator_lock() somewhere, so don't delete
17810         the critical section for now.  Found by running and exiting
17811         monodevelop.
17813 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
17815         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
17816         (ves_icall_System_ComObject_FindInterface): Ditto.
17817         (ves_icall_System_ComObject_CacheInterface): Ditto.
17819         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
17820         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
17822 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17824         * threadpool.c: treat pipes from process asynchronous reads as sockets
17825         when reading from them, so we get select/poll or epoll to wait for
17826         data.
17828 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
17830         * loader.c: Fix a typo (CID #233) in the null check.
17832 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
17834         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
17835         Hopefully fixes #78949.
17836         
17837         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
17838         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
17839         bytes. Fixes #78972.
17841 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17843         * filewatcher.c: we need to set errno here.
17845 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17847         * filewatcher.c: let Win32Exception get the error value.
17849 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17851         * filewatcher.c: translate errno into win32 errors for Win32Exception
17852         to know what happened.
17854 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17856         * threadpool.c: Fix more warnings.
17858         * assembly.c (search_loaded): Fix warnings.
17860         * threadpool.c (mono_thread_pool_finish): Fix warnings.
17861         (mono_async_invoke): Ditto.
17863 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
17865         * object.c (mono_remote_class_vtable): Need to create proxy vtable
17866         entries for __ComObject type in addition to ComImport types.
17867         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
17868         about hash table.
17869         
17870         All code is contributed under the MIT/X11 license.
17872 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17874         * image.c: avoid tentative loading of modulerefs that contain
17875         no metadata (P/Invoke library names).
17877 2006-07-28  Dick Porter  <dick@ximian.com>
17879         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
17880         mono_loader_lock() somewhere, so don't delete the critical section
17881         for now.  Found by running and exiting monodevelop.
17883 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17885         * filewatcher.c: define the inotify syscalls when we're building on
17886         linux and have sys/syscall.h. The build system might not have support
17887         for inotify but the target system might have it.
17889 2006-07-26  Miguel de Icaza  <miguel@novell.com>
17891         * domain.c: Documentation updates.
17893         * loader.c (mono_free_method): Do not release the method
17894         information if we are being profiled, as profilers will use this
17895         information at shut down to present some data to the user.
17897         This is needed so that the profiler does not crash, as the
17898         profiler tends to keep MonoMethods around, and they might become
17899         invalid if we free these.
17901         (mono_get_method_constrained): Return the original CIL stream
17902         method as well, so verification can be performed against it.
17904 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17906         * filewatcher.[ch]: support for inotify file system watcher.
17907         * icall.c: add new internal calls for the inotify file system watcher.
17909 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17911         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17912         #78888.
17914 2006-07-20  Dick Porter  <dick@ximian.com>
17916         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17917         warning.
17919 2006-07-20  Dick Porter  <dick@ximian.com>
17921         * threads.c (start_wrapper): Do the thread cleanup while we still
17922         hold a reference to its object.  Fixes bug 78123.
17924 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
17926         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
17927         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
17928           "managed-to-managed".
17929         * icall.c: Redirect string constructors that take sbyte* to
17930           ves_icall_System_String_ctor_RedirectToCreateString.
17931         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
17932           to CreateString () methods with matching signature.
17933         * reflection.c: Use original security informations for
17934           MONO_WRAPPER_MANAGED_TO_MANAGED.
17935         * security-manager.c: Use original security informations for
17936           MONO_WRAPPER_MANAGED_TO_MANAGED.
17937         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
17938           that is a placeholder and only its address should be used.
17939         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
17940           that is a placeholder and only its address should be used.
17942 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
17944         Begin implementing COM Interop.
17945         * appdomain.c: Increment corlib version.
17946         * class.c: Set ComImport classes' parent to __ComObject.
17947         * loader.c: Mark cominterop methods as such.
17948         * domain.c: Add __ComObject class to MonoDefaults structure.
17949         * image.c: Add 2 hashtables to the image for COM Interop related methods
17950         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
17951         using the mempool allocator
17952         
17953         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
17954         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
17955         declaration for mono_metadata_type_dup_mp.
17956         
17957         * debug-helpers.c: Added strings for two additional wrapper types
17958         * object.c: Create proxy objects for ComImport classes
17959         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
17960         and added __ComObject class to MonoDefaults structure.
17961         
17962         * object-internals.h: Finish MonoRealProxy definition, and add definition of
17963         MonoComInteropProxy and MonoComObject.
17964         
17965         * marshal.c: Added support for COM Interop
17966         (signature_cominterop): Converts managed signature to corresponding
17967         unmanaged COM signature.
17968         (cominterop_get_function_pointer): gets unmanaged function pointer via
17969         COM object vtable
17970         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
17971         (cominterop_get_method_interface): returns interface type that method is defined on
17972         (mono_mb_emit_cominterop_call): emits native call to function pointer
17973         gotten from vtable
17974         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
17975         that matches signature of unmanaged function.
17976         (cominterop_get_native_wrapper): wrapper around adjusted method call.
17977         (cominterop_get_invoke): forwards call from proxy to __ComObject
17978         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
17979         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
17980         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
17981         
17982         * marshal.h: Added Marshal icall declarations.
17983         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
17984         so we can access them in finalizer
17985         
17986 2006-07-14  Dick Porter  <dick@ximian.com>
17988         * object.c (mono_type_initialization_cleanup): Fix a race
17989         condition by temporarily commenting out the critical section
17990         deletion.
17992 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
17994         * reflection.c (create_custom_attr): Fix some warnings.
17995         (create_custom_attr_data): Ditto.
17996         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
17997         types. Fixes #78855.
17999 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18001         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18003         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18005 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18007         * reflection.c (resolve_object): Add support for DynamicMethod.
18009         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18010         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18012 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18014         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18015         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18017 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18019         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18020         Fixes #77888.
18022 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18024         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18025         slightly: remove a shadow local variable.
18027 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18029         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18030         definition that introduces the virtual function slot.
18031         Also fix Coverity #105.
18033 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18035         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18036         for dynamic assemblies. Fixes #78724.
18038 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18040         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18041         Fixes #78722.
18043 2006-06-21  Martin Baulig  <martin@ximian.com>
18045         * reflection.c
18046         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18047         fixes #76484.
18049 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18051         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18053 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18055         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18056         nor TYPEREFs.
18057         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18058         Inflate result if necessary.
18059         (mono_class_get_full): Remove old version.  Rename from
18060         'mono_class_get' and add 'context' argument.  Pass it to
18061         ..._create_from_typespec.
18062         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18063         (mono_ldtoken): Revert change below.
18065 2006-06-20  Martin Baulig  <martin@ximian.com>
18067         * class.c (mono_ldtoken): Don't pass the generic context to
18068         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18070 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18072         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18073         and later freeing it. Fixes #78638.
18075 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18077         * icall.c (mono_class_get_throw): Revert over-zealous error
18078         throwing, the caller for mono_class_get_throw will cope with
18079         errors when classes are not properly initialized already.
18081         The code still copes with loader exceptions though.
18083         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18084         
18085 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18087         Fixes the `make run1' version of RuntimeAbort (to be commited,
18088         source is in Bugzilla).
18089         
18090         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18091         FALSE on class loading failure instead of returning true.
18093         * class.c (mono_class_create_from_typedef): It is possible for
18094         mono_metadata_interfaces_from_typedef_full to fail if a class is
18095         not found, cope with this.
18096         
18098 2006-06-14  Dick Porter  <dick@ximian.com>
18100         * socket-io.c: 
18101         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18102         4.1.1
18104 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18106         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18108 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18110         * icall.c: Another fix for building mono in Visual Studio.
18112 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18114         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18115         
18116 2006-06-09  Martin Baulig  <martin@ximian.com>
18118         * debug-mono-symfile.c: Put this back and really fix it this
18119         time. Sorry for all the trouble.
18121 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18123         * icall.c (mono_class_get_throw): Fix a warning.
18124         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18125         ReflectionTypeLoadException if needed. Fixes #78606.
18127         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18128         (mono_class_init): Ditto.
18130         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18131         ref_only exceptions.
18132         (mono_loader_clear_error): Make this work even if there is no error.
18134 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18136         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18137         Marshal.GetComSlotForMethodInfo using internal call.
18139 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18141         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18142         a function for signalling it.
18144         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18145         a referenced assembly is not found.
18147         * loader.c (mono_loader_error_prepare_exception): Add support for 
18148         LOADER_ERROR_ASSEMBLY. Fix formatting.
18150 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18152         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18153         for VARIANT marshalling on windows and increment corlib version
18154         since Variant struct was added.
18156 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18158         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18159         stack trace line information:
18161         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18162         (Martin) when looking up B which is between A and C, return A not C.
18164         Bug is #78573.
18166         Thanks to Alexander Olk for tracking this down.
18168 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18170         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18171         
18172         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18173         avoid clobbering its value.
18174         (mono_string_to_lpstr): Fix a warning on windows.
18176 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18178         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18180         * reflection.c loader.c: Removed references to 'dummy' flag.
18182         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18184         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18185         it gets GC tracking.
18187         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18188         GC tracking.
18189         
18190         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18192         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18194         * appdomain.c: Bump corlib version.
18196 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18198         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18199         CEE_STIND_REF when working with object references.
18201 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18203         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18204         Fixes #78539.
18206 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18208         * loader.c (method_from_memberref): Fix argument value for
18209         mono_loader_set_error_method_load (I was passing the MonoClass
18210         instead of the class name char *).
18212 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18214         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18215         CEE_STIND_REF when working with object references.
18217 2006-05-30  Martin Baulig  <martin@ximian.com>
18219         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18220         mono_method_full_name() change and replace the ':' with a '.'
18221         here.
18223 2006-05-30  Martin Baulig  <martin@ximian.com>
18225         * debug-mono-symfile.c
18226         (mono_debug_symfile_lookup_location): Fix the algorithm:
18227         when looking up B which is between A and C, return A not C.
18229 2006-05-29  Martin Baulig  <martin@ximian.com>
18231         * mono-debug.h
18232         (MonoDebugMethodInfo): Make the typedef public.
18233         (MonoDebugSourceLocation): New public struct.
18235         * mono-debug.c
18236         (mono_debug_source_location_from_address): Removed.
18237         (mono_debug_source_location_from_il_offset): Removed.
18238         (mono_debug_il_offset_from_address): Removed.
18239         (mono_debug_address_from_il_offset): Removed.
18240         (mono_debug_lookup_method): New public function.
18241         (mono_debug_lookup_source_location): New public function; replaces
18242         the old mono_debug_source_location_from_*() functions; see the
18243         inline documentation.
18244         (mono_debug_free_source_location): New public function.
18245         (mono_debug_print_stack_frame): New public function; see the
18246         inline documentation.
18248         * debug-mono-symfile.c
18249         (mono_debug_find_source_location): Renamed into
18250         mono_debug_symfile_lookup_location(); only take a
18251         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18252         documentation.
18253         (mono_debug_find_method): Renamed into
18254         mono_debug_symfile_lookup_method().
18256 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18258         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18259         returned by mono_image_open_full ().
18261         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18262         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18263         #78517.
18265         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18266         #78518.
18268 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18270         * class.c (mono_class_from_typeref): handle missing images
18271         earlier, deals with bug #78418.   Refactor code; 
18273         Fix a warning introduced in my previous commit (some stale code
18274         from before I revisited my patch).
18276         * class.c (mono_class_create_from_typedef): On failure, remove the
18277         class from the MonoImage->class_cache as the class is not
18278         initialized;   Fixes the leak pointed out by Paolo.
18280 2006-05-25  Dick Porter  <dick@ximian.com>
18282         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18283         DeleteCriticalSections until I figure out which one may still be
18284         sometimes locked when mono_thread_cleanup is called.
18286 2006-05-24  Dick Porter  <dick@ximian.com>
18288         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18289         of mono_thread_manage and back into its own function, so it can be
18290         called after the finalizer thread has finished.
18292         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18294 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18296         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18297         Fixes #78495.
18299         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18300         with non-blittable elements.
18301         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18303 2006-05-24  Martin Baulig  <martin@ximian.com>
18305         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18306         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18308         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18309         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18310         `mono_debugger_event_handler' to NULL.
18312 2006-05-24  Martin Baulig  <martin@ximian.com>
18314         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18316 2006-05-24  Martin Baulig  <martin@ximian.com>
18318         * mono-debug-debugger.h
18319         (mono_debugger_create_notification_function): Added
18320         `MonoCodeManager *' argument.
18322 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18324         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18326 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18328         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18329         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18330         implementation.
18332 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18334         * icall.c: precise GC support: objects can't be stored in unmanaged
18335         memory anymore, even if they are kept alive by other references: since
18336         they can move the GC needs to be able to always find them.
18338 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18340         * object.c: precise GC support for static fields. Support
18341         for moving GCs: write barriers and pinned allocation for interned
18342         strings.
18344 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18346         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18347         structure.
18349 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18351         * class.c, gc.c: sgen and precise GC updates.
18353 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18355         * marshal.h, marshal.c: added write barrier wrapper and precise type
18356         fixes.
18358 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18360         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18361         support.
18363 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18365         * reflection.c: precise and sgen GC updates.
18367 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18369         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18371 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18373         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18375 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18377         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18378         MONO_TYPE_OBJECT. Fixes #78462.
18380 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18382         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18383         and blittable types.
18385 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18387         * class.c (mono_class_get_exception_for_failure): Implement parts
18388         of a TODO: if the loader error is set (instead of the class
18389         error), we return a Loader exception that can be properly thrown
18390         elsewhere.
18392         This was exposed by some Winforms 2.0 code that I tried to run
18393         (Atsushi pointed me to it).
18395 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18397         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18398         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18399         
18400         * marshal.c (emit_marshal_vtype): Add limited support for 
18401         UnmanagedType.LPStruct. Fixes #78427.
18403         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18404         Applied a patch from kangaroo to fix #77523.
18406 2006-05-17  Martin Baulig  <martin@ximian.com>
18408         * threads.c
18409         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18410         (debugger_thread_created): Removed.
18411         (debugger_thread_exited): Removed.
18413 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18415         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18417         * object-internals.h (MonoReflectionResource): Sync with managed version.
18419 2006-05-12  Wade Berrier <wberrier@novell.com>
18421         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18423 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18425         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18426         functions try to allocate from the image mempool.
18428 2006-05-12  Dick Porter  <dick@ximian.com>
18430         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18432 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18434         * object.c: The FieldGetter and FieldSetter methods require the full
18435         name of the class, not only the name. Fixes bug #78277.
18437 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18439         * loader.c (method_from_memberref): Do not pass the NULL klass to
18440         mono_loader_set_error_() methods.  Pass the non-NULL value
18441         (class). 
18443 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18445         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18446         (mono_assembly_close): Null out assembly->image->references after freeing it.
18448         * image.c (mono_image_close): Free image->references.
18449         
18450         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18452 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18454         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18455         before checking if it's NULL (g_assert).
18457 2006-05-10  Martin Baulig  <martin@ximian.com>
18459         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18460         I thought I already killed that two months ago, but now it somehow reappeared.
18462 2006-05-10  Martin Baulig  <martin@ximian.com>
18464         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18466 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18468         * reflection.c: Allocate memory for dynamically created methods in the image
18469         mempools.
18471 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18473         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18474         don't use the ad pointer before checking if it's NULL (g_assert).
18476 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18478         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18479         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18481         * marshal.c: Allocate all signatures from mempools.
18483         * marshal.c: Allocate some more signatures from mempools.
18485 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18487         * object.c (mono_load_remote_field): The code used to provide a
18488         temporary variable for returning results if the user did not
18489         provide a result pointer.  But our temporary variable was allocted
18490         on the satck.
18492         Fix calling code to always pass a result area.   Coverity ID 103.
18494 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18496         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18497         value, not the old. Fixes #78312.
18498         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18500         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18501         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18502         per-image cache.
18504         * assembly.c (mono_assembly_close): Free image->references.
18506         * assembly.c (mono_assembly_names_equal): Fix a warning.
18507         (mono_assemblies_cleanup): Cleanup more global data.
18509         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18511         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18512         ptr_cache and image->modules.
18514         * image.c (mono_image_init): Allocate array_cache lazily.
18515         
18516 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18518         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18519         behavior was changed recently and has bad side effects.
18521 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18523         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18524         
18525         * assembly.c (mono_assembly_close): Remove a debug printf.
18527         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18529         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18530         to also allow for temporary references between mono_image_open ()/close ().
18532         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18534 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18536         * marshal.c: Fix support for dynamic methods.
18538         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18540         * marshal.c (mono_marshal_cleanup): New cleanup function.
18542         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18543         image mempools.
18545         * class.c (mono_class_init): Fix leaking class->nested_classes.
18547         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18549         * image.c (mono_image_init): Initialize the new cashes.
18551         * image.c (mono_image_close): Destroy the new cashes.
18553         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18555         * mempool.c (mono_mempool_strdup): New helper function.
18557         * class-internals.h: Add prototype for mono_loader_unlock ().
18559         * domain.c (mono_jit_info_table_find): Fix a warning.
18560         (mono_debugger_check_runtime_version): Ditto.
18562         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18563         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18564         functions to these modules.
18566         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18567         metadata modules.
18568         
18569         * marshal.c (mono_free_bstr): Fix a warning.
18571         * assembly.c (mono_assembly_open_full): Fix another small leak.
18573         * object.c: Fix some unload leaks in the remoting code.
18575         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18576         function.
18578         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18580         * reflection.c: Fix some unload leaks in dynamic assemblies.
18582 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18584         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18585         * marshal.h: Add BSTR support on Win32
18586         * icall.c: Add BSTR icalls
18587         * metadata.h: Add BSTR enums
18589 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18591         Work to catch the crash from #76795 and turn it into an
18592         exception.   As I stubbed out pieces of the VisualBasic support,
18593         I found a number of places where the code was failing and I added
18594         checks to those places. 
18595         
18596         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18597         function return a status code.  If we fail to parse the signature
18598         from mono_metadata_parse_generic_inst, return FALSE.
18600         * loader.c (mono_get_method_from_token): If we fail to load the
18601         method (mono_class_get) return NULL.   
18603         * (method_from_memberref): Return NULL if we are unable to parse
18604         the method signature
18606         (mono_loader_error_prepare_exception): Since we now use the
18607         loader_error flag internally to stop processing, and obtaining
18608         exceptions that might be thrown will walk this code path the
18609         proper way of going from a MonoLoaderError into a
18610         MonoException was convoluted.   This new routine encapsulates the
18611         process of turning the error into an exception and *clearing* the
18612         error afterwards.
18613         
18614 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18616         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18617         with missing assemblies), and to cope with:
18619                 * Missing fieldref from a non-existing assembly.
18620                 * Missing methodref from a non-existing assembly.
18622         The first batch of work to address *some* of the issues from 76661.
18623         
18624         * object.c (mono_class_create_runtime_vtable): If we fail to
18625         initialize the class raise the exception here. 
18627         * metadata.c (mono_class_get_overrides_full): If any methods fail
18628         to load return the failure to the caller.
18630         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18631         flagging assemblies that failed to load.   
18633         Do not crash if we are unable to load the assembly.
18635         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18636         assemblies. 
18638         * loader.c (mono_loader_set_error_type_load): Change the
18639         convention to always pass unallocated strings, so we make our own
18640         copies (I know our own code had duplicated strings before, but
18641         this keeps the normal conventions).
18642         (method_from_memberref): Call mono_loader_set_error_method_load
18643         for all possible failures of loading the class. 
18644         Remove assert, turn into a loader error.
18646         (mono_loader_error_to_exception): Move this routine from mini
18647         (mini_loader_error_to_exception) there was no need to have that in
18648         mini. 
18650         * class.c (mono_class_from_typeref): If we were not able to load
18651         the assembly with mono_assembly_load_reference, call the
18652         mono_loader_set_error_type_load to register the problem.
18654         (mono_class_setup_fields): If we fail to load the type from
18655         mono_metadata_parse_type_full, call mono_class_set_failure and
18656         break from the loop.
18658         If class->exception_type is set, we do not layout the fields as
18659         that might crash the runtime, and instead return (from breaking
18660         from the previous loop).
18662         (mono_class_setup_vtable): This now returns a boolean indicating
18663         whether the table was properly setup.   The decision is driven by
18664         mono_class_get_overrides_full which might run into non-existing
18665         methods. 
18666         
18667         (mono_class_init): Returns TRUE on success or FALSE if there was a
18668         problem in loading the type (incorrect assemblies, missing
18669         assemblies, methods, etc).
18671         When we call mono_class_setup_fields we also check for a potential
18672         error inside this call (either a class exception or a general
18673         loader exception).
18675         (mono_class_create_from_typedef): If the parent fails to load
18676         (calling mono_class_get_full) return NULL.
18677         
18678         ** Important **
18680         calls to mono_metadata_parse_type_full should be checked
18681         everywhere and set the mono_class_set_failure
18682         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18684         The current patch checks the places where my manually constructed
18685         tests show the errors are showing up, but we should do it
18686         everywhere. 
18688         ** Important2 **
18690         mono_class_init return values should be tested everywhere, like
18691         the previous case this is something that we should audit
18692         everywhere and not only on the cases exposed by the tests I
18693         created. 
18695 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18697         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18698         boolean parameter and instead pass the information on `options'
18699         parameter (FileOptions).
18701         * icall.c: Register the new signature for MonoIO.Open.
18703         * debug-helpers.c (dis_one): Trying to understand how coverity
18704         works.  Fix Run 5, item 78.
18706 2006-04-26  Dick Porter  <dick@ximian.com>
18708         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18709         dereference.
18711 2006-04-25  Martin Baulig  <martin@ximian.com>
18713         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18715         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18716         debugger_thread_created().
18717         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18718         special way.
18719         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18720         (mono_debugger_finalize_threads): New function; undo the effects
18721         of mono_debugger_init_threads().
18722         (mono_debugger_create_all_threads): Removed.
18724 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18726         * image.c (mono_image_close): Tidy up trace messages.
18728         * assembly.c (mono_assembly_close): Ditto.
18730         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18731         no longer references an already freed assembly. Fixes #78168.
18733 2006-04-21  Dick Porter  <dick@ximian.com>
18735         * threads.c (mono_thread_detach): Fix reference counting when
18736         detaching threads.
18738 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18740         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18741         #78155.
18743 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18745         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18746         (mono_type_to_stind): Ditto.
18748         * marshal.c: Use the new helper functions to simplify code.
18750         * image.c (mono_image_close): Add some code for help debug assembly unloading
18751         problems.
18753         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18754         image mempool.
18756         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
18757         assembly was already loaded in another appdomain. Fixes #78083.
18759 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
18761         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
18762         referenced assemblies.
18763         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
18765         * domain.c (mono_domain_free): Add a trace message.
18767         * appdomain.c (add_assemblies_to_domain): Ditto.        
18769         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
18770         field.  
18772 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18774         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
18776 2006-04-12  Martin Baulig  <martin@ximian.com>
18778         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
18779         `USE_INCLUDED_LIBGC'.   
18781 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18783         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
18784         the patch contains ../ and a small directory name later. Hopefully fixes
18785         #78035.
18787 2006-04-10  Martin Baulig  <martin@ximian.com>
18789         Clean up the debugger's thread-handling code.
18791         The debugger's thread-handling code has been moved from
18792         ../mini/debug-debugger.c to threads.c.  We now iterate directly
18793         over the `threads' hash, keep track of exiting threads and also
18794         use proper locking.
18796         We can now debug XSP and XSP based applications with the debugger.
18798         * object-internals.h (MonoThread): Added `gpointer end_stack'.
18800         * threads.h
18801         (MonoThreadCallbacks): Removed; this was only used by the debugger.
18802         (mono_install_thread_callbacks): Likewise.      
18804         * threads.c (mono_thread_callbacks): Removed.
18805         (debugger_thread_created, debugger_thread_exited): New static functions.
18806         (start_wrapper): Call debugger_thread_created().
18807         (thread_cleanup): Call debugger_thread_exited().
18808         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
18809         (mono_debugger_init_threads): New public function.
18810         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
18811         iterate directly over the `threads' hash and also use proper locking.
18813         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
18815         * mono-debug-debugger.h
18816         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
18818 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
18820         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
18821         argument type=array. Fixes #78057.
18823 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
18825         * culture-info-table.h : regenerated. Fixed bug #69652.
18827 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
18829         * loader.c metadata.c: Reapply a variant r59116.
18830         
18831         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
18833         * class.c (mono_class_setup_interface_offsets): New internal function.
18835         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
18836         interfaces too. Fixes #77398.
18838         * reflection.c (encode_cattr_value): Add support for 
18839         parameter type=object, argument type=array.
18840         (load_cattr_value): Ditto. Fixes #77916.
18842         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
18843         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
18845         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
18846         a byval char array and CharSet is Ansi.
18848         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
18850 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
18852         * metadata.c: Add some locking comments.
18853         
18854         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
18855         mempool.
18856         (mono_metadata_free_method_signature): Don't free the signature itself.
18858         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
18860         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
18861         reference the same MonoImage.
18862         (mono_assembly_load_from_full): Add an assert.
18864 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
18866         * image.c (mono_image_close): Don't put the image we are about to free into the
18867         loaded_images_guid_hash.
18869         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
18870         to reduce code duplication.
18872         * marshal.c: Register the native functions called by this module as icalls, to
18873         somewhat centralize the creation of MonoMethodSignature's.
18875         * loader.c (mono_method_signature): Add a cache for method signatures.
18877         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
18878         the parameter attributes of a method.
18879         (mono_metadata_parse_method_signature_full): Refactored the computation of
18880         parameter attributes into a separate function. Also avoid one allocation in
18881         most cases.
18883         * assembly.c (mono_assembly_close): Ditto.
18885         * image.c (mono_image_close): Log trace messages with INFO level.
18887         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
18889         * image.c reflection.c: Correct reference counting of image modules.
18890         
18891         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
18892         of this function from the image mempool.
18893         
18894         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
18895         to allow more cached types to be used.
18897         * mono-debug.c (mono_debug_add_method): Appled patch from
18898         David S. Miller  <davem@sunset.davemloft.net>: Access 
18899         minfo->lexical_blocks[] entry elements using read32().
18901 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
18903         * loader.c (mono_free_method): No longer free the method header for non-dynamic
18904         methods as it is allocated from the mempool.
18906         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
18907         image mempool.
18909         * metadata-internals.h: Add comments describing the reference counting scheme
18910         used for MonoImage and MonoAssembly.
18912         * image.c assembly.c reflection.c: Rework reference counting of images and 
18913         assemblies so they are freed when the runtime is shut down. Free some 
18914         additional memory structures when an image is unloaded.
18915         
18916 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18918         * class.c loader.c reflection.c: Allocate more data structures in
18919         the image mempool.
18921 2006-03-31  Miguel de Icaza  <miguel@novell.com>
18923         * icall.c
18924         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
18925         build on pre glib 2.4 systems.
18927 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
18929         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
18931         * icall.c: Fix some warnings.
18933 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
18935         * culture-info-table.h : regenerated.
18937 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
18939         * threads.c, object-internals.h, verify.c: changed the culture caching
18940         code to use a normal MonoArray for storage so the GC can keep track of
18941         them easily. Fixed bits of the cache logic, too and simplified the
18942         code.
18944 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
18946         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
18947         thread for non-Boehm GCs.
18949 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18951         * domain.c, object.c, domain-internals.h: reduce the amount of memory
18952         needed to keep track of the data for static fields.
18954 2006-03-29  Raja R Harinath  <rharinath@novell.com>
18956         Fix #75172
18957         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
18958         for interface classes.  Use 'num_methods' instead.
18959         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
18960         before using '->vtable_size' field.
18962 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
18964         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
18965         doesn't contain managed pointers, so use a normal hashtable.
18967 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
18969         * reflection.c, class-internals.h, domain.c: fixed handling of types
18970         used as values for objects in custom attributes (bug #77915):
18972 2006-03-24  Martin Baulig  <martin@ximian.com>
18974         * class.c (mono_class_setup_fields): Added support for generic
18975         instances; fixes #77580.
18977 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18979         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
18981 2006-03-24  Dick Porter  <dick@ximian.com>
18983         * file-io.c (get_file_attributes): More stat macro breakage.
18984         Fixes bug 77759.
18986 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
18988         * profiler.c: added the file=filename option in the default profiler
18989         to output the profile data to filename.
18991 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18993         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
18994         bug #77877.
18996 2006-03-22  Martin Baulig  <martin@ximian.com>
18998         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
18999         allocated `MonoClassField *' in `fb->handle'.
19001 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19003         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19004         allocate interface ID to save memory and allow better ID reuse on
19005         appdomain unload. setup_generic_vtable () removal from Martin.
19007 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19009         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19010         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19011         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19012         write barriers for reference stores with managed objects accessed with
19013         C structures in the runtime and in embedding programs.
19015 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19017         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19018         'interface_id' and 'max_interface_id' fields of MonoClasses
19019         representing open generic types.
19021 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19023         * object.h, object.c, icall.c: added functions to deal with
19024         storing valuetypes that contain references in managed objects.
19025         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19026         fixes and comments around uses of mono_array_addr ().
19028 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19030         * object.h, icall.c, monitor.c: object.GetHashCode ()
19031         implementation that supports the moving garbage collector.
19033 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19035         * icall.c, threads-types.h, threads.c: implemented finalizer for
19036         LocalDataStoreSlot.
19038 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19040         * metadata.c (mono_type_size): Add a fixme.
19041         (mono_type_stack_size): Ditto.
19043         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19044         'type_forwarders' field.
19046         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19047         attribute from net 2.0.
19049         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19050         from class.c.
19052         * class.c (mono_class_setup_fields): Fix a warning.
19053         
19054         * class.c (mono_class_from_name): Add support for assemblyref entries
19055         in the EXPORTEDTYPE table.
19057         * reflection.c: Add support for handling type forwarders under net 2.0.
19059         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19060         
19061 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19063         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19064         overwriting entries in ModuleBuild->types, also clean up the code
19065         a little. Fixes #77774.
19067 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19069         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19070         load friend assembly info when present.
19072 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19074         Fix crasher on gtest-158.cs.
19075         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19076         the return value if the MonoClass we want is yet in an
19077         inconsistent state.
19078         * class.c (mono_class_create_from_typedef): Add an comment
19079         explaining an order dependency between mono_class_setup_parent and
19080         mono_class_setup_mono_type.
19082 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19084         * class.c: documentation updates and events bug fix.
19086 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19088         * class.c: some cleanup, locking fixes.
19090 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19092         * class.c: fix the generics code to setup nested
19093         type info to the instantiated type (bug #77770).
19095 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19097         * marshal.c: fixed a few type correctness issues.
19099 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19101         * loader.c: the Set/Get/Addrtess array methods should be public.
19103 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19105         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19106         
19107         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19108         info->wrapper.
19110 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19112         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19114         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19116         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19117         (mono_mempool_alloc0): Ditto.
19119 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19121         * socket-io.c:
19122         (create_object_from_sockaddr): it was allocating 4 extra bytes
19123         for the AF_UNIX data. Fixes bug #77747.
19125 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19127         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19129 2006-03-09  Dick Porter  <dick@ximian.com>
19131         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19132         Fixes bug 76966 again.
19134 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19136         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19137         names from r57532
19138         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19140 2006-03-07  Martin Baulig  <martin@ximian.com>
19142         * object.c
19143         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19145 2006-03-07  Martin Baulig  <martin@ximian.com>
19147         * class.c
19148         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19149         regression introduced in r56970; see gtest-252.cs.
19151         * loader.c (mono_get_method_constrained): Correctly handle generic
19152         methods; see gtest-253.cs.
19154 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19156         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19158 2006-03-04  Martin Baulig  <martin@ximian.com>
19160         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19161         compute the parent type at runtime, just like we're already doing
19162         it for interfaces.
19164         * reflection.c
19165         (mono_reflection_bind_generic_parameters): Don't compute the
19166         parent type anymore.
19168         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19170 2006-03-04  Martin Baulig  <martin@ximian.com>
19172         * mono-debug-debugger.h
19173         (mono_debugger_create_notification_function): Allocate memory at
19174         runtime and return a pointer to it.
19176 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19178         * assembly.c: Fix windows build.
19179         
19180         * assembly.c: Fix build.
19182         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19184         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19185         
19186 2006-03-03  Dick Porter  <dick@ximian.com>
19188         * process.c
19189         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19190         Check parameters before dereferencing them.  Fixes Aaron's part of
19191         bug 77393.
19193 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19195         Fix performance regression.
19196         * loader.c (find_method_in_class): Add 'from_class' argument.
19197         Rename 'klass' argument to 'in_class'.  The signature is compared
19198         against the method in 'in_class', and the corresponding method is
19199         returned from 'from_class'.
19200         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19201         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19202         type definition and generic instantiation in parallel.
19203         (mono_get_method_constrained): Update to changes.
19205 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19207         * threads.c: make sure the domain is correct, too when doing
19208         mono_thread_attach ().
19210 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19212         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19213         windows. Fixes #77683.
19215 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19217         * object.h, *: introduced specific way to set elements of an array
19218         of references to be used as write barrier. Still need to audit the
19219         uses of mono_array_addr.
19221 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19223         * object-internals.h: New field to cache the assmebly name, patch
19224         from Tambet Ingo (tambet@ximian.com)
19226 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19228         * decimal.h, class-internals.h, metadata-internals.h,
19229         file-io.h: mark a few function declarations as internal, to
19230         reduce the number of PLT entries.
19232 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19234         * file-io.c: fix typo in warning message.
19236 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19238         * loader.c: on unix, lookup the "*A" version of a function
19239         if charset is auto as a second option before failing.
19241 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19243         * class.h (mono_class_inflate_generic_method): Revert to two
19244         argument version.
19245         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19246         (mono_class_inflate_generic_method_full): Add.
19247         * class.c (mono_class_inflate_generic_method_full): Rename from
19248         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19249         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19250         * loader.c, reflection.c: Update to changes.
19252 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19254         * icall.c: const fixes and small improvements.
19256 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19258         * threadpool.c: for asynchronous connect(), enable the same workaround
19259         for BSD 6 as for the Mac. Fixes bug #77637.
19261 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19263         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19264         formatted classes. Fixes #77524.
19266 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19268         * class.c (inflate_generic_type): Add a couple more
19269         micro-optimizations.
19270         (inflate_generic_context): Don't use the 'gmethod' from
19271         'inflate_with'.
19272         (mono_class_inflate_generic_method): If the method has generic
19273         parameters, but the passed-in context doesn't have a 'gmethod',
19274         create one.  Use the possibly simplified generic instantiation
19275         from the declaring class instead of the one passed in.
19277 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19279         Make generic method signature and method header handling lazy.
19280         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19281         (inflate_generic_header): Likewise.
19282         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19283         parameter to avoid inflating types.
19284         (mono_get_inflated_method): Empty out.
19285         * class.h (mono_class_inflate_generic_method): Update to changes.
19286         * loader.c (mono_get_method_from_token): Don't parse signature for
19287         generic methods, nor methods of generic classes.
19288         (mono_method_signature): Rename from 'mono_method_signature'.
19289         Inflate signature on demand.
19290         (mono_method_get_header): Inflate method header on demand.
19291         * reflection.c: Update to changes.
19293 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19295         * metadata.c (mono_metadata_inflate_generic_inst): If the
19296         instantiation is closed, don't bother expanding it in the new
19297         context.
19298         * class.c (inflate_generic_class): If the generic instantiation
19299         doesn't change after inflation, return the argument itself.
19300         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19301         Add bounds checks.
19302         (inflate_generic_context): If neither the generic class nor the
19303         generic method instantiations change, return the original context.
19304         * reflection.c (mono_method_get_object): Do
19305         'mono_get_inflated_method' before accessing the ->klass field.
19306         (inflate_mono_method): Don't create a MonoGenericMethod unless
19307         necessary.
19308         (inflate_method): Don't pass a constructed type as the declaring
19309         type of a methodbuilder.
19311 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19313         * object.c: fix memory overwrite.
19315 2006-02-22  Dick Porter  <dick@ximian.com>
19317         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19318         it doesn't work any more.
19319         (mono_threads_request_thread_dump): Fix unused variable warnings.
19321 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19323         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19324         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19325         the public header file.
19327 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19329         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19331 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19333         * class-internals.h, object.c: reduce the size of MonoVTable
19334         and store the interface_offsets array at negative offsets.
19336 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19338         * metadata.c: tweak table descriptors data structures to reduce
19339         size and runtime relocations.
19341 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19343         * marshal.c: fix some types and opcodes to be type-safe
19344         in marshaling wrappers.
19346 2006-02-21  Ankit Jain  <jankit@novell.com>
19348         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19350 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19352         * metadata.c (get_constraints): Relax debugging checks for monodis.
19354 2006-02-21  Ankit Jain  <jankit@novell.com>
19356         * metadata.c (mono_metadata_load_generic_params): Move the code
19357         checking for ambiguous generic params from here to mono/dis/get.c
19358         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19360 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19362         Fix assertion triggered when compiling nemerle.
19363         * class.c (mono_get_shared_generic_inst): Rename from
19364         get_shared_inst and make non-static.
19365         * loader.c (mono_get_shared_generic_method): New.  Used to create
19366         the MonoGenericContext-equivalent of a MonoGenericContainer.
19367         (mono_get_method_from_token): Initialize the 'context' field of
19368         the created MonoGenericContainer.
19369         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19370         * metadata.c (get_constraints): Add sanity check.
19371         * class-internals.h: Add new internal methods.
19373         * reflection.c (verify_safe_for_managed_space): New sanity check.
19374         Currently checks that owner-less generic parameters aren't allowed
19375         in managed space.
19376         (mono_type_get_object): Use it.
19377         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19378         that are now in mono_type_get_object.
19379         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19381 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19383         * metadata.c (mono_type_create_from_typespec): Rename from
19384         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19385         argument and caching of types in the generic container.
19386         (unwrap_arrays, find_generic_param): Remove.
19387         * metadata-internals.h: Update.
19388         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19390 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19392         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19394         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19395         return values. Fixes #77581.
19397         * class.c (mono_fnptr_class_get): Switch name and name_space.
19399         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19400         classes and add support for [In, Out] attributes.
19401         (mono_marshal_free_asany): Ditto. Fixes #77524.
19403 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19405         * class.c (mono_class_from_generic_parameter): Make more robust to
19406         incomplete MonoGenericContainers from monodis.
19408 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19410         * class-internals.h: added some more exception types.
19411         * class.c, metadata.c: added a few checks to handle missing
19412         types.
19414 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19416         Use owner-less generic-params some more.
19417         * class.c (my_mono_class_from_generic_parameter): Remove.
19418         (mono_class_from_generic_parameter): Handle null image,
19419         param->name and param->owner.
19420         (mono_class_from_mono_type): Update.
19421         (mono_class_create_from_typespec): Remove 'container' parameter.
19422         If that parameter is non-null, the result is always inflated by
19423         'mono_class_get_full' anyway.
19424         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19425         parameter.
19426         (mono_class_get_full): Update.
19428         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19429         instance is not open, don't bother inflating.
19430         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19431         parse metadata for inflated classes.
19432         (_mono_class_get): Change GenericContext* parameter to
19433         GenericContainer*.
19434         (mono_class_create_from_typespec): Likewise.  Simplify, and
19435         implement trivially.  All the cases are handled in
19436         mono_class_from_mono_type.  Don't inflate returned class.
19437         (mono_class_get_full): Delegate GENERICINST optimization to
19438         inflate_generic_type.
19439         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19441 2006-02-16  Dick Porter  <dick@ximian.com>
19443         * socket-io.c (create_object_from_sockaddr): Fix typo.
19444         (create_sockaddr_from_object): Check array lengths before
19445         potentially accessing items off the end.
19446         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19447         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19448         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19449         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19450         length checks to avoid wraparound overflows.
19451         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19452         contents of the array of sockets
19453         (hostent_to_IPHostEntry2)
19454         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19455         Check return value of inet_ntop ().
19456         (addrinfo_to_IPHostEntry): Fix typo
19458 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19460         Type metadata parsing doesn't use generic-instantiation information.
19461         * metadata.c (mono_metadata_parse_array_full): Change
19462         MonoGenericContext* parameter to MonoGenericContainer*.
19463         (mono_metadata_parse_type_full): Likewise.
19464         (mono_type_create_from_typespec_full): Likewise.
19465         (mono_metadata_parse_mh_full): Likewise.
19466         (mono_metadata_parse_generic_inst): Likewise.
19467         (do_mono_metadata_parse_generic_class): Likewise.
19468         (do_mono_metadata_parse_type): Likewise.
19469         * metadata-internals.h: Update to changes.
19470         * class.c (mono_class_find_enum_basetype): Likewise.
19471         (mono_class_setup_fields): Likewise.
19472         (mono_class_create_from_typespec): Likewise.
19473         * loader.c (method_from_methodspec): Likewise.
19474         (mono_get_method_from_token): Likewise.
19475         (mono_method_get_header): Likewise.
19477 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19479         * marshal.c: handle additional GENERICINST case (patch from
19480         Thong Nguyen <tum@veridicus.com>).
19481         Fix a few cases where LDIND_I/STIND_I was used for references.
19483 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19485         * reflection.c (mono_reflection_get_token): Remove unused variable.
19487 2006-02-16  Martin Baulig  <martin@ximian.com>
19489         * reflection.c (mono_reflection_get_token): Add support for fields
19490         in instantiated generic types.
19492         * icall.c
19493         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19495 2006-02-15  Martin Baulig  <martin@ximian.com>
19497         * icall.c
19498         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19499         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19500         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19501         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19503 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19505         * class.c, metadata.c, metadata.h, object.c, icall.c,
19506         marshal.c: changed mono_type_get_underlying_type () to do
19507         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19508         Fixed handling of instantiated generic valuetypes (bug #75479).
19510 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19512         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19513         Delegate to mono_metadata_decode_value, and work on the returned value.
19515         * icall.c (ves_icall_MonoType_GetGenericArguments):
19516         Add consistency check here too.
19517         
19518 2006-02-15  Ankit Jain  <jankit@novell.com>
19520         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19521         char/short etc.
19523 2006-02-15  Ankit Jain  <jankit@novell.com>
19525         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19526         signed values, used only for representing lower bounds of arrays.
19527         (mono_metadata_parse_array_full): Use new
19528         mono_metadata_decode_signed_value to decode lower bounds.
19530 2006-02-14  Martin Baulig  <martin@ximian.com>
19532         * reflection.c
19533         (mono_reflection_get_token): Support "MonoGenericMethod" and
19534         "MonoGenericCMethod" and allow generic instances / methods.
19536 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19538         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19539         to obtain the terminal size using an ioctl.
19541         * object.c (mono_nullable_init): Revert this as nullable reference
19542         types are not valid.
19543         (mono_nullable_box): Ditto.
19545 2006-02-09  Dick Porter  <dick@ximian.com>
19547         * threads.c (mono_thread_detach): Drop a reference to the thread
19548         we're detaching.
19550 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19552         * object.c (mono_nullable_init): Handle nullable reference types.
19553         (mono_nullable_box): Ditto. Fixes #77446.
19555 2006-02-07  Martin Baulig  <martin@ximian.com>
19557         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19559 2006-02-07  Ankit Jain  <jankit@novell.com>
19561         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19562         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19563         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19564         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19565         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19566         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19568 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19570         * class.c (mono_class_create_generic): Set type_token as well.
19572         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19573         compatible with MS.
19575 2006-02-02  Martin Baulig  <martin@ximian.com>
19577         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19578         has never been used so far.
19580 2006-02-02  Martin Baulig  <martin@ximian.com>
19582         * mono-debug-debugger.h: Changed comment at the top of this file;
19583         the header is not installed, but it's safe to #include it from
19584         within the JIT.
19586         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19587         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19589 2006-02-02  Martin Baulig  <martin@ximian.com>
19591         * mono-debug.h
19592         (MonoSymbolTable): Removed the `metadata_info' field.
19594         * mono-debug.c
19595         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19597         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19598         (mono_debugger_add_builtin_types): Removed.
19599         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19600         (mono_debugger_create_notification_function): We now operate on a
19601         pre-allocated area; take a `gpointer' and return `void'.
19603         * mono-debug-debugger.c
19604         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19605         (mono_debugger_add_builtin_types): Removed.
19607 2006-02-02  Martin Baulig  <martin@ximian.com>
19609         * threads.c (mono_debugger_create_all_threads): New public method.
19611 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19613         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19614         breaks on several platforms.
19616 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19618         * assembly.c: the VS.NET build doesn't supply default values for
19619         MONO_ASSEMBLIES and MONO_CFG_DIR.
19621 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19623         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19624         helper function.
19626         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19628         * loader.c (method_from_memberref): Fix a warning.
19630         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19632         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19633         with explicit layout. Fixes #77433.
19635 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19637         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19638         max_interface_id is initialized before using it. Fixes #77398.
19639         (ves_icall_Type_GetInterfaces): Ditto.
19641 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19643         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19644         allocate memory for parameter attributes when parsing memberref
19645         signatures.
19646         * loader.c (mono_loader_set_error_method_load): Don't warn.
19647         (method_from_memberref): Ensure MissingMethodException gets thrown
19648         if method is not found.  Make warning more informative.
19650 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19652         Fix #77397
19653         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19654         return true if is byref.
19655         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19656         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19657         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19659 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19661         Fix tests/find-method.2.il
19662         * loader.c (find_method, find_method_in_class): Remove is_inflated
19663         argument.  Revert 2006-01-18 change.
19664         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19665         is generic, search for method in its generic definition.
19666         * class.c (mono_class_setup_vtable_general): Print generic
19667         arguments of generic types in debugging printf.
19669 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19671         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19673         * threads.c (mono_threads_request_thread_dump): New helper function.
19675 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19677         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19679 2006-01-25  Ankit Jain  <jankit@novell.com>
19681         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19682         move definition to ..
19683         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19684         
19685 2006-01-25  Ankit Jain  <jankit@novell.com>
19686             Raja R Harinath  <rharinath@novell.com>
19688         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19689         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19690         as necessary.
19692 2006-01-25  Martin Baulig  <martin@ximian.com>
19694         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19695         `MonoDebuggerThread' into debug-debugger.c.
19697 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19699         * profiler.c: fix printing of data.
19701 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19703         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19704           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19706 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19708         * object.c: fix deadlock related to string interning.
19710 2006-01-23  Martin Baulig  <martin@ximian.com>
19712         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19714         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19716 2006-01-23  Martin Baulig  <martin@ximian.com>
19718         * mono-debug.h: Moved the prototypes of some functions which are
19719         used by the JIT here from mono-debug-debugger.h.
19721 2006-01-21  Martin Baulig  <martin@ximian.com>
19723         * Makefile.am: Don't install mono-debug-debugger.h.
19725 2006-01-21  Martin Baulig  <martin@ximian.com>
19727         * mono-debug-debugger.h: Enforce the private status of this header
19728         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19729         Moved some stuff from mono-debugger-jit-wrapper.h here.
19731 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19733         * class.c (mono_class_from_typeref): Add a sanity test to help
19734         catch lack of assembly load/search hooks.
19736 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19738         * marshal.c (emit_struct_conv): Relax the fields with same offset
19739         check even more. Fixes #77230.
19741 2006-01-18  Martin Baulig  <martin@ximian.com>
19743         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19744         argument; if false, we compare the uninstantiated signatures.
19745         (method_from_memberref): Compare the uninstantiated signatures;
19746         fixes #76417.
19748 2006-01-18  Robert Jordan  <robertj@gmx.net>
19750         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19751         Clear the weak link. Fixes bug #77170.
19753         * gc.c (mono_gchandle_free):
19754         Reflect *-gc.c changes (tiny optimization).
19756 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
19758         * metadata.c (mono_metadata_signature_dup): Applied patch from
19759         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
19760         Fixes #77288.
19762 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
19764         * marshal.c (emit_struct_conv): Allow fields with the same offset when
19765         marshalling from native to managed code. Fixes #77230.
19767 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19769         * threadpool.c: fix problem (Mac only) when more than one asynchronous
19770         connect. Fixes bug #77020.
19772 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
19774         * class.c: fixed id assignement for nested interfaces (bug #77275).
19775         Added also better info for --print-vtable debugging.
19777 2006-01-12  Martin Baulig  <martin@ximian.com>
19779         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
19780         interfaces on-the-fly; fixes #76625.
19782         * class-internals.h
19783         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
19784         don't need that anymore.
19786 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19788         * socket-io.c
19789         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19790         To avoid initing the nested_classes when not needed I turned the
19791         PeerCredData as a toplevel internal class, as it has to be shared
19792         anyways. 
19794         Fixes the CASA issue.
19796 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
19798         * domain.c: Accessors for MonoJitInfo
19800         * profiler-private.h: Add jitinfo to the end jit hook
19802         * profiler.[ch]: Define new hooks, called after jitting which give
19803         the MonoJitInfo that was compiled
19805 2006-01-10  Martin Baulig  <martin@ximian.com>
19807         * class.c (mono_class_setup_events): Add support for generic
19808         classes; fixes #76440.
19810 2006-01-06  Raja R Harinath  <rharinath@novell.com>
19812         Fix #77160.
19813         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
19814         on passed-in method.
19816 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19818         * object.c (mono_runtime_invoke_array): Add Nullable support.
19820         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
19822 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
19824         * file-io.c: Don't consider sockets as directory and avoid an endless
19825         loop. Fix bug #76966.
19827 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19829         * object.c (mono_nullable_init): New helper function.
19830         (mono_nullable_box): Ditto.
19832         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
19834         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
19836         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
19837         
19838 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
19840         * class.c (mono_class_is_assignable_from): Make T assignable to 
19841         Nullable<T>.
19843 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
19845         * appdomain.c: Bump corlib version to 46.
19846         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
19847         serialization purpose) and changed ves_icall_System_Reflection_
19848         Assembly_get_code_base signature to accept a boolean (to escape, or 
19849         not, the assembly code base).
19851 2005-12-23  Dick Porter  <dick@ximian.com>
19853         * icall.c: 
19854         * threads-types.h: 
19855         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
19856         CreateEvent icall now returns "created" boolean parameter.
19858 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
19860         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
19861         #76967.
19863         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
19864         when attr_klass is an interface. Fixes #77045.
19866 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
19868         * marshal.c (emit_struct_conv): Fix previous patch.
19869         
19870         * marshal.c (emit_struct_conv): Add a check for fields with the same
19871         offset.
19873 2005-12-20  Raja R Harinath  <rharinath@novell.com>
19875         Fix regression in Mono.C5.
19876         * class.c (mono_class_create_generic): If 'klass' is an interface
19877         set up the interface offsets.
19878         (mono_class_is_assignable_from): Don't throw away generic arguments.
19880 2005-12-19  Raja R Harinath  <rharinath@novell.com>
19882         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
19883         type parameters.
19885 2005-12-15  Raja R Harinath  <rharinath@novell.com>
19887         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
19888         dead store.
19889         (do_mono_metadata_parse_generic_class): Don't pass the current
19890         generic context when parsing the type being instantiated: it
19891         cannot use it, anyway.
19893         * loader.c (method_from_memberref): Don't inflate a signature if
19894         it doesn't contain any type parameters.
19896 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
19898         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
19900 2005-12-14  Martin Baulig  <martin@ximian.com>
19902         * class.c
19903         (mono_type_get_name_recurse): Don't return null for type
19904         parameters and open generic classes.
19905         (mono_class_setup_methods): Don't exclude generic instances.
19906         (mono_get_unique_iid): Use different IDs for different
19907         instantiations of the same generic type.
19908         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19909         open generic instances; create a normal vtable for closed generic
19910         instances.
19911         (mono_class_setup_vtable_general): We're now also called for
19912         closed generic instances.
19914         * reflection.c
19915         (mono_reflection_bind_generic_parameters): Correctly use
19916         mono_metadata_lookup_generic_inst() everywhere.
19918 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
19920         * object.c (mono_class_create_runtime_vtable): Call 
19921         mono_class_setup_vtable ().
19923         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
19924         function.
19925         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
19926         #76959.
19928         * loader.c (mono_loader_set_error_type_load): Print the type load
19929         warnings to the console so they are more visible to the user.
19930         (mono_loader_set_error_method_load): Ditto.
19932         * reflection.c (ensure_runtime_vtable): Revert the last change as it
19933         is still broken.
19934         
19935         * reflection.c (ensure_runtime_vtable): Fix build.
19937         * reflection.c (ensure_runtime_vtable): Disable an optimization which
19938         doesn't work in all cases.
19940 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
19942         * object.c (mono_array_new_full): Treat a single dimensional array
19943         with 0 lower bounds as an szarray. Fixes #76973.
19945         * reflection.c (custom_attr_visible): Really fix this.
19947 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
19949         * reflection.c (custom_attr_visible): Allow nested public attributes
19950         as well.
19952         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
19953         interface check.
19955 2005-12-12  Raja R Harinath  <harinath@gmail.com>
19957         * class.c (set_generic_param_owner): Delete.
19958         (mono_class_create_from_typedef): Don't set ->owner field of
19959         generic parameters to "param containers" of enclosing classes.
19960         * reflection.c (mono_reflection_initialize_generic_parameter):
19961         Likewise.
19963 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
19965         * reflection.c (custom_attr_visible): Fix build.
19967 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
19969         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
19970         private attributes.
19971         
19972         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
19973         handling of null parameter defaults.
19975 2005-12-09  Raja R Harinath  <rharinath@novell.com>
19977         * class.c (mono_class_from_generic_parameter): Don't set
19978         klass->generic_container.
19979         (my_mono_class_from_generic_parameter): Likewise.
19981 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
19983         * reflection.c (load_public_key): Fix a warning.
19984         (method_encode_code): Fix unaligned accesses.
19986 2005-12-07  Martin Baulig  <martin@ximian.com>
19988         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
19990         * reflection.c
19991         (write_generic_param_entry): Encode our custom attrs.
19993         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
19995 2005-12-07  Martin Baulig  <martin@ximian.com>
19997         * reflection.c (encode_new_constraint): Removed; we don't use the
19998         `NewConstraintAttribute' anymore.
20000 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20002         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20003         not fire a TypeResolve event when Assembly.GetType () is called.
20005 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20007         Beginning of support for nullable types in the runtime. Parts of
20008         this patch are from Martin.
20010         * appdomain.c (MONO_CORLIB_VERSION): Bump
20012         * domain.c (mono_init_internal): get the nullable type
20014         * class.c (mono_class_is_nullable): New method
20015         (mono_class_get_nullable_param): New mehod
20016         (mono_class_create_generic): In types T? set cast_class to T
20018         * class-internals.h (MonoDefaults): new nullable default class
20019         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20020         new methods.
20022 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20024         * metadata.c (select_container): New.  Refactor code to select the
20025         appropriate GenericContainer given the type of generic parameter
20026         we are looking for.
20027         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20028         not a MonoGenericContext.  Use select_container.  Update parameters.
20029         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20030         and MONO_TYPE_MVAR.
20031         (unwrap_arrays): Remove duplicate tests.
20032         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20033         generic instantiated class to find any arguments that are generic
20034         parameters.
20035         (mono_type_create_from_typespec_full): Use find_generic_param to
20036         avoid evicting some generic instantiations from the typespec
20037         cache.
20039 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20041         * reflection.c: fixed writing of doubles on ARM FPA.
20043 2005-12-02  Robert Jordan  <robertj@gmx.net>
20045         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20047 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20049         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20050         least on SUSE 10 they are not the same (on debian, they are just the
20051         same thing).
20053 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20055         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20056         DeclaringType for VARs and MVARs.
20057         * class.c (set_generic_param_owner): Fix initialization of owner
20058         fields.
20060 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20062         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20064 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20066         * threadpool.c: workaround for a bug that shows up on the Mac:
20067         select()+connect() on a blocking socket is not like it should
20068         be, so we proceed to connect() in that case, wasting the I/O
20069         threadpool thread until connect succeedes. Fixes bug #75436.
20071 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20073         * threadpool.c: fix typo when setting file descriptor states.
20075 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20077         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20078         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20079         create a temporary signature container.
20080         (mono_metadata_parse_generic_param): Update to changes.
20081         (mono_type_create_from_typespec_full): Update to changes.
20082         * loader.c (method_from_memberref): Don't use a
20083         MonoGenericContainer while parsing a memberref signature.
20084         (method_from_methodspec): Remove dead-store of the 'container'
20085         variable.  It's overwritten before use.
20087         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20088         checks tighter.
20089         (mono_metadata_parse_generic_param): Likewise.
20090         * loader.c (find_method_in_class): Does not need a
20091         MonoGenericContainer.  Use 'mono_method_signature' rather than
20092         'mono_method_signature_full'.
20093         (find_method, mono_get_method_constrained, method_from_memberref):
20094         Update to changes.
20096         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20097         owner-less generic-parameters are never evicted from the typespec
20098         cache.
20100         * loader.c (method_from_memberref): Don't use the current context
20101         when parsing signatures.
20102         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20104         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20105         side-effects in g_assert.
20106         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20107         that we don't potentially lose information.
20109 2005-11-26  Dick Porter  <dick@ximian.com>
20111         * icall.c:
20112         * threads.c: icalls to implement basic (ie, not named)
20113         System.Threading.Semaphore.
20115 2005-11-24  Dick Porter  <dick@ximian.com>
20117         * process.c
20118         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20119         Use GetProcessId() if it's available.
20121 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20123         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20125 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20126             Ankit Jain  <jankit@novell.com>
20128         * loader.c (mono_get_method_from_token): Initialize 'method' field
20129         of all generic parameters before parsing the signature.  Remove
20130         code that "fixed"-up MVAR references.
20132 2005-11-23  Ankit Jain  <jankit@novell.com>
20134         * metadata.c (mono_metadata_has_generic_params):
20135         (mono_metadata_load_generic_param_constraints):
20136         (mono_metadata_load_generic_params): Move duplicate code ...
20137         (mono_metadata_get_generic_param_row): ... here. Returns the
20138         first row-id in GenericParam table for a given owner (token).
20139         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20140         prototype.
20142 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20143             Ankit Jain  <jankit@novell.com>
20145         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20146         comparing VARs too.
20147         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20148         type->data.generic_param only if the type is an MVAR.
20149         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20150         leak owner-less VARs and MVARs into managed space.
20152 2005-11-21  Martin Baulig  <martin@ximian.com>
20154         * class-internals.h
20155         (MonoMethod): Moved the `generic_container' here from
20156         `MonoMethodNormal' since we now also need it for
20157         `MonoMethodPInvoke';
20158         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20159         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20160         an union containing both `MonoMethodNormal' and
20161         `MonoMethodPInvoke'.
20163         * loader.c
20164         (mono_get_method_from_token): Allow implementing generic methods
20165         as interncalls.
20167         * threads.c
20168         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20169         icall.
20171 2005-11-17  Dick Porter  <dick@ximian.com>
20173         * icall.c: 
20174         * process.h: 
20175         * process.c: Split the Process Start_internal icall into
20176         ShellExecuteEx_internal and CreateProcess_internal, which are
20177         called depending on whether UseShellExecute is true.  Fixes bug
20178         76670.
20180         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20182 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20184         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20185         'msize' parameters, use the information in 'mspec' instead.
20186         (emit_object_to_ptr_conv): Ditto.
20188         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20189         fields out of order. Fixes #76733.
20191 2005-11-17  Ankit Jain  <jankit@novell.com>
20193         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20195 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20197         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20198           bug #76575.
20200 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20202         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20203         for types with non-auto layout. Fixes #76717.
20205 2005-11-16  Ankit Jain  <jankit@novell.com>
20207         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20208         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20209         if generic_context is null.
20210           (mono_metadata_generic_param_equal): param->owner can be null.
20211           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20212         null.
20214 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20216         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20217         the correct value.
20219 2005-11-15  Martin Baulig  <martin@ximian.com>
20221         * object.c (set_value): Use mono_class_from_mono_type() instead of
20222         the hack for generic instances; fixes #76136.
20224 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20226         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20227         fields.
20229         * image.c (load_metadata_ptrs): Initialize the new fields.
20231         * reflection.c (create_dynamic_mono_image): Ditto.
20233         * reflection.c (build_compressed_metadata): Use the new fields.
20235         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20236         icall.
20238         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20239         icall.
20240         
20241 2005-11-15  Ankit Jain  <jankit@novell.com>
20242             Raja R Harinath  <harinath@gmail.com>
20244         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20245         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20246         new per-generic_container cache if the cached MonoType's context matches
20247         the current context.
20248           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20249         to the expected context.
20250           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20252 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20254         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20255         we changed the signature of an icall.
20256         * icall.c: Modify to mono_double_ParseImpl return true/false 
20257         depending on the success, instead of throwing the exception. This will
20258         help us in Double.TryParse methods.
20259         
20260 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20262         * marshal.c (emit_marshal_object): Throw an exception when
20263         marshalling 'object' instead of crashing. Fixes #76696.
20265 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20267         * class-internals.h: Add prototype for mono_type_get_full_name ().
20269 2005-11-11  Dick Porter  <dick@ximian.com>
20271         * threads.c (mono_thread_manage): Make sure the main thread has
20272         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20274 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20276         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20277         console about the missing type.
20278         (mono_loader_set_error_method_load): Ditto.
20280 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20282         * mono-config.c (mono_get_config_dir): Set the system defaults if
20283         none is specified.
20285         * assembly.c (mono_set_dirs): New API entry point to set the
20286         assembly and the config directory in one call
20288 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20290         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20291         the ftnptr was created from a delegate in a domain other than the
20292         current domain. Fixes #75377.
20294         * exception.h exception.c: Add mono_get_exception_not_supported ().
20296 2005-11-08  Martin Baulig  <martin@ximian.com>
20298         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20300 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20302         * security-manager.h: Added definitions to deal with strongname key 
20303         pairs bigger (and smaller) than 1024 bits.
20304         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20305         adjust wrt the public key length being used.
20307 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20309         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20310           Windows build (r51396-51397).
20312 2005-11-03  Martin Baulig  <martin@ximian.com>
20314         * class.c (mono_class_setup_vtable_general): Also add generic
20315         methods to the vtable; fixes #76581.
20317 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20319         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20320         sure that we lookup GetString method from the System.Text.Encoding
20321         class, not the derived class or we get an empty method.
20323         Fixed class #76612.
20325 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20327         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20328         if it has been previously set (embedders). 
20330         Make mono_set_rootdir available also on Unix.
20332 005-10-24  Robert Jordan  <robertj@gmx.net>
20334         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20336 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20338         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20339         only calls which are made to native code use this flag.
20341         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20343 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20345         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20346         Add support for FieldBuilders.
20348 2005-10-29  Martin Baulig  <martin@ximian.com>
20350         * mono-debug.c
20351         (mono_debug_using_mono_debugger): New public method; returns
20352         whether we're running inside the debugger.
20354 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20356         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20357         for Method/Constructor/FieldBuilders.
20359 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20361         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20362         and fields as well.
20364 2005-10-26  Martin Baulig  <martin@ximian.com>
20366         * mono-debug-debugger.c
20367         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20369 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20371         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20372         integer to isspace.
20374 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20376         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20377         when passing valuetypes byref. Fixes #76502.
20379 2005-10-19  Jackson Harper  <jackson@ximian.com>
20381         * profiler.c: Don't put a . in front of types that are not in a
20382         namespace.
20384 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20386         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20388 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20390         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20391         #76436.
20392         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20394 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20396         * assembly.c metadata-internals.h icall.c: Define an additional
20397         parameter for mono_assembly_name_parse_full, so we can avoid creating
20398         S.R.AssemblyName.Version when no version info wasn't passed.
20399         
20400 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20402         * class.c (mono_type_get_full_name): Reimplement method that was
20403         removed. 
20405         * image.c: Some docs
20407 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20409         * profiler.c (output_newobj_profile): Fix printing of Total memory
20410         on x86.
20412 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20414         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20416 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20418         * threads.c: remove debug output.
20420 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20422         * threads.c (mono_thread_manage): Fix crashes if more than 64
20423         threads need to be aborted. Hopefully fixes #75899.
20425         * assembly.c (mono_stringify_assembly_name): New helper function.
20427         * class.c: Use mono_stringify_assembly_name instead of the similar
20428         static function.
20430         * assembly.h assembly.c: Add support for calling a postload search 
20431         hook if an assembly cannot be loaded.
20433         * appdomain.c: Register new search hooks which call the AssemblyResolve
20434         events in AppDomain. Fixes #75231
20436 2005-10-07  Martin Baulig  <martin@ximian.com>
20438         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20439         methods without debug info.
20441 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20443         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20444         wrappers.
20446 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20448         * file-io.c: now that we return symlinks, use lstat and, when the file
20449         is a symbolic link, stat, to get the file attributes. Also avoid the
20450         conversion to/from utf16/external.
20452 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20454         * class.c (mono_class_layout_fields): Compute klass->has_references
20455         correctly if an embedded valuetype is not yet initialized. Fixes
20456         #76331.
20458 2005-10-04  Martin Baulig  <martin@ximian.com>
20460         * metadata.c
20461         (mono_metadata_load_generic_param_constraints): New public
20462         function; splitted the constraints loading out from
20463         mono_metadata_load_generic_params().
20465         * class.c (mono_class_create_from_typedef): Call
20466         mono_metadata_load_generic_param_constraints() after setting up
20467         the type and creating our parent; fixes #75329.
20469 2005-10-04  Martin Baulig  <martin@ximian.com>
20471         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20472         non-dynamic parent classes.
20474 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20476         * file-io.c : win32 build fix (ETXTBSY seems not found).
20478 2005-10-04  Martin Baulig  <martin@ximian.com>
20480         * reflection.c
20481         (mono_image_get_methodspec_token): Make the cache actually work;
20482         fixes #75974.
20484 2005-10-04  Martin Baulig  <martin@ximian.com>
20486         * class.c (mono_class_name_from_token): Removed the unneccessary
20487         `MonoGenericContext *' argument.
20489 2005-10-04  Martin Baulig  <martin@ximian.com>
20491         * loader.c
20492         (method_from_methodspec): Make the caching work again; fixes the
20493         performance regression from #76262.
20495 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20497         * file-io.c:
20498         * file-io.h:
20499         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20500         GetFileSystemEntries that performs the same work but without going
20501         into io-layer, locking, etc.
20503 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20505         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20506         ThreadState_Stopped as well. Fixes #76047.
20508 2005-09-29  Martin Baulig  <martin@ximian.com>
20510         * class.c
20511         (inflate_generic_context): If the new context has a `gmethod', set
20512         its `container' that that gmethod's `container'.
20514         * metadata.c
20515         (mono_metadata_parse_generic_param): Simplify things;
20516         `generic_container = generic_context->container;' is just fine.
20518         * loader.c (method_from_methodspec): Code cleanups.
20520 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20522         * decimal.c: fix warning (and let gcc generate correct
20523         code on ARM with optimizations).
20525 2005-09-28  Martin Baulig  <martin@ximian.com>
20527         * loader.c
20528         (method_from_memberref): Added `MonoGenericContext *class_context'
20529         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20530         (method_from_methodspec): If we're a memberref, use the enclosing
20531         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20533 2005-09-28  Martin Baulig  <martin@ximian.com>
20535         * object.c (mono_runtime_invoke_array): Added support for
20536         MONO_TYPE_GENERICINST; fixes #75917.
20538 2005-09-27  Martin Baulig  <martin@ximian.com>
20540         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20541         `k->byval_arg.type' to determine the actual type.
20543         * loader.c (method_from_methodspec): Removed some hacks.
20545 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20547         * class-internals.h (mono_field_is_deleted): Do the test for
20548         rtspecialname before we check the actual name of the field. This
20549         prevents us from dereferencing a pointer into the string table,
20550         saving us from accessing a few pages
20552         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20553         macros. This will allow a deadlock debugger to easily be plugged
20554         in.
20556 2005-09-27  Martin Baulig  <martin@ximian.com>
20558         * loader.c (method_from_methodspec): Create a "signature"
20559         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20561 2005-09-27  Martin Baulig  <martin@ximian.com>
20563         * class.c
20564         (inflate_generic_class): Correctly set the new context's
20565         container.
20567         * loader.c
20568         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20569         instead of a `MonoGenericContext *'.
20570         (mono_method_signature_full): Take a `MonoGenericContainer *'
20571         instead of a `MonoGenericContext *'.
20573         * metadata.c
20574         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20575         instead of a `MonoGenericContext *'.
20576         (mono_metadata_parse_method_signature_full): Likewise.
20578 2005-09-26  Martin Baulig  <martin@ximian.com>
20580         * class.c
20581         (mono_class_from_generic_parameter): Set `klass->generic_container'
20582         (mono_class_from_generic_parameter): Likewise.
20583         (mono_bounded_array_class_get): We inherit the generic container
20584         from the element class.
20586         * loader.c
20587         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20588         argument rather than computing it here.
20589         (method_from_memberref): Correctly set the generic context before
20590         parsing the signature.  Fixes #75681.
20592 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20594         * object.c (mono_class_has_special_static_fields): Fix warnings.
20596 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20598         * assembly.c: Add parse_public_key function, to
20599         par the public keys. Also added mono_assembly_name_parse_full,
20600         to define it the parsed key should be freed or not.
20601         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20602         to parse a long format assembly name.
20603         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20604         private, since calling it to preserve the key requires
20605         freeing it manually.
20606         
20607 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20609         * locales.c : removed HAVE_ICU part.
20611 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20613         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20614         field_is_special_static if the klass has no special static fields.
20616         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20617         (MonoCachedClassInfo): Likewise.
20619         * object.c (mono_class_has_special_static_fields): New helper function.
20621 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20623         * class.c (mono_class_create_from_typedef): Don't call 
20624         interfaces_from_typedef_full for enums.
20625         (mono_class_create_from_typedef): Compute the base types of enums directly
20626         without calling mono_class_setup_fields ().
20627         (mono_class_find_enum_basetype): New helper function.
20629         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20630         one place inside the string heap.
20631         
20632 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20634         * class.c: locking fixes, code cleanups, some docs added.
20635         Allocate some data structures in the image mempool.
20637 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20639         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20640         the example code.
20641         
20642 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20644         * class-internals.h, class.c, reflection.c: reduce memory taken by
20645         MonoClass.
20647 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20649         * metadata.c, metadata.h, loader.h: documentation updates, code and
20650         API cleanups.
20652 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20654         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20655         the example code.
20657         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20658         page faults caused by the runtime while reading metadata.
20660 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20662         * socket-io.c: the field names were changed 3 months ago and no one
20663         realized until bug #76077 got filed!
20665 2005-09-20  Martin Baulig  <martin@ximian.com>
20667         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20669 2005-09-20  Martin Baulig  <martin@ximian.com>
20671         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20672         write the rank into the class entry.
20674 2005-09-20  Martin Baulig  <martin@ximian.com>
20676         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20678 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20680         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20682         * icall.c (custom_attrs_defined_internal): New icall.
20684         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20685         function.
20686         (mono_custom_attrs_construct_by_type): New helper function.
20688 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20690         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20691         terminate the resulting string. Fixes #76123.
20693 2005-09-16  Martin Baulig  <martin@ximian.com>
20695         * mono-debug.c
20696         (mono_debug_add_method): Ignore inflated methods for the moment.
20698 2005-09-14  Martin Baulig  <martin@ximian.com>
20700         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20702 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20704         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20705         return a success/failure indication.
20706         (mono_metadata_interfaces_from_typedef_full): Ditto.
20707         (get_constraints): Ditto.
20709 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20711         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20712         
20713         * marshal.c (emit_marshal_array): Add support for returning string
20714         arrays from delegates. Fixes #76063.
20716         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20718 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20720         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20721         icall.
20723 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20725         * reflection.c icall.c: Fix after mono_get_exception_type_load
20726         signature change.
20728         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20729         (mono_assembly_load_reference): Use the new helper.
20731         * class-internals.h (MonoLoaderError): New structure containing 
20732         information about type loading errors.
20734         * class-internals.h loader.c: Add APIs to store per-thread loader
20735         error information.
20737         * loader.c class.c: Set the loader error if needed.
20739         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20741 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20743         * decimal.c: fixed to handle the broken ARM fp format.
20745 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20747         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20748         broken.
20750 2005-09-06  Martin Baulig  <martin@ximian.com>
20752         * domain.c (supported_runtimes): Added v2.0.50727.
20754 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20756         * culture-info.h: reduce the size of some structures.
20758 2005-09-05  Martin Baulig  <martin@ximian.com>
20760         Reflect latest API changes in the August CTP.
20762         * icall.c
20763         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
20764         ("MonoType.HasGenericArguments"): Removed.
20765         ("MonoMethod.BindGenericParameters"): Renamed to
20766         "MakeGenericMethod".
20767         ("MethodBuilder.BindGenericParameters"): Renamed to
20768         "MakeGenericMethod".    
20770 2005-09-05  Martin Baulig  <martin@ximian.com>
20772         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
20774 2005-09-05  Martin Baulig  <martin@ximian.com>
20776         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20778         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
20779         generic_container is non-NULL.
20781 2005-09-05  Martin Baulig  <martin@ximian.com>
20783         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20785         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
20787 2005-08-29  Michal Moskal  <malekith@nemerle.org>
20789         * reflection.c (encode_locals,
20790         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
20791         for large generic types.
20793 2005-09-05  Martin Baulig  <martin@ximian.com>
20795         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20797         * class.c (mono_dup_array_type): New public method.
20798         (mono_metadata_signature_deep_dup): New public method.
20799         (dup_type): Correctly duplicate array and function types.
20801 2005-09-05  Martin Baulig  <martin@ximian.com>
20803         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20805         * reflection.c (get_default_param_value_blobs): Handle generic types
20806         and generic methods.
20808 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
20810         * class.c: Fixed error reporting (method/class were inversed) for 
20811         inheritance demands.
20812         * security-manager.c|h: Added the AppDomain when calling the managed
20813         System.Security.SecurityManager.InheritanceDemand method.
20815 2005-09-01  Raja R Harinath  <rharinath@novell.com>
20817         * reflection.c (encode_marshal_blob): 'marshaltype' and
20818         'marshaltyperef' are alternate sources for the custom marshaler
20819         name.
20821 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
20823         * class.c: fix creation of array classes with rank == 1
20824         (patch by Ankit Jain <jankit@novell.com>).
20826 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
20828         * object.c: fix check for creating the bound data for arrays vs
20829         szarrays.
20831 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20833         * object.c: configuration file name is now based on the executable name,
20834         not the image name. Fixes bug #75931.
20836 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
20838         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
20839         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
20841 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
20843         * rand.c: Use wincrypt.h instead of WinCrypt.h.
20845 2005-08-24  Ankit Jain  <jankit@novell.com>
20846             Raja R Harinath  <rharinath@novell.com>
20848         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
20849           called by it recursively.
20850           (mono_class_init): Remove special case in pending_init handling, since it's
20851           superseded by the fix to mono_class_from_typeref.
20853 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
20855         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
20856         BROKEN_THREAD_START stuff.
20858 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
20860         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
20861         trampoline.
20863         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
20864         
20865         * object.c (mono_delegate_ctor): Replace the original function address with
20866         a delegate trampoline.
20868 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
20870         * icall.c: add boolean argument to base64_to_byte_array and 
20871         InternalFromBase64String to control whether a whitespace-only string
20872         is allowed (or should casue a FormatException to be thrown). We need
20873         this as the behavior has changed between MS.NET 1.x and 2.0, and we
20874         to match the MS behaviour in both profiles.
20875         * appdomain.c: Bump corlib version.
20877 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20879         This patch implements a big portion of publisher policy
20880         support, used to bind assembly versions and redirect
20881         one assembly from version A to version B.
20883         * assembly.c:
20884         New GSList loaded_assembly_bindings, for storing the cached
20885         assembly bindings.
20886         (assembly_binding_maps_name): New static function for checking if a 
20887         assembly binding information maps an assembly name.
20888         (mono_assembly_binding_info_free): New function for freeing
20889         assembly binding information resources.
20890         (get_publisher_policy_info): New static function for retrieving 
20891         assembly binding information from a MonoImage.
20892         (compare_versions): New static function for comparing an assembly
20893         binding information data and the version of an assembly name.
20894         (check_policy_versions): New static function for checking if an
20895         assembly binding info mapping an assembly name is valid for it.
20896         (mono_assembly_load_publisher_policy): New static function for
20897         loading the 'policy.major.minor.MyAssembly' image for an assembly
20898         with an assembly name 'aname'.
20899         (mono_assembly_bind_version): New static function for updating
20900         assembly redirection.
20901         (mono_assembly_apply_binding): New static function for applying
20902         assembly binding.
20903         (search_binding_loaded): New static function for searching 
20904         loaded assembly binding infos in the cache domain.
20905         (mono_assembly_load_full): Don't apply assembly binding for
20906         reflection only assemblies.
20908         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20909         which contains information about assembly binding. Also
20910         declare signature for mono_config_parse_publisher_policy ()
20911         function, used to retrieve pub policy info.
20912         
20913         * mono-config.c:
20914         (publisher_policy_start): New static function used to parse publisher 
20915         policy config files.
20916         (publisher_policy_parser): New static MonoParseHandler containing 
20917         the functions used when parsing config files.
20918         (mono_config_parse_publisher_policy): New function for parsing
20919         publisher policy files.
20920         
20921 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
20923         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
20925         * marshal.c (mono_delegate_free_ftnptr): Ditto.
20927         * object.c (mono_get_addr_from_ftnptr): New helper function.
20929         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
20931         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20933 2005-08-19  Dick Porter  <dick@ximian.com>
20935         * threads.c, threads.h, appdomain.c, appdomain.h,
20936         profiler-private.h, monitor.c, object.c, object-internals.h,
20937         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
20938         store the thread ID, so it can hold a 64 bit value if needed.
20940 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
20942         * reflection.c (mono_reflection_create_dynamic_method): Store the
20943         handle class into the method references as well so ldtoken works in
20944         dynamic methods.
20946         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
20947         types.
20949 2005-08-19  Ankit Jain <jankit@novell.com>
20951         Fix #75847.
20952         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
20953           here rather than using the method signature of a arbitrary function
20954           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
20955           two arguments.
20956           Hack done with Harinath.
20958 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20960         * threadpool.c: disable printing stack traces when we get a exception
20961         in a threadpool thread. I need to do more testing to figure out which
20962         cases actually print this. Fixes bug #75828.
20964 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20966         * icall.c: there might be ignored whitespace after the last '='. This
20967         fixes length computation and bug #75840.
20969 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
20971         * assembly.c (mono_assembly_load_full): Consider .exe extension as
20972         well. Fixes #75809.
20974         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
20975         #75784.
20976         
20977         * reflection.c (create_custom_attr_data): Ditto.
20979 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
20981         * locales.c, culture-info.h : removed RegionLCIDMap.
20982         * culture-info-tables.h : regenerated.
20984 2005-08-16  Martin Baulig  <martin@ximian.com>
20986         * class.c (mono_type_get_name_recurse): Small fix.
20988 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
20990         * locales.c : indentation fixie.
20992 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
20994         * object-internals.h,
20995           locales.h,
20996           locales.c,
20997           culture-info.h,
20998           icall.c : added RegionInfo table support.
20999         * culture-info-table.h : regenerated for region support.
21001 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21003         * reflection.c (resolve_object): handle all kinds of MonoMethod
21004         including generic ones
21006 2005-08-12  Ankit Jain <jankit@novell.com>
21008         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21009           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21011 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21013         * process.c: Don't close a thread handle when it's NULL. This is a
21014         workaround for bug #75733.
21016 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21018         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21020 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21022         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21024 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21026         * threadpool.c: if a work item in the thread pool has a callback that
21027         catches a exception, don't propagate it after invoking the callback.
21028         Fixes bug #75336.
21030 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21032         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21034         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21036         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21038         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21040 2005-08-03  Ankit Jain  <jankit@novell.com>
21042         Fix #75683.
21043         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21044           PInvoke calling convention is 0.
21046 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21048         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21049         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21051 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21053         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21054         to handle threads not started by the GC (patch by Michael Meeks
21055         <michael.meeks@novell.com>).
21057 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21059         * reflection.c: Make buffer used in emitting types larger for some
21060         big generic types (patch by Michal Moskal).
21062 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21064         * mono-debug.c: Fix some (not all) alignment problems.
21066 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21068         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21069         Invoke mono_image_load_from_data_full passing the refonly
21070         parameter.
21072         * assembly.c
21073         (mono_assembly_open_from_bundle): Add the refonly argument, 
21074         in order to pass it to other methods it calls to.
21075         (do_mono_assembly_open): Add the refonly argument, in order 
21076         to pass it to other methods it calls to.
21077         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21078         the refonly parameter to it.
21080         * image.c: Add loaded_images_refonly_hash and
21081         loaded_images_refonly_guid_hash to cache the reflection
21082         only loaded images.
21083         (mono_images_init): Initialize the hash tables used for
21084         caching the reflection only images.
21085         (load_modules): Invoke mono_image_open_full passing the refonly
21086         parameter to load the modules the correct way.
21087         (build_guid_table): Add the refonly argument, to re-build the 
21088         correct hash table.
21089         (do_mono_image_open): Added the refonly argument, in order to
21090         define it for the loaded image.
21091         (mono_image_loaded_full): New function, which receives an
21092         additional parameter to look for the image in the refonly or
21093         non-refonly section.
21094         (mono_image_loaded): Updated, using mono_image_loaded_full.
21095         (mono_image_loaded_by_guid_full): The same case that happens
21096         with mono_image_loaded_full.
21097         (mono_image_loaded_by_guid): Likewise.
21098         (register_image): Use the ref_only variable inside MonoImage
21099         to decide in which hash table store the current image.
21100         (mono_image_open_from_data_full): Rename
21101         mono_image_open_from_data to mono_image_open_from_data_full,
21102         adding the refonly argument, to define the ref_only variable 
21103         inside MonoImage.
21104         (mono_image_open_from_data): Return 
21105         mono_image_open_from_data_full.
21106         (mono_image_open_full): Rename mono_image_open to
21107         mono_image_open_full, receiving the new refonly argument,
21108         to pass it to inner methods.
21109         (mono_pe_file_open): Update this function, to open
21110         a MonoImage as a non-refonly image.
21111         (mono_image_close): Use the refonly variable inside
21112         MonoImage to remove the image from the correct caches.
21114         * image.h: Add the signatures of mono_image_open_full,
21115         mono_image_open_from_data_full, mono_image_loaded_full,
21116         mono_image_loaded_by_guid_full.
21118         * metadata-internals.h: Add the ref_only field to 
21119         MonoImage.
21120         
21121 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21123         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21124         Fix the last behavior, which used to load the assemblies and
21125         extract MonoReflectionAssemblyName information, instead of
21126         extract it from the metadata tables. Needed for Reflection
21127         Only assemblies.
21128         
21129 2005-07-29  Martin Baulig  <martin@ximian.com>
21131         * mono-debug-debugger.c
21132         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21133         not initialized.
21135         * mono-debug.c
21136         (mono_debug_address_from_il_offset): Check whether we have
21137         debugging support before attempting to take the lock.
21138         (mono_debug_source_location_from_address): Likewise.
21139         (mono_debug_source_location_from_il_offset): Likewise.
21140         (mono_debug_il_offset_from_address): Likewise.
21141         (mono_debug_address_from_il_offset): Likewise.
21143 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21145         * class.c (mono_class_from_name_case): Add support for dynamic images.
21146         Fixes #75650.
21148         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21149         for #75479.
21151 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21152         
21153         * reflection.c (mono_method_get_object): Fix warning.
21155 2005-07-28  Martin Baulig  <martin@ximian.com>
21157         * mono-debug.c
21158         (mono_debug_add_wrapper): Also write the wrapper type.
21160 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21162         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21163         
21164         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21165         data indicates the class has none.
21167 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21169         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21170         loader lock with the debugger lock. Prevents deadlocks for beagle.
21172         Beagle can now run on an smp box for a weekend without any
21173         issues. Woohoo!
21175 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21177         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21178         in a module. Fixes #75629.
21180 2005-07-26  Martin Baulig  <martin@ximian.com>
21182         * mono-debug.c (mono_debug_add_wrapper): New static method.
21183         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21184         interncall or a wrapper.
21186         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21187         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21188         (MONO_DEBUGGER_VERSION): Bump to 51.
21190         * mono-debug-debugger.c
21191         (mono_debugger_add_type): Removed this empty function.
21192         (mono_debugger_add_method): Likewise.
21194 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21196         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21197         before accessing method->slot.
21199 2005-07-21  Jb Evain  <jbevain@gmail.com>
21201         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21202         Fixes #75010.
21204 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21206         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21207         #75587.
21209 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21211         * image.h image.c: Add mono_image_get_guid () API function.
21213 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21215         There were issues when multiple threads tried to load
21216         assemblies. A deadlock was created between assemblies_mutex and
21217         mono_domain_assemblies_lock. This fixes the issue by making the
21218         assembly ref counting be lock free. See bug 75586.
21219         
21220         * image.c (mono_image_close): The add ref function here was using
21221         Interlocked operations while the unref was using a mutex and a
21222         --. I don't think this was ever a bug that would be exposed in a
21223         non-pendantic way (ie, by an embedder doing a ref on one thread
21224         and an unref on another), but for the sake of correctness, this is
21225         now Interlocked.
21227         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21228         (mono_assembly_load_reference): Call mono_assembly_addref rather
21229         than touching the refcount ourselves.
21230         (mono_assembly_close): Use InterlockedDecrement to unref the
21231         assembly. Don't acquire the lock unless it is actually needed.
21233 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21235         * class.c (mono_class_layout_fields): Fix calculation of has_references
21236         for generic types.
21238 2005-07-12  Martin Baulig  <martin@ximian.com>
21240         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21242         * metadata.c
21243         (mono_type_hash): Provide better hashing for generic instances.
21244         (mono_generic_inst_hash): Improve hashing.
21245         (mono_generic_class_hash): Likewise.
21247         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21248         generic instances.
21250 2005-07-12  Martin Baulig  <martin@ximian.com>
21252         * reflection.c (mono_reflection_create_runtime_class): Remove the
21253         hack for generic type definitions and non-`Run' assemblies.
21254         (mono_reflection_bind_generic_parameters): Also use
21255         `klass->wastypebuilder' to check for TypeBuilders.
21257 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21259         * class.c (mono_class_layout_fields): Fix calculation of has_references
21260         for generic types.
21262         * class.c (inflate_generic_class): Fix a leak.
21263         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21264         for generic types.
21266 2005-07-11  Martin Baulig  <martin@ximian.com>
21268         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21269         on error.
21271 2005-07-11  Martin Baulig  <martin@ximian.com>
21273         * loader.c (find_method): Also lookup in
21274         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21276 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21278         * appdomain.c (mono_domain_unload): Don't free the error message
21279         before passing it to mono_get_exception_...
21281         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21282         
21283 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21285         * threads.c: try to better guess an available RT signal (bug #75387).
21287 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21289         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21290         and CACHE_OBJECT.
21292 2005-07-07  Martin Baulig  <martin@ximian.com>
21294         * class.c (mono_type_get_name_full): Return NULL for
21295         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21296         fixes #75408.
21298 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21300         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21301         exit the appdomain as well being aborted.
21303         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21304         change back to the root domain after calling managed code. This enables
21305         appdomains using threadpools to be unloaded.
21307 2005-07-07  Martin Baulig  <martin@ximian.com>
21309         * class-internals.h
21310         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21311         into `MonoDynamicGenericClass' since we only need it for dynamic
21312         types.
21314         * reflection.c (mono_class_bind_generic_parameters): We don't need
21315         to compute the `parent' here.
21317 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21319         * culture-info-table.h : regenerated.
21321 2005-07-06  Martin Baulig  <martin@ximian.com>
21323         * icall.c
21324         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21326         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21328 2005-07-06  Martin Baulig  <martin@ximian.com>
21330         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21331         we're doing a signature-only comparision; fixes #74945.
21333 2005-07-06  Martin Baulig  <martin@ximian.com>
21335         * class-internals.h (MonoGenericClass): Moved some things out into
21336         a new `MonoInflatedGenericClass' type.  
21337         (MonoInflatedGenericClass): New type; the `klass' of a
21338         `MonoGenericClass' is now computed lazyly in
21339         mono_get_inflated_generic_class().      
21341         * class.c (mono_get_inflated_generic_class): New public function.
21342         (mono_class_inflate_generic_method): Removed the unused
21343         `MonoClass *' argument.
21344         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21345         all the methods.
21346         (mono_class_create_generic): Make this static and merge it with
21347         mono_class_create_generic_2(); we're now called automatically from
21348         mono_get_inflated_generic_class().
21350         * loader.c (mono_method_signature): Call
21351         mono_get_inflated_method() here.
21353 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21355         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21356         type of fields with RVA.
21358         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21359         for this pseudo class.
21360         (my_mono_class_from_generic_parameter): Likewise.
21361         (mono_class_init): Allow interfaces to have cctors.
21363 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21365         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21366         lazily for AOT methods.
21368 2005-07-05  Martin Baulig  <martin@ximian.com>
21370         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21371         returns FALSE for a successful match, not TRUE.
21373 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21375         * loader.c (mono_method_get_index): Optimize this a bit.
21377 2005-07-04  Martin Baulig  <martin@ximian.com>
21379         * class.c
21380         (class_compute_field_layout): Move the check for generic type
21381         definitions into mono_class_layout_fields().  Fixes #74684.
21382         (mono_class_from_generic_parameter): Correctly compute
21383         `klass->parent'; fixes #75457.
21385         * reflection.c (register_assembly, register_module): Make sure
21386         `domain->rejobject_hash' is already created.
21388 2005-07-02  Martin Baulig  <martin@ximian.com>
21390         * class-internals.h
21391         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21392         `MonoDynamicGenericClass'.      
21394 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21396         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21397         returned by a field getter is null, since null is a valid value.
21399 2005-07-01  Martin Baulig  <martin@ximian.com>
21401         * reflection.c (mono_reflection_generic_class_initialize): Update
21402         the `dgclass->fields [i].parent' to the correct class.
21403         (mono_image_get_fieldref_token): Use the declaring type, not the
21404         reflected type.
21406 2005-07-01  Martin Baulig  <martin@ximian.com>
21408         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21410 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21412         * threads.c (thread_cleanup): assert that thread != NULL
21413         (wait_for_tids_or_state_change): We were using the wrong variable
21414         when accessing wait->threads. `i' was always out of the bounds of
21415         the array.
21417 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21419         * loader.c: map user32 and kernel32 to libMonoSupportW
21421 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21423         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21425 2005-06-28  Martin Baulig  <martin@ximian.com>
21427         * loader.c (method_from_methodspec): Fix #75334.
21429 2005-06-28  Martin Baulig  <martin@ximian.com>
21431         Fix #74953 - Arrays now implement the generic IList<T> interface
21432         on the 2.0 platform.
21434         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21436         * reflection.c (mono_class_bind_generic_parameters): New public
21437         function; similar to mono_reflection_bind_generic_parameters(),
21438         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21440         * domain.c (mono_init_internal): Try to initialize.
21441         `mono_defaults.generic_array_class' here; this'll only succeed if
21442         we're using the 2.0 corlib.
21444         * icall.c
21445         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21446         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21447         (mono_lookup_internal_call): Added support for nested classes.
21449         * loader.c
21450         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21451         we're an interncall and have generic arguments.
21453         * class.c
21454         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21455         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21456         instance of System.Array.InternalArray<T> for arrays, so they
21457         implement the generic IList<T> interface.
21459 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21461         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21462         (chastamar@yahoo.com). Fixes #75374.    
21464 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21466         * culture-info-table.h: regenerated.
21468 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21470         * icall.c: handle spaces correctly for base64 strings.
21472 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21474         * *.c: Kill some warnings.
21476 2005-06-23  Duncan Mak  <duncan@novell.com>
21478         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21479         that this builds on Solaris 10 (x86).
21481 2005-06-23  Martin Baulig  <martin@ximian.com>
21483         * class.c
21484         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21485         generic type definitions.
21487 2005-06-23  Martin Baulig  <martin@ximian.com>
21489         Fix #75331.
21491         * metadata.c (mono_class_get_overrides): Renamed to
21492         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21493         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21494         pass it to mono_get_method_full().
21496 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21498         * reflection.c (mono_reflection_create_runtime_class): take the
21499         mono_domain_lock in this method. Prevents deadlocks
21501 2005-06-22  Martin Baulig  <martin@ximian.com>
21503         * loader.c (method_from_methodspec): Fix #75330.
21505 2005-06-22  Martin Baulig  <martin@ximian.com>
21507         * reflection.c (type_get_qualified_name): Use
21508         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21509         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21510         argument; use it if we don't have an assembly name.
21512 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21514         * object.c: In mono_message_init, set "copy out" flag for in
21515         parameters with the [Out] flag.
21517 2005-06-21  Martin Baulig  <martin@ximian.com>
21519         * class.c
21520         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21521         and MONO_TYPE_PTR.
21523 2005-06-21  Martin Baulig  <martin@ximian.com>
21525         * class.c (mono_class_init): Don't initialize `class->fields' for
21526         generic instances since they're initialized again in
21527         compute_field_layout(). 
21528         (compute_field_layout): Set the field's `generic_info' here; fix
21529         #75320. 
21531 2005-06-21  Martin Baulig  <martin@ximian.com>
21533         * class-internals.h
21534         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21536         * metadata.c (mono_metadata_generic_method_equal): Also
21537         distinguish the `generic_class'; fixes #75334.
21539 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21541         * domain.c:
21542         * appdomain.c:
21543         * domain-internals.h:
21544         * reflection.c: 'domain_assemblies' field is now protected by its own
21545         lock. Don't call into managed code to run the AssemblyLoad event if we
21546         now there are no registered delegates for it.
21548 2005-06-20  Martin Baulig  <martin@ximian.com>
21550         * class.c (mono_class_is_assignable_from): Use a custom version of
21551         mono_class_has_parent() to make things work for generic instances;
21552         fix #75300.
21554 2005-06-20  Martin Baulig  <martin@ximian.com>
21556         * loader.c (method_from_methodspec): Apply a patch from
21557         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21559 2005-06-20  Martin Baulig  <martin@ximian.com>
21561         * class.c (mono_class_init): Reverted Zoltan's last change; it
21562         breaks generics.
21564 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21566         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21568 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21570         * socket-io.c: fix the index in the socket array for writable/error
21571         sockets. Fixes bug #75306.
21573 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21575         * class.c (mono_class_init): Allow interfaces to have static ctors.
21577 2005-06-17  Martin Baulig  <martin@ximian.com>
21579         * loader.c (method_from_methodspec): Use `context->container' when
21580         parsing the `gmethod->inst'.
21582 2005-06-17  Martin Baulig  <martin@ximian.com>
21584         * class.c (mono_type_get_name_recurse): Don't add the assembly
21585         name for type arguments.
21587 2005-06-15  Martin Baulig  <martin@ximian.com>
21589         * reflection.c (mono_image_get_inflated_method_token): Encode
21590         correct klass; fixes #75260.
21592 2005-06-13 Michal Moskal <malekith@nemerle.org>
21594         * icall.c: Make GetCorrespondingMethod/Constructor take
21595         MonoReflectionMethod method not MonoMethod. Removed
21596         MonoType.GetCorrespondingField, and make
21597         MonoGenericType.GetCorrespondingField take name not
21598         MonoClassField.
21600 2005-06-13  Michal Moskal <malekith@nemerle.org>
21602         * reflection.c (field_encode_signature, encode_locals):
21603          Make sizes of buffers for types larger (for big generic types).
21604          (create_generic_typespec,
21605          mono_reflection_sighelper_get_signature_local,
21606          mono_reflection_sighelper_get_signature_field):
21607          Add asserts for too small buffers.
21609 2005-06-15  Martin Baulig  <martin@ximian.com>
21611         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21612         if our parent is not a dynamic type.
21614 2005-06-15  Martin Baulig  <martin@ximian.com>
21616         * class-internals.h (MonoTypeNameFormat): New enum.
21618         * class.c
21619         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21620         (mono_type_get_full_name): Removed.
21621         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21622         argument instead of the boolean's.
21624         * icall.c (ves_icall_System_MonoType_getFullName):
21625         Added `gboolean assembly_qualified'.    
21627         * reflection.h
21628         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21630         * reflection.c (mono_reflection_parse_type): Parse the new type
21631         name format.
21633 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21635         * icall.c: no need to convert from utf16 to utf8 and then back again
21636         after the call to GetLogicalDrives.
21638 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21640         * icall.c: frombase64. Fix problems exposed by new tests.
21642 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21644         * icall.c: added internal calls for converting char [] and strings in
21645         base64 into byte [].
21647 2005-06-10  Martin Baulig  <martin@ximian.com>
21649         * class.c (mono_class_create_generic_2): Read the nested classes
21650         from the metadata rather than from `gklass->nested_classes' since
21651         `gklass' might not be initialized yet.
21653 2005-06-09  Duncan Mak  <duncan@novell.com>
21655         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21656         all public headers. Fixes #74919.
21658 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21660         * domain.c: The key for proxy_vtable_hash is now a pointer
21661         array. Added new GHashFunc and GCompareFunc functions for this.
21663         * class.h: The list of interfaces in MonoRemoteClass is known in
21664         advance and can't grow (we create a new MonoRemoteClass if needed),
21665         so now the interface array can be allocated together with
21666         MonoRemoteClass.
21667         
21668         * object.c: Added a new method create_remote_class_key.
21669         Fixed mono_remote_class so it does not depend on
21670         mono_upgrade_remote_class.
21671         Removed extend_interface_array.
21672         Added new method clone_remote_class(), which makes a copy of a remote
21673         class and adds a new interface or class to it.
21674         mono_upgrade_remote_class() now creates a new remote class (or gets
21675         it from the cache) if an vtable upgrade is needed. In this way
21676         we make sure that other objects sharing the same remote class
21677         don't get the new vtable with unwanted interfaces.
21678         
21679         * object-internals.h:
21680         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21681         
21682         * marshal.c: Track changes in mono_upgrade_remote_class().
21684 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21685         * icall.c: Add runtime methods for obtaining members of inflated
21686         class, which were created from supplied non-inflated members. It
21687         is used in internal Get{Method,Constructor,Field} methods in
21688         System.Type
21690 2005-06-09  Martin Baulig  <martin@ximian.com>
21692         * reflection.c
21693         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21695 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21696         * reflection.c (mono_image_basic_init): Define
21697         Version in MonoDynamicAssembly. 
21698         
21699 2005-06-08  Martin Baulig  <martin@ximian.com>
21701         Fix #75136.
21703         * loader.c
21704         (mono_method_signature_full): New public method; takes a
21705         `MonoGenericContext *'.
21706         (find_method): Use mono_method_signature_full() and pass the
21707         klass'es context to it.
21709         * class.c (mono_class_is_inflated_method): Use
21710         mono_method_signature_full() and pass the context to it.
21712 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21714         * object.c: add proper locking in mono_remote_class_vtable(),
21715         fixes possible memory corruption.
21717 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21719         * marshal.c (mono_remoting_marshal_init): set
21720         initialized after initialization.
21722 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21724         * locales.c : hush.
21726 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21728         * object.c (extend_interface_array): fix really silly
21729         memory corrupting / comparison bug.
21731 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21733         * reflection.c: Functions added to support the creation
21734         of CustomAttributeData, which includes Attribute data
21735         used by ReflectionOnly methods.
21737         * reflection.h:  mono_reflection_get_custom_attrs_data and
21738          mono_custom_attrs_data_construct added (functions exposed).
21740          * icall.c: Added mono_reflection_get_custom_attrs_data
21741          as icall.
21742         
21743 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21745         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21746         lupus's request.
21748 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21750         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21752         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21753         dynamic DllImportAttribute.
21755         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21756         dynamic DllImportAttribute.
21758         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
21759         Fixes #75162.
21761 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21763         * threads.c: avoid segfault when an unstarted thread is aborted.
21765 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
21767         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
21768         Returns the name and version of the runtime for reporting.
21770 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21772         * appdomain.c: bump corlib version.
21773         * object-internals.h: new field in MonoReflectionAssembly.
21775 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21777         * object-internals.h: Carlos forgot to add this field.
21779 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21781         * icall.c: Added create_version to create instances
21782         of Version of MonoReflectionAssemblyName. This change helps
21783         the AssemblyName tests to keep running fine.
21784         
21785 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
21786   
21787         * object.c (mono_method_return_message_restore): A somehow less
21788         intrusive fix for #75138.
21790 2005-06-03  Raja R Harinath  <rharinath@novell.com>
21792         * object.c (mono_method_return_message_restore): Fix computation
21793         of expected number of out args.
21795 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21797         * reflection.c (mono_image_get_method_info): Fix the case when the
21798         charset is empty.
21800 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
21802         * object.c: Added missing null check in
21803           mono_method_return_message_restore.
21805 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21807         * reflection.c (mono_image_get_method_info): Handle the case when
21808         dllentry is empty.
21810 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
21812         * object.c: When creating the vtable for a proxy, take into account
21813         all inherited interfaces, not only the ones registered in
21814         iclass->interfaces. This fixs bug #74996.
21815         Also, in mono_method_return_message_restore, verify that the array
21816         of out args has the expected lengh.
21818 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21820         * socket-io.c: update the timeout in Poll when the call is interrupte.
21822 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21824         * socket-io.c: support abort/suspend in Select_internal after last
21825         change.
21827 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21829         * threadpool.c: remove warning.
21831 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21833         * icall.c:
21834         * socket-io.[ch]: Select_internal uses poll() now when available, thus
21835         removing the 1024 limit from select(). Runtime part of the fix for
21836         bug #71203.
21838 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21840         * socket-io.c: when resolving the addresses for the same
21841         host returned by gethostname(), get the local IPs from the interface
21842         list. Loopback addresses are discarded if the are interfaces up with
21843         non-loopback ones. Fixes bug #63265.
21845 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
21847         * appdomain.c, verify.c, object-internals.h, reflection.c:
21848         bumped corlib number to 36, and added new extra_flags field
21849         to ReflectionMethodBuilder and friends.  Fixes #75060.
21851 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
21853         * gc.c: register a new weak link only if the object is non-null
21854         (fixes bug#75047).
21856 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21858         * culture-info.h : short time pattern too.
21860 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21862         * culture-info.h : expand long time pattern string length.
21864 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21866         * culture-info-table.h : update (more French date format; #72788).
21868 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
21870         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
21871         the method is static. Fixes #75029.
21873 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
21875         * reflection.c: Update the table_idx field of method builders after
21876         saving the module, since it can change. This is a workaround for
21877         bug #74914. 
21879 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21881         * culture-info-table.h : update (additional French date format).
21883 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
21885         * icall.c (ves_icall_type_Equals): Revert last change.
21886         
21887         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
21889         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
21891 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
21893         * class-internals.h: Added executioncontext_class field to 
21894         MonoDefaults structure.
21895         * domain.c: Cache System.Threading.ExecutionContext class in 
21896         mono_defaults.
21897         * object.c: Capture the ExecutionContext for asynchroneous calls in
21898          mono_async_result_new.
21899         * object-internals.h: Added execution_context and original_context 
21900         fields to MonoAsyncResult. Added execution_context to MonoThread.
21901         * security-manager.c|.h: Added mono_get_context_capture_method to 
21902         return the capture method (if required by the security manager or by
21903         the framework version used).
21904         * threadpool.c: Apply capture (if present) ExecutionContext in 
21905         mono_async_invoke and revert to original context after it completes.
21907 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21909         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21911 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21913         * culture-info-table.h : zh-CHT related workaround.
21915 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21917         * marshal.c (emit_marshal_custom): Add some error checking and call the
21918         methods in the ICustomMarshaler interface. Fixes #74875.
21919         
21920         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
21921         native->managed wrappers.
21923 2005-05-12  Martin Baulig  <martin@ximian.com>
21925         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
21926         here and use the loader lock.
21928         * mono-debug.c: Properly lock when the debugger is not attached.
21929         (mono_debug_init): Release the initial lock if we're not running
21930         in the debugger.
21932 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21934         * marshal.c (emit_marshal_custom): Pass through NULL values without
21935         calling the custom marshalling routines.
21937         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
21938         conversion in structures. Fixes #74882.
21940 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
21942         * culture-info-table.h : zh-* cultures were missing.
21944 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
21946         * threads.c: Added a new event background_change_event which is signaled
21947         when a thread changes its background mode.
21948         Moved here several checks previously done in managed code. The checks
21949         require the thread lock, and using the thread lock in managed code
21950         can result in deadlocks.
21951         Merged Start_internal and Thread_internal into a single method. Now 
21952         Thread_internal does all work of creating and starting a thread.
21953         Added icalls for setting and getting the state of the object. Moved from
21954         managed code to avoid locking there.
21955         Added wait_for_tids_or_state_change() which is called instad of
21956         wait_for_tids when waiting for non-backround threads to end. This method
21957         will return if one of the threads ends or the background_change_event
21958         is signaled.
21959         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
21960         the background mode. This method signals the background_change_event
21961         event.
21962         * icall.c:
21963         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
21964         removed Start_internal.
21965         
21966 2005-05-11  Martin Baulig  <martin@ximian.com>
21968         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
21969         to order of some fields to get proper alignment on 64-bit machines.
21971 2005-05-11  Martin Baulig  <martin@ximian.com>
21973         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
21974         changes as they're broken and completely fuck up the debugger.
21976         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
21978 2005-05-10  Martin Baulig  <martin@ximian.com>
21980         * reflection.c (mono_reflection_generic_class_initialize): Don't
21981         call mono_class_setup_parent() here.
21983 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21985         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
21986         send/receive timeout use an integer in milliseconds. We were using a
21987         struct timeval.
21989 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21991         * locales.c:
21992         (internal_get_cultures): reserve the first slot of the array for the
21993         InvariantCulture, which will be filled in managed code.
21995 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
21997         * reflection.c (mono_image_fill_module_table): Initialize the
21998         GENERATION field as well.
22000 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22002         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22003         Monitor.Enter on the object.
22005 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22007         * threads.c: Enable the wait for running threads when exiting.
22008         * icall.c: Suspend all threads before exiting.
22010 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22012         * assembly.c (mono_assembly_load_reference): Fix warning.
22014 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22016         * threadpool.c: changed the default number of threads per cpu. From now
22017         on, the default will be 20 + (5 * number of cpus) instead of 50.
22019 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22021         * loader.c (mono_method_get_signature_full): Add locking here.
22023 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22025         * appdomain.c: Moved methods for parsing and freeing assembly
22026         names to assembly.c.
22027         * assembly.c, domain-internals.h: Created public methods for parsing
22028         assembly names. Fixed mono_assembly_load_with_partial_name:
22029         it now finds the best match, taking into account the version,
22030         token and culture specified in the partial name. Also return
22031         the latest version if no version information is specified.
22033 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22035         * threadpool.c: replace check for SocketAsyncCall class.
22037 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22039         * threadpool-internals.h:
22040         * Makefile.am: added threadpool-internals.h
22042         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22043         that happen in threadpool threads (tested on MS).
22044         (mono_thread_pool_remove_socket): new function that dispatch any pending
22045         AIO call on a socket that is closing. By now only epoll really needs it,
22046         as select/poll wake up when the socket closes.
22049         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22051 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22053         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22055 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22057         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22059 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22061         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22062         has an abort request, convert it into a suspend request.
22064 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22066         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22067         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22068         is not supported yet.
22070 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22072         * image.c: register assemblies loaded from data (bundles) in the loaded
22073         assemblies hash. Fixes bug #74772.
22075 2005-04-29  Martin Baulig  <martin@ximian.com>
22077         * class.c (mono_type_get_name_recurse): Update to the new naming
22078         schema from the latest .NET 2.x beta2.
22079         (mono_class_setup_vtable_general): If we're a generic instance,
22080         copy the vtable from our generic type definition and inflate all
22081         the methods in it.
22083         * loader.c (find_method): Update to the new naming schema from the
22084         latest .NET 2.x beta2.
22086 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22088         * class.c (mono_class_init): Add a mono_loader_unlock to the
22089         #74734 fix.
22091 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22093         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22094         suspend_all_other_threads () call for the time being, since it can hang.
22096         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22097         the background threads to exit, since it can also hang.
22099         * class.c (mono_class_init): Applied patch from Ankit Jain 
22100         (radical@gmail.com). Avoid pending init errors when a field refers
22101         to a nested class using a typeref. Fixes #74734.
22103         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22104         this for dynamic modules.
22106 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22108         * threads.c: don't wait for threads that are in the process of aborting
22109         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22110         and waiting for background threads to finish. This makes xsp and
22111         mod-mono-server exit without random length delays and/or hangs.
22113 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22115         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22117 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22119         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22120         dynamic types to prevent infinite loops. Fixes #74727.
22122         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22123         ..._is_assignable_to.
22125 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22127         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22129 2005-04-25  Martin Baulig  <martin@ximian.com>
22131         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22133         * domain.c
22134         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22136         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22138         * reflection.c (build_compressed_metadata): Set metadata header
22139         version to 2.0.
22141 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22143         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22144         number into an integral and a decimal part. Fixes #70473.
22146         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22148 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22150         * culture-info-table.h : reflected the latest locale-builder output.
22152 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22154         * threadpool.c: check for SuspendRequested too when deciding if
22155         mono_thread_interruption_checkpoint should be called.
22157 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22159         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22160         * threads.c: remove interruption_mutex and use Interlocked instead. When
22161         suspending all the threads, wait for all the suspended events at once.
22162         If we're shutting down and get an APC that is going to be queued,
22163         call mono_thread_execute_interruption immediately, as the thread might
22164         be sleeping on a pthread condition or mutex.
22166         * icall.c: call mono_runtime_set_shutting_down before suspending the
22167         threads.
22169         Fixes bug #74693. And now xsp is happier when exiting.
22171 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22173         * loader.c (mono_stack_walk): Fix #74690.
22175 2005-04-22  Martin Baulig  <martin@ximian.com>
22177         * mono-debug.h (MonoDebugMethodJitInfo): Added
22178         `MonoDebugMethodJitInfo *jit'.
22180         * mono-debug.c (mono_debug_read_method): Cache the
22181         MonoDebugMethodJitInfo in `address->jit'.
22182         (mono_debug_free_method_jit_info): New public method.
22184 2005-04-22  Martin Baulig  <martin@ximian.com>
22186         * class.c (mono_class_is_assignable_from): Disallow
22187         type parameter -> interface.
22189 2005-04-21  Dick Porter  <dick@ximian.com>
22191         * threads.c (mono_thread_create): Turn an assertion into an error.
22193 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22195         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22196         
22197         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22198         Fix some gcc 4.0 warnings.
22200 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22202         * file-io.c: fix alt dir separator char on unix systems
22203         and cleanup (fixes bug #71214).
22205 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22207         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22208         a call to a remote domain, since the method may be an
22209         interface method in the client domain. This fixes bug #74192.
22211 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22213         * threadpool.c: recv/send are now performed before going back to managed
22214         code to save one transition.
22216 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22218         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22220         * metadata/threadpool.c: removed hack to workaround the bug above.
22222         Fixes bug #74618.
22224 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22226         * reflection.c reflection.h: Fix handling of parameter defaults in
22227         dynamic methods. Also fixes handling of parameter attributes.
22228         Fixes #74609.
22230         * mono-debug.c (mono_debug_close_image): Fix warning.
22232 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22234         * socket-io.h: replaced old unused field with new 'blocking'.
22235         * threadpool.c: restore socket blocking state on windows(tm).
22237 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22239         * icall.c: don't return the codebase in the AssemblyName[] returned by
22240         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22241         * object-internals.h: Removed FIXME (fields were presents) and fixed
22242         versioncompat declaration.
22244 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22246         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22247         not closed, so don't cleanup when it happens.
22249 2005-04-13  Chris Toshok  <toshok@ximian.com>
22251         * mono-debug-debugger.h: change prototype for
22252         mono_debugger_lookup_type.
22254         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22255         this function, although it should probably be named
22256         mono_debugger_init_type.
22258 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22260         * threadpool.c: fix non-AIO case.
22262 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22264         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22265         the built-in profiler to measure just JIT compilation times.
22267 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22269         * threadpool.c: the epollfd might be closed by another thread at
22270         any time, so ignore EBADF at treat it as a "we're closing" sign.
22272 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22274         * threadpool.c: release the semaphores with a count equals to the number
22275         of working threads in both IO and regular pools. Fixed typo that messed
22276         up the count of IO pool threads. Don't initialize the pipe handles if
22277         we're using epoll.
22279 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22281         * threadpool.c: some systems don't like a NULL when deleting the socket
22282         from epoll.
22284 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22286         * threadpool.c: fix semaphore allocation.
22288 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22290         * threadpool.c: added epoll() based implementation for asynchronous IO
22291         that is used instead of the default poll() when available.
22292         It can be disabled by setting MONO_DISABLE_AIO.
22294 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22296         * threadpool.c: windows needs 'closesocket' and instead of returning
22297         0 when the stream is closed while in select, it returns -1. Fixes bug
22298         #74573.
22300 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22302         * class.c (class_compute_field_layout): Fix the regression caused by
22303         the previous try.
22305 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22307         * threadpool.c: separate pool for socket async. IO.
22308         * threadpool.h: mono_max_worker_threads is not a global any more.
22310 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22312         * class.c (class_compute_field_layout): Fix #74549.
22314 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22316         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22317         use 2 connected sockets instead.
22319 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22321         * mono-config.c: Add new entry point for mkbundle
22322         mono_config_parse_memory. 
22324 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22326         * threadpool.c: removed another unused function.
22328 2005-04-08  Ankit Jain  <radical@corewars.org>
22330         * reflection.c (get_default_param_value_blobs): Add 'types'
22331         parameter to get the types encoded in the constant table.
22332         (mono_param_get_objects): Use the type from the constant table,
22333         not the type of the parameter, when creating default values.
22334         Handle null default values correctly.
22336 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22338         * file-io.c:
22339         * file-io.h:
22340         * threadpool.c:
22341         * threadpool.h:
22342         * icall.c:
22343         * socket-io.c: removed dead code for async IO.
22345 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22347         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22349         * threadpool.c: intercept socket async. calls and pass them to a thread
22350         that is polling and dispatching the job items to the threadpool as
22351         socket become ready. Fixes bugs #71217, #71933.
22353         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22354         between char and short/ushort arrays.
22356         * socket-io.c: remove dead code.
22358 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22360         * locales.c,
22361           icall.c : removed InternalToUpper_Comp() and
22362           InternalToLower_Comp().
22364 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22366         * char-conversions.h : The tables were incorrectly generated. Should
22367           be generated against invariant culture.
22369 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22371         * object.c (mono_runtime_invoke_array): Fix return value when 
22372         passing pre-created valuetype objects to ctors.
22374         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22375         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22376         Fixes #74338.
22378 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22380         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22381         only used with --security and hides the wrong corlib version error.
22383 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22385         * class.c: Changed mono_class_name_from_token so that types
22386         outside of a namespace don't have an initial period.  Improved
22387         the g_warning message used in _mono_class_get when loading
22388         fails.
22389         * assembly.c: In mono_assembly_load_reference, when an assembly
22390         can't be found, "No such file or directory" is misleading and
22391         unhelpful because a few paths were checked for the presence of
22392         the assembly.  When that happens (ENOENT), display a nicer
22393         message indicating the directories that were searched.  In all
22394         cases, the warning is made easier to read for non-hackers.
22396 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22398         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22399         project/solution.
22400         * appdomain.h|domain.c: Removed inline from functions.
22401         * appdomain.c: Reduced warnings when compiling on windows.
22402         * icall.c: Fixed output_debug declaration to gunichar2*.
22403         * mono-config.c: Reduced warnings when compiling on windows.
22404         * rand.c: Added missing "windows.h". Added missing return value.
22405         * rawbuffer.c: Added missing winsock2.h for windows.
22406         * sysmath.h: Added mono-compiler.h header to allow/ease 
22407         compilation with non-GCC compilers.
22408         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22409         Removed cast warnings.
22411         Adapted from the work of J Lothian (for VC6).
22413 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22415         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22416         from default_path.
22418 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22420         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22421         the 2.0 profile.
22423 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22425         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22426         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22427         stuff, and it would probably use $(prefix)/share rather than
22428         $(prefix)/lib.
22430 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22432         * console-io.c: added 2 includes that might be missing.
22434 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22436         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22437         profile.
22439         * reflection.c (create_custom_attr): Allocate the params array using
22440         alloca so it gets GC tracking.
22442 2005-03-23  Chris Toshok  <toshok@ximian.com>
22444         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22445         out some spew.
22447 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22449         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22450         changes to pick up any changes in prefix, etc.
22452 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22454         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22455         
22456         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22457         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22459 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22461         * class-internals.h object-internals.h class.c reflection.c: Extend the
22462         mono_lookup_dynamic_token () function to return the class of the
22463         token as well. 
22465         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22466         well. Fixes #73848.
22468 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22470         * security-manager.c: Skip inheritance checks for intra-corlib
22471         class inheritance and method overrides. This skips a lot of checks
22472         and (anyway) permissions cannot work until corlib is loaded.
22474 2005-03-23  Martin Baulig  <martin@ximian.com>
22476         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22477         MONO_TYPE_GENERICINST.  
22479 2005-03-23  Martin Baulig  <martin@ximian.com>
22481         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22483 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22485         * class.c: added locking comments to some functions.
22486         Cache the interface offsets arrays (saves about 20 KB
22487         of runtime memory in a typical app).
22488         Reduce the time overhead in mono_class_setup_supertypes ().
22490 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22492         * icall.c: speedup and fix leaks in GetMethodsByName and
22493         GetPropertiesByName.
22495 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22497         * reflection.c: some locking fixes.
22499 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22501         * metadata.c: added missing break in case statement.
22503 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22505         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22506         typedbyref return values. Fixes #73941.
22508 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22510         * security-manager.c|h: Added demandunmanaged method and 
22511         suppressunmanagedcodesecurity class to MonoSecurityManager.
22512         Renamed aptc class to allowpartiallytrustedcallers.
22514 2005-03-17  Martin Baulig  <martin@ximian.com>
22516         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22518 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22520         * file-io.c: disabled file async. IO using aio_*. It uses the
22521         threadpool now. Workaround for bug #73718.
22523 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22525         * assembly.h, mono-config.c: added code to deal with bundled configs
22526         for bundled assemblies.
22528 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22530         * *.c, private.h: cleanup, removing old private.h header file.
22532 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22534         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22535         and throw_on_unmappable_char attributes.
22537 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22539         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22540         _ProcessName_internal.
22542 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22544         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22545         #73631.
22547         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22548         are no longer used.
22550 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22552         * object.c (compute_class_bitmap): Add support for generics. Fixes
22553         #73527.
22555 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22557         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22559 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22561         * filewatcher.c: commented out the code for windows watcher, as we don't
22562         use it (we use the managed implementation instead).
22564 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22566         * object-internals.h (MonoThread): Remove 'unused1' field.
22568         * appdomain.c: Bump corlib version.
22570         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22572         * reflection.c (mono_reflection_create_runtime_class): Remove the
22573         AssemblyBuilder.Save optimization since it causes too many problems.
22575 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22577         * exception.c|h: Added mono_get_exception_reflection_type_load to
22578         create a ReflectionTypeLoadException object.
22579         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22580         to return NULL is a InheritanceDemand fails during reflection. Updated
22581         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22582         ReflectionTypeLoadException if an InheritanceDemand fails during 
22583         reflection. Added icall mapping for GetLinkDemandSecurity.
22584         * security-manager.c|h: Added ves_icall_System_Security_
22585         SecurityManager_GetLinkDemandSecurity internal call to return the
22586         class and methods permissions set for a LinkDemand. Removed unused
22587         fields in MonoSecurityManager.
22589 2005-03-10  Martin Baulig  <martin@ximian.com>
22591         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22592         it's a generic instance.
22594 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22596         * reflection.c (mono_get_object_from_blob): Applied patch from
22597         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22599         * class.c (mono_class_is_assignable_from): Another try at fixing 
22600         #73469 without breaking anything.
22602 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22604         * class.c: (mono_class_is_assignable_from): Revert the last changes
22605         since they don't work with generics.
22606         
22607         * class.c (mono_class_is_assignable_from): Fix build bustage.
22609         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22610         the managed IsAssignableFrom method. Fixes #73469.
22612         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22613         function.
22615 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22617         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22618         memory when the remoting callback does not sets the out arguments.
22619         Fixes #73007.
22621         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22622         by mistake.
22624         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22626         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22628         * appdomain.c: Bump corlib version.
22630 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22632         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22633         function.
22635         * threads.c (mono_thread_attach): Detect threads which are not started
22636         by the GC pthread wrappers.
22638 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22640         * icall.c: Added new icall for RNG.
22641         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22642         single handle on Linux to access /dev/urandom and fix #73183.
22644 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22646         * object.c: setting the new vtable in a transparent proxy object must
22647         not change the GC descriptor.
22649 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22651         * object.c: fixed compilation without GCJ support.
22652         * reflection.c: for runtime-created types ensure klass->has_references
22653         is correct (bug #73215).
22655 2005-03-02  Martin Baulig  <martin@ximian.com>
22657         * class.c (mono_class_is_assignable_from): Make this work if
22658         `oklass' is a generic instance; fixes #72831.
22660 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22662         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22663         with hasthis set.
22664         
22665         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22667         * marshal.c: Reorganize native->managed marshalling code to also use
22668         the emit_marshal_... functions.
22670 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22672         * object.c: typed allocs have issues with bitmap sizes > 30,
22673         so check for max_set >= 30.
22675 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22677         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22678         managed code. Fixes #73012.
22680         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22682         * metadata.c reflection.c: Load/Emit elem_mult as well.
22683         
22684         * metadata.h (MonoMarshalSpec): Add comment.
22686         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22688         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22689         num_elem to -1 if not given.
22691         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22693         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22694         given values.
22696 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22698         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22700 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22702         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22704         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22706 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22708         * object.c: generalized the reference bitmap creation
22709         and added hooks for the new GC.
22710         * class-internals.c: removed the gc_bitmap field from MonoClass.
22712 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22714         * domain.c: help the compiler to produce better code
22715         in mono_jit_info_table_find ().
22717 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22719         * object.c: make all allocations look typed.
22721 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22723         * socket-io.c: load Mono.Posix if it's not loaded already
22724         (fixes bug#73033).
22726 2005-02-24  Martin Baulig  <martin@ximian.com>
22728         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22729         * reflection.c (dup_type): Likewise.
22731 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22733         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22734         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22736 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22738         * domain.c, threads.c, object-internals.h: make the critical thread
22739         local vars use the fast access mode (even when we're compiled in
22740         a lib). Provide accessors to be used by the jit during codegen.
22742 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22744         * appdomain.c: Changed hook functios behavior to include
22745         support for the reflection only assemblies. Some icalls were changed
22746         to support the mentioned assemblies too. Signatures of static methods
22747         try_assembly_resolve and real_load now have an additional parameter:
22748         refonly.
22750         * assembly.c: General changes to mono_assembly_ methods to support
22751         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22752         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22753         suffix, to support an additional gbool parameter to specify whether
22754         the assembli is reflection only or not. Created some new hook functions 
22755         to add support for reflection only assemblies. Signatures of static 
22756         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
22757         have now an additional parameter: refonly.
22759         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
22760         indicating whether the assembly is reflection only or not.
22762         * exception.c: Add mono_get_exception_invalid_operation.
22764         * icall.c: Throw an InvalidOperationException when trying to invoke
22765         a property/method/event, or trying to set/get the value of a field.
22766         Also add an icall to retrieve the ref_only flag to the
22767         MonoReflectionAssembly.
22769 2005-02-23  Chris Toshok  <toshok@ximian.com>
22771         Part of fix for #72827.
22772         * mono-debug.c (mono_debug_add_method): add lexical block data to
22773         the info we write.  Kind of a hack at the moment - we copy the
22774         lexical block info from the MonoDebugMethodInfo to the
22775         MonoDebugMethodJitInfo here, before writing it.
22776         (mono_debug_read_method): read the lexical block info.
22778         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
22780         * debug-mono-symfile.h: add lexical block support.
22782         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
22783         support.
22785 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22787         * loader.c (mono_lookup_pinvoke_call): Fix warning.
22789         * object.c (mono_runtime_free_method): Call mono_free_method () and
22790         put the TODOs there.
22792         * loader.c (mono_free_method): Free up most memory allocated for 
22793         dynamic methods.
22795 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22797         * reflection.c: properly flag a Type argument to a
22798         named custom attr value (bug #72248).
22800 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22802         * reflection.c: reduce code duplication in named custom
22803         attribute encoding.
22805 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
22807         * reflection.c: properly encode custom attrs of type object
22808         (bug #72649).
22810 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22812         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
22814 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
22816         * socket-io.c: load System.dll if it's not loaded already
22817         (bug #72850 and #70477).
22819 2005-02-21  Martin Baulig  <martin@ximian.com>
22821         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22822         generic instances.
22824 2005-02-21  Martin Baulig  <martin@ximian.com>
22826         * reflection.c (mono_image_build_metadata): We also need to
22827         "fixup" the MethodImpl table after we computed the final method
22828         indices.  Call fixup_methodimpl() to do that.
22829         (fixup_methodimpl): New private method.
22831 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22833         * assembly.c: special case mscorlib.dll (bug#72536),
22834         patch from Carlos Alberto Cortez.
22836 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
22838         * threads-types.h threads.c: Fix build bustage.
22840         * threads.c: Use a union for long<->double conversions.
22842         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
22843         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
22845         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
22846         containing the checkpoint call with NOT_TAKEN.
22847         
22848         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
22849         checkpoint before pushing the arguments, so they won't have to be
22850         spilled to stack.
22852 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22854         * domain.c, assembly.c, domain-internals.h: make some data
22855         const and relocation-free.
22857 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
22859         * object.c, appdomain.c, class-internals.h: introduce the
22860         MonoClassRuntimeInfo structure to hold the info needed to
22861         use a class at runtime. Made mono_class_vtable() lock-free
22862         for all the appdomains.
22864 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
22866         * metadata-internals.h, image.c: introduce a per-image mempool to
22867         be used for memory that has the same lifetime as the image.
22869 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
22871         * domain.c: In mono_init_internal(), instead of selecting the first
22872         runtime version supported by an executable, get a list of all
22873         supported versions and select the one for which an mscorlib exists
22874         (since even if the runtime supports a given version, it doesn't mean
22875         that the framework for that version is installed).
22876         Modified get_runtimes_from_exe to support this behavior.
22877         In supported_runtimes, added information about additional system
22878         assembly versions.
22879         
22880         * assembly.c: Added support for more than one system assembly version
22881         per runtime version. Updated the assembly list.
22882         In mono_assembly_remap_version, removed the initial version check,
22883         since we don't know to which version we need to compare until we
22884         get the version set on which the assembly is based.
22885         Moved the code for loading corlib into the new method
22886         mono_assembly_load_corlib(), so it can be used by the initialization
22887         code.
22888         
22889         * domain-internals.h: Updated data structures and added declaration
22890         for mono_assembly_load_corlib.
22892 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22894         * reflection.c (resolve_object): Fix the creation of the signature in 
22895         the SignatureHelper case.
22897         * assembly.c (mono_assembly_remap_version): Fix binary search.
22898         
22899 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
22901         * class.c: Added inheritance check when a method is overloaded (from a
22902         virtual method or when implementing an interface) and when a class is
22903         inherited. Added functions to set a failure for a class and to 
22904         retreive the exception from a failure.
22905         * class-internals.h: Added fields to MonoClass to keep the exception
22906         information status for inheritance (or other exceptions) to be thrown
22907         later (i.e. not at load time).
22908         * object.c: Throw the inheritance SecurityException when a type is to 
22909         be created with either class or method inheritance violations.
22910         * reflection.c|h: Fix when getting declsec from a class. Removed 
22911         unrequired code for class. Improved sanity in parameter naming.
22912         * security-manager.c|h: Added functions to check for class and method
22913         inheritance.
22915 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22917         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
22918         and has_finalize in dynamic types as well.
22920 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
22922         * culture-info-table.h : fixed currency format for en-GB (and so on).
22924 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
22926         * gc.c: ensure the GC handles never have 0 as a value.
22928 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22930         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
22931         a pointer to a struct to unmanaged code. Fixes #72625.
22933 2005-02-16  Martin Baulig  <martin@ximian.com>
22935         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
22937 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22939         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
22941 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22943         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
22945         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
22946         UnmanagedFunctionPointerAttribute, use it for determining calling convention
22947         etc. Fixes #71471.
22949         * reflection.c (mono_custom_attrs_get_attr): New helper function.
22951         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
22953 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
22955         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
22956         changes to make the current context a field in MonoThread.
22958 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22960         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
22961         the last change.
22962         
22963         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
22964         extracted from mono_marshal_get_native_wrapper.
22966         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
22967         to create wrappers around native functions.
22969         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
22970         delegates for arbitrary function pointers. Fixes #71472.
22972 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22974         * threads.c: cleaned up the code a little.
22976 2005-02-15  Martin Baulig  <martin@ximian.com>
22978         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
22979         the data table.
22981         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
22982         allocate larger chunks if needed.
22984 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22986         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
22987         in by mistake.
22989 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
22991         * domain.c: keep the domains in an array and ensure the domain ids
22992         are kept small, so they can be used as indexes to domain-specific data
22993         with a small memory overhead.
22995 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22997         * icall.c: Handle byref types in Type icalls. Fixes #72544.
22999 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23001         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23003 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23005         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23007         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23008         values.
23010         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23011         
23012 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23014         * domain-internals.h: add the hashtable here.
23016         * class-internals.h: Remove `info' from MonoMethod
23018         * domain.c: Add a new hashtable, jit_trampoline_hash
23020 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23022         * object.c: don't set the value of static fields
23023         (fixes bug#72494).
23025 2005-02-11  Martin Baulig  <martin@ximian.com>
23027         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23028         (mono_debug_add_method): Silently ignore the method if it's too big.
23029         (mono_debug_add_type): Likewise.
23031 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23033         * threads.c, appdomain.c: remove #ifdefs from the code.
23035 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23037         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23038         common security informations. This allows us to stay in unmanaged code
23039         when doing LinkDemand and it's special cases (except for the first 
23040         time for initialization). The flags a very much used with --security.
23041         * reflection.c|h: Added code to get declarative security attributes 
23042         for LinkDemand and InheritanceDemand. This required to refactor the
23043         existing code for Demand.
23044         * security-manager.c|h: Added new method fields for the special cases
23045         of LinkDemand.
23047 2005-02-10  Martin Baulig  <martin@ximian.com>
23049         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23050         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23052 2005-02-10  Martin Baulig  <martin@ximian.com>
23054         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23055         debugging code; this is almost a complete rewrite.
23057         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23059 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23061         * domain.c, object.h: expose mono_string_equal () and 
23062         mono_string_hash ().
23063         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23064         it's implemented in managed code.
23066 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23068         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23069         lo leak objects between appdomains.
23071 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23073         * assembly.c: old compilers compilation fix from 
23074         robertj@gmx.net (Robert Jordan).
23076 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23078         * class-internals.h: Little reminder for the future.
23080         * debug-helpers.c: Fix up wrapper_type_names
23082 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23084         * image.c, metadata-internals.h: when loading an image from a file,
23085         mmap all of it and use the same codepaths as when using a
23086         in-memory image: the code is simpler and we use less memory
23087         (both writable and readonly).
23089 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23091         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23092         API to alloc runtime data structures that need to be tracked by the
23093         GC and contain pointers.
23094         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23095         make the code more readable and eventually use a different GC.
23097 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23099         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23100         for out arguments.
23101         
23102 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23104         * object.c: In release_type_locks(), don't release the cctor lock
23105         if it has already been released. This fixes a crash in the
23106         thread5 test.
23108 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23110         * gc.c, marshal.c, icall.c: register a delegate for finalization
23111         only when the native function pointer has been allocated for it.
23113 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23115         * object.c: cleaned up some code, allocate objects that are
23116         pointer free with the atomic malloc variant. Allocate memory
23117         for static data from the mempool if it's pointer-free.
23118         Allocate the bounds array at the end of the array data, when needed.
23119         * object-internals.h, object.h: move a private function in a private
23120         header.
23121         * class.c: handle missing case in tracking references in fields.
23123 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23125         * class.c, class-internals.h: keep track if a type has
23126         reference fields in either the instance or static fields.
23128 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23130         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23131         and renamed to MonoRuntimeInfo. Added fields to store the expected
23132         framework assembly version. Changed mono_get_framework_version and
23133         mono_get_runtime_version for a single mono_get_runtime_info method.
23134         
23135         * assembly.c: Added method to remap system assembly versions to the
23136         current executing runtime version. Removed old mapping code.
23137         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23138         
23139         * icall.c, reflection.c: Track api changes.
23141 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23143         * loader.c (method_from_memberref): Improve error reporting,
23144         produce the class name instead of the typeref/typedef index. 
23146 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23148         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23150 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23152         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23153         stdcall and charset name mangling.  Reorganize the code and add
23154         some tracing stuff.
23156 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23158         * monodiet.c: More iters!
23160         * marshal.c: Iter usage.
23162         * icall.c: Iter usage.
23164         * object.c: Use iters.
23166         * debug-helpers.c: More iters
23168 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23170         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23171         under win32.
23173 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23175         * mono-debug-debugger.c: use iters
23177         * class.c, class-internals.h: mono_class_setup_events is static
23178         now
23180         * All callers: use iters
23182 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23184         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23185         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23187 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23189         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23191         * marshal.h: Add prototypes for ldfld/stfld_remote.
23193         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23194         this is called during startup.
23195         
23196 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23198         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23199         MonoThreadsSync struct private in monitor.c. Changed the way
23200         MonoThreadsSync is allocated so it's faster and there is no
23201         need to keep track of it with a finalizer and it uses less memory.
23202         This also finally allows us to allocate mono objects as ptrfree when
23203         there are no reference fields.
23205 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23207         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23208         disappearing link to the GC interface and use them to simplify
23209         the gchandles code.
23211 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23213         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23214         stfld_remote which call mono_load/store_field_new. This allows methods
23215         calling ldfld/stfld wrappers to be AOTed.
23217         * console-io.c: Include sys/filio.h under solaris.
23218         
23219         * console-io.c: Include curses.h if needed correctly.
23221 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23222         
23223         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23224         method->klass as well.
23226         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23228         * class.c (mono_class_init): Switch on lazy initialization of 
23229         methods.
23231         * class.c (mono_class_get_finalizer): Handle the case when the 
23232         finalizer is inherited.
23234 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23236         * console-io.c: <curses.h> is needed by term.h on solaris.
23238 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23240         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23241         mono_class_setup_properties where possible. Remove this ftn from
23242         the header file, and make it static.
23244 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23246         * loader.c: Add missing setup_... call.
23248         * class.c: Add missing setup_... calls.
23250         * class.c (mono_class_init): Switch on lazy initialization of 
23251         the generic vtable.
23252         
23253         * class.c (mono_class_init): Fix generics broken by the recent changes.
23255         * monodiet.c (handle_type): Add missing setup_... calls.
23257         * class.c: Back out garbage in previous patch.
23258         
23259         * class.c: Add missing setup_... calls.
23261         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23262         mono_class_setup_methods () if possible.
23264         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23266         * class-internals.h (MonoCachedClassInfo): New structure.
23268         * class.c: Initialize properties and events fields of MonoClass lazily.
23270         * class.c: Add infrastructure for lazily initializing the methods and
23271         vtable fields of MonoClass. Not yet used.
23273         * class.c (mono_class_get_finalizer): New helper function.
23275         * class.c: Add infrastructure for loading some class related data from
23276         an AOT file.
23278         * object.c: Add infrastructure for initializing the vtable from data
23279         in the AOT file.
23281         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23283         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23284         appropriate initialization function before accessing parts of the
23285         MonoClass structure.
23287         * marshal.c: Fix warnings.
23288         
23289         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23291         * mono-debug-debugger.c (get_exception_message): Use 
23292         mono_class_get_method_from_name_flags ().
23294 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23296         * reflection.c, appdomain.c: Replace a few manual searches that
23297         Zoltan missed. (Paolo approved this part of my initial patch).
23299 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23301         * profiler.c: disable recording statistical events at report time.
23303 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23305         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23306         to byteswap arrays of enum values, too (bug #72080).
23308 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23310         * appdomain.c (set_domain_search_path): Allow this to be called if
23311         domain->setup is not yet set.
23313         * loader.c (mono_method_get_index): New helper function.
23315         * loader.c reflection.c: Use mono_method_get_index ().
23317         * class.c (mono_class_get_method_from_name_flags): New helper method.
23319         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23320         this.
23322         * class.c (mono_class_get_cctor): New helper method.
23324         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23325         mono_class_get_method () to look up methods.
23327 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23329         * console-io.c: Fix the build, this should work on Windows.
23331 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23333         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23334         be set to null to keep things valid
23336 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23338         * icall.c: added Console 2.0 icalls.
23339         * Makefile.am: added console-io.[ch]
23340         * console-io.[ch]: internal calls for Console 2.0 API.
23342 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23344         * class.c: make sure we consider all the interfaces
23345         when calculating max_interface_id (bug found by
23346         Jeroen Frijters running ikvm).
23348 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23350         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23351         valuetype fields to null.
23353         * object.c (set_value): Ditto. Fixes #71669.    
23355 2005-01-31  Martin Baulig  <martin@ximian.com>
23357         * metadata.c (mono_metadata_has_generic_params): New public
23358         function; checks whether something is a generic method.
23360 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23362         * appdomain.c: fix infinite recursion when adding assemblies.
23364 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23366         * object.c: Fix small typo to return all items for Environment.
23367         GetCommandLineArgs.
23369 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23371         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23372         reflection.c: more domain and assembly-unload related fixes
23373         and memory leaks plugs.
23375 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23377         * 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.
23379 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23381         * loader.c (mono_method_signature): Make this method lazy
23382         (mono_get_method_from_token): Don't computate the signature here.
23384         Doing this saves quite a bit of memory. I got 90 kb on starting up
23385         monodoc. It should also save some disk reads on startup.
23387         * *: MonoMethod->signature might be NULL now. You *MUST* use
23388         mono_method_signature.
23390 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23392         * object.c (mono_runtime_get_main_args): Return an array from the
23393         current domain here. Fixes #71938.
23395 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23397         * monitor.c: formatting changes to comply with the
23398         mono coding style and remove #ifdefs from the code.
23400 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23402         * metadata.c, private.h: remove some unneeded data
23403         and use a more compact representation for table schemas.
23405 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23407         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23408         to get a better distribution in hash tables.
23409         * *.c: use mono_aligned_addr_hash() where appropriate.
23410         * assembly.c: make var static.
23412 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23414         * domain-internals.h: Put MonoJitInfo on a diet.
23416         * domain.c: Fix a warning.
23418 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23420         * gc.c: rework the gc handles code to reuse handles
23421         when freed.
23423 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23425         * domain.c: fixed long standing bug in mono_string_equal() which
23426         was brought to light with the ldstr changes.
23428 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23430         * reflection.c: Remove warning by adding missing include for marshal.h
23432 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23434         * domain.c, object.c: change the ldstr_table to hold
23435         MonoString* as keys: makes the runtime isinterned lookup
23436         faster and simplifies memory management.
23438 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23440         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23441         possible to add imperative security checks before calling the icall.
23442         * reflection.c: Return security attributes on the original MonoMethod
23443         (and not the wrapped one). This fix permissions on icalls.
23445 2005-01-25  Dick Porter  <dick@ximian.com>
23447         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23448         the check for mktime() support actually test the mktime() return
23449         value.  "Fixes" bug 71682, though the output is still different to
23450         MS.
23452 2005-01-25  Martin Baulig  <martin@ximian.com>
23454         * class.c (mono_class_is_assignable_from): Make this work for
23455         generic instances.
23457 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23459         * marshal.c (mono_string_utf8_to_builder)
23460         (mono_string_builder_to_utf16): We might not have ownership of the
23461         string. In thise case, we need to create a new buffer.
23463         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23464         be null, in which case, use the default capacity.
23466 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23468         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23469         GC events to the profiler.
23471 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23473         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23474         if you don't want the GC to run.
23476 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23478         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23479         start providing a GC API and keeping different implementations in
23480         their own file.
23481         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23483 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23485         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23486         mmap rather than allocating a huge buffer.
23487         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23488         above.
23490 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23492         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23493         and CheckExecutionRights.
23494         * reflection.c|h: Keep the index of the declarative security to be 
23495         used, instead of the pointer, when AOT compiler is used. Also add 
23496         class initialization when requesting demands.
23497         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23498         CheckExecutionRights. Both properties are now FALSE by default, and
23499         unmodifiable, unless the --security option is used.
23501 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23503         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23504         reflection.c: properly refcount images and assemblies, many leaks fixed.
23506 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23508         * threadpool.c: increase the timeout for threads in the thread pool to
23509         10s.  Fixes bug #67159.
23511 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23513         * class-internals.h: Sun's compiler insists on explicit
23514         signed on bit fields to handle then correctly.
23516 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23518         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23519         Make the size of the array fit only the number of invalid path
23520         chars that we have.
23522         * class.c (_mono_class_get): Improve the error reporting when a
23523         class referenced is not found, to assist debugging. 
23525 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23527         * threads.c: fix off-by-one error.
23528         * domain.c: free data allocated in the domain.
23530 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23532         * reflection.c (mono_method_body_get_object): Fill out exception info
23533         as well.
23535         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23536         structure.
23537         
23538 2005-01-19  Martin Baulig  <martin@ximian.com>
23540         * loader.c (mono_get_method_constrained): Make this work again.
23542 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23544         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23545         guint16 to match the managed side.
23547         * reflection.c (mono_reflection_body_get_object): Fill out local
23548         variables array.
23550         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23551         as well.
23553         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23554         'local_var_sig_token'.
23556 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23558         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23559         System.Drawing.
23561         * reflection.c (mono_method_body_get_object): Handle abstract and
23562         runtime methods.
23564 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23566         * marshal.c, loader.c, class-internals.h, reflection.c:
23567         store the emthod data for a wrapper in an array instead of a list.
23569 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23571         * marshal.c: change the code to allocate memory more
23572         conservatively for method wrappers.
23574 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23576         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23577         fields from MonoClass to the marshal info structure where they belong.
23579 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23581         * class.c, object.c, class-internals.h, marshal.c: rearrange
23582         some fields and tweak some types to lower memory usage.
23584 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23586         * threads.c (signal_thread_state_change): Handle the case when the
23587         target thread is the current thread.
23589         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23591         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23592         emit_ptr_to_object_conv. 
23594         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23595         marshalling. Fixes #71352.
23597 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23599         * metadata.h, blob.h: move table enum to blob.h so it can be included
23600         in any header.
23601         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23602         cut the size of MonoImage/MonoDynamicImage.
23604 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23606         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23608 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23610         * reflection.c, reflection.h, icall.c: add a function to check
23611         if an attribute type is defined for a metadata object.
23613 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23615         * object-internals.h: Added some needed fields from StringBuilder class.
23616         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23618 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23620         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23621         threads before shutting down the runtime.
23623         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23625 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23627         * object-internal.h, threads.c: implement stacksize and 
23628         parameterized thread start functionality (requires
23629         matching corlib). Marked broken code for later removal.
23631 2005-01-12  Martin Baulig  <martin@ximian.com>
23633         * class-internals.h (MonoGenericClass): Moved the `initialized'
23634         flag to MonoDynamicGenericClass, removed `init_pending'.
23635         (MonoGenericInst): Added `is_reference' flag.
23637 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23639         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23640         inside the MSDOS header. Fixes #71201.
23642         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23643         gc thread.
23644         (mono_domain_finalize): Ditto.
23646 2005-01-12  Martin Baulig  <martin@ximian.com>
23648         * class.c (mono_get_shared_generic_class): Use the cache for
23649         non-dynamic generic classes.
23651         * class-internals.h (mono_class_create_generic_2): Removed
23652         function prototype, this function is now static inside class.c.
23654         * class.c (mono_class_create_generic_2): Made this static, only
23655         call it from mono_class_init() and mono_class_setup_parent().
23656         (collect_implemented_interfaces_aux): Call mono_class_init() on
23657         the interfaces we collect.
23658         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23660 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23662         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23663         it a real thread handle.
23665         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23666         MonoJitExceptionInfo, since each catch clause needs its own variable.
23667         
23668 2005-01-11  Dick Porter  <dick@ximian.com>
23670         * image.c (mono_pe_file_open): New variant on mono_image_open()
23671         that does not set up the CLI metadata; used for FileVersionInfo so
23672         it can get the data for windows binaries too.
23673         
23674         * process.c (process_read_string_block): Don't read off the end of
23675         the StringTable block.
23677         These both fix bug 70766.
23679 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23681         * gc.c: set some fields to NULL at GC cleanup time.
23682         * threads.c: if we quit the main thread, call exit ().
23684 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23686         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23688 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23690         * threads.h, threads.c, object.c: added accessor and settor for
23691         main_thread. Handle it specially when exiting from it: wait
23692         for other foreground threads to exit.
23694 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23696         * process.c, verify.c: remove some bloat.
23698 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23700         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23701         the calling convention to cdecl under win32.
23703 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23705         * object.c (mono_object_get_size): New function to get the size of
23706         an object instance.
23708         * profiler.c (simple_allocation): Use above.
23710 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23712         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23713         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23714         get an appdomain by it's id and we can't assume the root's id is 0).
23715         * domain-internals.h: Change the function prototype to match.
23716         * icall.c: Change the icall table for AppDomain.
23718 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23720         * locales.c (string_invariant_compare_char): Only compute
23721         GUnicodeTypes in the case where we need them.  Test for ordinality
23722         first and return if so.
23724         From the commit:
23726                 /*
23727                  * FIXME: here we must use the information from c1type and c2type
23728                  * to find out the proper collation, even on the InvariantCulture, the
23729                  * sorting is not done by computing the unicode values, but their
23730                  * actual sort order.
23731                  */
23733 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23735         * loader.c: for P/Invoke methods, allow the "Internal" shared
23736         library name to refer to the calling process symbol namespace.
23738 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23740         * Makefile.am: Add the security manager to the build.
23741         * security-manager.c|h: New. Initialization of the security manager.
23743 2005-01-07  Dick Porter  <dick@ximian.com>
23745         * threads.c: 
23746         * monitor.c: Update thread state during Monitor and WaitHandle
23747         waits.  Fixes bug 71031.
23749 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23751         * reflection.c (property_encode_signature): Correctly handle when the
23752         property has no methods.
23754 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23756         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
23757         
23758         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
23759         fields from mb, not rmb. Fixes #71017.
23761         * marshal.c (emit_ptr_to_str_conv): Add support for 
23762         ByValTStr -> string conversion. Fixes #71015.
23764         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
23766         * mempool.c (mono_mempool_contains_addr): New helper function.
23768 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23770         * metadata.c (mono_metadata_compute_size): Fix size calculation of
23771         HasSematics encoded fields.
23772         
23773         * metadata.c (mono_type_to_unmanaged): Improve error message for 
23774         invalid string marshalling.
23776         * metadata.c: Fix warnings.
23777         
23778 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23780         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
23781         profiler support.
23783 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23785         * domain.c object.c domain-internals.h: Revert part of r38077 since the
23786         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
23787         tests.
23789 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
23791         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
23792         so methods containing these can be AOTed.
23794 2005-01-03  Martin Baulig  <martin@ximian.com>
23796         * loader.c (find_method): Removed the hack for generic instances.
23797         (method_from_memberref): If our parent is a generic instance, pass
23798         its generic type definition to find_method() and then inflate the
23799         method.
23800         (mono_get_method_constrained): Pass the generic type definition to
23801         find_method() and inflate the method later.
23803         * class-internals.h (MonoStats): Added `generic_class_count'.
23805         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
23806         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
23808         * reflection.c (mono_custom_attrs_from_params): Don't ignore
23809         generic type definitions.
23811 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
23813         * loader.c icall.c: Fix warnings.
23815 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
23817         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
23818         blittable types. Fixes #70864.
23820 2004-12-29  Martin Baulig  <martin@ximian.com>
23822         * icall.c
23823         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
23825         * reflection.c (mono_method_get_object): Create a
23826         "System.Reflection.MonoGenericMethod" for inflated methods; don't
23827         call mono_get_inflated_method().
23829         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
23831 2004-12-27  Martin Baulig  <martin@ximian.com>
23833         * class-internals.h (MonoMethod): Added `is_inflated' flag.
23834         (MonoMethodInflated): Added `inflated' field.
23836         * class.c (mono_class_inflate_generic_method): Don't really
23837         inflate the method here; just set the `is_inflated' flag in the
23838         MonoMethod.
23839         (mono_class_get_inflated_method): Actually inflate the method here
23840         if it's not already inflated; we use the MonoMethodInflated's new
23841         `inflated' field as a cache.
23843 2004-12-26  Martin Baulig  <martin@ximian.com>
23845         * class.c
23846         (inflate_generic_class): Moved some code out of inflate_generic_type().
23847         (mono_class_inflate_generic_method): If we're already inflated,
23848         inflate the context and use the declaring method; ie. make sure
23849         the declaring method of an inflated method is always the generic
23850         method definition.
23851         (mono_class_create_from_typedef): Create
23852         `class->generic_container->context->gclass'.
23854 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
23856         * metadata-internals.h, marshal.c, reflection.c: More
23857         MonoGHashTable->GHashTable.
23859         * domain-internals.h, class.c: Change MonoGHashTable's into
23860         GHashTables for some cases where no gc stuff is used
23862         All users: update apis
23864 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
23866         * metadata.c (builtin_types): Make this `const'. Makes this get
23867         put into the shareable section.
23868         (mono_metadata_init): Casts to make gcc happy.
23870 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
23872         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
23874 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
23876         * icall.c: Added an internal call to retrieve the position and length
23877         of assembly-level declarative security attributes (RequestMinimum, 
23878         RequestOptional and RequestRefuse). This is used by the Assembly class
23879         to re-create the corresponding permission sets.
23881 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
23883         * marshal.c: fix the stelemref wrapper to be type correct
23884         (and faster).
23886 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
23888         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
23889         to do key & 0x7fffffff. Hashtable already does this. It just
23890         results in longer code.
23892 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
23894         * appdomain.c: Bump corlib version.
23895         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
23896         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
23897         * reflection.c|h: Add functions to get declarative security infos
23898         (blob position and length) for assemblies, classes and methods.
23900 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
23902         * reflection.c: sort the constant table (bug #70693).
23904 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
23906         * object-internals.h, threads.c, domain.c: add accessors for
23907         the MonoThread and MonoDomain tls keys.
23909 2004-12-18  Martin Baulig  <martin@ximian.com>
23911         * class.c (inflate_generic_type): If we're inflating a generic
23912         instance, set `ngclass->context->container = context->container';
23913         ie. the container we inflated into.
23915         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23916         inflate_generic_type() changes.
23918 2004-12-17  Martin Baulig  <martin@ximian.com>
23920         * class-internals.h
23921         (MonoGenericClass): Replaced `MonoType *generic_type' with
23922         `MonoClass *generic_class'.  Removed `dynamic_info'; if
23923         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
23924         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
23926 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
23928         * exception.c (mono_exception_from_token): New helper function.
23930 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
23932         * assembly.c (mono_assembly_load_with_partial_name): Call 
23933         mono_assembly_loaded before invoking the preload hooks. Fixes
23934         #70564.
23936         * object-internals.h (MonoThread): Change culture_info and 
23937         ui_culture_info into an array.
23939         * threads.c: Cache culture info objects from more than one appdomain.
23941         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
23942         current UI culture.
23944 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
23946         * threads.h threads.c appdomain.c: Clear the culture_info field of
23947         all threads during unloading if they point to an object in the dying
23948         appdomain.
23950 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
23952         * culture-info.h (TextInfoEntry): New struct
23953         * object-internals.h: sync with managed
23954         * locales.c: fill the `text_info_data' field
23955         * culture-info-tables.h: update
23957 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23959         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
23960         collector.
23962 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
23964         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
23965         (ves_icall_ModuleBuilder_getMethodToken): Ditto
23967 2004-12-12  Martin Baulig  <martin@ximian.com>
23969         * mono-debug-debugger.c (write_type): If we're an enum and the
23970         builtin types have already been initialized, call mono_class_init().
23972 2004-12-11  Martin Baulig  <martin@ximian.com>
23974         * metadata.c (mono_metadata_load_generic_params): Added
23975         `MonoGenericContainer *parent_container' argument; automatically
23976         compute `container->is_method'; pass the correct owner to
23977         get_constraints().      
23979         * reflection.c (compare_genericparam): Sort the GenericParam table
23980         according to increasing owners. 
23982 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
23984         * profiler.c: allow disabling the default profiler.
23986 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
23988         * decimal.c, icall.c: allow disabling System.Decimal support.
23990 2004-12-09  Marek Safar <marek.safar@seznam.cz>
23992         * reflection.c: Add support for null attribute arguments.
23994 2004-12-09  Martin Baulig  <martin@ximian.com>
23996         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
23997         names to get rid of compiler warnings.
23999 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24001         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24002         mono_marshal_load_type_info (). Fixes #69625.
24003         (mono_marshal_get_ptr_to_struct): Likewise.
24005 2004-12-08  Martin Baulig  <martin@ximian.com>
24007         * mono-debug.h: Bumped version number to 47.
24009         * mono-debug-debugger.c
24010         (mono_debugger_event_handler, mono_debugger_event): Take two
24011         guint64 arguments insteed of a gpointer and a guint32.  
24013 2004-12-08  Martin Baulig  <martin@ximian.com>
24015         * debug-mono-symfile.h
24016         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24017         `address' to `native_offset'.
24019 2004-12-08  Martin Baulig  <martin@ximian.com>
24021         * class.c (mono_class_create_from_typespec): Only inflate if we
24022         either have `context->gclass' or `context->gmethod'.
24024 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24026         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24028         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24030         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24032         * reflection.c (mono_assembly_get_object): Remove the workaround put
24033         in for the release.
24034         
24035         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24037         * appdomain.c: Bump corlib version.
24039         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24040         be visible in other appdomains.
24042 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24044         * threads.c: Interlocked inc and dec for longs were messed up,
24045         use a KISS based impl for this. Fixes 70234
24047 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24049         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24051 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24053         * icall.c: fix to follow policy not to allow struct
24054         arguments in icalls.
24056 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24058         * process.c: make the patch that handles spaces in file paths work
24059         on mono/windows too.
24061 2004-12-06  Martin Baulig  <martin@ximian.com>
24063         * class.c (mono_class_create_generic): Call
24064         mono_class_setup_supertypes() if we're dynamic.
24065         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24067 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24069         * object-internals.h: Add new fields to MonoThread.
24071         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24073         * icall.c threads-types.h threads.c: Add new icalls.
24075         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24077         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24078         managed side.
24080         * appdomain.c: Bump corlib version.
24082         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24083         internal assemblies. Fixes #69181.
24085 2004-12-05  Martin Baulig  <martin@ximian.com>
24087         * class.c (mono_class_inflate_generic_signature): Make this a
24088         no-op if `context' is NULL or we don't have any type parameters;
24089         also copy `sentinelpos'.        
24091 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24093         * image.c: Add unbox_wrapper_cache.
24095         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24097         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24098         function generator.
24099         
24100         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24101         Fixes #70173.
24103         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24104         
24105 2004-12-04  Martin Baulig  <martin@ximian.com>
24107         * loader.c (mono_method_get_signature_full): New public function;
24108         like mono_method_get_signature(), but with an additional
24109         `MonoGenericContext *' argument.
24111         * class.c (mono_class_inflate_generic_signature): Formerly known
24112         as inflate_generic_signature(); make this public.
24114 2004-12-04  Martin Baulig  <martin@ximian.com>
24116         * metadata.c
24117         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24118         instead of a `MonoGenericContainer *'.  
24119         (mono_metadata_parse_array_full): Likewise.
24120         (mono_metadata_parse_signature_full): Likewise.
24121         (mono_metadata_parse_method_signature_full): Likewise.
24122         (mono_metadata_parse_generic_inst): Likewise.
24123         (mono_metadata_parse_generic_param): Likewise.
24124         (mono_metadata_parse_mh_full): Likewise.
24125         (mono_type_create_from_typespec_full): Likewise.
24127 2004-12-03  Martin Baulig  <martin@ximian.com>
24129         * class-internals.h (MonoGenericContainer): Replaced the
24130         `MonoGenericContext * pointer with a `MonoGenericContext'
24131         structure and made it the first element.
24133 2004-12-03  Martin Baulig  <martin@ximian.com>
24135         * class.c
24136         (inflate_generic_type): Set the `context->container' when creating
24137         a new MonoGenericContext.
24138         (mono_class_inflate_generic_method): Likewise.
24139         (mono_class_create_from_typespec): Just use `context->container'
24140         to get the container.
24142         * loader.c (method_from_methodspec): Set `context->parent' from
24143         `context->container' - and if that's a method container, use its
24144         parent.  Also set the `context->container' when creating a new
24145         MonoGenericContext.
24146         (mono_get_method_from_token): Use just `context->container' to get
24147         the container.
24149         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24150         `gclass->context->container'.
24152         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24153         the `context->container' when creating a new MonoGenericContext.
24155 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24157         * reflection.c (compare_genericparam): Sort params with identical
24158         owner by their number. Fixes gen-111 on sparc.
24160 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24162         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24163         around the domain changes.
24165         * appdomain.c (mono_domain_unload): Handle the case when the thread
24166         calling Unload is itself being aborted during unloading. Fixes #70022.
24168         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24170         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24171         checkpoint_func as an icall so it gets a wrapper.
24172         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24173         in the cross-appdomain wrappers too.
24175         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24177         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24179         * reflection.c: Fix some memory leaks.
24180         
24181 2004-12-02  Martin Baulig  <martin@ximian.com>
24183         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24185         * metadata.c (generic_class_cache): New static hashtable.
24186         (mono_metadata_lookup_generic_class): New public method.
24188 2004-12-02  Martin Baulig  <martin@ximian.com>
24190         * class.c (mono_class_create_from_typedef): Call
24191         mono_class_setup_parent() and mono_class_create_mono_type() before
24192         parsing the interfaces.
24194 2004-12-02  Martin Baulig  <martin@ximian.com>
24196         * metadata.c (generic_inst_cache): New static hashtable.
24197         (mono_metadata_lookup_generic_inst): New public function.
24198         (mono_metadata_inflate_generic_inst): New public function.
24199         (mono_metadata_parse_generic_inst): New public function.
24200         (do_mono_metadata_parse_generic_class): Use the new
24201         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24202         since this'll also use the cache.
24204         * reflection.c (mono_reflection_bind_generic_method_parameters):
24205         Use mono_metadata_lookup_generic_inst() to use the new cache.
24207         * class.c (inflate_mono_type): Use
24208         mono_metadata_inflate_generic_inst() to inflate a generic
24209         instance; this'll also use the new cache.
24211         * loader.c (method_from_methodspec): Use
24212         mono_metadata_parse_generic_inst() and
24213         mono_metadata_inflate_generic_inst() rather than parsing it
24214         manually, so we can use the new cache.
24216 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24218         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24219         the wait times out.
24221 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24223         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24224         iter->args based on whether parameters are passed in registers (i.e.
24225         MONO_ARCH_REGPARMS is defined)
24227 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24229         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24230         the exception message. Fixes #70070.
24231         (method_from_methodspec): Fix warnings.
24233 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24235         * process.c: (complete_path) return the path quoted
24237 2004-12-01  Martin Baulig  <martin@ximian.com>
24239         * class-internals.h (MonoGenericInst): New structure.
24240         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24241         `is_open' with `MonoGenericInst *inst'.
24242         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24243         `is_open' with `MonoGenericInst *inst'.
24245 2004-11-30  Martin Baulig  <martin@ximian.com>
24247         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24249         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24250         to `generic_class_cache'.
24252         * metadata.c
24253         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24254         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24255         (mono_generic_inst_is_valuetype): Renamed to
24256         mono_generic_class_is_valuetype().
24258         * class-internals.h
24259         (MonoGenericInst): Renamed to MonoGenericClass.
24260         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24261         (MonoClass): Renamed `generic_inst' to `generic_class'.
24262         (MonoGenericContext): Renamed `ginst' to `gclass'.
24264         * object-internals.h
24265         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24267         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24268         mono_reflection_generic_class_initialize().
24270         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24271         now known as "System.Reflection.MonoGenericClass".
24272         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24274 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24276         * class-internals.h: Added a flag field to MonoClass to cache the
24277         declarative security attributes actions associated with the class.
24278         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24279         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24280         applicable to the JITted method.
24281         * reflection.c|h: Added functions to extract (as flags) which security
24282         actions are available (declaratively) for a method, class or assembly.
24283         * metadata.c|h: Added functions to search the declarative security
24284         table in the metadata.
24285         
24286 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24288         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24289         EXPORTEDTYPES are already in the class name cache, so there is no
24290         need to add extra code here to look at them. Just removes a bit of
24291         cruft.
24293         (ves_icall_System_Environment_get_TickCount): No need for #if
24294         WINDOWS. We already have the code in io-layer.
24296 2004-11-28  Martin Baulig  <martin@ximian.com>
24298         * loader.c
24299         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24300         Fixes gen-112.cs.
24302 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24304         * assembly.c (do_mono_assembly_open): Instead of having a
24305         conditional WITH_BUNDLE, incorporate support for bundles here, by
24306         having a global `bundles' variable holding a pointer to the actual
24307         bundles. 
24309         (mono_register_bundled_assemblies): New API call used by the
24310         bundle code. 
24312         See mkbundle.1 for details.
24313         
24314 2004-11-27  Martin Baulig  <martin@ximian.com>
24316         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24317         the vtable for generic methods.
24319 2004-11-26  Martin Baulig  <martin@ximian.com>
24321         * metadata.c
24322         (mono_metadata_generic_method_hash): New public function.
24323         (mono_metadata_generic_method_equal): Likewise.
24325         * class-internals.h
24326         (MonoGenericContainer): Added `GHashTable *method_hash'.
24328         * reflection.c (ReflectionMethodBuilder): Added
24329         `MonoGenericContainer *generic_container'.
24330         (reflection_methodbuilder_to_mono_method): Don't create a new
24331         MonoGenericContainer each time we're called.
24332         (mono_reflection_bind_generic_method_parameters): Use
24333         `container->method_hash' to cache the results so we don't create a
24334         different method if we're called several times with the same
24335         arguments.
24337         * loader.c (method_from_methodspec): Use the new
24338         `container->method_hash' here, too.
24340 2004-11-26  Martin Baulig  <martin@ximian.com>
24342         * class.c (inflate_generic_signature): Correctly compute
24343         `res->has_type_parameters'.
24344         (mono_class_vtable): Use the `has_type_parameters' flag to
24345         determine whether we're a generic method.
24347         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24349 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24351         * object.c (mono_runtime_run_main): Fix a small memory leak.
24353 2004-11-25  Martin Baulig  <martin@ximian.com>
24355         * class.c (set_generic_param_owner): Fixed the loop.
24357 2004-11-25  Martin Baulig  <martin@ximian.com>
24359         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24360         generic methods.
24362 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24364         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24365         names. Fixes #69787.
24367 2004-11-24  Martin Baulig  <martin@ximian.com>
24369         * class.c (mono_class_create_generic_2): If we don't have a
24370         `ginst->parent', inflate `gklass->parent' to get our parent.
24372 2004-11-24  Martin Baulig  <martin@ximian.com>
24374         * reflection.c (compare_genericparam): Correctly sort the
24375         GenericParam table; fixes #69779.
24377 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24379         * reflection.c: When writing a PE file, don't create a huge
24380         buffer in memory. Just write the arrays we have to the file.
24381         This reduces memory usage.
24383         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24384         globally.
24386 2004-11-17  Martin Baulig  <martin@ximian.com>
24388         * class.c (mono_class_init): Don't setup `class->parent' for
24389         dynamic instances; moved this to mono_class_generic_2().
24390         (mono_class_create_generic): Also set `klass->inited' for dynamic
24391         generic instances.
24392         (mono_class_create_generic_2): Don't do anything for dynamic
24393         generic instances.  Set `klass->parent' here and also call
24394         mono_class_setup_parent() here. 
24396         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24397         `MonoType *parent' argument; set `ginst->parent' before calling
24398         mono_class_create_generic_2(), so we set the correct parent.
24400 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24402         * reflection.c: allow getting attributes from ModuleBuilder
24403         (used by ikvm).
24405 2004-11-17  Martin Baulig  <martin@ximian.com>
24407         * class.c (mono_class_create_from_typedef): If a type parameter is
24408         inherited from an outer class, set its owner to that class.
24410 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24412         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24413           for (int*) written size. This fixes bug #69592.
24415 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24417         * icall.c: Added IsAuthenticodePresnet internal call.
24418         * image.c|h: New function that check a MonoImage for an Authenticode
24419         signature in the certificate PE data directory.
24420         * security.c|h: New internal call to ask the runtime if an 
24421         Authenticode signature seems referenced in the PE header.
24423 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24425         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24427         * reflection.c (mono_image_create_pefile): Free the assembly streams
24428         after writing out the assembly file.
24430         * object.c (mono_runtime_run_main): Fix small memory leak.
24432         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24433         property access modifiers. Fixes #69389.
24435 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24437         * domain.c, object.c, object-internals.h, domain-internals.h,
24438         object.h, marshal.c: keep dynamic code info per domain.
24440 2004-11-15  Martin Baulig  <martin@ximian.com>
24442         * class.c (mono_type_get_name_recurse): Put type arguments in
24443         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24444         see bug #68387.
24446 2004-11-15  Martin Baulig  <martin@ximian.com>
24448         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24449         (mono_class_setup_vtable): When computing `the_cname' for a
24450         generic instance, don't include the namespace since we'd otherwise
24451         add it twice.
24453 2004-11-15  Martin Baulig  <martin@ximian.com>
24455         * class.c (mono_class_create_generic): Changed return type to void.
24456         (mono_class_create_generic_2): New public function; setup
24457         `class->method', `class->field' and `class->interfaces' here
24458         instead of in mono_class_init().
24460         * class.h (mono_class_create_generic): Moved to class-internals.h.
24462 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24464         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24465         rather than writing to memory, write to this file. Right now,
24466         we are just writting into a buffer, and copying that. However
24467         we can avoid the buffer later.
24469         (mono_dynamic_stream_reset): new function
24471         * icall.c, object-internals.h: update for the above.
24473 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24475         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24476         have been using gc'd memory. First it is slower, unlikely
24477         the comment in the source code said, secondly, it increases
24478         our footprint to do it in the gc.
24480         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24481         the method so that it does not have to copy to managed code.
24483 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24485         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24487 2004-11-12  Martin Baulig  <martin@localhost>
24489         * reflection.c (mono_image_create_token): Allow generic method
24490         definitions here, since they may appear in an `.override'; see
24491         gen-98/gen-99 for an example.
24493 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24495         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24496         #69365.
24498         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24499         descriptive.
24501 2004-11-11  Martin Baulig  <martin@ximian.com>
24503         * class.c (mono_class_setup_vtable): In an explicit interface
24504         implementation, the method name now includes the arity.
24506 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24508         * object.c (mono_array_full_copy): Fix warning.
24510 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24512         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24513         mono_class_get_method_from_name() instead.
24514         
24515         * class-internals.h: Added two new types of wrappers. 
24516         Added MonoRemotingTarget enum. Added new trampoline function type, which
24517         takes an additional MonoRemotingTarget value as parameter, so it is
24518         possible to request a trampoline for a specific target.
24519         
24520         * class.c: Added new mono_class_get_method_from_name() method.
24521         
24522         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24523         general remoting sinks and one specific for cross domain calls.
24524         
24525         * debug-helpers.c: Added new wrapper names.
24526         
24527         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24528         of a remote class.
24529         
24530         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24531         
24532         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24533         with several other methods (mono_marshal_get_xappdomain_dispatch,
24534         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24535         and others) can generate a fast remoting wrapper for cross domain calls.
24536         More information can be found in docs/remoting.
24537         Other changes: Removed mono_find_method_by_name, and used
24538         mono_class_get_method_from_name instead.
24539         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24540         is stored in the remoting invoke hashtable.
24541         
24542         * marshal.h: published the new method for getting the xdomain wrapper,
24543         and also added a method for getting the adequate wrapper for a given
24544         method and target.
24545         
24546         * object-internals.h, object.c: Added a couple of methods for capying and
24547         cloning arrays.
24548         Modified mono_install_remoting_trampoline, which takes the new remoting
24549         trampoline that has a remoting target as parameter.
24550         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24551         will return the most suitable vtable for the target.
24552         Added mono_remote_class_vtable, which returns the vtable of a remote class
24553         (which can be the normal remoting vtable or the xdomain vtable).
24554         
24555         * threads.c: the xdomain invoke and dispatch wrappers must also be
24556         protected against interruptions.
24558 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24560         * icall.c: use memmove in BlockCopyInternal when the source and
24561         destination arrays are the same.
24563 2004-11-09  Martin Baulig  <martin@ximian.com>
24565         * class-internals.h (MonoGenericContainer): Removed `method' and
24566         `signature', replaced them with `is_method' and `is_signature'
24567         flags.  Added `context'.
24569         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24570         instead of a `MonoGenericContainer *'.
24572         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24573         for dynamic type parameters.
24574         (mono_metadata_load_generic_params): Setup `container->context'.
24576         * reflection.c (mono_reflection_setup_generic_class): Setup
24577         `tb->generic_container->context'.
24578         (do_mono_reflection_bind_generic_parameters): Use
24579         mono_class_inflate_generic_type() to correctly inflate types,
24580         rather than using our own hack just for MONO_TYPE_VAR.
24582 2004-11-09  Martin Baulig  <martin@ximian.com>
24584         * class.c (mono_class_inflate_generic_method): Small fix; don't
24585         crash here.
24587         * icall.c
24588         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24589         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24590         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24591         (ves_icall_Type_BindGenericParameters): Likewise.
24592         (ves_icall_Type_get_IsGenericInstance): Likewise.
24593         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24594         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24595         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24596         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24598 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24600         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24601         assembly versions and public key tokens. Fixes #69113.
24603 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24605         * metadata.c: fix bug introduced with the type cache changes
24606         on 2004-11-06.
24608 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24610         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24611         the MonoClass pointer instead of the token in exception clauses.
24612         * reflection.c: updates for the above and make the code not depend
24613         on the structure of MonoExceptionClause.
24615 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24617         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24618         Add support for dynamic assemblies. Fixes #69114.
24620         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24622 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24624         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24625         since most only those methods use it. the code member of
24626         MonoMethodPInvoke was dead, so that can be removed too. Also,
24627         remove inline_count (again, not used), and move slot so that it
24628         can share bits with some other flags. This saves 8 bytes in the
24629         structure and gives us about 50 kb back for mcs helloworld.cs
24631         * *.[ch]: Do naming changes for the above.
24633         * loader.c (mono_method_get_header): Lazily init the header
24634         on first access.
24635         (mono_get_method_from_token): don't init the header here
24636         (mono_free_method): the header may never be allocated
24638         Overall, this saves 150 kb of unmanaged allocations
24639         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24640         memory at runtime.
24641         
24642         * loader.c, loader.h (mono_method_get_header): new accessor.
24644         * *.[ch]: use the above method. Prepares us to lazily load
24645         the header.
24647         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24648         three warnings, which are actual bugs (see 69206).
24650         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24651         unused. Saves a cool 4 bytes / method.
24653 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24655         * metadata.c (builtin_types): Add types for System.Object here.
24656         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24657         for a class or valuetype from klass->this_arg or klass->byval_arg.
24659         On mcs for a hello world, this gets us down from 21836 MonoType's
24660         to 14560.
24662         (mono_metadata_free_type): Account for the above change.
24664 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24666         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24667         exception instead of asserting if name is null.
24668         (ves_icall_System_AppDomain_GetData): Ditto.
24670 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24672         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24673         EnumBuilder.
24675         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24676         Return NULL when the domain does not have entry_assembly set.
24678         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24679         Add a 'resource_modules' argument.
24680         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24682         * reflection.c (mono_reflection_create_runtime_class): Move setting
24683         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24684         for enums too.
24686         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24687         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24688         Throw an ArgumentNullException if 'ptr' is null.
24690         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24691         assemblies here. Fixes #69020.
24693 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24695         * reflection.c (build_compressed_metadata): Fix the previous patch for
24696         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24697         the stack.
24699 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24701         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24702         the cultures is false. Fixes #69090.
24704         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24705         detected by valgrind.
24706         
24707         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24708         TypeResolve multiple times for the same type. Fixes #65577.
24710 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24712         * marshal.c: Avoid using ldftn to call managed functions. It is
24713         much slower than just a call.
24715         * reflection.c (mono_module_get_object): free the basename we
24716         allocate here from glib.
24717         
24718         * reflection.c (ensure_runtime_vtable): make sure to free
24719         overrides.  Also, we were allocating an array of MonoMethod not an
24720         array of MonoMethod*.
24722         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24724         * image.c (mono_image_close): free image->guid here.
24726 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24728         * reflection.c: Fix some spec conformance issues with the PE file
24729         structures so mcs compiled apps run on the Net 2.0 beta.
24731 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24733         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24734         Implement this. Fixes #67264.
24736         * debug-helpers.h debug-helpers.c marshal.c: Move 
24737         mono_find_method_by_name to debug-helpers.c.
24739 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24741         * object.c (mono_release_type_locks): type_initialization_hash is
24742         a GHashTable.
24744         * reflection.c object.c object-internals.h: Fix warnings.
24746         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24747         without accessors. Fixes #61561.
24749         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24750         application base from the root domain if not set. Fixes #65641.
24751         (mono_runtime_init): Fix warning.
24753 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24755         * appdomain.c: call mono_thread_pool_init.
24756         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
24757         of worker threads based on the number of CPUs and the environment
24758         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
24759         for non-windows (windows) systems.
24761 2004-10-27  Chris Toshok  <toshok@ximian.com>
24763         * mono-debug-debugger.c (write_class): don't call mono_class_init
24764         here, as even with the check for (!klass->init_pending), we get
24765         into a situation where we're hitting cycles in class
24766         initialization.  Fixes #68816.
24768 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
24770         * image.c: Avoid overwriting values in the loaded_images_hash when an
24771         assembly is loaded multiple times. Fixes #61152.
24773         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
24774         so multiple satellite assemblies for the same name can be loaded.
24775         Fixes #68259.
24777         * mono_domain_assembly_preload: Actually return the loaded assembly, 
24778         not NULL.
24780         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
24781         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
24783         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
24784         pending finalizers are not invoked after the appdomain has been 
24785         unloaded. Fixes #67862.
24787 2004-10-22  Martin Baulig  <martin@ximian.com>
24789         * mono-debug-debugger.c
24790         (mono_debugger_runtime_invoke): Don't box valuetypes.
24792 2004-10-22  Chris Toshok  <toshok@ximian.com>
24794         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
24795         don't hide private methods.
24797 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
24799         * icall.c: Allows the runtime to "share" (when known) the public key
24800         token of an assembly. This avoid the need to recalculate the token 
24801         (from the public key) in managed code.
24803 2004-10-21  Chris Toshok  <toshok@ximian.com>
24805         * debug-helpers.c (append_class_name): argh, revert last patch.
24806         
24807 2004-10-21  Chris Toshok  <toshok@ximian.com>
24809         * debug-helpers.c (append_class_name): use '+' as the delimiter,
24810         not '/', so that it matches what the debugger uses to look up
24811         methods.
24813 2004-10-21  Martin Baulig  <martin@ximian.com>
24815         * mono-debug-debugger.c (mono_debugger_throw_exception): New
24816         public method; this is called each time an exception is thrown and
24817         allows the debugger to use exception catch points.
24819 2004-10-21  Martin Baulig  <martin@ximian.com>
24821         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
24822         the stack pointer and the exception object in some struct and pass
24823         that to the debugger.
24825 2004-10-21  Chris Toshok  <toshok@ximian.com>
24827         * mono-debug-debugger.c (do_write_class): add instance/static
24828         event support.  We don't expose "raise" or "other" yet.
24829         (event_is_static): new method.
24831 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
24833         * mono-debug-debugger.c
24834         (mono_debugger_handle_exception): Remove
24835         bogus return value for fussy compilers.
24837 2004-10-20  Martin Baulig  <martin@ximian.com>
24839         * mono-debug-debugger.c
24840         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
24841         (mono_debugger_handled_exception): Likewise.
24843 2004-10-20  Martin Baulig  <martin@ximian.com>
24845         * mono-debug-debugger.h (MonoDebuggerEvent): Added
24846         MONO_DEBUGGER_EVENT_EXCEPTION.
24848         * mono-debug-debugger.c (mono_debugger_handle_exception): New
24849         public function to send the debugger a notification for an
24850         exception and inform it about a catch/finally clause.
24852 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
24854         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
24855         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
24856         fix 2.95 build. 
24858         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
24860 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
24862         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
24863         marshalled as [In,Out]. Fixes #58325.
24865 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
24867         * reflection.c (mono_method_body_get_object): Implement some fields.
24869 2004-10-12  Martin Baulig  <martin@ximian.com>
24871         * reflection.c (mono_reflection_bind_generic_parameters): Small
24872         fix, correctly retrieve our parent from a generic instance.
24874 2004-10-12  Martin Baulig  <martin@ximian.com>
24876         * metadata.c (mono_metadata_generic_param_equal): We always have
24877         an owner.
24879         * class.c
24880         (mono_class_from_generic_parameter): We need to have an owner.
24881         (my_mono_class_from_generic_parameter): Likewise.
24883         * reflection.c (mono_reflection_setup_generic_class): Renamed to
24884         mono_reflection_create_generic_class() and added a new
24885         mono_reflection_setup_generic_class().  
24886         (mono_reflection_initialize_generic_param): If we're a nested
24887         generic type and inherited from the containing class, set our
24888         owner to the outer class.
24890 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
24892         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
24894         * reflection.c (mono_method_body_get_object): New function to create
24895         a MethodBody object.
24897         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
24899 2004-10-11  Martin Baulig  <martin@ximian.com>
24901         * metadata.c (_mono_metadata_type_equal): Renamed to
24902         do_mono_metadata_type_equal() and made static.
24904 2004-10-11  Martin Baulig  <martin@ximian.com>
24906         * appdomain.c: Bump corlib version number to 28.
24908 2004-10-10  Martin Baulig  <martin@ximian.com>
24910         * class-internals.h
24911         (MonoGenericInst): Added `MonoGenericContainer *container'.
24912         (MonoGenericMethod): Likewise.
24913         (MonoGenericContext): Likewise.
24914         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24916         * metadata.c
24917         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
24918         (do_mono_metadata_parse_generic_inst): Likewise.
24919         (mono_metadata_parse_type_full): New public method.  This is the actual
24920         mono_metadata_parse_type() implementation - with an additional
24921         `MonoGenericContainer *' argument.
24922         (mono_metadata_parse_array_full): Likewise.
24923         (mono_metadata_parse_signature_full): Likewise.
24924         (mono_metadata_parse_method_signature_full): Likewise.
24925         (mono_metadata_parse_mh_full): Likewise.
24926         (mono_type_create_from_typespec): Likewise.
24927         (mono_metadata_interfaces_from_typedef_full): New public method;
24928         this is similar to the other _full() methods, but we take a
24929         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
24930         (mono_metadata_parse_generic_param): Take an additional
24931         `MonoGenericContainer *' argument and lookup the MonoGenericParam
24932         from that container.
24933         (mono_metadata_generic_param_equal): New static method to compare
24934         two type parameters.
24935         (_mono_metadata_type_equal): New static method; takes an
24936         additional `gboolean signature_only' argument - if true, we don't
24937         compare the owners of generic parameters.
24938         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
24939         with a TRUE argument - do a signature-only comparision.
24941         * loader.c: Use the new _full() methods and pass the
24942         MonoGenericContainer to them.
24944         * object-internals.h (MonoReflectionTypeBuilder): Added
24945         `MonoGenericContainer *generic_container' field.
24946         (MonoReflectionMethodBuilder): Likewise.
24948 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
24950         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
24951         case initial images of dynamic assemblies.
24953         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
24955         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
24957         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
24958         length of event->other array.
24959         (typebuilder_setup_events): Ditto.
24961         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
24962         'assembly_by_name' and add an 'assemblies' list.
24964         * assembly.h assembly.c: Add a new search hook for determining whenever
24965         an assembly is already loaded. Use this instead of searching in the
24966         loaded_assemblies list.
24968         * domain.c appdomain.c: Implement the new search hook so loaded 
24969         assemblies are now scoped by appdomain. Fixes #67727.
24971 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
24973         * threads.c (mono_thread_attach): Initialize synch_lock field so
24974         mono_thread_detach works again.
24976         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
24977         'lib' too. Fixes #63130.
24979 2004-10-06  Jackson Harper  <jackson@ximian.com>
24981         * culture-info-tables.h: regenerated.
24983 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
24985         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
24986         implemented by other interfaces in the result. Fixes #65764.
24987         
24988         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24989         Handle unloadable modules without crashing.
24991         * image.c (load_modules): Revert the previous patch since modules must
24992         have a fixed index inside the array.
24993         
24994         * image.c (load_modules): Don't include native modules in the modules
24995         array.
24997 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
24999         * reflection.h: Add param_defaults field.
25001         * reflection.c: Add support for parameter defaults in dynamic methods.
25002         Fixes #64595.
25004         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25005         an empty string when a type has no namespace. Fixes #64230.
25007 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25009         * tabledefs.h: Added "internal" security actions to support non-CAS
25010         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25011         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25013 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25015         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25016         constructor of abstract class. Fixes #61689.
25018 2004-10-04  Martin Baulig  <martin@ximian.com>
25020         * class-internals.h (MonoGenericContainer): New type.
25021         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25022         `MonoGenericContainer *generic_container'.
25023         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25024         `MonoGenericContainer *generic_container'.
25026         * metadata.c (mono_metadata_load_generic_params): Return a
25027         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25028         removed the `num' argument.
25030 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25032         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25033         for dynamic images.
25035         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25036         machine fields.
25038         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25040         * reflection.c: Save pe_kind and machine values into the generated
25041         image file.
25043         * appdomain.c: Bump corlib version number.
25045         * object-internals.h: Reorganize layout of LocalBuilder.
25047         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25048         New helper function.
25050         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25051         created MonoType for dynamic types. Fixes #66180.
25053 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25055         * threadpool.c: the ares hashtable needs a critical section around it.
25056         this prevents some nasty segfaults
25058 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25060         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25061         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25062         bug 67324).
25063         
25064 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25066         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25067         
25068 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25070         * image.c: Always canonicalize image file names, to avoid loading
25071         the same assembly twice when referenced using a relative path.
25073 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25075         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25077         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25079         * marshal.c: Fix warnings.
25081 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25083         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25084         attempting to marshal the delegate_trampoline as the method_addr.
25085         This patch has a static hashtable of marshalled delegates so that 
25086         we can map delegate_trampoline addresses back to delegates.  This
25087         allows a delegate passed to managed code to be passed back into native
25088         code.  Fixes #67039
25090 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25092         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25094         * reflection.c (method_encode_code): Align method headers properly.
25095         Fixes #66025.
25097 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25099         * marshal.c: In the runtime invoke wrapper, reset the abort
25100         exception if it is cached. This avoids the automatic rethrowal of 
25101         the exception after the catch of the wrapper. Also check for pending
25102         interruptions before calling the managed method. This is done using
25103         the new method emit_thread_force_interrupt_checkpoint, since the
25104         normal checkpoint method is ignored when running the invoke wrapper.
25105         * object.c: If the abort exception is rethrown, set the abort_exc
25106         field of the thread, so it will be rethrown aftere every catch.
25107         * threadpool.c: Only run an interruption checkpoint if what has been
25108         requested is a stop of the thread (aborts will be ignored).
25109         * threads.c: By default, a thread will now never be interrumped while
25110         running the runtime invoke wrapper (this ensures that runtime_invoke
25111         will always return to the caller if an exception pointer is provided).
25112         There is a new special method mono_thread_force_interruption_checkpoint()
25113         to force an interruption checkpoint even if running a protected
25114         wrapper, which is used by the same runtime invoke wrapper to do a check
25115         at a safe point.
25117 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25119         * object.c, object-internals.h: Implemented mono_release_type_locks,
25120         which releases the cctor locks held by a thread.
25121         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25122         by a thread. Added mono_thread_exit() method to be used to safely stop
25123         a thread.
25125 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25127         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25128         Move null check before dereference.  Avoid indexing beyond the end
25129         of the 'modules' array.
25131 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25133         * metadata-internals.h (MonoImage): Add module_count field.
25134         * image.c (load_modules): Set image->module_count.
25135         (mono_image_load_file_for_image): Use image->module_count.
25136         * reflection.c (mono_image_load_module): Append to image->modules array 
25137         of dynamic assembly.
25138         (mono_module_get_object): Fix loop to actually increment index.
25139         Use image->module_count.
25140         * assembly.c (mono_assembly_load_references): Use image->module_count.
25141         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25142         Likewise.
25144 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25146         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25147         Avoid assert on generic types.
25149 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25151         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25153         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25155         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25156         function to convert a MarshalSpec structure to its managed counterpart.
25158         * reflection.c: Fix warnings.
25159         
25160         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25161         field.
25163         * icall.c (mono_create_icall_signature): Fix build.
25165 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25167         * icall.c: Add MakePointType icall.
25169         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25170         warnings.
25172 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25174         * threadpool.c: reuse allocated slots in the queue.
25176 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25178         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25180         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25182         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25183         previous change.
25185         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25186         ThrowOnUnmappableChar.
25188         * icall.c (ves_icall_Type_GetPacking): New icall.
25190 2004-09-24  Martin Baulig  <martin@ximian.com>
25192         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25194 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25196         * appdomain.c:
25197         (mono_domain_set): allow setting a domain that is being unloaded.
25198         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25199         being unloaded.
25201 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25203         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25204         the GetCustomAttributes icall.
25206 2004-09-23  Martin Baulig  <martin@ximian.com>
25208         * object-internals.h (MonoReflectionGenericParam): Replaced
25209         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25210         with `guint32 attrs'.
25212 2004-09-23  Martin Baulig  <martin@ximian.com>
25214         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25216 2004-09-23  Martin Baulig  <martin@ximian.com>
25218         * object-internals.h (GenericParameterAttributes): New enum.
25220 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25222         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25223         
25224         * class.c (init_events): Fill out event->other field.
25226         * class.c: Fix warnings.
25228         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25230 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25232         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25233         walk which doesn't supply the IL offset.
25235 2004-09-22  Martin Baulig  <martin@ximian.com>
25237         * reflection.c (mono_reflection_setup_internal_class): If we're
25238         System.ValueType, System.Object or System.Enum, set
25239         `klass->instance_size' and create the vtable.
25240         (mono_reflection_create_internal_class): If we're an enum type,
25241         get the base class from our current corlib.
25243 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25245         * reflection.h (MonoResolveTokenError): New type.
25247         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25248         icall.
25250         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25252 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25254         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25255         Support also calling constructors, but only for already allocated objects.
25257 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25259         * reflection.c (type_get_qualified_name): If the klass is null
25260         return the typename to avoid a NullRefEx.
25261         (encode_cattr_value): Get the qualified name of the boxed type,
25262         not the underlying enumtype.  Fixes #62984.
25264 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25266         * marshal.c: Fix problems with previous checkin.
25268 2004-09-21    <vargaz@freemail.hu>
25270         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25271         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25273         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25275 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25277         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25278         should only return a type for pointers, arrays, and passbyref types.
25279         Fixes bug #63841.
25281 2004-09-21  Martin Baulig  <martin@ximian.com>
25283         * domain.c (mono_debugger_check_runtime_version): New public
25284         function.
25286         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25288 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25290         * reflection.c: Added missing sort to the declarative security 
25291         attributes table. MS implementation stops seeing the attributes if the
25292         token number regress in the table (as shown by ildasm and permview).
25294 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25296         * object-internals.h (MonoReflectionModule): Add 'token' field.
25297         
25298         * reflection.c (mono_reflection_get_token): Add support for Module
25299         and Assembly.
25300         (mono_module_get_object): Set 'token' field.
25301         (mono_module_file_get_object): Set 'token' field.
25303         * icall.c: Add new Assembly and Module icalls.
25305         * appdomain.c: Bump corlib version.
25307 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25309         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25310         tokens of metadata objects.
25312         * reflection.h reflection.c (mono_reflection_get_token): New function
25313         to obtain the token of a metadata object.
25315         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25317 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25319         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25320         
25321         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25323 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25325         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25326         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25327         AssemblyBuilder to access the permissions set in the class lib.
25328         * reflection.c: Added security attributes encoding step in 
25329         mono_image_build_metadata.
25330         * tabledefs.h: Added new security actions defined in 2.0:
25331         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25333 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25335         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25336         macro parameter.
25338 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25340         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25341           finalized. There where random SIGSEVs at program termination, when
25342           an object being finalized was trying to do a string comparison and
25343           the current culture was already finalized.
25345 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25347         * threads.c: call thread_cleanup before finishing the thread if we get
25348         there.
25350 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25352         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25353         assemblies from the parent. Fixes #65665.
25355 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25357         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25358         modifiers.
25360 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25362         * reflection.h: add prototype for mono_get_dbnull_object
25363         * reflection.c: add prototypes for get_default_param_value_blobs 
25364         and mono_get_object_from_blob for fussier compilers
25366 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25368         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25369         false deadlock checks in class initialization.
25371 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25373         * image.c (mono_image_addref): Fix comment.
25375         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25376         possible.
25378 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25380         * reflection.c (mono_param_get_objects): Modified to return
25381         ParameterInfo.DefaultValue object.
25383         (get_default_param_value_blobs):
25384         (mono_get_object_from_blob):
25385         (mono_get_dbnull_object): New helper routines. 
25387         * object.c (mono_get_constant_value_from_blob): New helper routine
25388         carved out from get_default_field_value ()
25390         * object-internals.h (mono_get_constant_value_from_blob): Added
25391         function declaration.
25393 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25395         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25396         referenced assemblies. Fixes #62135.
25398         * exception.h exception.c (mono_get_exception_file_not_found2): New
25399         helper function.
25401 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25403         * class.h class.c: Add mono_type_get_underlying_type ().
25405 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25407         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25408         Fix GetTypes() to support dynamically created assemblies.
25410 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25412         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25413         
25414         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25415         previous patch.
25417         * reflection.h reflection.c loader.c: Allow dynamic construction of
25418         pinvoke methods. Fixes #65571.
25419         
25420         * reflection.c (mono_reflection_get_type): Revert previous change since
25421         it causes regressions.
25423 2004-09-08  Martin Baulig  <martin@ximian.com>
25425         * class.c (class_compute_field_layout): Don't call
25426         mono_class_layout_fields() for open generic instances.
25428 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25429         * threads.c appdomain.c: fix typo in GC macro
25431 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25433         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25434         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25436 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25438         * image.c (mono_image_close): Applied patch from 
25439         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25440         assembly is loaded multiple times from data.
25441         
25442         * image.c (mono_image_open): Fix warning.
25444 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25446         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25447         once. Fixes #58334.
25448         
25449         * reflection.c (mono_reflection_create_runtime_class): Initialize
25450         klass->nested_classes. Fixes #61224.
25452 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25454         * threads.c: sched_yield() on exit, to allow threads to quit.
25456 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25458         * object.c (mono_unhandled_exception): Remove leftover debug code.
25460 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25462         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25464 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25466         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25467         
25468         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25470 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25472         * marshal.c (emit_marshal_array): Null terminate string arrays.
25473         
25474         * marshal.c (raise_auto_layout_exception): Fix warning.
25476         * reflection.c (mono_param_get_objects): Initialize the default value
25477         with DBNull.Value, not null. Fixes #62123.
25479 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25481         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25482         throw an exception with a cute explanation.
25484 2004-09-06  Dick Porter  <dick@ximian.com>
25486         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25487         Close the new process's thread handle, as we don't use it.  The
25488         handle stays around forever otherwise.
25490 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25492         * object.c (arith_overflow): Fix warning.
25494         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25495         calling conventions in method refs. Fixes #65352.
25497         * reflection.c: Fix warnings.
25499 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25501         * icall.c: Add a new icall for Array.Clear
25503 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25505         * object.c: When allocating an array, we have to throw
25506         an overflow exception if any of the lengths are < 0.
25508 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25510         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25511         properly. Also move implementation of string array marshalling to 
25512         managed code. Fixes #42316.
25514 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25516         * assembly.c: provide more information when loading an assembly fails.
25518 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25520         * filewatcher.c: don't expect the development fam package to be
25521         installed.
25523 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25525         * marshal.c: Make a copy of the signature cookie since it will be
25526         freed by the caller.
25527         
25528         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25530         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25532         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25533         marshal specs.
25535         * marshal.c: More refactoring.
25536         
25537         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25538         smaller functions.
25540 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25542         * object.c: In mono_message_invoke, fill the output parameter array after
25543           calling the managed method (it was done before the call). This fixes
25544           bug #59299.
25546 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25548         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25549         as well.
25551 2004-09-02  Martin Baulig  <martin@ximian.com>
25553         * class.c (mono_class_instance_size): Don't allow generic type
25554         definitions or open generic instances.
25555         (mono_class_array_element_size): If we're a value type, call
25556         mono_class_instance_size() on the original class.
25558         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25559         handle generic instances.
25561         * mono-debug-debugger.c (write_type): Handle generic instances
25562         like classes.
25564 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25566         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25567         the allocation request fails. Fixes #65089.
25569         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25570         
25571         * object.c (mono_runtime_free_method): New function to free a dynamic
25572         method.
25574         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25575         delegate trampoline.
25577         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25578         with hasthis as dynamic,
25580         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25582         * domain.c (mono_jit_info_table_remove): New function to remove an
25583         entry from the jit info table.
25585         * class-internals.h (MonoMethod): Add 'dynamic' field.
25587         * loader.c: Fix warnings.
25589 2004-09-01  Martin Baulig  <martin@ximian.com>
25591         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25592         instead of mono_debugger_lock() because the latter one is a no-op
25593         unless running in the debugger.
25595 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25597         * class.c (class_compute_field_layout): Classes with auto-layout or
25598         reference fields are not blittable.
25599         
25600 2004-09-01  Dick Porter  <dick@ximian.com>
25602         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25603         mono_image_get_filename() to get the assembly location.
25605         * icall.c:
25606         * metadata.h: Fix compile warnings
25608 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25610         * class.c (class_compute_field_layout): System.Object is blittable.
25612         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25613         as in/out. Fixes #59909.
25615 2004-09-01  Martin Baulig  <martin@ximian.com>
25617         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25618         mono_metadata_generic_inst_is_valuetype() if we're a generic
25619         instance to check whether our underlying type is a reference type.
25621 2004-09-01  Martin Baulig  <martin@ximian.com>
25623         * metadata.c (mono_type_size): If we're a generic instance, call
25624         mono_class_value_size() for value types.
25626 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25628         * marshal.c: Implement more custom marshalling functionality. Fixes
25629         #64915.
25631 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25633         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25635 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25637         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25639         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25641         * icall.c: Fix some warnings.
25643         * threads.c (abort_appdomain_thread): Fix unref errors.
25644         (mono_thread_current): Fix THREAD_DEBUG define.
25646 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25648         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25650         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25652 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25654         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25655         string arrays.
25657 2004-08-28  Martin Baulig  <martin@ximian.com>
25659         * metadata.c
25660         (mono_metadata_generic_inst_is_valuetype): New public function.
25662         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25663         mono_metadata_generic_inst_is_valuetype() if we're a generic
25664         instance to check whether our underlying type is a valuetype.
25666 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25668         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25669         #63768.
25671 2004-08-25  Martin Baulig  <martin@ximian.com>
25673         * loader.c (mono_get_method_from_token): Abstract methods can also
25674         be generic and thus have type parameters.
25676         * metadata-internals.h
25677         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25679         * reflection.c (mono_image_get_generic_param_info): Don't create a
25680         metadata row, just add an entry to the `gen_params' array.
25681         (build_compressed_metadata): Sort the `gen_params' array and then
25682         actually create the metadata.
25684 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25686         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25688 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25690         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25692 2004-08-24  Martin Baulig  <martin@ximian.com>
25694         * class.cs (mono_class_is_subclass_of): Like an interface, a
25695         generic instance also derives from System.Object.
25697 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25699         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25700         custom modifiers to be in any order. Fixes #61990.
25702 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25704         * object.c: Register mono_object_new_fast icall.
25705         
25706         * object.c (mono_class_get_allocation_ftn): Return to calling
25707         mono_object_new_fast, since it seems faster to compute the object 
25708         size in unmanaged code than passing it as a parameter.
25710         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25712         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25713         this function with Boehm as the oom handler, so we don't have to check
25714         the result of GC_malloc.
25716         * object.c: Remove checks for oom.
25718         * object.h object.c (mono_class_get_allocation_ftn): New function to
25719         return the icall which can be used to allocate an instance of a given
25720         class. 
25722         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25724         * class-internals.h: Add 'enabled' field.
25726 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25728         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25730 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25731         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25732         value 0x0010.
25734 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25736         * appdomain.c: use the Tls function for appdomain too,
25737         at Zoltan's request. Actually return in mono_context_get
25739         * appdomain.c, profiler.c, threads.c: use __thread
25741 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25743         * appdomain.c threads.c: Call GC_CreateThread on windows.
25745         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25746         multiple libraries since this don't work on windows.
25748 2004-08-18  Martin Baulig  <martin@ximian.com>
25750         * class-internals.h
25751         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25752         MonoMethodHeader.
25754         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25755         MonoMethodNormal since we also need it for abstract and interface
25756         methods.
25758         * reflection.c
25759         (build_compressed_metadata): Sort the GenericParam table.
25760         (mono_image_create_token): Added `gboolean create_methodspec'
25761         argument; this is false when generating a MethodImpl token.
25762         (reflection_methodbuilder_to_mono_method): Abstract and interface
25763         methods may also have generic parameters.
25765 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
25767         * appdomain.c: thread local alloc
25769 2004-08-17  Martin Baulig  <martin@ximian.com>
25771         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
25773         * icall.c
25774         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
25775         argument.
25777         * class.c (mono_type_get_full_name): New public function.
25778         (mono_type_get_name): Don't include the type arguments.
25780 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
25782         * Makefile.am: Build static versions of libmetadata and libmonoruntime
25783         for inclusion into the mono executable.
25785 2004-08-16  Martin Baulig  <martin@ximian.com>
25787         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
25788         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
25790 2004-08-14  Martin Baulig  <martin@ximian.com>
25792         * class.c (dup_type): Also copy the `byref' field.
25794 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
25796         * reflection.c (create_dynamic_mono_image): Revert the last change 
25797         since it breaks bootstrap.
25799 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
25801         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
25803         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
25804         not free them with g_free.
25806 2004-08-11  Martin Baulig  <martin@ximian.com>
25808         * reflection.c (mono_reflection_setup_internal_class): Also call
25809         mono_class_setup_mono_type() if we already have a `tb->type.type'.
25811 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
25813         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
25814         called during default (first) AppDomain creation. Keep track of
25815         Evidence when loading assemblies.
25817 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25819         * opcodes.c, opcodes.h: reduce runtime relocations.
25821 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
25823         * culture-info.h, locales.c: fixes and chages to sue the new
25824         optimized format of the locale data.
25825         * culture-info-tables.h: regenerated.
25827 2004-08-06  Geoff Norton <gnorton@customerdna.com>
25828         
25829         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
25831 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
25833         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
25834         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
25835         * domain-internals.h: icall declaration.
25836         * icall.c: icall registration.
25837         * object-internals.h: New fields in MonoAssembly for CAS.
25839 2004-08-05  Duncan Mak  <duncan@ximian.com>
25841         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
25842         CEE_LDELEM_ANY.
25844 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25846         * reflection.c: fix to deal with object[] arrays in custom ctors
25847         (bug #62550).
25849 2004-08-05  Martin Baulig  <martin@ximian.com>
25851         * class.c (mono_class_array_element_size): Added support for
25852         generic instances and correctly handle "recursive" types.
25854 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
25856         * assembly.c: Fix warnings.
25858 2004-08-04  Martin Baulig  <martin@ximian.com>
25860         * class.c
25861         (mono_type_get_name_recurse): Added `gboolean include_arity'
25862         argument specifying whether or not we should include the generic
25863         arity in the type name.
25864         (_mono_type_get_name): New static function.
25865         (mono_class_setup_vtable): If we're a generic instance, don't
25866         include the generic arity in the names of explicit method
25867         implementations.        
25869 2004-08-03  Martin Baulig  <martin@ximian.com>
25871         * class.c (mono_type_get_name_recurse): Enclose the generic type
25872         arguments in `<', '>'.
25874 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25876         * gc.c: make GC warning messages use the trace API, they are just
25877         noise to most of the users.
25879 2004-08-03  Martin Baulig  <martin@ximian.com>
25881         * debug-mono-symfile.c (read_string): Correctly read the string.
25883 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
25885         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
25886         
25887         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
25888         icalls.
25889         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
25891 2004-07-30  Martin Baulig  <martin@ximian.com>
25893         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
25894         Reflect latest symbol writer changes.   
25896 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25898         * object.c: always create an object if null is passed
25899         to Invoke() where a valuetype is expected.
25901 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
25903         * marshal.c (mono_marshal_init): make managed
25904         signatures match native ones better for 64bits.
25906 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25908         * appdomain.c: hack to build correctly the private bin path on windows.
25909         Fixes bug #61991.
25911 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25913         * assembly.c: Load mscorlib from the correct framework directory
25914           (mono/<version>/mscorlib.dll).
25915         * appdomain.h: Added prototypes for new functions.
25916         * internals.h: Added some prototypes.
25917         * domain.c: When initializing the runtime, get from the executable and
25918           the configuration files the runtime version that the app supports.
25919           Added support methods for reading app.exe.config. Added list of versions
25920           supported by the JIT. Added two new methods: mono_init_from_assembly,
25921           which initializes the runtime and determines the required version from
25922           the provided exe file, and mono_init_version, which initializes
25923           the runtime using the provided version.
25924         * icall.c: Get machine.config from version-specific directory.
25925         * reflection.c: When generating an image, embed the version number
25926           of the current runtime.
25928 2004-07-28  Dick Porter  <dick@ximian.com>
25930         * socket-io.c
25931         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
25932         returned sockaddr size before creating the remote address object.
25933         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
25934         61608.
25936 2004-07-28  Dick Porter  <dick@ximian.com>
25938         * locales.c (string_invariant_compare_char): Fix invariant char
25939         compares between upper and lower cases.  Fixes bug 61458.
25941 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
25942         
25943         * marshal.c: actually cache stelem.ref wrappers.
25944         
25945 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
25947         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
25948         sections and remove the mono_cli_rva_map () function.
25950 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25952         * debug-mono-symfile.c: fix one more endianess issue, from a patch
25953         by Geoff Norton (<gnorton@customerdna.com>).
25955 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25957         * class.c: fix class loads for pointer types (typeof(int) !=
25958         typeof(int*)).
25960 2004-07-27  Martin Baulig  <martin@ximian.com>
25962         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
25963         reading the debugging information from an external ".mdb" file.
25965 2004-07-24  Martin Baulig  <martin@ximian.com>
25967         * reflection.c (mono_image_get_type_info): Only write a class
25968         layout entry if we actually have a size or a packing size.
25970 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25972         * reflection.c (type_get_fully_qualified_name): 
25973         insert cast to get type checking of ?: with non-gcc compilers
25975 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25977         * rand.c: use g_getenv for both lookups of
25978         MONO_EGD_SOCKET
25980 2004-07-17  Martin Baulig  <martin@ximian.com>
25982         * reflection.c (mono_reflection_bind_generic_method_parameters):
25983         Set `gmethod->reflection_info'.
25985 2004-07-17  Martin Baulig  <martin@ximian.com>
25987         * class.c (mono_class_create_from_typedef): Insert the newly
25988         created class into the hash table before computing the interfaces
25989         since we could be called recursively.
25991 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
25993         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
25994         function to implement stelem.ref in managed code
25995         * class-internals.h, debug-helpers.c: a new wrapper type
25996         for the above.
25998 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26000         * gc.c: allow GC handles to work even when no GC is compiled in.
26001         Fix part of bug #61134 (GetAddrOfPinnedObject).
26003 2004-07-13  Peter Williams  <peter@newton.cx>
26005         * process.c (complete_path): Make sure we don't attempt to execute
26006         directories.
26008 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26010         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26011           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26012           and will add/subtract the hour if needed
26014 2004-07-12  Martin Baulig  <martin@ximian.com>
26016         * reflection.c (mono_field_get_object): If we have
26017         `field->generic_info', take the attributes from
26018         `field->generic_info->generic_type'.    
26020 2004-07-12  Martin Baulig  <martin@ximian.com>
26022         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26023         This function must be called before initializing the runtime.
26024         (mono_debug_init_1): New function; call this after initializing
26025         the runtime, but before loading the assembly.  It tells the
26026         debugger to load corlib and the builtin types.
26028         * mono-debug-debugger.c: Did some larger changes in the debugging
26029         code; support recursive class declarations, make sure we actually
26030         add all classes.
26032 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26034         * debug-helpers.c: undo my previous patch and fixed the real issue in
26035         ../mini/exceptions-x86.c
26037 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26039         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26040         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26041         called from other .cctors.
26043 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26045         * loader.c: Removed the mono_loader_wine_init hack now that we are
26046         doing a managed version of Windows.Forms.
26048 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26050         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26051         threadpool.c, threads.c: remove static data from rootset.
26053 2004-07-09  Dick Porter  <dick@ximian.com>
26055         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26056         Don't do any more processing if the matched length was 0.  It was
26057         increasing the size of the string before.  Fixes bug 61167.
26059 2004-07-09  Dick Porter  <dick@ximian.com>
26061         * socket-io.h:
26062         * socket-io.c
26063         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26064         Add support for SO_PEERCRED if its available.
26066 2004-07-09  Peter Bartok <pbartok@novell.com>
26067         * loader.c: winelib.exe.so error message is now only displayed if
26068         MONO_DEBUG is set. To help us avoid questions when people are trying
26069         out the new Managed.Windows.Forms.
26071 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26073         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26074         for isinst and castclass wrappers.
26076         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26077         to libmetadata from the JIT, so they could be used by the marshalling
26078         code and the interpreter.
26080         * marshal.c: Register marshalling related JIT icalls here instead of
26081         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26082         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26084         * metadata.h: Remove unneeded marshalling conversions.
26086         * opcodes.c: Update for new opcodes.
26087         
26088 2004-07-08  Martin Baulig  <martin@ximian.com>
26090         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26091         (mono_debug_get_domain_data): Make this function static.
26093 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26095         * gc.c, object.h: add nice GC handle API for embedders.
26097 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26099         * reflection.c: more changes for the new api
26101         * object.c: When we reflect on a field w/ a constant value, it
26102         will not have a memory location, so we must access metadata. Also,
26103         allow easier reading of strings so that we can read them from
26104         the constant data.
26106         * class.c (mono_class_layout_fields): no need for literal fields here.
26108         * class-internals.h: api changes for const fields
26110         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26112 2004-07-06  Martin Baulig  <martin@ximian.com>
26114         * mono-debug.h: Increment version number to 44.
26116         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26117         now a gpointer, rewrote this whole method.
26119         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26120         function.  Add information about the wrapper in a new "misc table".
26122         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26123         for the new misc table.
26125 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26127         * metadata-internals.h image.c: Add a cache for helper signatures.
26129         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26131 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26133         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26134         delegates from a delegate. Fixes #61033.
26135         
26136         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26137         marshalling of stringbuilder arrays. Fixes #59900.
26139 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26141         * icall.c: Add EnumBuilder:setup_enum_type icall.
26143 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26145         * icall.c: Added a new icall for the property version of
26146         OffsetOfStringData.
26148 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26150         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26151         it has a constant size across platforms.
26153         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26154         stack trace.
26156 2004-06-29  Martin Baulig  <martin@ximian.com>
26158         * mono-debug.c (mono_debug_add_method): Protect the whole function
26159         in mono_debugger_lock(), not just parts of it.
26161 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26163         * reflection.c: make sure padding bytes in heaps are zeroed.
26165 2004-06-24  David Waite  <mass@akuma.org>
26167         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26168         image.c, loader.c, locales.c, marshal.c, metadata.c,
26169         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26170         string-icalls.c, threads.c: change to C90-style comments from C99 /
26171         C++ -style
26173 2004-06-24  Dick Porter  <dick@ximian.com>
26175         * threads.c
26176         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26177         return createdNew.  Fixes bug 60412.
26179         * threads-types.h: 
26180         * icall.c: Add createdNew parameter to CreateMutex icall
26182 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26184         * reflection.c, object-internals.h: save default value in params.
26186 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26188         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26189         no need to build a new path combining that with the application base.
26190         Fixes bug #60442.
26192 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26194         * reflection.c: fixed minor standard compliance issues.
26196 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26198         * reflection.c: fixed issue with encoding some custom attributes
26199         (arrays in properties and fields, bug #60411).
26201 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26203         * reflection.c: fix start address when copying the public key token.
26205 2004-06-23  Martin Baulig  <martin@ximian.com>
26207         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26208         the `exc' object in a static object to put it into the GC's root set.
26210 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26212         * reflection.c: make mono_reflection_setup_internal_class ()
26213         callable a second time to setup a new parent class.
26215 2004-06-23  Dick Porter  <dick@ximian.com>
26217         * threads.c: Check for WAIT_IO_COMPLETION return values.
26219 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26221         * appdomain.c: Removed the g_free on the public key token. Now copy 
26222         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26223         * assembly.c: Added public key token string value when loading 
26224         assemblies. Fix bug #60439.
26225         * icall.c: Added missing informations (like public key) in 
26226         GetReferencedAssemblies. Fix #60519.
26227         * image.h: Changed definition for public key token from const char*
26228         public_tok_value to guchar public_key_token [17];
26229         * reflection.c: Updated for changes to public key token.
26231 2004-06-22  Lluis Sanchez Gual
26233         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26234         for the field in base classes.
26236 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26238         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26239         mark headers as not supported, they are installed only for use by the
26240         debugger.
26242 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26244         * *.c, *.h: avoid namespace pollution in public headers.
26246 2004-06-21  Martin Baulig  <martin@ximian.com>
26248         * exception.c (mono_get_exception_security): It's in
26249         "System.Security", not in "System".
26251         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26252         the exception classes.
26254 2004-06-21  Martin Baulig  <martin@ximian.com>
26256         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26257         Protect the exception object from being finalized.
26259 2004-06-21  Martin Baulig  <martin@ximian.com>
26261         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26262         public function.
26264 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26266         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26267         if it was not loaded before. Fix parts of #60439.
26269 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26271         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26272         code that was broken since Ben's change: wrappers are now
26273         dependent on the method signature only again.
26275 2004-06-21  Martin Baulig  <martin@ximian.com>
26277         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26278         added interface support.
26280 2004-06-21  Martin Baulig  <martin@ximian.com>
26282         * class.c (mono_vtable_get_static_field_data): New public method.
26284 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26286         * filewatcher.c : Windows build fix to be compliant with API changes.
26288 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26290         * class.h, class.c: more accessors.
26291         * metadata.h, metadata.c: prepare for hiding MonoType and
26292         MonoMethodSignature: people should use the accessors from now on
26293         outside of the tree.
26295 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26297         * *.c, *.h: more API cleanups.
26299 2004-06-18  Jackson Harper  <jackson@ximian.com>
26301         * assembly.c: Trace loading assemblies.
26302         * loader.c: Trace loading native libraries.
26303         * mono-config.c: Trace loading config files.
26304         
26305 2004-06-18  Dick Porter  <dick@ximian.com>
26307         * locales.c: Tell ICU the lengths of strings, it can cope with
26308         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26310 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26312         * image.c: swapped name/filename;
26314 2004-06-18  Martin Baulig  <martin@ximian.com>
26316         * mono-debug-debugger.c (write_class): Write the parent class at
26317         the end of the header.
26319 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26321         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26323 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26325         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26326         (bundle_obj): New conditional define.
26327         (BUILT_SOURCES): Remove.
26328         ($(bundle_srcs)): Make parallel-make safe.
26329         (libmonoruntime_la_LIBADD): Make unconditional.
26330         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26331         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26333 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26335         * culture-info-tables.h: It was inconsistent with the latest
26336           supp info files.
26338 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26340         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26341         be loaded.
26343         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26344         with gcc 2.95.
26346 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26348         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26349         cleaned up public header threads.h.
26351 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26353         * Makefile.am, *.c, *.h: more API cleanups.
26355 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26357         * Makefile.am: removed monosn from compilation.
26358         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26359         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26360         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26361         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26362         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26363         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26365 2004-06-15  Jackson Harper  <jackson@ximian.com>
26367         * assembly.c: Make locales lower case when searching the GAC for
26368         assemblies. gacutil will always make locales lowercase when
26369         installing so this effectively makes them case insensitive.
26370         
26371 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26373         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26374         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26375           parameter which allows to choose whether the wait can be interrupted or 
26376           not. Also added the method mono_monitor_enter(), which locks the monitor
26377           using an infinite wait and without allowing interruption.
26378           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26379           interrupted.
26380         * object.h: Added new fields in MonoThread. suspend_event holds the event
26381           used to susped/resume the thread. synch_lock is the lock object to use for
26382           modifying the thread state.
26383         * threads.c: Use the new synch_lock object for locking, instead of "this",
26384           which can generate deadlocks.
26385           Moved thread state change in Thread.Sleep and Thread.Join from managed
26386           to unmanaged code. This avoids a deadlock when the thread was suspended
26387           just after acquiring the thread lock.
26388           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26389           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26390           which is not fully implemented in the io-layer.
26391         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26393 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26395         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26396         threads-types.h: more API cleanups.
26398 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26400         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26401         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26402         threadpool.c, threads.c: first pass at the exported API cleanup.
26404 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26406         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26408 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26410         * icall.c: added internalGetHome.
26412 2004-06-14  Dick Porter  <dick@ximian.com>
26414         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26415         possible to return successfully when '.' or '..' were the only
26416         entries in a directory, but were skipped.  The MonoIOStat was not
26417         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26418         Fixes bug 59574.
26420 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26422         * reflection.c: make binaries run on .Net 1.1 by default.
26424 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26426         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26428 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26430         * marshal.c: keep track of struct size with explicit layout
26431         (bug #59979).
26433 2004-06-12  Martin Baulig  <martin@ximian.com>
26435         * mono-debug-debugger.c: Comment out a debugging g_message().
26437 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26439         * reflection.c, reflection.h: do not free custom attrs that are cached.
26440         * icall.c: use braces to make code clearer.
26442 2004-06-11  Martin Baulig  <martin@ximian.com>
26444         * class.h (MonoInflatedField): New type.
26445         (MonoClassField): Replaced `MonoType *generic_type' with
26446         `MonoInflatedField *generic_info'.
26448         * icall.c
26449         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26451 2004-06-11  Martin Baulig  <martin@ximian.com>
26453         * reflection.c (mono_image_create_method_token): Correctly encode
26454         varargs methods.
26456 2004-06-11  Martin Baulig  <martin@ximian.com>
26458         * metadata.c (mono_metadata_parse_method_signature): When parsing
26459         a MethodDef which has VarArgs, also set sentinelpos if we don't
26460         have any parameters.
26462 2004-06-11  Martin Baulig  <martin@ximian.com>
26464         * verify.c (mono_method_verify): In CEE_CALL, use
26465         mono_method_get_signature() to get the method's signature, unless
26466         we're a PInvoke method.
26468 2004-06-10  Jackson Harper  <jackson@ximian.com>
26470         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26471         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26472         logical name as the supplied path is just a prefix to the gac not
26473         the direct path to it.
26474         
26475 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26477         * reflection.c: make the token for a created method match
26478         the token of the MethodBuilder it was created from
26479         (IKVM requires this behaviour now).
26481 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26483         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26484         reflection.c, socket-io.c: leak fixes.
26486 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26488         * icall.c: handle sentinel pos in vararg methods in position different
26489         from 0.
26491 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26493         * culture-info-tables.h: freshly generated.
26495 2004-06-09  Martin Baulig  <martin@ximian.com>
26497         * loader.c (mono_get_method_constrained): Call `mono_class_init
26498         (constrained_class)'.   
26500 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26502         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26503         any methods. Fixes #59629.
26505 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26507         * culture-info-tables.h: reflecting locale-builder updates.
26509 2004-06-08  Dick Porter  <dick@ximian.com>
26511         * object.h:
26512         * locales.c: Fixed compile warnings, including a real bug in
26513         CompareInfo_internal_compare.
26514         
26515 2004-06-08  Dick Porter  <dick@ximian.com>
26517         * locales.c
26518         (ves_icall_System_Globalization_CompareInfo_internal_index):
26519         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26520         Double-check the resuls of usearches, because ICU currently
26521         ignores most of the collator settings here.  Fixes bug 59720.
26522         
26523 2004-06-08  Dick Porter  <dick@ximian.com>
26525         * locales.c
26526         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26527         Fix memory leak and segfault-causing typo.  No idea how this one
26528         lasted so long without being noticed.
26530 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26532         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26533         any methods. Fixes #59629.
26535 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26537         * assembly.c:
26538         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26539         own the critical section before). Removed dead code (that's done
26540         in the preload hook).
26542         (mono_assembly_load_with_partial_name): call the preload hook.
26544 2004-06-08  Martin Baulig  <martin@ximian.com>
26546         * metadata.c (mono_metadata_signature_alloc): Default
26547         `sentinelpos' to -1.
26549         * reflection.c (mono_image_get_array_token): Likewise.
26551 2004-06-08  Martin Baulig  <martin@ximian.com>
26553         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26555         * metadata.c (mono_metadata_parse_method_signature): When parsing
26556         a MethodDef which has VarArgs, set sentinelpos.
26558         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26559         `gint16' since we're using -1 for non-varargs methods.
26561         * reflection.c
26562         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26563         (method_encode_signature): Added varargs support.
26564         (method_builder_encode_signature): Likewise.
26565         (mono_image_get_varargs_method_token): New static method.
26566         (mono_image_create_method_token): New public method; this is
26567         called via an icall instead of mono_image_create_token() when
26568         calling a varargs method.       
26570 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26572         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26574 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26576         * culture-info-tables.h : Reflecting the latest locale-builder that
26577           fixed empty array representation ({} to {0}).
26579 2004-06-07  Jackson Harper  <jackson@ximian.com>
26581         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26582         looking up extra gac paths. This allows MONO_GAC_PATH to act
26583         exactly like a prefix.
26584         
26585 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26587         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26588         type name before modifying it. Fixes #59405.
26590 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26592         * culture-info.h: added fields for "all datetime patterns".
26593         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26594           _construct_datetime_format ()): fill xxx_patterns fields.
26595         * object.h: added fields for "all datetime patterns" to
26596           MonoDateTimeFormatInfo.
26597         * culture-info-tables.h: reflecting locale-builder updates.
26599 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26601         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26602         the event has no add and remove methods. Fixes #59629.
26604 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26606         * object.c: Fixed possible integer overflow when allocating large
26607         strings.
26609 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26611         * culture-info-tables.h: reflecting locale-builder updates.
26613 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26615         * culture-info-tables.h: reflecting locale-builder updates.
26617 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26619         * culture-info-tables.h: reflecting locale-builder updates.
26621 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26623         * threads.c: Made Thread.Sleep abortable.
26625 2004-06-02  Martin Baulig  <martin@ximian.com>
26627         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26629         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26631 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26633         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26635 2004-05-30  Jackson Harper  <jackson@ximian.com>
26637         * reflection.c: Do not hardcode assembly versions or public key
26638         tokens anymore. All of this except the corlib section was dead
26639         code anyways.
26640         
26641 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26643         * object.c (mono_runtime_invoke_array): Automatically create boxed
26644         objects for byref valuetypes if needed. Fixes #59300.
26645         
26646         * object.c (mono_method_return_message_restore): Handle 
26647         MONO_TYPE_OBJECT as well.
26649 2004-05-28  Jackson Harper  <jackson@ximian.com>
26651         * reflection.c: The modified type encoding was causing build
26652         problems. Reverted for now.
26653         
26654 2004-05-28  Jackson Harper  <jackson@ximian.com>
26656         * reflection.c/h: Take an assembly ref so that we dont create
26657         fully qualified names when encoding types in the same assembly as
26658         the custom attribute being emitted.
26659         * appdomain.c: Increment version number.
26660         
26661 2004-05-26  Duncan Mak  <duncan@ximian.com>
26663         * icall.c
26664         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26665         Set the full version number (major, minor, build, revision).
26667 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26669         * marshal.c (emit_struct_conv): increment src/dst after blit
26670         (mono_marshal_get_managed_wrapper,
26671         mono_marshal_get_native_wrapper): make sure we have marshalling
26672         info before marshalling params (info computation affects
26673         blittable)
26675         * class.c (class_compute_field_layout): correctly deal with
26676         blittable
26677         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26678         value types (as per what windows dows by default)
26679         (mono_class_setup_mono_type): System.ValueType is blittable
26680         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26681         blittable
26683         * marshal.c (mono_marshal_load_type_info): flag types  as
26684         non-blittable if the native layout doesn't match the managed
26685         layout
26687 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26689         * appdomain.c: don't add stuff in the private search path that is
26690         above the application base. If application base is not set, there's
26691         no private search path.
26693 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26695         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26696         byref struct arguments in native->managed marshalling.
26698 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26700         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26701         cache methods using signature (special case for methods
26702         that are value type or string class)
26703         
26704         * image.c (mono_image_close): clean up allocated GSList's
26705         in runtime_invoke_cache.
26707 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26709         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26710         there's no MONO_CFG_DIR environment variable defined.
26712 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26714         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26716 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26718         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26719           is interrumped.
26720         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26721           before waiting for it, and call CloseHandle after the wait to unref it.
26722           This will make sure that handles are not disposed too early.
26724 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26726         * appdomain.c:
26727         * appdomain.h:
26728         * icall.c: removed
26729         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26730         needed now.
26732         * object.c: se the application_base only for the domain that runs
26733         Main. Fixes bug #59216,
26735 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26737         * appdomain.c:
26738         * object.c: only the domain in which Main is run have
26739         SetupInformation.ConfigurationFile set, so moved a few lines from
26740         appdomain.c to object.c.
26742 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26744         * appdomain.c: we tried to load [name].(dll|exe), but according
26745         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26746         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26747         There's a test case attached to bug #58922.
26749 2004-05-27  Dick Porter  <dick@ximian.com>
26751         * icall.c:
26752         * file-io.c: Implemented icalls for locking and unlocking regions
26753         in a file.
26754         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26755         FALSE on error (fixes both compiler warning and real bug.)
26757 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
26759         * culture-info-tables.h: reflecting locale-builder updates.
26761           (Added missing ChangeLog entry for 05/26)
26763 2004-05-27  Jackson Harper  <jackson@ximian.com>
26765         * locales.c: Fix some cut and paste errors.
26766         
26767 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26769         * mono-config.c: set the correct path for config. directory on windows.
26771 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26773         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
26774           on win32.
26776 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26778         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
26779         from pinvoke functions.
26780         
26781         * marshal.c (mono_ftnptr_to_delegate): Implement this.
26783 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26785         * culture-info-tables.h: reflecting locale-builder updates.
26787 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26789         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
26790         #59086.
26792 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
26794         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
26795         * icall.c: Modified icalls for RNG.
26796         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
26797         Windows (CryptoAPI).
26799 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26801         * locales.c: Fix build.
26803 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
26805         * culture-info-tables.h: reflecting locale-builder updates.
26807 2004-05-25  Jackson Harper  <jackson@ximian.com>
26809         * locales.c: When creating the current culture use the $LANGs
26810         specific culture. So DateTimeFormat and NumberFormat entries are created.
26811         
26812 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26814         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
26815         a char array as parameter.
26817 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
26819         * image.c: In mono_image_open(), always use an absolute path name to
26820           look for already loaded images.
26822 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
26824         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
26825         missing in the windows build (like older cygwin include files).
26827 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
26829         * icall.c: Fixed check for possible integer overflow in Buffer_
26830         BlockCopy icall. Replaced comments style // by /* */.
26832 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
26834         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
26835         
26836         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
26837         check after MONO_VTADDR. Fixes pinvoke2.exe.
26839         * marshal.h marshal.c metadata.h: Add beginnings of support for
26840         ftnptr -> delegate marshalling.
26842 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
26844         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
26845         * threads.c: Fix warnings.
26847 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
26849         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
26850         * icall.c: Registered icalls for Suspend and Resume.
26851         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
26852           Thread.Abort.
26853         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
26854         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
26855         * process.c: Use WaitForSingleObjectEx.
26856         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
26857           checkpoints.
26858         * threads.c, threads.h: Make use of new Ex wait methods. Improved
26859           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
26860           for Suspend and Resume. Added new mono_thread_stop, used for stoping
26861           background threads. Added basic support for Abort in Windows.
26862           Start new threads using a managed delegate invoke wrapper. This wrapper
26863           has an interruption checkpoint that is needed since an interruption
26864           can be requested before the thread leaves the unmanaged code that starts 
26865           the thread.
26866         * marshal.c: Added interruption checkpoint after every native call, and
26867           also before managed calls for wrappers called from unmanaged code to
26868           go into managed code.
26869         * object.h: Added new field in MonoThread to keep track of interruption
26870           requests.
26872 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
26874         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
26875         calls.
26877 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26879         * appdomain.c:
26880         * assembly.c:
26881         * gc.c:
26882         * locales.c:
26883         * mono-config.c:
26884         * rand.c: getenv -> g_getenv (windows!)
26886         * process.c: complete_path is also used on non-windows platforms.
26888 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26890         * icall.c: new signature for Process_Start.
26892         * process.[ch]: new signature for Process_Start. If we're on windows
26893         and UseShellExecute is false, we have to search for the program by
26894         ourselves if we don't get a full path.
26896 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
26898         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
26899         marshalling and call CleanUpNativeData if needed. Fixes #58646.
26901 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26903         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
26904         Fixes bug #58373.
26906 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26908         * process.c: use double quotes to quote program name and arguments on
26909         windows. Fixes bug #58575.
26911 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26913         * file-io.c: don't return "." and ".." when using windows Find*File.
26915 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26917         * marshal.c: Don't pass wrappers to message init because method 
26918         addressed used to lookup metadata. part of remoting[2|3] fix.
26920 2004-05-15  Jackson Harper  <jackson@ximian.com>
26922         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
26923         path is essentially the same as MONO_PATH except that it points to
26924         GACs instead of lib directories.
26925         * loader.h: The user gac is gone so we dont need function to
26926         enable/disable it.
26927         * mono-config.c: user gac option is now gone.
26928         
26929 2004-05-15  Jackson Harper  <jackson@ximian.com>
26931         * culture-info.h: Make defines more consistent, add calendar data
26932         to the culture info table.
26933         * culture-info-tables.h: Add basic calendar data. Basically
26934         everyone gets default gregorian until all the data is
26935         updated.
26936         * locales.c: Use the new consistent defines. Set calendar data for
26937         culture info objects.
26938         * object.h: add a field for calendar data to CultureInfo
26939         
26940 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
26942         * image.c: image->runtime_invoke_cache is keyed on signatures now.
26943         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
26944         a signature.
26945         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
26946         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
26947         an extra param that is the pointer of the method to invoke. The IL for
26948         the invoke method is no longer specific to the method, but to the
26949         signature of the method. Thus, we can share the same code for multiple
26950         methods. This reduces the number of methods that have to be compiled.
26952 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
26954         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
26956         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26958         * icall.c: Optimize Buffer.BlockCopy.
26960 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26962         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
26963         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
26964         quote). Changed them to "MMMM yyyy".
26966 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
26968         * rand.c
26969         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
26971 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
26973         * reflection.h: Updated after changes to managed structures.
26975         * appdomain.c: Bump corlib version.
26977 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26979         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
26980         windows.
26982 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26984         * Makefile.am: link to ../os/libmonoos.la on windows.
26986         * assembly.c:
26987                 -If MONO_DEBUG, warn about non-existing directories in
26988                 MONO_PATH.
26989                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
26990                 compile time variable.
26991                 -Removed init_default_path and call mono_set_rootdir from
26992                 libmonoos.a instead (windows only).
26994         * assembly.h: declare mono_assembly_getrootdir().
26996         * domain.c:
26997         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
26999         * loader.c: s/getenv/g_getenv/
27001 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27003         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27005         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27007         * metadata.h: Add new marshalling conversions.
27009         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27010         function.
27012         * reflection.c (mono_reflection_get_type): Lookup the type in all
27013         modules of a multi-module assembly. Fixes #58291.
27015 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27017         * threads.c: Before aborting a background, set the StopRequested
27018         state.  This avoids throwing the Abort exception.
27019         In mono_thread_manage, don't continue with the shutdown until all
27020         aborted threads have actually stopped.
27022 2004-05-10  Jackson Harper  <jackson@ximian.com>
27024         * locales.c: Remove the modifier from culture names.
27025         
27026 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27028         * Makefile.am: monosn is not installed any more. It has been deprecated
27029         in favor of sn.
27031 2004-05-07  Jackson Harper  <jackson@ximian.com>
27033         * locales.c
27034         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27035         Fix array construction, add bailout if the length is 0.
27037 2004-05-07  Dick Porter  <dick@ximian.com>
27039         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27040         machine doesn't have a DNS entry.  Patch by Urs Muff
27041         (umuff@quark.com), fixes bug 57928.
27043 2004-05-06  Jackson Harper  <jackson@ximian.com>
27045         * reflection.c: Handle null PublicTokens properly. alloc mem for
27046         assembly names culture so we dont crash when freeing it.
27047         
27048 2004-05-06  Jackson Harper  <jackson@ximian.com>
27050         * assembly.c: Check the usergac when loading with partial names.
27051         
27052 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27054         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27055         does nothing for now (not required for Linux/Windows) but the class
27056         library can call it (and a newer or modified runtime could need it).
27057         * icall.c: Registred icall.
27059 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27061         * loader.c: prints a message on module loading error we set MONO_DEBUG
27062         environment variable.
27064 2004-05-05  Jackson Harper  <jackson@ximian.com>
27066         * appdomain.c: Handle PublicKeyToken=null properly.
27067         
27068 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27070         * environment.c|h: Added icall ves_icall_System_Environment_
27071         GetOSVersionString to get the current OS version as a string.
27072         * icall.c: Registred icall.
27074 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27076         * object.c: in mono_object_get_virtual_method(), take into account that
27077         non-virtual methods don't have a slot in the vtable. Check needed when
27078         the object is a proxy.
27080 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27082         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27083         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27085         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27087         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27088         passed when a valuetype is expected.
27090         * object.c (mono_unhandled_exception): Only set the exit code if the
27091         exception happens in the main thread. Fixes thread5.exe.
27093         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27094         invalid names. Fixes #58047.
27096 2004-05-03  Jackson Harper  <jackson@ximian.com>
27098         * assembly.c: This line was committed accidently and is unneeded.
27099         
27100 2004-05-03  Jackson Harper  <jackson@ximian.com>
27102         * icall.c: Add new icall for Assembly::LoadWithPartialName
27103         * assembly.c/.h: new function that probes the GAC to load partial
27104         assembly names by Paolo Molaro.
27105         
27106 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27108         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27109         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27110         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27111         full type name.
27113 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27115         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27116         * reflection.c: fix bug when parsing a full type name and Version is not
27117         the last thing in the string.
27119 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27121         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27122         crashes when it is freed.
27124 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27126         * assembly.c: print the compat warning to stderr.
27128 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27130         * assembly.c (mono_assembly_load_references): Add a compatibility
27131         hack to run old applications that might be still referencing the
27132         3300-based assemblies, only do this for System.xxx.
27134 2004-05-01  Jackson Harper  <jackson@ximian.com>
27136         * appdomain.c: If the culture is neutral we set it to "".
27137         
27138 2004-04-29  Jackson Harper  <jackson@ximian.com>
27140         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27142 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27144         * string-icalls.c: added low overhead function for copying chars
27145         * icall.c: added needed icall for the above function
27147 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27149         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27150         Environment.GetLogicalDrives.
27152 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27154         * rand.c: try and talk to egd or prngd
27155         for random bytes if opening devices fail.
27157 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27159         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27160         alignment for the type using the native alignment of its members 
27161         instead of using klass->min_align.
27163         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27165 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27167         * file-io.c:
27168         * socket-io.c: added check for sys/aio.h.
27170 2004-04-28  Dick Porter  <dick@ximian.com>
27172         * threads.c: Don't abort a thread thats already aborting, when
27173         terminating everything.
27175 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27177         * icall.c: added 2 new async calls for Socket.
27179         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27180         IO on *nix systems.
27182         * threadpool.c: removed unused variable.
27184 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27186         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27188 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27190         * locales.c: put back string_invariant_tolower () and
27191         string_invariant_toupper ().
27193 2004-04-26 David Waite <mass@akuma.org>
27195         * file-io.h:
27196         * socket-io.h:
27197         * threads.h:
27198         * unicode.h: remove comma from end of enumeration declarations
27200 2004-04-26 David Waite <mass@akuma.org>
27202         * debug-mono-symfile.h:
27203         * decimal.c:
27204         * mono_debug.h:
27205         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27208 2004-04-26  Jackson Harper  <jackson@ximian.com>
27210         * appdomain.c: Increment version number.
27211         
27212 2004-04-26  Jackson Harper  <jackson@ximian.com>
27214         * appdomain.c: Set assembly references public token value when
27215         PublicKeyToken is specified, not the hash_value. Free public token
27216         values when free assembly name data. Previously the public key
27217         token was hex decoded, however we are using hex encoded public key
27218         tokens, so this is not neccasary.
27219         * assembly.c: Lookup assemblies in the gac if their public token
27220         value is set. Add function to allow enabling user gac
27221         lookups. Specify whether or not the assembly was loaded from the
27222         GAC. Compare full assembly names when checking the cache for
27223         assemblies (Temporarily disabled see comment in code). Remove
27224         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27225         specifies trace-loader they get extra info to stdout on the
27226         loading of assemblies.
27227         * image.h: Add a field for an assembly references public token
27228         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27229         whether an assembly has been loaded from the GAC.
27230         * image.c: Remove a corlib -> mscorlib name mapping.
27231         * loader.h: Add function to enable/disable the user gac.
27232         * mono-config.c: Check if the usergac is enabled in the config
27233         file.
27234         * icall.c: New icall to determine whether or not an assembly has
27235         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27236         * tabldefs.h: Add constant for assemblyref flag that specifies a
27237         full public key is used instead of a public token.
27238         * reflection.c: Remove mscorlib -> corlib mappings. Set
27239         PublicTokenValue instead of hash value. This value is a hex
27240         string so it does not need to be expanded.
27242 2004-04-26  Martin Baulig  <martin@ximian.com>
27244         * mono-debug-debugger.c (mono_debugger_initialize): Set
27245         `mono_debugger_initialized' before calling mono_debug_lock().
27247 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27249         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27250           InternalToUpper/InternalToLower.
27251         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27252           removed invariant culture shortcut.  This is now done in managed code.
27253         * locales.c: (string_invariant_toupper/tolower) removed.
27255 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27257         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27258         Added Poll internal call.
27260         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27261         call for Poll. Select was too heavy for polling a single socket.
27263         * threadpool.[ch]: added mono_threadpool_cleanup.
27264         * threads.c: use it. Don't use Thread_Abort on windows.
27266 2004-04-23  Martin Baulig  <martin@ximian.com>
27268         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27270 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27272         * icall.c: Registred new icalls for key pair protection and added an
27273         icall for Environment.GetFolderPath on Windows.
27274         * security.c|h: Added new icalls for key pair protection.
27276 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27278         * socket-io.c: don't display the non-supported family warning for known
27279         families. Now this is not displayed on windows when checking support
27280         for IPv4/IPv6.
27282 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27284         * class.c: don't display the layout warning for static fields.
27286 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27288         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27289         * locales.c, locales.h: Added new icalls for culture-specific
27290         Char.ToLower and Char.ToUpper.
27292 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27294         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27295         by David Waite.
27297 2004-04-20  Martin Baulig  <martin@ximian.com>
27299         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27300         of the type name before passing it to mono_reflection_type_from_name().
27302 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27304         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27305         encodings here. Fixes #56965.
27307 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27309         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27310         fix test on strstr result not that I can see anything that
27311         relies on the result.
27313 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27315         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27316         Fixes #57081.
27318         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27320         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27321         function to determine which marshalling to use for strings. Fixes
27322         #56965.
27324         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27326         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27328 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27330         * icall.c: #include mono-config.h
27332 2004-04-15  Jackson Harper  <jackson@ximian.com>
27334         * culture-info-tables.h: Fix date formats for en-US culture.
27335         
27336 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27338         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27339         ThreadPool.SetMinThreads.
27340         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27341         ThreadPool.SetMinThreads.
27343 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27345         * mono-config.c: also load the .config file in the directory
27346         where the assembly was found.
27348 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27350         * assembly.c: load per-assembly config files.
27351         * icall.c: decrapified code to get the config dir and moved to
27352         mono-config.c.
27353         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27354         per-assembly config files. When doing a dll map lookup give precedence
27355         to the per-assembly data.
27357 2004-04-14  Martin Baulig  <martin@ximian.com>
27359         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27360         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27361         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27363         * mono-debugger-debugger.c: While the debugger is locked, remember
27364         whether the symbol tables have changes and send one single
27365         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27367 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27369         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27371         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27372         function.
27374         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27375         account when marshalling string arrays. Fixes #56965.
27377 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27379         * icall.c: Add new icalls mapping for security.
27380         * security.c|h: Add internal calls for WindowsIdentity,
27381         WindowsImpersonationContext and WindowsPrincipal.
27383 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27385         * class.c: Added comment to ensure the System.MonoDummy class
27386         is removed when no longer necessary
27388 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27390         * appdomain.c: Pass arguments to the bootstraping exceptions to
27391         minimize JITed methods at boot
27393         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27394         second string to be null.
27396         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27397         Change the protocol to minimize the JIT methods at startup.  Now
27398         it Returns the internal codepage, if the value of "int_code_page"
27399         is 1 at entry, and we can not compute a suitable code page
27400         number, returns the code page as a string.
27402 2004-04-13  Jackson Harper  <jackson@ximian.com>
27404         * culture-info-tables.h: Fix number of decimal digits for all
27405         english locales.
27407 2004-04-13  Jackson Harper  <jackson@ximian.com>
27409         * icall.c: Clairfy out of sync error message. It is not always
27410         your corlib that is out of sync.
27412 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27414         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27415         properties when only the set accessor is overriden. Fixes #55874.
27417 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27419         * assembly.c (mono_assembly_load_references): Make this thread safe.
27420         Fixes #56327.
27422 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27424         * monosn.c: Add missing initialization calls.
27426 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27428         * locales.c:
27429         ves_icall_System_Globalization_CultureInfo_construct_number_format
27430         Fix g_assert so it compiles on fussier compilers re int/ptr
27431         mismatch
27433 2004-04-08  Dick Porter  <dick@ximian.com>
27435         * socket-io.h:
27436         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27437         53992.  Also rearrange the code so that the internal calls return
27438         an error value and exceptions are thrown from managed code.
27440         * icall.c: Add type info to the socket icalls.
27442 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27444         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27445         owes me a beer.
27447 2004-04-07  Martin Baulig  <martin@ximian.com>
27449         * class.c (mono_class_from_generic_parameter): Don't default
27450         `klass->parent' to `mono_defaults.object_type'.
27452 2004-04-07  Martin Baulig  <martin@ximian.com>
27454         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27455         `param->pklass->reflection_info'.       
27457 2004-04-07  Jackson Harper  <jackson@ximian.com>
27459         * culture-info-tables.h: Fix date separator symbol.
27460         
27461 2004-04-07  Martin Baulig  <martin@ximian.com>
27463         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27464         from System.Type to System.MonoType.
27466 2004-04-07  Martin Baulig  <martin@ximian.com>
27468         * reflection.h
27469         (MonoReflectionGenericParam): Added `has_reference_type' and
27470         `has_value_type' fields.
27472         * reflection.c (mono_image_get_generic_param_info): Encode the
27473         correct flags if we have the `class' or `struct' constraint.
27475 2004-04-07  Martin Baulig  <martin@ximian.com>
27477         * reflection.h
27478         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27480 2004-04-07  Jackson Harper  <jackson@ximian.com>
27482         * appdomain.c: Revert extra patches, just wanted to bump the
27483         version number.
27484         
27485 2004-04-07  Jackson Harper  <jackson@ximian.com>
27487         * Makefile.am: Add culture-info private headers.
27488         * icall.c: Add new icalls for contructing locales.
27489         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27490         * locales.h: Declare new culture info construction methods.
27491         * object.h: Add new fields used to avoid the CultureMap to
27492         MonoCultureInfo.
27493         * culture-info.h: Definition of structs used in the culture info
27494         tables.
27495         * culture-info-tables.h: Autogenerated tables that contain culture
27496         info data. This file was generated with the locale-builder tool.
27497         * appdomain.c: Incement corlib version number.
27498         
27499 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27501         * appdomain.c: (mono_runtime_init) move mono_thread_init
27502         to before mono_object_new calls so critical sections
27503         are initialized before use.
27505 2004-04-07  Martin Baulig  <martin@ximian.com>
27507         * icall.c
27508         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27509         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27510         (ves_icall_MonoGenericParam_initialize): Removed.
27511         (monogenericparam_icalls): Removed.
27512         (generictypeparambuilder_icalls): Added new table for
27513         System.Reflection.Emit.GenericTypeParameterBuilder.
27515         * reflection.c
27516         (mono_reflection_define_generic_parameter): Removed.
27517         (mono_reflection_initialize_generic_parameter): This is now called
27518         from GenericTypeParameterBuilder's .ctor.
27520 2004-04-06  Martin Baulig  <martin@ximian.com>
27522         * class.c (mono_class_init): Don't inflate nested classes in a
27523         generic instance.
27524         (mono_type_get_name_recurse): Include the generic arguments for
27525         generic instances and generic type declarations.
27526         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27527         (_mono_class_get_instantiation_name): Removed.
27528         (mono_class_create_generic): Always use `gklass->name' as our name.
27530         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27532         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27533         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27534         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27535         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27536         closed generic methods here.
27538         * reflection.c
27539         (mono_reflection_generic_inst_get_nested_types): Removed.
27540         (inflate_mono_method): Copy the generic parameters from the
27541         MonoMethodHeader into out MonoGenericMethod.
27543 2004-04-06  Martin Baulig  <martin@ximian.com>
27545         * row-indexes.h
27546         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27548         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27550         * reflection.c (build_compressed_metadata): If we have any entries
27551         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27552         set the header version to 1.1.
27554 2004-04-06  Martin Baulig  <martin@ximian.com>
27556         * class.c (mono_class_init): If we're a generic instance,
27557         initialize our nested classes, too.
27558         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27559         suffix. 
27561 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27563         * process.c: quote the argument passed to the shell on windows.
27565 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27567         * threads.c (mono_alloc_special_static_data): Allow this to be
27568         called during startup.
27570 2004-04-02  Martin Baulig  <martin@ximian.com>
27572         * icall.c
27573         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27575 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27577         * icall.c: Fix build.
27579 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27581         * Makefile.am: Added security.c|h.
27582         * icall.c: Added icall for get_UserName;
27583         * security.c: New file for security related icalls. Added function
27584         get_UserName for System.Environment (fix #56144).
27585         * security.h: New. Header file for security.c
27587 2004-04-02  Dick Porter  <dick@ximian.com>
27589         * icall.c: Deleted the icalls that were obsoleted some time ago
27590         by the ICU string code, and which were mixed into the icall
27591         rearranging.  Fixes bug 55969.
27593         * string-icalls.h: 
27594         * string-icalls.c: Deleted the code that those icalls reference.
27596 2004-04-01  Martin Baulig  <martin@ximian.com>
27598         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27600         * class.c (mono_class_from_generic_parameter): Don't set 
27601         TYPE_ATTRIBUTE_INTERFACE.
27602         (my_mono_class_from_generic_parameter): Likewise.
27604 2004-04-01  Martin Baulig  <martin@ximian.com>
27606         * loader.c (find_method): Added an optional `MonoClass *ic'
27607         argument to search in a specific interface.
27608         (mono_get_method_constrained): New public function.
27610 2004-04-01  Martin Baulig  <martin@ximian.com>
27612         * reflection.c (mono_image_get_generic_field_token): Use the
27613         `handleref' cache here.
27615 2004-04-01  Martin Baulig  <martin@ximian.com>
27617         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27619         * reflection.c (create_generic_typespec): Use the `typespec' hash
27620         here, not the `typeref' one.    
27622 2004-04-01  Martin Baulig  <martin@ximian.com>
27624         * class.c (mono_class_inflate_generic_type): Moved the
27625         functionality into a new static inflate_generic_type() which
27626         returns NULL if it didn't do anything.  Only increment the
27627         `mono_stats.inflated_type_count' if we actually inflated
27628         something.
27629         (mono_class_get_full): Check the classes type to see whether we
27630         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27632 2004-04-01  Jackson Harper  <jackson@ximian.com>
27634         * reflection.c: Set culture for assembly references.
27635         
27636 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27638         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27640 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27642         * assembly.c:
27643         (do_mono_assembly_open): the critical section also covers
27644         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27646 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27648         * threads.c:
27649         (mono_manage_threads): abort the background threads when finishing.
27650         Fixes bug #47232.
27652 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27654         * gc.c: only close the done_event handle if there was no timeout.
27655         C-ified comments.
27657 2004-03-30  Martin Baulig  <martin@ximian.com>
27659         * icall.c (icall_entries): It's called "System.Activator", not
27660         "System.Activation".    
27662 2004-03-30  Martin Baulig  <martin@ximian.com>
27664         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27665         (mono_class_create_from_typespec): Likewise.
27667 2004-03-30  Martin Baulig  <martin@ximian.com>
27669         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27670         `has_ctor_constraint' and `initialized'.
27672 2004-03-30  Martin Baulig  <martin@ximian.com>
27674         * reflection.c (encode_new_constraint): New static function to add
27675         the constructor constraint attribute to a type parameter.
27676         (encode_constraints): Call encode_new_constraint() if necessary.
27678         * reflection.h
27679         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27681         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27682         
27683 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27685         * reflection.c, icall.c: add support for pinning variables. 
27687 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27689         * marshal.c (mono_marshal_get_managed_wrapper):
27690         init bool local with zero rather than null.
27692 2004-03-29  Martin Baulig  <martin@ximian.com>
27694         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27695         the "official" behavior here.
27696         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27698 2004-03-29  Martin Baulig  <martin@ximian.com>
27700         * icall.c: Reflect latest API changes.
27702 2004-03-29  Martin Baulig  <martin@ximian.com>
27704         * loader.c (mono_get_method_from_token): Also call
27705         mono_metadata_load_generic_params () for abstract and interface
27706         methods; replace the type arguments in the method signature with
27707         the ones which are loaded from the metadata.
27709 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27711         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27712         of the lock is not the current thread. MS.NET don't do it, in spite of
27713         what the documentation says. See bug #56157.
27715 2004-03-28  Martin Baulig  <martin@ximian.com>
27717         * class.c (mono_class_init): Don't call init_properties() and
27718         init_events() for generic instances; set `prop->parent' when
27719         inflating properties.
27721         * reflection.c (mono_generic_inst_get_object): Call
27722         `mono_class_init (ginst->klass)'.
27723         (mono_type_get_object): Only create a MonoGenericInst if your
27724         generic type is a TypeBuilder.
27725         (do_mono_reflection_bind_generic_parameters): Only set
27726         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27728 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27730         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27731         Fixes #56091.
27733 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27735         * icall.c: added Kill_internal icall.
27736         * process.[ch]: added Kill_internal icall.
27738 2004-03-25  Martin Baulig  <martin@ximian.com>
27740         * class.h (MonoStats): Added `generic_instance_count',
27741         `inflated_method_count', `inflated_type_count' and
27742         `generics_metadata_size'.       
27744 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27746         * reflection.c: no warnings now.
27748 2004-03-25  Martin Baulig  <martin@ximian.com>
27750         * class.c (mono_class_get_full): New public function; does a
27751         mono_class_get(), but also takes a `MonoGenericContext *'.
27753         * loader.c (mono_field_from_memberref): Renamed to
27754         `field_from_memberref', made static and added `MonoGenericContext *'
27755         argument.
27756         (mono_field_from_token): Added `MonoGenericInst *' argument.
27757         (method_from_memberef): Likewise.
27758         (mono_get_method_from_token): Likewise.
27759         (mono_get_method_full): New public function; does a
27760         mono_get_method(), but also takes a `MonoGenericContext *'.
27762         * verify.c (mono_method_verify): Get the method's generic context
27763         and pass it to mono_field_from_token(), mono_get_method_full() and
27764         mono_class_get_full().
27766 2004-03-25  Martin Baulig  <martin@ximian.com>
27768         * class.c (mono_class_inflate_generic_type): Take a
27769         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
27770         `MonoGenericMethod *'.
27772 2004-03-25  Martin Baulig  <martin@ximian.com>
27774         * loader.h (MonoMethodInflated): Store the MonoGenericContext
27775         instead of the MonoGenericMethod here.
27777 2004-03-25  Martin Baulig  <martin@ximian.com>
27779         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
27780         each time we create a new MonoGenericInst, we also create a new
27781         context which points back to us.
27783         * class.c (inflate_method): Use `ginst->context' instead of
27784         creating a new context.
27786         * loader.c (method_from_memberref): Use
27787         `klass->generic_inst->context' instead of creating a new context.
27789 2004-03-25  Martin Baulig  <martin@ximian.com>
27791         * class.h (MonoGenericContext): New struct.
27792         (MonoGenericMethod): Removed `generic_inst'.
27794         * class.c (mono_class_inflate_generic_method): Take a
27795         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
27797 2004-03-25  Martin Baulig  <martin@ximian.com>
27799         * loader.h (MonoMethodInflated): New typedef.
27801         * metadata.h (MonoMethodSignature): Removed `gen_method', make
27802         `generic_param_count' consume just 30 bits, added `is_inflated'
27803         and `has_type_parameters' flags (one bit each).
27805         * class.c (mono_class_inflate_generic_method): Create a
27806         MonoMethodInflated instead of a MonoMethodNormal and set
27807         `is_inflated' in the method signature.
27809         * class.h (MonoGenericMethod): Removed `generic_method'.
27811 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
27813         * image.c: Make sure the name of a MonoImage is always an absolute path.
27814           This fixes bug #54415.
27816 2004-03-24  Martin Baulig  <martin@ximian.com>
27818         * class.c (mono_class_setup_vtable): If we're a generic instance,
27819         use our generic type's vtable size.
27821 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
27823         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
27824         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
27825         problems.
27827 2004-03-23  Martin Baulig  <martin@ximian.com>
27829         * class.h (MonoDynamicGenericInst): Added `int count_events' and
27830         `MonoEvent *events'.
27832         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
27833         (typebuilder_icalls): Added "get_event_info"; calls
27834         mono_reflection_event_builder_get_event_info(). 
27836         * reflection.c (mono_reflection_generic_inst_initialize): Added
27837         `MonoArray *events'.
27838         (mono_reflection_event_builder_get_event_info): New function.
27840 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
27842         * object.h: add mono_type_initialization_init
27844         * object.c (mono_runtime_class_init): 
27845         implement class constructor synchronization rules
27846         to cope with threading issues.  
27847         add mono_type_initialization_init
27849         * appdomain.c (mono_runtime_init): call 
27850         mono_type_initialization_init
27852         * class.h: removing initializing field from MonoVTable
27854 2004-03-23  Martin Baulig  <martin@ximian.com>
27856         * class.c (my_mono_class_from_generic_parameter): Use
27857         `param->name' if it's not NULL. 
27859 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
27861         * class.c: do not insert non-virtual methods in the vtable.
27862         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
27863         that means the method is non-virtual. This never would have
27864         happened before.
27866 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
27868         * profiler.c: Added lock for accessing coverage_hash.
27870 2004-03-22  Martin Baulig  <martin@ximian.com>
27872         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
27873         `method->method->signature->generic_param_count != 0' to make it
27874         work for interface methods.
27876 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27878         * process.c: quote the string passed to the shell using g_shell_quote.
27880 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27882         * threads.c:
27883         (mono_threads_manage): don't remove the finalizer thread and self
27884         from the threads hash table so that mono_thread_manage can be called
27885         more than once.
27887 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27889         * process.c: quote the arguments when UseShellExecute is true. Fixes
27890         bug #55790.
27892 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27894         * threads.c: set mono_thread_detach as a cleanup routine for every
27895         thread. This way it's always executed upon thread termination, either
27896         aborted or finished normally. No more xsp hangs!
27898 2004-03-17  Martin Baulig  <martin@ximian.com>
27900         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
27901         `int count_nested' and a `MonoType **nested'.
27903         * reflection.c (mono_reflection_bind_generic_parameters): Moved
27904         most of the functionality into a new static
27905         do_mono_reflection_bind_generic_parameters() and don't take a
27906         `MonoType *nested_in' argument any more.  Don't compute nested
27907         types here.
27908         (mono_reflection_generic_inst_get_nested_types): New public method
27909         to get nested types.
27911         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27912         we're a nested class.
27914         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27915         mono_reflection_generic_inst_get_nested_types() to compute the
27916         nested types.
27918 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27920         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
27921         descriptive error message under windows.
27922         
27923 2004-03-17  Martin Baulig  <martin@ximian.com>
27925         * class.c (dup_type): Added `const MonoType *original' argument;
27926         copy the attrs from the original type.
27928 2004-03-17  Martin Baulig  <martin@ximian.com>
27930         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
27931         `m->generic_inst_cache' here.
27933 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27935         * exception.h exception.c: Add stack_overflow_exception.
27937 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27939         * threadpool.c:
27940         (overlapped_callback): call SetEvent *after* invoking the callback.
27941         No need to call CloseHandle.
27943 2004-03-16  Martin Baulig  <martin@ximian.com>
27945         * reflection.c (mono_image_get_fieldref_token): Take a
27946         `MonoReflectionField *' instead of a `MonoClassField *' and a
27947         `MonoClass *'; store the `MonoReflectionField *' in the hash.
27949 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27951         * appdomain.c: don't add the culture to the filename we're looking for
27952         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
27954 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27956         * locales.c: don't ignore symbols when doing case insensitive compares.
27957         Thanks Dick! Fixes bug #54046.
27959         * threads.c: surround 'threads' usage with enter/leave in
27960         mono_thread_manage.
27962 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
27964         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
27965         implicitly marshalled as [Out]. Fixes #55450.
27967         (mono_marshal_get_runtime_invoke): Zero out the result if there is
27968         an exception.
27970 2004-03-16  Martin Baulig  <martin@ximian.com>
27972         * class.c (mono_class_from_generic_parameter): Use the actual
27973         parameter name. 
27975 2004-03-16  Martin Baulig  <martin@ximian.com>
27977         * reflection.c (type_get_signature_size): New static function.
27978         Compues the size of the type in a method signature.
27979         (method_get_signature_size): New static function; calls
27980         type_get_signature_size() to compute the actual size of the
27981         method's signature.
27982         (method_encode_signature): Use method_get_signature_size() to get
27983         the signature's size rather than using `nparams * 10'.
27985 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27987         * file-io.h: define here WapiOverlapped on windows. I don't want the
27988         regular OVERLAPPED one.
27990         * file-io.c:
27991         * threadpool.c: somehow, BindIoCompletionCallback is not found.
27992         Disabling AIO on windows.
27994 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27996         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
27997         bug #55385.
27999 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28001         * appdomain.c: upgraded corlib version.
28003         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28004         and BeginWrite. Allow opening files for asynchrnous operations.
28006         * file-io.h: new struct that maps FileStreamAsyncResult.
28007         * icall.c: added new icalls.
28008         * process.[ch]: support setting child process environment variables
28009         and use the SHELL or COMSPEC when UseShellExecute is true.
28011         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28012         callback for async. IO is here and also BindHandle.
28014         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28015         from here.
28017 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28019         * reflection.c (create_custom_attr): Allow len == 0.
28021         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28022         computation on big-endian machines.
28024 2004-03-13  Martin Baulig  <martin@ximian.com>
28026         * class.h (MonoGenericInst): Added `int count_ifaces'.
28028         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28029         `ginst->count_ifaces' instead `klass->interface_count' since we
28030         may get called before the vtable is created.
28032         * loader.c (mono_method_get_param_names): If we're a generic
28033         instance, return and don't initialize the class.
28035         * reflection.c (mono_reflection_setup_generic_class): Don't call
28036         ensure_runtime_vtable().
28037         (mono_reflection_bind_generic_parameters): Set
28038         `ginst->count_ifaces'.
28040 2004-03-11  Jackson Harper <jackson@ximian.com>
28042         * icall.c:
28043         * unicode.c:
28044         * unicode.h: Remove unused System.Char icalls.
28045         
28046 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28048         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28049         code when we P/Invoke the first library in Windows.Forms, instead
28050         of when we first open the assembly.
28052         * assembly.c: Drop the lookup from here.
28054 2004-03-10  Martin Baulig  <martin@ximian.com>
28056         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28057         class for properties, fields and events.  Finally fixes #54945.
28059 2004-03-10  Martin Baulig  <martin@ximian.com>
28061         * metadata.c (mono_metadata_class_equal): New static function;
28062         checks whether two generic instances or two generic parameters are
28063         equal.
28064         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28065         compare classes.        
28067 2004-03-10  Martin Baulig  <martin@ximian.com>
28069         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28071         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28072         argument and write it into the `reflection_info' field.
28074         * icall.c
28075         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28076         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28078 2004-03-09  Jackson Harper  <jackson@ximian.com>
28080         * char-conversions.h: use 8 bits for numeric data its all we need
28081         * icall.c: numeric data is only 8 bits now.
28083 2004-03-09  Martin Baulig  <martin@ximian.com>
28085         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28087         * class.c (init_properties, init_events): Initialize the new
28088         `parent' field.
28090         * reflection.c (typebuilder_setup_properties): Likewise.
28091         (typebuilder_setup_events): Likewise.
28093         * reflection.h (MonoEventInfo): Replaced `parent with
28094         `declaring_type' and `reflected_type'.
28096         * icall.c (ves_icall_get_property_info): Distinguish between
28097         declaring and reflected type.
28098         (ves_icall_get_event_info): Likewise.
28100 2004-03-09  Martin Baulig  <martin@ximian.com>
28102         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28103         (ves_icall_Type_GetField): Correctly set field->klass.
28105 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28107         * loader.h: Fix warning.
28109 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28111         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28112         library routine if present.  Notice that it will still continue
28113         executing even if its missing, for those working on the Gtk#
28114         edition of Windows.Forms.
28116         * assembly.c (do_mono_assembly_open): If loading the
28117         System.Windows.Forms call mono_loader_wini_init.
28119 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28121         * class.h: Added MonoRemoteClass struct.
28122         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28123         function for MonoStrings.
28124         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28125         Added internal call for getting the proxy type.
28126         * marshal.c: Get the type of transparent proxies from its remote_class.
28127         Added methods that generate the IL for type checks and casts:
28128         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28129         mono_marshal_get_proxy_cancast.
28130         * marshal.h: Declaration of the previous new methods.
28131         * object.c: Added new moethods for creating and updating MonoRemoteClass
28132         instances: mono_remote_class, mono_upgrade_remote_class, 
28133         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28134         * verify.c: FIx transparent_proxy_fields layout.
28135         * appdomain.c: Bump corlib version.
28137 2004-03-04  Jackson Harper  <jackson@ximian.com>
28139         * icall.c: Add icall to access char conversion tables.
28140         * char-conversions.h: Character conversion tables.
28141         * Makefile.am: Add char-conversions.h private header file.
28142         
28143 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28145         * appdomain.c (unload_thread_main): Increase unloading timeout to
28146         10 sec as a temporary workaround for Nant problems.
28148 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28150         * gc.c: Add checks for GC_enable and GC_disable.
28152         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28153         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28154         (bug #54988).
28155         
28156 2004-02-27  Martin Baulig  <martin@ximian.com>
28158         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28159         `MonoReflectionType *' instead of a `MonoType *'.
28161 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28163         * gc.c (run_finalize): Avoid finalizing the object representing the
28164         finalizer thread.
28165         (finalizer_thread): Fix warning.
28167 2004-02-25  Martin Baulig  <martin@ximian.com>
28169         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28170         argument for nested types.
28171         (mono_class_create_generic): Added support for nested generictypes.
28173         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28174         `GList *nested'.
28176         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28178         * reflection.c (method_encode_signature): Increase the minimum
28179         value of `size' from 10 to 11.
28180         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28181         and `MonoType **types' arguments instead of the `MonoArray
28182         *types'; added `MonoType *nested_in'.  Recursively instantiate
28183         nested classes. 
28185 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28187         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28188         stack_overflow_ex members which are used by exception handling.
28190         * appdomain.c (mono_runtime_init): Initialize the new members.
28192         * gc.c (mono_gc_enable): New helper function.
28193         * gc.c (mono_gc_disable): New helper function.
28195 2004-02-23  Martin Baulig  <martin@ximian.com>
28197         * icall.c: I must have been really stupid - make it actually work
28198         this time ;-)
28200 2004-02-23  Martin Baulig  <martin@ximian.com>
28202         * loader.c (method_from_memberref): Only inflate the method if
28203         it's in another klass.
28205 2004-02-23  Martin Baulig  <martin@ximian.com>
28207         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28208         (mono_class_init): If we're a generic instance and an interface,
28209         compute `class->interface_id'; also create `class->interfaces'
28210         here and inflate them.
28212         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28213         `ginst->is_open'.
28214         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28216         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28218 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28220         * reflection.c (method_encode_code): Improved the error message
28221         generated by the exception.
28223 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28225         * icall.c: Martin did not do what he said in the ChangeLog for
28226         2004-02-18, but put back the changes for properties and events.
28227         Commenting those changes out again and adding comment to bug #54518.
28228         
28229         * process.c: removed warning.
28231 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28233         * marshal.c (emit_struct_conv): Print an error message instead of
28234         asserting when a type does not have the StructLayout attribute.
28236 2004-02-20  Martin Baulig  <martin@ximian.com>
28238         * reflection.c (mono_type_get_object): Also use the cache for
28239         generic instances.
28240         (mono_reflection_bind_generic_parameters): Always compute
28241         `ginst->ifaces'.        
28243 2004-02-20  Martin Baulig  <martin@ximian.com>
28245         * class.h (MonoGenericMethod): Removed `klass'.
28247         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28248         *klass' argument.
28250 2004-02-20  Martin Baulig  <martin@ximian.com>
28252         * reflection.c (method_encode_methodspec): Actually use the
28253         uninflated signature for the memberref.
28255 2004-02-20  Martin Baulig  <martin@ximian.com>
28257         * class.h (MonoGenericMethod): Removed `declaring'.
28259         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28260         is NULL, compute it here.
28262 2004-02-20  Martin Baulig  <martin@ximian.com>
28264         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28266         * metadata.c (mono_metadata_generic_inst_hash): New method.
28267         (mono_metadata_generic_inst_equal): New method.
28269         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28270         `klass->image->generic_inst_cache' cache to avoid creating
28271         duplicate MonoGenericInst's.
28273         * class.c (mono_class_inflate_generic_type): Use the cache.
28275 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28277         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28279 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28281         * icall.c: added Socket.WSAIoctl icall.
28283         * socket-io.[ch]: implemented
28284         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28286 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28288         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28290 2004-02-18  Urs C Muff  <umuff@quark.com>
28292         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28293         this work on PPC and other big-endian architectures.
28295         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28296         fields with an underscore to make sure they're only accessed by
28297         the read32() macro.
28299 2004-02-18  Martin Baulig  <martin@ximian.com>
28301         * icall.c: Put the klass->refclass changes back for methods and
28302         fields, but not for properties and events.  We're currently not
28303         distinguishing between DeclaringType and ReflectedType for
28304         properties and events, that's what caused the regressions.
28306 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28308         * object.c:
28309         (mono_async_result_new): the handle can be NULL.
28311         * threadpool.c: Use an event instead of a semaphore, don't initialize
28312         it until needed. This saves quite a few semaphores from being created
28313         when using the threadpool.
28315 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28317         * object.c (mono_string_is_interned_lookup): Fix interning of long
28318         strings. Fixes #54473.
28320         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28322         * icall.c: Revert the klass->refclass changes since they introduce
28323         regressions (bug #54518).
28325 2004-02-18  Martin Baulig  <martin@ximian.com>
28327         * class.c (mono_class_init): If we're a generic instance and don't
28328         come from a TypeBuilder, inflate our members here.
28329         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28330         (mono_class_create_generic): New public method.
28331         (mono_class_initialize_generic): Removed.
28332         (get_instantiation_name): Renamed to
28333         _mono_class_get_instantiation_name() and made it public.
28335 2004-02-18  Martin Baulig  <martin@ximian.com>
28337         * class.c (mono_class_inflate_generic_type): Clear the new
28338         instance's `nginst->klass' when inflating a generic instance.
28339         (mono_class_is_subclass_of): Added (basic) support for generic
28340         instances.
28342 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28344         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28345         MonoMempool to hold compiled native code.
28347 2004-02-17  Martin Baulig  <martin@ximian.com>
28349         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28350         `properties'.
28352         * reflection.c (mono_reflection_generic_inst_initialize): Added
28353         `MonoArray *properties' argument.
28355         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28357 2004-02-17  Martin Baulig  <martin@ximian.com>
28359         * icall.c (ves_icall_Type_GetFields): Renamed to
28360         ves_icall_Type_GetFields_internal() and added a
28361         `MonoReflectionType *rtype' argument; pass it to
28362         mono_field_get_object() to set the field's "reflected" type.
28363         (ves_icall_Type_GetConstructors): Likewise.
28364         (ves_icall_Type_GetEvents): Likewise.
28365         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28366         argument; pass it to mono_method_get_object() to set the method's
28367         "reflected" type.       
28369 2004-02-17  Martin Baulig  <martin@ximian.com>
28371         * class.h (MonoDynamicGenericInst): New type.
28372         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28374         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28375         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28376         (ves_icall_MonoGenericInst_GetFields): New interncall.
28378         * class.c (mono_class_from_generic): Don't call
28379         mono_class_initialize_generic() if this is a dynamic instance;
28380         ie. it's being created from a TypeBuilder.
28381         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28382         `class->byval_arg.type'.
28384         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28385         to `inflate_method' and made static.
28386         (mono_reflection_inflate_field): Removed.
28387         (mono_reflection_generic_inst_initialize): New public method.
28389         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28390         `ctors' and `fields'; added `initialized'.
28392 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28394         * debug-helpers.c (mono_method_full_name): Fix output for empty
28395         namespaces.
28397 2004-02-12  Martin Baulig  <martin@ximian.com>
28399         * class.h (MonoClassField): Added `MonoType *generic_type'.
28401         * reflection.c (mono_image_get_fieldref_token): Added support for
28402         instantiated generic types.
28403         (field_encode_inflated_field): Removed.
28404         (mono_image_get_inflated_field_token): Removed.
28405         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28407         * reflection.h (MonoReflectionInflatedField): Removed.
28409 2004-02-12  Martin Baulig  <martin@ximian.com>
28411         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28412         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28414         * reflection.c (mono_image_get_methodspec_token): Take a
28415         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28416         (mono_image_create_token): Check whether we have a
28417         `method->signature->gen_method' and call
28418         mono_image_get_methodspec_token() if appropriate.
28419         (inflated_method_get_object): Removed.
28420         (mono_reflection_bind_generic_method_parameters): Return a
28421         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28422         (mono_reflection_inflate_method_or_ctor): Likewise.
28424         * reflection.h (MonoReflectionInflatedMethod): Removed.
28426 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28428         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28429         for custom valuetype marshalling.
28431         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28433 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28435         * icall.c: fixed WSAGetLastError_internal name.
28437 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28439         * threads.c (mono_thread_attach): Allow this to be called multiple
28440         times for a thread.
28441         
28442         * threads.c (build_wait_tids): Do not wait for ourselves.
28444         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28445         appdomain list is empty.
28447         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28448         memory returned by mono_string_builder_to_utf16, since it points into
28449         managed memory. Thanks to Bernie Solomon for noticing this.
28451         * icall.c: Add AppDomainSetup icalls.
28453         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28455         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28456         types.
28458         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28459         custom attributes to the method_aux struct. Also fix array indexes etc.
28461         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28462         
28463 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28465         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28466         (both static and runtime) and reduce startup time.
28468 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28470         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28471         AsAny marshalling conversion instead of crashing.
28473         * marshal.c: Fix warnings.
28475 2004-02-09  Martin Baulig  <martin@ximian.com>
28477         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28479         * reflection.h (MonoReflectionInflatedMethod): Removed the
28480         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28482         * reflection.c (method_encode_methodspec): Removed the `method'
28483         argument; we get it from `gmethod->declaring'.
28484         (inflated_method_get_object): Removed the `declaring' argument.
28486 2004-02-09  Martin Baulig  <martin@ximian.com>
28488         * class.h (MonoGenericMethod): New type.
28489         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28490         `generic_method'.
28492         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28493         a `MonoGenericMethod *gen_method' one.
28495         * class.c (mono_class_inflate_generic_type): Take an additional
28496         `MonoGenericMethod * argument.  This is only non-NULL if we're
28497         inflating types for a generic method.   
28498         (mono_class_inflate_generic_signature): Renamed to
28499         inflate_generic_signature() and made static; take a
28500         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28501         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28502         instead of a `MonoGenericInst *' one.
28503         (mono_class_inflate_generic_method): Likewise.
28505         * reflection.c (encode_generic_method_sig): Take a
28506         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28507         (method_encode_methodspec): Likewise.
28508         (inflated_method_get_object): Likewise. 
28510         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28511         field with a `MonoGenericMethod *gmethod' one.  
28513 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28515         * class.h (mono_class_has_parent): add parens to expansion
28516         so you can ! this.
28518 2004-02-08  Martin Baulig  <martin@ximian.com>
28520         * image.h (MonoImage): Removed `generics_cache'.
28522         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28523         instead of a `MonoType *' argument; removed the `inflate_methods'
28524         argument.  Don't inflate methods here.
28526         * loader.c (find_method): If it's a generic instance, call
28527         mono_class_init() on the `sclass->generic_inst->generic_type'.
28529         * metadata.c (mono_type_size): Make this work on uninitialized
28530         generic instances; call it on the `ginst->generic_type's class.
28532         * reflection.c (mono_reflection_bind_generic_parameters): Call
28533         mono_class_from_generic() to create the `ginst->klass'.
28535 2004-02-08  Martin Baulig  <martin@ximian.com>
28537         * class.h (MonoClass): Changed type of `generic_inst' from
28538         `MonoType *' to `MonoGenericInst *'.
28540 2004-02-08  Martin Baulig  <martin@ximian.com>
28542         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28543         mono_type_get_object(), this is now creating a `MonoGenericInst'
28544         for MONO_TYPE_GENERICINST.
28545         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28546         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28548         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28549         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28550         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28551         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28552         and reflected type.
28554         * reflection.h (MonoReflectionInflatedMethod): Removed
28555         `declaring_type' and `reflected_type'.
28557 2004-02-08  Martin Baulig  <martin@ximian.com>
28559         * class.h (MonoGenericInst): Added `MonoType *parent' and
28560         `MonoType **ifaces'.
28562         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28563         `parent' and `interfaces'.
28565         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28566         `MonoType *' argument and return a `MonoType *'.
28568         * icall.c
28569         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28570         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28572 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28574         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28575         valuetype marshalling.
28577 2004-02-06  Martin Baulig  <martin@ximian.com>
28579         * class.c
28580         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28581         (my_mono_class_from_generic_parameter): Likewise.
28583 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28585         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28586         contents of the symbol files lazily.
28588         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28590         * threads.h threads.c icall.c: New icalls for getting and setting the
28591         threads name.
28593 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28595         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28596         Raise an exception when the domain is not found.
28598 2004-02-03  Martin Baulig  <martin@ximian.com>
28600         * reflection.c (mono_image_get_methodspec_token): Use the
28601         uninflated signature; fixes gen-33.
28603 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28605         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28606         the finalizer code can use thread functionality.
28608         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28609         the finalizer thread.
28611         * threads.c: Make some functions more robust.
28613         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28615         * metadata.h: Add new marshalling conventions.
28617         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28618         stringbuilder marshalling. Fixes #53700.
28620         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28622         * reflection.c (mono_image_get_type_info): Save declarative security
28623         info.
28625         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28626         unmanaged fields as well.
28628         * appdomain.c: Bump corlib version.
28630 2004-02-01  Martin Baulig  <martin@ximian.com>
28632         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28633         method type arguments.  
28635 2004-01-30  Duncan Mak  <duncan@ximian.com>
28637         * marshal.h: Add prototype for
28638         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28639         and
28640         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28641         fix the build.
28643 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28645         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28646         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28648 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28650         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28651         custom marshalling of valuetypes.
28653         * marshal.c: Fix some warnings.
28655 2004-01-29  Martin Baulig  <martin@ximian.com>
28657         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28658         for generic method parameters.
28660         * reflection.c (method_encode_methodspec): Write the uninflated
28661         signature into the methodspec table.
28662         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28663         is always the uninflated method.
28664         (reflection_methodbuilder_to_mono_method): Copy the generic
28665         parameters from the MethodBuilder into `header->gen_params'.
28667 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28669         * class.c (mono_class_from_generic_parameter): Fix warning.
28671 2004-01-27  Martin Baulig  <martin@ximian.com>
28673         * class.c (mono_class_from_generic_parameter): Don't create
28674         `klass->methods' here.  
28676 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28678         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28679         extension since it does not work with libraries named lib<FOO>.dll.so.
28681 2004-01-25  Martin Baulig  <martin@ximian.com>
28683         * class.c (mono_class_inflate_generic_type): Added support for
28684         MONO_TYPE_GENERICINST.
28686         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28687         inflate methods on open constructed types.      
28689 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28691         * object.c: fire ProcessExit event in the root AppDomain after running
28692         Main. Fixes bug #53299.
28694 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28696         * socket-io.c: include the new socket-wrappers.h header.
28697         Use the wrappers instead of the unix socket functions to make the code
28698         more clear.
28700 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28702         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28704         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28705         Fixes #22532.
28707 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28709         * reflection.c (mono_image_create_pefile): Handle the case when the
28710         entry point is not a MethodBuilder.
28712         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28713         field to ReflectionMethod since it is not allways a builder.
28715         * reflection.c (type_get_fully_qualified_name): New helper function to
28716         return the fully qualified name of a type.
28718         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28719         type name for custom marshallers.
28721         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28723         * class.c (mono_class_setup_vtable): If a parent class already 
28724         implements an interface, use the implementing methods from that class.
28725         Fixes #53148.
28727 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28729         * threadpool.c: just return instead of ExitThread to allow for thread
28730         clean up earlier.
28732 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28734         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28735         when closing resource modules.
28737         * reflection.c (mono_image_create_pefile): Handle the case when the
28738         entry point is not a MethodBuilder.
28740         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28741         field to ReflectionMethod since it is not allways a builder.
28743 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28745         * marshal.c (mono_marshal_get_managed_wrapper): 
28746         mono_marshal_alloc takes native int so CONV_I
28747         the arg for 64bits.
28749 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28751         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28752         tokens in the cattr table. Fixes #53108.
28754 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28756         * loader.c: don't trim ".dll" before looking up in the config file.
28757         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
28759 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
28761         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
28762         Return the module which contains the resource as well.
28763         (ves_icall_System_Reflection_Module_Close): New icall.
28765         * appdomain.c: Bump corlib version number.
28767         * image.c (mono_image_addref): New public function.
28769         * assembly.c: Call mono_image_addref.
28771         * reflection.c (mono_module_get_object): Increase reference count of 
28772         the image.
28774         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28775         Fixes #22532.
28777         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
28778         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
28779         proper exceptions on DllImport problems.
28781 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
28783         * class.c, metadata.c: eliminate CSIZE macro.
28785 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
28787         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
28788         * object.h: Added async_callback field in MonoAsyncResult.
28789         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
28790         * verify.c: Added async_callback in MonoAsyncResult layout.
28792 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
28794         * reflection.c (mono_reflection_get_custom_attrs): Add support
28795         for Modules.
28797 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28799         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
28800         marshalling.
28801         (mono_marshal_method_from_wrapper): Add null pointer check.
28803 2004-01-16  Martin Baulig  <martin@ximian.com>
28805         * debug-mono-symfile.h: Set version number to 36 and reflect
28806         latest symbol writer changes.
28808 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28810         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
28811         multi-dimensional arrays.
28812         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
28813         (mono_class_from_mono_type): Use bounded_array_class_get.
28814         
28815         * class.c (mono_bounded_array_class_get): New function which takes
28816         a 'bounded' bool argument to distinguish vectors from one dimensional
28817         arrays.
28819         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
28820         bounded_array_class_get if the array has bounds.
28822         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28823         Search modules loaded using AssemblyBuilder:AddModule as well.
28825 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28827         * appdomain.c: increased corlib version.
28828         * filewatcher.c: removed g_print.
28829         * icall.c:
28830         (get_property_info): only allocate what is actually requested.
28831         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
28833 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28835         * Makefile.am: added filewatcher.[ch]
28836         * filewatcher.[ch]: FileSystemWatcher runtime support.
28837         * icall.c: added new FSW icalls.
28839 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
28841         * string-icalls.c: fix stringbuilder regression as suggested by
28842         Iain McCoy <iain@mccoy.id.au>.
28844 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
28846         * process.c (process_read_stringtable_block): Recognize '007f' as
28847         a language neutral stringtable block.
28849 2004-01-12  Patrik Torstensson
28851         * object.h (MonoStringBuilder) : Changed layout to support our
28852         new stringbuilder class.
28853         * marshal.c: Change marshalling to support the new layout of 
28854         string builder.
28855         * appdomain.c: increased version number because new layout of
28856         string builder.
28858 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
28860         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
28861         assembly name as an string instead of an AssemblyName, since it is
28862         easier to extract info from it.
28864         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
28865         the culture subdirectories too. Fixes #52231.
28867 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28869         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
28870         It takes 2 new parameters with an optional name for the method to look
28871         for and case ignoring info.
28873         * threadpool.c: removed unused variable.
28875 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28877         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
28878         It takes 2 new parameters with an optional name for the property to look
28879         for and case ignoring info.
28880         Fixes bug #52753.
28882 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
28884         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
28885         Fix #52451.
28887 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28889         * appdomain.c:
28890         * assembly.c: escape the uri before passing it to g_filename_from_uri.
28891         Fixes bug #52630.
28893 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
28895         * reflection.c: Add support for more than one unmanaged resource.
28897         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
28898         in field->def_value, as done in all other cases.
28900         * reflection.c (mono_reflection_get_custom_attrs): Add support for
28901         TypeBuilders.
28903         * reflection.c (mono_reflection_create_runtime_class): Remove 
28904         errorneous assignment to klass->element_class, since it is already
28905         done in mono_reflection_setup_internal_class.
28907 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28909         * gc.c: added missing LeaveCriticalSection.
28910         * icall.c: indented a couple of lines.
28911         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28912         if we call EndInvoke inside a callback. Fixes bug #52601.
28914 2004-01-07  Martin Baulig  <martin@ximian.com>
28916         * mono-debug-debugger.h
28917         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
28919 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
28921         * appdomain.c: Use messages in NotImplementedException.
28923         * exception.c (mono_get_exception_not_implemented): Now this takes
28924         a message argument.
28926         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
28927         exception instead of g_asserting an aborting when something is not
28928         implemented.
28930         Add some inline docs.
28932 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
28934         * reflection.h: Update after changes to object layout.
28936         * reflection.c: Implement saving of unmanaged aka win32 resources.
28938         * appdomain.c: Bump version number.
28940         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
28941         Handle missing domains gracefully.
28943 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
28945         * file-io.c : On Windows, there are much more invalid_path_chars.
28947 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
28949         * class.h, object.c: prepare for GetType () speedup.
28951 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
28953         * profiler.c: workaround for --profile null reference exception on
28954           cygwin. Patch by Patrik Torstensson.
28956 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
28958         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
28959         make work for unaligned access.
28961 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
28963         * class.c: small cleanup (class->fields [i] -> field).
28964         * image.c: check address of metadata is valid.
28966 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
28968         * assembly.h assembly.c (mono_assembly_loaded): New public function to
28969         search the list of loaded assemblies.
28971         * reflection.c (mono_reflection_type_from_name): Use 
28972         mono_assembly_loaded instead of mono_image_loaded.
28974         * reflection.c: Fix warnings.
28976 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
28978         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
28979         is dynamic. This is needed since an assembly can contain both dynamic and
28980         non-dynamic images.
28982         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
28983         assembly->dynamic.
28985         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
28987         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
28988         to store modules loaded using AddModule.
28990         * reflection.c (mono_image_fill_file_table): Generalize this so it works
28991         on Modules.
28993         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
28995         * reflection.c (mono_image_fill_export_table_from_module): New function to
28996         fill out the EXPORTEDTYPES table from a module.
28998         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
28999         into a separate function. Also handle loaded non-dynamic modules.
29001         * reflection.c (mono_image_basic_init): Fix memory allocation.
29003         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29005         * assembly.c (mono_assembly_load_references): Make this public.
29007 2003-12-19  Martin Baulig  <martin@ximian.com>
29009         * class.c (mono_class_initialize_generic): Made this static, take
29010         a `MonoGenericInst *' instead of a `MonoClass *'.
29011         (mono_class_from_generic): Call mono_class_initialize_generic()
29012         unless we're already initialized or being called from
29013         do_mono_metadata_parse_generic_inst().
29015         * class.h (MonoGenericInst): Added `initialized' and
29016         `init_pending' flags.
29018         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29019         `mono_class_init (gklass)' or mono_class_initialize_generic()
29020         here; set `generic_inst->init_pending' while parsing the
29021         `type_argv'.
29023 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29025         * locales.c: include string.h for memxxx prototypes
29027 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29029         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29030         constructor when accessing literal fields.
29032 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29034         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29036         * reflection.c (assembly_add_resource_manifest): New function to fill
29037         the MANIFESTRESOURCE table.
29039         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29041         * reflection.h: Update to changes in class layout.
29043         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29044         Reenable call to mono_runtime_is_shutting_down ().
29046         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29047         determine if the runtime is shutting down.
29049 2003-12-16  Jackson Harper <jackson@ximian.com>
29051         * icall.c: comment out call to mono_runtime_is_shutting_down to
29052         fix build.
29053         
29054 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29056         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29057         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29059 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29061         * reflection.c: move definition of swap_with_size
29062         to before its first call
29064 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29066         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29068         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29069         icall.
29071         * object.c: Fix warnings.
29073         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29074         members if FlattenHierarchy is set.
29076         * reflection.c (mono_image_add_decl_security): New function to emit
29077         declarative security.
29079         * reflection.h reflection.c: Add support for declarative security.
29081         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29082         
29083 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29085         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29086         
29087         * appdomain.c verify.c: Moved corlib version checking into its own
29088         function in appdomain.c since it needs to create vtables etc.
29090 2003-12-13  Patrik Torstensson <p@rxc.se>
29092         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29093         instead of unwrapped server.
29095 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29097         * verify.c (check_corlib): Fix field index.
29099 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29101         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29102         GetGacPath icall.
29104 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29106         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29107         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29108         cope with sizeof(size_t) != sizeof(guint32).
29110 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29112         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29113         in case of failure.
29115 2003-12-10  Mark Crichton <crichton@gimp.org>
29117         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29118         in managed code.
29120         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29122 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29124         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29125         marked as deleted.
29127 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29129         * verify.c (check_corlib): Handle the case when the version field is 
29130         initialized by a static constructor.
29132 2003-12-08  Patrik Torstensson  <p@rxc.se>
29134     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29136 2003-12-08  Martin Baulig  <martin@ximian.com>
29138         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29139         a MonoReflectionGenericParameter, also take the parameter index
29140         and name as arguments.
29141         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29142         (ves_icall_MonoGenericParam_initialize): New interncall.
29143         (ves_icall_Type_make_byref_type): New interncall.
29145         * reflection.h (MonoReflectionGenericParam): Derive from
29146         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29147         `index' fields.
29149         * reflection.c (mono_reflection_define_generic_parameter): Create
29150         and return a new MonoReflectionGenericParam; don't initialize the
29151         constraints here.
29152         (mono_reflection_initialize_generic_parameter): New public method;
29153         initializes the constraints and creates the `param->pklass'.
29155 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29157         * reflection.h reflection.c: Use the new fields 'num_types', 
29158         'num_fields' and 'num_methods' to track the number of types etc.
29160         * verify.c (check_corlib): Check corlib version number.
29162 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29164         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29165         function works on all methods.
29167 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29169         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29170         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29171         the custom_type_info flag of the transparent proxy.
29172         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29173         objects that supports IRemotingTypeInfo.
29174         * object.h: Added custom_type_info field in transparent proxy.
29176 2003-12-06  Martin Baulig  <martin@ximian.com>
29178         * class.c (mono_class_create_from_generic): Removed.
29179         (mono_class_from_generic): Check `ginst->klass' before doing
29180         anything else.  This is important to fully support "recursive"
29181         generic types.
29183         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29184         empty `generic_inst->klass' before doing anything else.
29186 2003-12-06  Dick Porter  <dick@ximian.com>
29188         * verify.c: 
29189         * object.h:
29190         * icall.c:
29191         * locales.c: Use C structs to access class fields.  Don't do a
29192         conversion between MonoString and UChar because both are
29193         platform-endian UTF-16.  Compare now takes startindex and count
29194         parameters.  Add a char overload for IndexOf.  Speed up the
29195         invariant string IndexOf.
29197 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29199         * Makefile.am (monosn_LDADD): Fix parallel build.
29201 2003-12-04  Martin Baulig  <martin@ximian.com>
29203         * icall.c
29204         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29205         (ves_icall_Type_make_array_type): New interncall.       
29207 2003-12-04  Martin Baulig  <martin@ximian.com>
29209         * locales.c: also change it in the !HAVE_ICU case.
29211 2003-12-04  Dick Porter  <dick@ximian.com>
29213         * icall.c:
29214         * locales.c: construct_compareinfo is now in CompareInfo, not
29215         CultureInfo.
29217 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29219         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29220         image->files array.
29222         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29223         table as well.
29225         * assembly.c (mono_assembly_load_references): Only load references
29226         once.
29228         * class.c (mono_class_from_name): Avoid linear search of the 
29229         EXPORTEDTYPE table.
29231         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29233 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29235         * image.h (MonoImage): Add 'field_cache' field.
29237         * loader.c (mono_field_from_token): Cache field lookups.
29238         
29239         * reflection.c (mono_module_get_object): Fix name property.
29241         * icall.c (ves_icall_get_enum_info): Update after changes to 
29242         mono_metadata_get_constant_index ().
29244         * icall.c: Get rid of get_type_info icall, use a separate icall for
29245         each type property to avoid needless memory allocations. Fixes #51514.
29247         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29248         to avoid needless binary searches.
29250         * class.c (class_compute_field_layout): Move the initialization of
29251         field->def_value to mono_class_vtable ().
29253         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29254         non-corlib types.
29256         * object.c (mono_object_allocate): Make it inline.
29258         * object.c (mono_object_allocate_spec): Make it inline.
29259         
29260 2003-12-02  Dick Porter  <dick@ximian.com>
29262         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29263         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29265 2003-12-01  Dick Porter  <dick@ximian.com>
29267         * threads.c: Fix signature and call in CreateMutex and
29268         CreateEvent.
29270 2003-12-01  Dick Porter  <dick@ximian.com>
29272         * icall.c: 
29273         * locales.c: Implement string compares and searching
29275         * object.h: Add extra Thread field
29277 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29279         * reflection.c (fixup_method): Add support for MonoCMethod.
29281 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29283         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29285         * reflection.c (assembly_name_to_aname): Allow extra characters in
29286         assembly names. Fixes #51468.
29288 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29290         * exception.c (mono_exception_from_name_domain): New helper function.
29292         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29293         exception object in the correct domain.
29295         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29296         formatting + make a copy a the input data.
29298         * loader.c (mono_get_method_from_token): Methods which contain
29299         native code do not have entries in the ImplMap.
29301         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29302         Thanks to Gonzalo for spotting this.
29303         
29304         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29305         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29307         * assembly.h (mono_assembly_load_from): Split the second part of 
29308         assembly loading into a new public function.
29310         * exception.h (mono_get_exception_bad_image_format): New function.
29312 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29314         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29315         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29316         
29317         * icall.c: Add new icall for creating dynamic methods.
29319         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29321         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29323         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29324         create a dynamic method.
29326         * reflection.c (resolve_object): New helper function.
29328         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29329         which manipulate it so they can also work on dynamic methods.
29331         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29332         creating the MonoReflectionMethodAux structure if it is not needed.
29333         
29334         * reflection.h verify.c: Update after changes to object layout.
29336         * reflection.c (method_builder_encode_signature): Fix compilation on
29337         gcc 2.95.x.
29339 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29341         * appdomain.h: Added support for context static fields. Added static_data
29342           field to MonoAppContext and renamed thread_static_fields to a more
29343           generic special_static_fields in MonoAppDomain, since it can now contain
29344           context static fields.
29345         * domain.c: Updated hashtable name.
29346         * object.c: Replaced field_is_thread_static() for a more generic
29347           field_is_special_static() which also checks for context static attribute.
29348           In mono_class_vtable(), added support for static context fields.
29349         * threads.c: Changed methods that manage thread static fields to more
29350           generic methods so they can be reused both for thread and context static
29351           data.
29352         * threads.h: Declared some new methods.
29354 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29356         * reflection.h: Update after changes to the managed types.
29358         * reflection.c (encode_custom_modifiers): New helper function.
29360         * reflection.c (method_encode_signature): Emit custom modifiers.
29362         * reflection.c (field_encode_signature): Emit custom modifiers.
29364 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29366         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29368         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29369         implementation.
29371         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29372         icall.
29374         * object.c (mono_field_get_value_object): New function.
29376         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29377         specific.
29379 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29381         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29382         return a preallocated out-of-memory exception instance.
29384         * object.c (out_of_memory): Use the new function.
29386         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29387         flag is before the custom modifiers. Fixes #49802.
29389 2003-11-16  Martin Baulig  <martin@ximian.com>
29391         * class.c (mono_class_is_open_constructed_type): Implemented the
29392         MONO_TYPE_GENERICINST case.
29394 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29396         * assembly.c (mono_assembly_fill_assembly_name): New function to
29397         fill out the MonoAssemblyName structure.
29398         (mono_assembly_open): Use the new function.
29400         * icall.c (fill_reflection_assembly_name): New helper function.
29402         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29403         new function.
29405         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29407 2003-11-15  Martin Baulig  <martin@ximian.com>
29409         * class.c (mono_class_is_open_constructed_type): New public
29410         function; checks whether a type is an open constructed type,
29411         ie. whether it still contains type parameters.
29412         (mono_class_inflate_generic_type): If we're a type parameter and
29413         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29414         type.
29416         * class.h (MonoGenericInst): Added `guint32 is_open'.
29418         * loader.c (method_from_methodspec): Check whether we're an open
29419         or closed constructed type and set `ginst->is_open'.
29421         * reflection.c (mono_reflection_bind_generic_parameters): Check
29422         whether we're an open or closed constructed type and set
29423         `ginst->is_open'.
29424         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29425         from open constructed types.
29427 2003-11-15  Martin Baulig  <martin@ximian.com>
29429         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29430         a generic instance (instead of a generic type declaration) with
29431         unbound generic parameters, bind them to our actual types.
29433 2003-11-14  Martin Baulig  <martin@ximian.com>
29435         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29437         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29438         an interface type, populate `res->interfaces' with instantiated
29439         versions of all the interfaces we inherit.
29441 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29443         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29444         when MONO_PATH is set but doesn't contain the install dir.
29446 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29448         * icall.c:
29449         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29450         it's also implemented in base classes. Fixes bug #50927.
29452 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29454         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29455         if this method is called from a finalizer. Fixes #50913.
29457 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29459         * threads.c: Implement VolatileRead/VolatileWrite
29461         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29463 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29465         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29466         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29467         2.95.3.
29469         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29470         from Peter Ross (pro@missioncriticalit.com).
29471         
29472 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29474         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29476 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29478         * assembly.c (mono_assembly_load_references): Disable check because it
29479         triggers on older corlibs which lots of people have.
29481 2003-11-12  Jackson Harper  <jackson@ximian.com>
29483         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29484         load corlib.dll if mscorlib.dll is not found.
29485         * assembly.h: Remove corlib name define.
29486         * class.c:
29487         * domain.c:
29488         * image.c: Change corlib name to mscorlib.
29489         
29490 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29492         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29494 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29496         * appdomain.h: Added loader_optimization here to sync with the C#
29497         code, and add disallow_binding_redirects field.
29499 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29501         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29503         * reflection.c (mono_image_build_metadata): Fix crash on modules
29504         with no types.
29506         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29508         * icall.c (ves_icall_get_method_info): Return callingConvention as
29509         well.
29511         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29512         namespaces from the EXPORTEDTYPE table as well.
29514         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29515         from all modules inside the assembly.
29516         
29517 2003-11-11  Martin Baulig  <martin@ximian.com>
29519         * reflection.c (mono_reflection_bind_generic_parameters): Make
29520         this work for interfaces.
29522 2003-11-11  Martin Baulig  <martin@ximian.com>
29524         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29526 2003-11-11  Martin Baulig  <martin@ximian.com>
29528         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29529         "MonoInflatedMethod" and "MonoInflatedCtor".
29531 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29533         * reflection.c (resolution_scope_from_image): Use the assembly table
29534         from the manifest module, since other modules don't have it.
29536         * debug-helpers.c (mono_type_full_name): New helper function.
29538         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29540         * image.c (mono_image_load_file_for_image): New public function which
29541         is a replacement for the load_file_for_image in class.c.
29543         * assembly.c (mono_assembly_load_module): A wrapper for the function
29544         above which does assembly association and reference loading too.
29546         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29548 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29550         * appdomain.c: not all of the attributes for the full assembly name
29551         are required and the order doesn't matter. Fixes bug #50787.
29553 2003-11-10  Dick Porter  <dick@ximian.com>
29555         * locales.c: Use platform-endian UTF16
29557 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29559         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29560         
29561 2003-11-10  Martin Baulig  <martin@ximian.com>
29563         * metadata.c
29564         (mono_metadata_load_generic_params): Make this actually work.
29566         * reflection.c (mono_reflection_bind_generic_parameters): If our
29567         parent is a generic instance, pass all the `types' to it, no
29568         matter whether it has the same number of type parameters or not.
29570 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29572         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29574         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29575         assignment code to this function so it gets called recursively for all
29576         modules.
29578         * image.c (load_modules): Remove the assembly assignment since it is
29579         now done by mono_assembly_load_references.
29580         
29581         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29582         Add 'module' argument.
29583         (mono_module_get_types): New helper function.
29584         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29586 2003-11-08  Martin Baulig  <martin@ximian.com>
29588         * class.c (mono_class_inflate_generic_method): Interface method
29589         don't have a header.
29591         * reflection.c (mono_image_get_methodspec_token): Take an
29592         additional `MonoGenericInst *' argument instead of reading it from
29593         the header; this is necessary to support interfaces.
29594         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29595         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29596         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29597         argument.
29599         * reflection.h (MonoReflectionInflatedMethod): Added
29600         `MonoGenericInst *ginst'.
29602 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29604         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29606 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29608         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29610 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29612         * reflection.c 
29613         (reflection_methodbuilder_from_method_builder):
29614         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29615         initialize a ReflectionMethodBuilder structure.
29616         (mono_image_get_methodbuilder_token):
29617         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29618         tokens which point to types in another module inside the same assembly.
29620         * reflection.c: Use the new helper functions.
29621         
29622         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29624         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29625         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29627         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29628         neccesary.
29630         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29631         current module. Emit the manifest only for the main module.
29633         * reflection.c (mono_image_create_token): Add assertion when a 
29634         memberref needs to be created.
29636         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29638         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29639         larger buffer for the custom attribute blob. Fixes #50637.
29640         
29641 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29643         * threadpool.c: notify listener on async processing handles after
29644         invoking the async callback. Thanks to Zoltan.
29646 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29648         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29649         avoid code duplication.
29651         * reflection.h (MonoDynamicImage): New type which is currently unused,
29652         but will be used through the ref.emit code in place of 
29653         MonoDynamicAssembly.
29655         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29656         object layout.
29658         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29659         a MonoDynamicImage instead of just a MonoImage.
29660         
29661         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29662         icalls to ModuleBuilder but keep their semantics, so they will work
29663         with moduleb->assemblyb. This will change later.
29664         
29665 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29667         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29668         object layout.
29670         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29671         main module, since it is now done by the managed code.
29673 2003-11-03  Martin Baulig  <martin@ximian.com>
29675         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29676         `ginst->klass' here.
29677         (method_encode_methodspec): Don't use the `ginst->generic_method's
29678         klass if it's a generic instance, use `ginst->klass' in this case.
29680 2003-11-03  Martin Baulig  <martin@ximian.com>
29682         * reflection.c (mono_image_get_generic_method_param_info):
29683         Removed, use mono_image_get_generic_param_info() instead.
29684         (mono_image_get_type_info): Write the GenericParam table before
29685         the Method table.  This is neccessary because in the GenericParam
29686         table, type parameters of the class (ie. '!0' etc.) must come
29687         before the ones from its generic methods (ie. '!!0' etc).
29689 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29691         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29693 2003-11-02  Martin Baulig  <martin@ximian.com>
29695         * reflection.c (create_generic_typespec): Take a
29696         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29697         the generic parameters from it.
29699 2003-11-02  Martin Baulig  <martin@ximian.com>
29701         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29702         instead of a `MonoClassField *' since we just need the type.
29703         (create_generic_typespec): New static function.  Creates a
29704         TypeSpec token for a generic type declaration.
29705         (mono_image_get_generic_field_token): New static function.
29706         (mono_image_create_token): If we're a FieldBuilder in a generic
29707         type declaration, call mono_image_get_generic_field_token() to get
29708         the token.
29710 2003-11-02  Martin Baulig  <martin@ximian.com>
29712         * reflection.h
29713         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29714         `MonoReflectionGenericInst *declaring_type' and
29715         `MonoReflectionGenericInst *reflected_type' fields.
29717         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29718         `MonoReflectionGenericInst *declaring_type' and a
29719         `MonoReflectionGenericInst *reflected_type' argument instead of a
29720         single `MonoReflectionGenericInst *type' one.  Set
29721         `res->declaring_type' and `res->reflected_type' from them.
29722         (mono_reflection_inflate_field): Likewise.      
29724 2003-11-02  Martin Baulig  <martin@ximian.com>
29726         * class.c (mono_class_setup_vtable): Don't store generic methods
29727         in the vtable.  
29729 2003-11-02  Martin Baulig  <martin@ximian.com>
29731         * reflection.h (MonoReflectionGenericInst): Added
29732         `MonoReflectionType *declaring_type'.
29734         * reflection.c (mono_reflection_bind_generic_parameters): Use
29735         `if (tb->parent)' instead of `klass->parent'.
29737 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29739         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29740         with an empty ASSEMBLY table.
29742         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29743         variable in the inner and outer loops.
29745 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29747         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29748         argument.
29750         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29751         
29752         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29753         icalls. Instead, do everything in managed code. This is needed since
29754         it is hard to restore the original domain etc. in unmanaged code in the
29755         presence of undeniable exceptions.
29757         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
29758         New icalls to push and pop appdomain refs.
29760 2003-10-31  Martin Baulig  <martin@ximian.com>
29762         * class.c (inflate_generic_type): Renamed to
29763         mono_class_inflate_generic_type() and made it public.
29765         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
29766         New interncall.
29768         * loader.c (mono_field_from_memberref): Also set the retklass for
29769         typespecs.
29771         * fielder.c (mono_image_get_inflated_field_token): New static
29772         method; creates a metadata token for an inflated field.
29773         (mono_image_create_token, fixup_method): Added support for
29774         "MonoInflatedField".
29775         (fieldbuilder_to_mono_class_field): New static function.
29776         (mono_reflection_inflate_field): New public function.
29778         * reflection.h
29779         (MonoReflectionGenericInst): Added `MonoArray *fields'.
29780         (MonoReflectionInflatedField): New typedef.     
29782 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
29784         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
29785         for Solaris and other platforms without s6_addr16
29787 2003-10-30  Martin Baulig  <martin@ximian.com>
29789         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
29790         argument instead of two.
29791         (mono_class_inflate_generic_signature): Likewise.
29792         (inflate_generic_header): Likewise.
29793         (mono_class_inflate_generic_method): Likewise.  In addition, if
29794         `ginst->klass' is set, it becomes the new `method->klass'.
29796         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
29797         field.
29799         * reflection.c (encode_generic_method_sig): Write a 0xa as the
29800         first byte. [FIXME]
29801         (method_encode_methodspec): If we have generic parameters, create
29802         a MethodSpec instead of a MethodRef.
29803         (fixup_method): Added support for "MonoInflatedMethod" and
29804         "MonoInflatedCtor".
29805         (mono_image_create_token): Added support for "MonoInflatedMethod"
29806         and "MonoInflatedCtor".
29807         (inflated_method_get_object): New static function; returns a
29808         managed "System.Reflection.MonoInflatedMethod" object.
29809         (mono_reflection_bind_generic_method_parameters): Return a
29810         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
29811         (mono_reflection_inflate_method_or_ctor): Likewise.
29812         (mono_image_get_generic_method_param_info): Initialize unused
29813         fields to zero.
29814         (mono_image_get_generic_param_info): Likewise.
29816         * reflection.h (MonoReflectionInflatedMethod): New public
29817         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
29818         "S.R.MonoInflatedCtor" classes.
29820         * loader.c (method_from_memberref): If we're a TypeSpec and it
29821         resolves to a generic instance, inflate the method.
29823 2003-10-28  Dick Porter  <dick@ximian.com>
29825         * object.c (mono_runtime_run_main): Convert command-line arguments
29826         into utf8, falling back to the user's locale encoding to do so.
29828 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
29830         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
29831         at this time.
29833         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
29835         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
29836         up icalls at method definition time. Partially fixes #33569.
29838 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
29840         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
29841         marshalling of arrays. Fixes #50116.
29843         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
29845         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
29846         points to a vtable in the dying appdomain.
29848         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
29849         listeners into unmanaged code inside the lock.
29851         * object.c (mono_class_vtable): Turn off typed allocation in non-root
29852         domains and add some comments.
29854 2003-10-25  Martin Baulig  <martin@ximian.com>
29856         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
29858         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
29860         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
29861         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
29862         currently parsing.  Create the generic class and store it in
29863         `generic_inst->klass' before parsing the type arguments.  This is
29864         required to support "recursive" definitions; see mcs/tests/gen-23.cs
29865         for an example.
29866         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
29867         to support recursive typespec entries.
29869         * class.c (mono_class_setup_parent): If our parent is a generic
29870         instance, we may get called before it has its name set.
29871         (mono_class_from_generic): Splitted into
29872         mono_class_create_from_generic() and mono_class_initialize_generic().
29874 2003-10-25  Martin Baulig  <martin@ximian.com>
29876         * icall.c (ves_icall_Type_BindGenericParameters): Return a
29877         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
29878         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
29879         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
29881         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
29882         (create_typespec): Likewise.
29883         (mono_reflection_bind_generic_parameters): Return a
29884         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
29885         (mono_reflection_inflate_method_or_ctor): New public function.
29887         * reflection.h (MonoReflectionGenericInst): New typedef.        
29889 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
29891         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
29892         inside the domain lock. Fixes #49993.
29893         
29894         * object.c (mono_class_vtable): When typed allocation is used, 
29895         allocate vtables in the GC heap instead of in the mempool, since the
29896         vtables contain GC descriptors which are used by the collector even
29897         after the domain owning the mempool is unloaded.
29899         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
29901         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
29902         reflect what it does. Also invalidate mempools instead of freeing
29903         them if a define is set.
29905         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
29906         of the appdomain.
29907         
29908         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29909         hold the finalizable objects in this domain.
29911         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29912         appdomain.
29914         * appdomain.c (mono_domain_set): New function to set the current
29915         appdomain, but only if it is not being unloaded.
29917         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
29918         appdomain which is being unloaded.
29919         
29920         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
29921         unloading of the root appdomain.
29923         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
29924         icall to execute a method in another appdomain. Intended as a 
29925         replacement for InternalSetDomain, which can confuse the code 
29926         generation in the JIT.
29928         * appdomain.c (mono_domain_is_unloading): New function to determine
29929         whenever an appdomain is unloading.
29931         * appdomain.c (mono_domain_unload): New function to correctly unload
29932         an appdomain.
29934         * assembly.c (mono_assembly_load_references): Check that an assembly
29935         does not references itself.
29937         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
29938         domain manually, it asks the finalizer thread to do it, then waits for
29939         the result. Also added a timeout.
29941         * icall.c: Register the new icalls.
29943         * threads.h threads.c: Export the mono_gc_stop_world and 
29944         mono_gc_start_world functions.
29945         
29946         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
29947         function to fill out the mempool with 0x2a.
29949 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
29951         * reflection.h (MonoReflectionMethodAux): New structure to store
29952         information which is rarely used, thus is not in the MonoMethod
29953         structure.
29955         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
29956         store the aux info.
29958         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
29959         and marshalling info into the aux structure.
29961         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
29962         from the aux structure.
29964         * loader.c (mono_method_get_param_names): Retrieve the param names from
29965         the aux structure.
29966         
29967 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
29969         * exception.h exception.c: Add AppDomainUnloadedException && fix 
29970         warning.
29972 2003-10-21  Dick Porter  <dick@ximian.com>
29974         * socket-io.c
29975         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
29976         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
29978 2003-10-21  Martin Baulig  <martin@ximian.com>
29980         * reflection.c (mono_reflection_bind_generic_parameters):
29981         `klass->parent' is NULL for interfaces.
29983 2003-10-21  Martin Baulig  <martin@ximian.com>
29985         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29987 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
29989         * exception.c (mono_exception_from_name_msg): New helper function for
29990         creating exceptions and initializing their message field.
29992         * exception.c: Simplify functions using the new helper.
29994         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
29995         New function.
29997         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
29998         mono_raise_exception, since otherwise gcc doesn't generate the function
29999         epilog for raise_exception, confusing the stack unwinding in the JIT.
30000         Fixes #45043.
30002         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30003         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30004         Fixes #49499.
30006 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30008         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30009         utf8.
30011 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30013         * icall.c: Removed GetUninitializedObject method because
30014           AllocateUninitializedClassInstance does the same.
30016 2003-10-18  Martin Baulig  <martin@ximian.com>
30018         * class.c (inflate_generic_signature): Renamed to
30019         mono_class_inflate_generic_signature() and made it public.
30020         (my_mono_class_from_generic_parameter): New static function; if we
30021         don't already have the generic parameter's MonoClass, create a
30022         very simple one which is just used internally in the runtime and
30023         not passed back to managed code.
30025         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30027         * metadata.h (MonoMethodSignature): Moved the
30028         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30029         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30031         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30032         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30033         interncall on the MonoMethod class, not on MethodInfo.
30034         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30035         calling mono_reflection_bind_generic_method_parameters() directly.
30037         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30038         return the already computed `method->signature'.
30039         (method_from_methodspec): New static function to load a method
30040         from a MethodSpec entry.
30041         (mono_get_method_from_token): Call the new method_from_methodspec()
30042         for MethodSpec tokens.  
30043         (mono_get_method_from_token): If we're a generic method, load the
30044         type parameters.
30046         * reflection.c (mono_image_get_memberref_token): Allow
30047         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30048         table.
30049         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30050         (mono_image_create_token): First check whether it's a generic
30051         method (so we'd need to create a MethodSpec), then do the other
30052         two alternatives.
30053         (mono_reflection_bind_generic_method_parameters): Return a
30054         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30055         called directly from the interncall.
30057 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30059         * reflection.c (load_public_key): Move loading of the public key
30060         into managed code.
30062         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30064         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30065         fields.
30067         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30068         culture, hash_alg and public_key. Fixes #49555.
30070 2003-10-17  Martin Baulig  <martin@ximian.com>
30072         * class.h (MonoGenericInst): Moved this declaration here and added
30073         `MonoMethod *generic_method'.
30075         * icall.c
30076         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30077         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30079         * metadata.c (mono_metadata_type_equal): Two types of
30080         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30081         index; ie. don't compare the address of the `MonoGenericParam'
30082         structure.
30083         (mono_metadata_load_generic_params): Removed the `MonoMethod
30084         *method' argument.
30086         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30087         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30089         * reflection.c (method_encode_signature): Encode the number of
30090         generic parameters.
30091         (encode_generic_method_sig): New static function.
30092         (method_encode_methodspec): New static function; creates an entry
30093         in the MethodSpec table for a generic method.
30094         (mono_image_get_methodspec_token): New static function.
30095         (mono_image_create_token): Call mono_image_get_methodspec_token()
30096         for generic methods.
30097         (mono_reflection_bind_generic_method_parameters): New public
30098         function.  Instantiates a generic method.
30100 2003-10-16  Martin Baulig  <martin@ximian.com>
30102         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30103         *gen_params' here from MonoMethodHeader.
30105         * metadata.c (mono_metadata_parse_method_signature): If we have
30106         generic parameters, initialize `method->gen_params' and then set
30107         the correct `type->data.generic_param' in all the parameters.
30109 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30111         * threads.c (mono_threads_get_default_stacksize): New function to 
30112         return the default stacksize.
30114         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30115         termination of the finalizer thread, since the previous method had
30116         race conditions. Fixes #49628.
30118         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30119         as for the other managed threads.
30121 2003-10-16  Martin Baulig  <martin@ximian.com>
30123         * class.c (inflate_generic_signature): Copy `generic_param_count'
30124         and `gen_params'.
30126         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30127         New interncall.
30129         * metadata.c (mono_metadata_parse_method_signature): Actually set
30130         the `method->generic_param_count' here.
30131         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30133 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30135         * object.h: Add a new field to TypedRef to simplify the implementation
30136         of the REFANY opcodes in the JIT.
30138         * icall.c: Make use of the new field.
30140         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30141         dynamically.
30143 2003-10-15  Martin Baulig  <martin@ximian.com>
30145         * class.c (mono_class_from_gen_param): Renamed to
30146         mono_class_from_generic_parameter() and moved most of the
30147         functionality from mono_reflection_define_generic_parameter()
30148         here; ie. we create a "real" class here.
30149         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30150         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30151         previously been called.
30153         * class.h (MonoGenericParam): Moved the declaration of this struct
30154         here from metadata.h and added `MonoMethod *method'.
30156         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30157         interncall.
30159         * loader.c (mono_get_method_from_token): If we have any generic
30160         parameters, call mono_metadata_load_generic_params() to read them
30161         from the MONO_TABLE_GENERICPAR.
30163         * metadata.c (mono_metadata_load_generic_params): Added
30164         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30166         * metadata.h (MonoMethodSignature): Replaced
30167         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30168         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30170         * reflection.c (mono_reflection_define_generic_parameter): Moved
30171         most of the functionality into the new
30172         mono_class_from_generic_parameter(); set the `method' field if
30173         we're a method parameter.       
30175 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30177         * marshal.c (emit_struct_conv): if native size is 0
30178         emit no code.
30180 2003-10-14  Martin Baulig  <martin@ximian.com>
30182         * icall.c: The generics API has changed in the spec since it was
30183         added to System.Type; these modifications make it match the spec
30184         again.
30185         (ves_icall_Type_GetGenericParameters): Renamed to
30186         `ves_icall_Type_GetGenericArguments'.
30187         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30188         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30189         `ves_icall_MonoType_get_HasGenericArguments'.
30190         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30191         `ves_icall_MonoType_get_IsGenericParameter'.
30192         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30193         this is no interncall anymore.
30194         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30195         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30197 2003-10-14  Martin Baulig  <martin@ximian.com>
30199         * reflection.c (mono_reflection_bind_generic_parameters): Also
30200         inflate generic methods if we're reading the class from IL.
30202 2003-10-13  Martin Baulig  <martin@ximian.com>
30204         * reflection.c (mono_reflection_define_generic_parameter): This
30205         method isn't called directly from the icall anymore; take a
30206         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30207         method generic parameters.
30208         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30209         (method_builder_encode_signature): Encode generic parameters.
30210         (mono_image_get_method_info): Write generic params to the
30211         MONO_TABLE_GENERICPARAM table.
30213         * reflection.h (MonoReflectionMethodBuilder): Added
30214         `MonoArray *generic_params'.
30216         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30218         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30219         wrapper for mono_reflection_define_generic_parameter().
30220         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30222 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30224         * marshal.h: Add missing function to fix build.
30226         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30227         the SetLastError pinvoke attribute.
30229         * marshal.c (mono_marshal_set_last_error): New helper function called
30230         by the generated code.
30231         
30232         * marshal.c (mono_mb_emit_branch): New helper function.
30234         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30236         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30237         classes as parameters and return values of delegates. Fixes #29256. 
30239 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30241         * locales.c: use gint32 in non HAVE_ICU case
30243 2003-10-11  Martin Baulig  <martin@ximian.com>
30245         * mono-debug.c (mono_debug_add_method): Added a workaround for
30246         bug #48591.
30248 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30250         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30251         delegates passed to native code must use the STDCALL calling 
30252         convention. Fixes #35987.
30254 2003-10-10  Martin Baulig  <martin@ximian.com>
30256         * class.c (inflate_generic_type): If we're inflating for a generic
30257         type instance (and not for a generic method), return
30258         MONO_TYPE_MVAR unchanged.
30260 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30262         * string-icalls.c: Join ignores null strings in the source array.
30263         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30264         * threads.c: GetAvailableTheads is slightly more accurate.
30266 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30268         * threads.h threads.c : add mono_threads_set_default_stacksize
30269         and pass default to CreateThread calls.
30271 2003-10-09  Dick Porter  <dick@ximian.com>
30273         * icall.c:
30274         * locales.h:
30275         * locales.c: Internal calls for constructing CultureInfo and
30276         related objects from libicu (if its available.)
30278 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30280         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30282 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30284         * threadpool.c: added an argument to async_invoke_thread that is the
30285         item to process, pass the MonoAsyncResult to the thread start function
30286         when creating a new thread. This way we don't need to acquire any lock
30287         when we're creating a new thread. Readded a semaphore for faster
30288         response times (instead of that Sleep i added).
30290 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30292         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30293         get daylight change dates better on Windows, fix handling
30294         of platforms without tm_gmtoff.
30296 2003-10-06  Martin Baulig  <martin@ximian.com>
30298         * class.c (inflate_generic_method): Renamed to
30299         mono_class_inflate_generic_method() and made public.
30300         (mono_class_init): Don't inflate the generic methods here.
30301         (mono_class_from_generic): Added `gboolean inflate_methods'
30302         argument.  Inflate the methods here.
30304         * loader.c (mono_method_get_param_names): Ignore instances of
30305         generic types for the moment.
30307         * reflection.c (fixup_method): Added support for inflated methods.
30308         (mono_image_create_token): Use mono_image_get_methodref_token()
30309         for inflated methods.
30310         (mono_custom_attrs_from_param): Ignore instances of generic types
30311         for the moment.
30312         (mono_reflection_bind_generic_parameters): New public function.
30313         Moved all the functionality from
30314         ves_icall_Type_BindGenericParameters() here and added support for
30315         dynamic types.
30316         (mono_reflection_define_generic_parameter): Initialize
30317         `klass->methods' here.
30319         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30320         functionality into mono_reflection_define_generic_parameter().
30321         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30322         TypeBuilder, return that TypeBuilder.
30324 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30326         * appdomain.c: removed mono_delegate_semaphore.
30328         * threadpool.c:
30329         (mono_thread_pool_add): moved hash table creation inside and the thread 
30330         creation outside of the critical region.
30331         (mono_thread_pool_finish): removed obsolete code.
30332         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30333         continue or exit the thread depending on the queue.
30335 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30337         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30338         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30339         handle more bool marshalling options
30341 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30343         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30344         arrays of structs. Also add a more descriptive error message when
30345         a structure member is marshalled as LPArray.
30347 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30349         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30350         marshalling arrays of complex types. Fixes #29098. Also remove an
30351         usused and incomplete function.
30353 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30355         * gc.c: report heap_size - free_bytes as total memory allocated
30356         (bug#49362).
30358 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30360         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30361         fix timezone handling problems on Windows.
30362         
30363         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30364         asserts when the year is outside the range handled by ms the functions.
30366         * class.c (setup_interface_offsets): If the class is an interface,
30367         fill out its interface_offsets slot.
30369 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30371         * threadpool.c: mark threadpool threads as background.
30373 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30375         * decimal.c - define DECINLINE to nothing if not using GCC
30377 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30379         * assembly.c: More refcount fixes.
30381 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30383         * string-icalls.c: if we're not trimming, return the same string.
30384         When not splitting, don't create a new string.
30386 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30388         * image.c:
30389         (mono_image_open): increment the ref_count inside the critical section.
30391 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30393         * image.c (mono_image_open): Fix reference counting bug.
30395 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30397         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30398         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30399         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30400         mono_lookup_pinvoke_call throws.        
30402 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30404         * reflection.c (mono_reflection_parse_type): Fix #49114.
30406         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30407         temporary workaround for cygwin header problem.
30409         * object.c (mono_object_isinst): Synchronize this with the code
30410         generated by the JIT for casts.
30412 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30414         * reflection.c (encode_type): Fix #38332.
30416 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30418         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30419         the original method from the wrapper method.
30421 2003-09-25  Martin Baulig  <martin@ximian.com>
30423         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30424         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30425         (ves_icall_Type_get_IsGenericInstance): New interncall.
30427 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30429         * object.c: fix cast warning in big endian code.
30431 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30433         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30434         
30435 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30437         * assembly.c: don't call check_env from mono_assembly_load. It's
30438         already done once in mono_assemblies_init and may cause headaches when
30439         multiple threads are loading assemblies.
30441 2003-09-19  Martin Baulig  <martin@ximian.com>
30443         * reflection.c (mono_reflection_define_generic_parameter): Don't
30444         allocate `klass->methods', set `klass->flags' to
30445         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30447 2003-09-18  Martin Baulig  <martin@ximian.com>
30449         * class.c (mono_class_init): Don't create `class->methods' if it's
30450         already initialized.
30452         * metadata.c (mono_metadata_load_generic_params): Make this
30453         actually work.
30455         * reflection.c (mono_reflection_define_generic_parameter): Set
30456         parent class and interfaces from the constraints.
30458         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30459         to keep this struct in sync with the declaration in TypeBuilder.cs.
30461 2003-09-17  Martin Baulig  <martin@ximian.com>
30463         * metadata.h (MonoType): Replaced the data's `int type_param'
30464         field with `MonoGenericParam *generic_param'.
30465         (MonoGenericParam): Added `MonoClass *klass'.
30467         * class.c (mono_class_from_gen_param): Removed the
30468         `MonoImage *image' and `int type_num' arguments.
30470         * metadata.c (mono_metadata_parse_generic_param): New static
30471         method; creates a MonoGenericParam which just contains the index.
30472         (do_mono_metadata_parse_type): Call
30473         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30474         MONO_TYPE_MVAR.
30476         * reflection.c (mono_image_typedef_or_ref): Generic type
30477         parameters may be in the same assembly, but never use a typedef
30478         for them.
30479         (mono_reflection_define_generic_parameter): We're now creating a
30480         "real" class for the type parameter; it's now safe to call
30481         mono_class_from_mono_type() on the class'es type, it'll do the
30482         right thing.
30484 2003-09-16  Martin Baulig  <martin@ximian.com>
30486         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30487         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30488         the `symfile' data structure must be fully initialized before it
30489         gets added to the table.
30491 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30493         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30495         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30496         class init trampolines.
30498 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30500         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30501         to the built-in profiler to turn off time and allocation profiling
30502         respectively.
30504 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30506         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30507         g_direct_equal.
30509         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30510         in human readable form.
30512 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30514         * reflection.c icall.c: Fixed warnings.
30516         * image.c (load_class_names): Use a temporary hash table to hold the
30517         namespaces in order to avoid doing many string comparisons.
30519         * image.h: Fix typo.
30521         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30522         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30523         since the NULL case is short-circuited inside g_hash_table_lookup, 
30524         leading to better performance.  
30526         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30527         obtain the first custom attribute for a given index. Depends on the
30528         CustomAttribute table being sorted by the parent field.
30530         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30531         for better performance.
30533 2003-09-07  Martin Baulig  <martin@ximian.com>
30535         * class.c (mono_class_init): If we're a generic instance, inflate
30536         all our methods instead of loading them from the image.
30537         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30539 2003-09-07  Martin Baulig  <martin@ximian.com>
30541         * mono-debug-debugger.c: Added support for constructors.
30543 2003-09-06  Martin Baulig  <martin@ximian.com>
30545         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30546         New interncall.
30548         * reflection.c (mono_reflection_setup_generic_class): Call
30549         ensure_runtime_vtable() to create the vtable.
30551 2003-09-05  Martin Baulig  <martin@ximian.com>
30553         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30554         MONO_TYPE_MVAR.
30556 2003-09-04  Martin Baulig  <martin@ximian.com>
30558         * reflection.c (mono_reflection_define_generic_parameter): Generic
30559         parameters start with zero.
30561 2003-09-04  Martin Baulig  <martin@ximian.com>
30563         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30565         * reflection.h (MonoReflectionGenericParam): New typedef.
30566         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30567         the generic parameters from the managed TypeBuilder.
30569         * reflection.c (mono_reflection_define_generic_parameter): New function.
30570         (mono_reflection_create_runtime_class): Encode generic parameters.
30571         (mono_reflection_setup_generic_class): New function; this is
30572         called after adding adding all generic params to the TypeBuilder.
30573         (encode_type): Added MONO_TYPE_VAR.
30575 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30577         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30578         here from the JIT.
30580         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30581         load hook.
30583 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30585         * reflection.h reflection.c class.h class.c: Delete duplicate 
30586         definition of mono_type_get_name () from reflection.c and export the
30587         one in class.c.
30589         * class.c: Class loading fixes from Bernie Solomon 
30590         (bernard@ugsolutions.com).
30592         * reflection.c: Endianness fixes from Bernie Solomon 
30593         (bernard@ugsolutions.com).
30594         
30595 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30597         * assembly.h assembly.c: Define a file format version for AOT
30598         libraries.
30599         
30600         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30602         * appdomain.h (MonoJitInfo): New field to determine whenever the
30603         code is domain neutral.
30604         
30605 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30607         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30609 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30611         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30612         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30613         Avoid caching the result since strings must be domain specific. Fixes
30614         #48050.
30616 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30618         * marshal.c (mono_marshal_init): Make this callable multiple times
30619         since it is hard to find a correct place to call it.
30621         * object.c (mono_runtime_class_init): Execute static constructors in
30622         the correct appdomain.
30624         * image.c (build_guid_table): Handle the case when multiple images have
30625         the same GUID.
30627 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30629         * icall.c: added a couple of icalls for System.Web.
30631 2003-08-28  Martin Baulig  <martin@ximian.com>
30633         * icall.c (ves_icall_Type_BindGenericParameters): Use
30634         `klass->generic_inst' instead of `&klass->byval_arg' in the
30635         mono_type_get_object() call.  The returned type must be
30636         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30638 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30640         * NOTES: New file.
30642         * object.c (mono_class_proxy_vtable): Make it thread safe.
30644         * pedump.c: Fix warning.
30646         * object.c appdomain.h: Get rid of metadata_section. 
30647         It is no longer needed and it was causing deadlocks with domain->lock.
30649         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30651 2003-08-26  Martin Baulig  <martin@ximian.com>
30653         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30655 2003-08-26  Martin Baulig  <martin@ximian.com>
30657         * pedump.c (main): Call mono_metadata_init(),
30658         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30659         and mono_loader_init().
30661 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30663         * loader.h: Add missing include to fix build.
30665         * image.h: mono_image_load_references is no more.
30667         * assembly.c: Reworked assembly loading to make it really thread safe.
30668         After these changes, the assembly returned by mono_assembly_open is
30669         fully initialized, i.e. all its references assemblies are loaded.
30671         * assembly.c (mono_image_load_references): Renamed to 
30672         mono_assembly_load_references, and made private, since clients no
30673         longer need to call it.
30675         * class.c: Removed calls to mono_assembly_load_references, since it was
30676         a source of deadlocks.
30678         * loader.h loader.c class.h class.c: Protect data structures using a 
30679         new lock, the loader lock.
30681         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30682         GPtrArrays only when needed.
30684         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30685         into empty structures by mcs. Fixes pinvoke7.cs.
30686         
30687         * domain.c (mono_init): Call a new initialization function.
30689         * appdomain.c (mono_runtime_init): Call the new initializer function
30690         of the marshal module.
30692         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30693         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30695         * marshal.h marshal.c: Added locks around the wrapper caches to make
30696         this module thread safe.
30698         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30699         this argument. Fixes pinvoke1.exe.
30701 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30703         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30704         enumeration of values. Removed fields to store remote call output values in
30705         MonoAsyncResult. Not needed any more.
30706         * object.c: Initialize call_type and async_result fields in mono_message_init.
30707         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30708         dispatching the message.
30709         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30710         async call to finish. To do it use a message with EndInvoke call type.
30712 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30714         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30715         determines whenever a method has marshalling info.
30717 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30719         * assembly.c: fix the build on windows.
30721 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30723         * object.cs: Fixed bug #47785.
30725 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30727         * string-icalls.c (StringReplace): If their are no occurances of
30728         the old string found return a reference to the supplied
30729         string. This saves some memory and matches MS behavoir.
30730         
30731 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30733         * socket-io.c: fixed compilation for systems that define AF_INET6
30734         and don't define SOL_IP/SOL_IPV6.
30736 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30738         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30739         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30741         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30743         * domain.c: Make this module thread safe.
30745         * domain.c (mono_init): Call new initialization function.
30747         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30748         reference types too. Fixes #38812.
30750         * image.c (mono_image_init): Fixed warnings.
30752         * class.c (mono_class_from_typeref): Handle assembly load failure
30753         correctly.
30755         * appdomain.c (add_assemblies_to_domain): Handle the case when
30756         the references of an assembly are not yet loaded.
30758         * metadata.c image.c assembly.c: Moved initialization of global
30759         variables to a separate function called at startup since lazy 
30760         initialization of these variables is not thread safe.
30761         
30762         * image.c assembly.c: Made this module thread safe by adding locks in 
30763         the appropriate places.
30765         * domain.c (mono_init): Call the new initialization functions of the
30766         three modules.
30768 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
30770         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
30771           make a direct call. It is proxy's work to make the call asynchronous.
30772           mono_delegate_end_invoke(): If the targe is a proxy, just collect
30773           the return values.
30774         * object.cs: mono_method_call_message_new(): read AsyncResult and
30775           state object from parameters list, if this info is requested.
30776         * object.h: Added fields to store remote call output values in
30777           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
30779 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30781         * object.h: add needed fields to MonoThread.
30782         * threads.c, threads.h: allow registering a function to cleanup data
30783         allocated per thread by the JIT.
30785 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30787         * loader.h: portability fix by Bernie Solomon
30788         * <bernard@ugsolutions.com>.
30790 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
30792         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
30793         return a MonoArray. This simplifies the code and also ensures that
30794         the cache allways contains an object reference as a value.
30796         * icall.c (ves_icall_get_parameter_info): Simplified using the new
30797         function.
30799 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30801         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
30802         fixes a problem with byte ordering when getting the address family for
30803         a socket.
30805 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
30807         * .cvsignore: Added monosn.
30809         * reflection.h reflection.c loader.c: Added support for parameter
30810         marshalling to dynamically created types. Fixes #47295.
30812 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
30814         * rand.c: remove useless warnings.
30816 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30818         * class.c: implemented ldtoken for methods and fieldrefs.
30820 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30822         * threadpool.c: when mono_async_invoke was called, no one took care of
30823         monitoring the queue. So if the method invoked took some time and we
30824         got new async invoke requests after 500 ms (the thread created waited
30825         that long in WaitForSingleObject), the new async invoke was not called
30826         until the previous one finished.
30828         This is fixed now. Thanks to Totte for helping with it.
30830 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30832         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
30834 2003-08-11  Martin Baulig  <martin@ximian.com>
30836         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
30838 2003-08-06  Martin Baulig  <martin@ximian.com>
30840         * mono-debug-debugger.c: Added support for static fields,
30841         properties and methods.
30843 2003-08-06  Martin Baulig  <martin@ximian.com>
30845         * mono-debug-debugger.c: Don't store the MonoString's vtable to
30846         make this work for applications with multiple application domains.
30848 2003-08-04  Martin Baulig  <martin@ximian.com>
30850         * mono-debug-debugger.c: Completely reworked the type support; the
30851         most important thing is that we're now just using one single
30852         `MonoType' instance per type.
30854 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
30856         * mono-endian.h, mono-endian.c, icall.c: Added icall
30857         ves_icall_System_Double_AssertEndianity to assert double word endianity
30858         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
30860 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30862         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
30863         support, icalls and fixes.
30865 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
30867         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
30868         classes that are a punctuation character in .NET is not the same a
30869         g_unichar_ispunct.
30871 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30873         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
30875 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
30877         * icall.c: Add new MemCopy internalcall.
30878         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
30879         Simplified code; It is not necessary to handle all the cases here,
30880         as the C# code takes care of it.  Only handle the case of the name
30881         resource embedded into the assembly.
30883         Changed signature to return the data pointer and the size of the
30884         data. 
30886 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
30888         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
30889         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
30891 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30893         * socket-io.c: ignore EINTR error in select.
30895 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30897         * class.h, class.c: removed unused subclasses field in MonoClass.
30899 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30901         * icall.c: improve fix of get_base_definition(). If the parent class
30902           doesn't have the mehod, look at the parent of the parent.
30903         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
30904           to check if a parameter is an in or out parameter
30905           (PARAM_ATTRIBUTE_IN is not set by default).
30906           mono_method_return_message_restore(): Use mono_class_value_size to
30907           get the size of a value type. mono_type_stack_size (parameterType)
30908           does not return the correct value if parameterType is byRef.
30909           mono_load_remote_field(), mono_load_remote_field_new(),
30910           mono_store_remote_field(), mono_store_remote_field_new():
30911           raise exception if the remote call returns an exception.
30913 2003-07-28  Martin Baulig  <martin@ximian.com>
30915         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30916         method.  This is a wrapper around mono_runtime_invoke() which
30917         boxes the instance object if neccessary.
30919 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30921         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
30922         metadata.h, row-indexes.h, verify.c: first cut of generics support.
30924 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30926         * icall.c: disable mcs bug workaround.
30928 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
30930         * object.c (mono_runtime_class_init): Take the metadata_section
30931         mutex before obtaining the domain mutex.
30933         * appdomain.h: Added definition of metadata_section mutex here. 
30935         * object.c: define metadata_mutex here.
30937 2003-07-24  Ravi Pratap  <ravi@ximian.com>
30939         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
30940         fixed.
30942 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
30944         * reflection.c: Fix bug #46669
30946 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30948         * exception.c:
30949         * exception.h:
30950         * icall.c:
30951         * object.h: fill in the type name for TypeLoadException.
30953 2003-07-23  Ravi Pratap  <ravi@ximian.com>
30955         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
30956         relationship between TypeBuilders while compiling corlib) and bug
30957         45993 (Array types returned from the runtime while compiling
30958         corlib were from the loaded corlib).
30960 2003-07-22  Martin Baulig  <martin@ximian.com>
30962         * mono-debug-debugger.c: Reworked the type support a bit more;
30963         distinguish between types and classes.
30965 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
30967         * icall.c: add IsArrayImpl icall.
30969 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
30971         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
30972         initializing real_size only once. Also fix bug #46602.
30974 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
30976         * object.c: Renamed mono_metadata_section to metadata_section.
30978 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
30980         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
30981           empty array if the type is an array. Fixed.
30982           ves_icall_MonoMethod_get_base_definition: if the base method
30983           is abstract, get the MethodInfo from the list of methods of
30984           the class.
30985         * reflection.c: ParameterInfo.PositionImpl should be zero-based
30986           and it was 1-based. Fixed in mono_param_get_objects.
30988 2003-07-20  Martin Baulig  <martin@ximian.com>
30990         * mono-debug.h: Set version number to 31.
30991         (mono_debug_init): Added `MonoDomain *' argument.
30993         * mono-debug-debugger.c: Reworked the type support; explicitly
30994         tell the debugger about builtin types; pass the `klass' address to
30995         the debugger.
30997 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
30999         * image.c: Allow new metadata tables to be loaded without a
31000         warning. Also update the warning message to give the new constant value.
31001                 
31002 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31004         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31005         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31006         array type representation changes.
31008 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31010         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31011         on Environment.Exit () call.
31013 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31015         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31016         requires a matching corlib.
31018 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31020         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31021           Committed again without the CRs.
31022         
31023 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31025         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31026           getting it from the "this" socket instance. Did not work
31027           if the socket is a subclass of Socket.
31028           Also fixed bug #35371.
31030 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31032         * metadata.c: fixed size for TypedByRef.
31033         * loader.c: when searching for a method, consider the vararg amrker.
31034         * unicode.c, decimal.c: constify some arrays.
31036 2003-07-15  Dick Porter  <dick@ximian.com>
31038         * socket-io.c: Fixed compilation for gcc < 3.2.
31040         Fixed compilation for machines that don't have AF_INET6 (thanks to
31041         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31043         Fixed compile warnings.
31044         
31045         Fixed formatting and line endings.
31047 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31049         * socket-io.h:
31050         * socket-io.c: Added IPv6 support.
31052 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31054         * class.c (mono_class_is_assignable_from): New function to implement
31055         the is_assignable_from logic. Used by mono_object_isinst, 
31056         Type::IsAssignableFrom () and the interpreter.
31058         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31059         Object, even interfaces.
31060         
31061         * object.c (mono_object_isinst): Implement in terms of 
31062         is_assignable_from.
31064         * icall.c (ves_icall_type_is_assignable_from): New icall.
31066 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31068         * domain.c (foreach_domain): fix compiler warning.
31070 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31072         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31073         not available on all plattforms
31075 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31077         * image.h image.c: Store the metadata version string in MonoImage.
31078         * icall.c: New icall to retrieve the image version.
31079         * reflection.c (create_dynamic_image): Fill in the image version field
31080         * reflection.c (build_compressed_metadata): Use the image version
31081         from the image structure.
31083 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31085         * appdomain.c: modified comment.
31086         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31087         That will be its last iteration when mono_gc_cleanup is called from
31088         mono_runtime_cleanup and before the domain is unloaded.
31090         Fixes bug #45962.
31092 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31094         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31095         attributes.
31097 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31099         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31100         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31101         Bernie Solomon <bernard@ugsolutions.com>.
31103 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31105         * object.c, object.h: provide mono_object_new_fast() for faster
31106         allocation in some special cases.
31108 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31110         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31111         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31113 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31115         * threadpool.c: fix leaks.
31117 2003-07-01  Dick Porter  <dick@ximian.com>
31119         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31120         using MonoGHashTables.  Fixes threadpool bug posted to list.
31122 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31124         * image.h, image.c: added support to load an assembly from a byte array.
31125         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31126         assembly bundle support.
31128 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31130         * threadpool.c (mono_thread_pool_add): keep a reference to the
31131         AsyncResult to prevent GC
31133 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31135         * class.c: leak fix.
31137 2003-06-25  Dick Porter  <dick@ximian.com>
31139         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31140         for the async object, the WaitHandle object will close the handle.
31141         Fixes bug 45321.
31143 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31145         * class.c: in mono_array_class_get (), lookup from the hash with the
31146         same type we insert: this works around a bug in
31147         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31148         lluis. The real fix will have to wait for after the release.
31150 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31152         * icall.c: fix memory leak when getting type members.
31154 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31156         * reflection.c: added more pubtoken special cases.
31158 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31160         * class.c: handle field offset correctly when class size
31161         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31163 2003-06-20  Martin Baulig  <martin@ximian.com>
31165         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31166         *image' field.
31168 2003-06-20  Martin Baulig  <martin@ximian.com>
31170         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31172 2003-06-20  Martin Baulig  <martin@ximian.com>
31174         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31175         just distinguish between variables in registers and variables at
31176         an offset relative to a register.
31178 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31180         * icall.c: #ifdef out latest changes until mcs is fixed.
31182 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31184         * icall.c: return members in metadata order.
31186 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31188         * icall.c: avoid infinite loop in GetTimeZoneData.
31190 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31192         * icall.c: added Marshal.Prelink/All icalls.
31194 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31196         * object.c, object.h: fix warnings and do some overflow checking
31197         when creating arrays.
31199 2003-06-17  Dick Porter  <dick@ximian.com>
31201         * file-io.h:
31202         * file-io.c: File attributes need to be tweaked slightly when
31203         passed from the managed to the w32 world.
31205 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31206         * profiler.h profiler-private.h profiler.c: Rework last patch
31207         based on suggestion by Paolo.
31208         
31209 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31211         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31212         instruction level coverage data collection.
31213         * profiler.h profiler.c (: Added new callback function which can be
31214         used by the profiler to limit which functions should have coverage
31215         instrumentation.
31216         * profiler.c (mono_profiler_load): Call g_module_build_path to
31217         generate the file name of the profiler library.
31219 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31221         * profiler.c, profiler.h, profiler-private.h: added basic block 
31222         coverage profiling API.
31224 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31226         * reflection.c (mono_reflection_create_runtime_class): Add support
31227         for events in dynamically generated code.
31229         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31230         not allocated.
31232 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31234         * icall.c: when getting timezone info, return reasonable values if we
31235         can't get the actual data.
31237 2003-06-14  Dick Porter  <dick@ximian.com>
31239         * threads.c (start_wrapper): Remove the reference to the thread
31240         object in the TLS data, so the thread object can be finalized.
31241         This won't be reached if the thread threw an uncaught exception,
31242         so those thread handles will stay referenced :-( (This is due to
31243         missing support for scanning thread-specific data in the Boehm GC
31244         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31246 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31248         * reflection.c: ensure streams and tables are first allocated with
31249         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31251 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31253         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31255 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31257         * reflection.c (mono_reflection_create_runtime_class): Add support for
31258         properties to dynamically created classes.
31259         * reflection.c: Fix a few places where non-MonoObjects were inserted
31260         into the tokens hashtable.
31262 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31264         * object.c: some support to handle out of memory exceptions.
31266 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31268         * marshal.c (mono_marshal_get_native_wrapper): support reference
31269         return types
31271 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31273         * object.h, object.c: more portability stuff from Bernie Solomon.
31274         Unexport mono_object_allocate(). Added mono_object_unbox ().
31275         Set exitcode when an unhandled exception is thrown.
31277 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31279         * marshal.c (mono_marshal_get_native_wrapper): use custom
31280         marshaler for return types.
31282 2003-06-10  Dick Porter  <dick@ximian.com>
31284         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31285         ip_mreq is available
31287 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31289         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31290         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31291         by Bernie Solomon <bernard@ugsolutions.com>.
31293 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31295         * gc.c (mono_gc_init): Avoid error message on shutdown when
31296         GC_DONT_GC=1 is used.
31298         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31299         New icall to return the GUID of a module.
31301 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31303         * class.c: ensure instance size always includes the parent's size
31304         even whem class size is set explicitly (fixes bug#44294).
31306 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31308         * profiler.h, profiler.c: made the simple profiler thread-safe,
31309         get more accurate timing info. Allow the loading of an
31310         externally-developed profiler module.
31312 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31314         * marshal.c (mono_marshal_get_native_wrapper): improved
31315         class/byref arguments.
31316         (mono_marshal_get_native_wrapper): better string marshaling support.
31318 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31320         * class.c: ensure .pack and .size are handled correctly and
31321         simplified layout of static fields.
31323 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31325         * appdomain.c
31326         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31328         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31329         current directory (fix bug 44008)
31331 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31333         * marshal.c (mono_marshal_get_native_wrapper): started support for
31334         custom marshalers.
31335         (mono_delegate_to_ftnptr): consider marshalling specifications
31337 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31339         * reflection.c, reflection.h: emit custom marshal info.
31341 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31343         * object.c: free the GError.
31344         * icall.c: added CloseEvent_internal.
31345         * threads.[ch]:
31346         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31347         call.
31349 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31351         * loader.c (mono_method_get_signature): Add support for dynamic
31352         assemblies.
31354 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31356         * reflection.c: fixed bug #43905.
31358 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31360         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31361         handling TypedReference and ArgIterator.
31362         * loader.c, loader.h: added function to get signature at call site.
31364 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31366         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31367         data readonly. Buglets and warning fixes. Some MethodSpec support.
31369 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31371         * class.h, class.c, object.c: remove relative numbering support.
31373 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31375         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31376         free the string, until we get a chance to fix Gtk#
31378 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31380         * marshal.c: revert last patch.
31382 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31384         * icall.c: updates for new mono_class_vtable() not calling
31385         the type constructor anymore.
31387 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31389         * object.h, object.c: separate vtable creation from type
31390         initialization. Make running the .cctor thread safe.
31392 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31394         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31396 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31398         * loader.c (mono_get_method): consider calling convention
31400 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31402         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31403         to return the invisible global type for a module.
31405         * reflection.c (mono_image_build_metadata): Emit global fields too.
31407 2003-05-20  Peter Williams  <peterw@ximian.com>
31409         * loader.c (mono_lookup_internal_call): Add a few newlines.
31411 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31413         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31414         literal strings.
31416         * appdomain.c (set_domain_search_path): Recalculate search path when
31417         AppDomainSetup.PrivateBinPath changes.
31419         * object.c (mono_class_compute_gc_descriptor): It turns out some
31420         parts of the class libs (like System.Thread) holds pointers to
31421         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31422         to treat native int a pointer type here.
31423         
31424 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31426         * appdomain.h, domain.c: add hashtable for jump target resolution.
31428 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31430         * reflection.h reflection.c icall.c: Added new icalls 
31431         GetManifestResourceInfoInternal, GetModulesInternal and support
31432         infrastructure.
31434 2003-05-16  Dick Porter  <dick@ximian.com>
31436         * icall.c:
31437         * file-io.h:
31438         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31440 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31442         * object.c: mono_store_remote_field: little fix to previous patch.
31444 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31446         * class.c: add constructors to array classes.
31447         * icall.c: special case array construction for InternalInvoke (),
31449 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31451         * class.h class.c reflection.c object.c: Added support for field
31452         defaults in dynamically generated classes.
31454 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31456         * reflection.c: properly encode charset for ddlimport.
31458 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31460         * threads.c: allow compiling without GC.
31462 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31464         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31465         handling of thread static data.
31467 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31469         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31471 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31473         * class.c (mono_array_class_get): always set the serializable flags
31474         (mono_array_class_get): always set the SEALED attribute for array types
31476 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31478         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31479         attributes (fix for bug 42021).
31481 2003-05-12  Dick Porter  <dick@ximian.com>
31483         * gc.c: Don't run finalizers when the finalizer thread is
31484         finishing up, because the default domain has already been
31485         destroyed.
31487 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31489         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31490         value is null, we should throw an exception.   This is slightly
31491         different than the other conventions used for the constructor.
31493 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31495         * socket-io.c: fixed windows build.
31497 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31499         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31501 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31503         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31504         compilers.
31506 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31508         * class.c (mono_class_layout_fields): Add experimental GC aware
31509         auto layout facility. Requires class library changes to work correctly.
31511         (mono_class_setup_vtable): Avoid overriding explicit interface
31512         method implementations. Fixes iface3.exe test.
31514         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31515         object reference.
31516         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31517         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31519         * metadata.h: Add new type classification macro which determines
31520         whenever the type holds an object reference.
31522 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31524         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31526 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31528         * gc.c (finalizer_thread): Work around a GC bug.
31530 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31532         * marshal.c (emit_struct_conv): allow unions
31534         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31536 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31538         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31540 2003-05-06  Martin Baulig  <martin@ximian.com>
31542         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31544 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31546         * socket-io.c:
31547         (Select_internal): allow NULLs, don't create arrays if not needed.
31548         Coupled with Socket.cs changes.
31550         * threadpool.c:
31551         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31552         register a finalizer for it that will close the semaphore handle. This
31553         fixes the leak and make Lupus' test run with > 4080 loops.
31555 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31557         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31558         Jerome Laban (bug #42287)
31560 2003-05-02  Martin Baulig  <martin@ximian.com>
31562         * debug-mono-symfile.h
31563         (MonoSymbolFile): Moved declaration into mono-debug.h.
31564         (MonoDebugMethodJitInfo): Likewise.
31565         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31566         argument.
31567         (_mono_debug_address_from_il_offset): Take a
31568         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31570         * mono-debug.h
31571         (MonoDebugDomainData): New struct.
31572         (mono_debug_get_domain_data): New function.
31573         (mono_debug_add_method): Take an additional `MonoDomain *'
31574         argument.
31575         (mono_debug_source_location_from_address): Likewise.
31576         (mono_debug_il_offset_from_address): Likewise.
31577         (mono_debug_address_from_il_offset): Likewise.
31579 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31581         * reflection.c: one more check for null type in custom attrs.
31583 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31585         * reflection.c: avoid warning (comparison is always false due to limited
31586         range of data type).
31588 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31590         * icall.c: throw an exception in Type.GetField if the argument 'name'
31591         is NULL.
31593 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31595         * reflection.c: fixed handling of enums in named arguments to custom
31596         attributes (bug #42123).
31598 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31600         * reflection.c: use the right array element type and handle
31601         a null for a Type argument, too.
31603 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31605         * reflection.c: handle arrays as arguments to custom attributes.
31607 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31609         * reflection.c: handle a string value in a custom attr
31610         ctor that takes an object.
31612 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31614         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31615         (fix bug #42063)
31617 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31619         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31621 2003-04-27  Martin Baulig  <martin@ximian.com>
31623         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31624         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31625         MONO_DEBUGGER_EVENT_BREAKPOINT.
31626         (mono_breakpoint_trampoline_code): Removed.
31627         (mono_debugger_event_handler): The last argument is now a
31628         `guint32'.
31629         (mono_debugger_insert_breakpoint_full): Removed the
31630         `use_trampoline' argument.
31631         (mono_debugger_method_has_breakpoint): Likewise.
31632         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31633         mono_debugger_breakpoint_callback(); take the method and
31634         breakpoint number as arguments.
31636 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31638         * metadata.c: fix off by one when loading parameters attributes.
31640 2003-04-24  Martin Baulig  <martin@ximian.com>
31642         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31644 2003-04-24  Martin Baulig  <martin@ximian.com>
31646         * mono-debug-debugger.c: Moved all code which interacts with the
31647         Mono Debugger here.
31649         * debug-mono-symfile.c: This code now just deals with the symbol
31650         file itself, the debugger code is now in mono-debug-debugger.c.
31652 2003-04-23  Martin Baulig  <martin@ximian.com>
31654         * mono-debug.c (mono_debug_source_location_from_il_offset):
31655         New method; like mono_debug_source_location_from_address(), but
31656         takes an IL offset instead of a machine address.
31658 2003-04-23  Martin Baulig  <martin@ximian.com>
31660         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31661         `line' field; this is now computed by the debugger.
31663 2003-04-23  Martin Baulig  <martin@ximian.com>
31665         * mono-debug.[ch]: New files.  This is the new debugging interface.
31667         * mono-debug-debugger.[ch]: New files.  Moved all code which
31668         interacts with the Mono Debugger here.
31670 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31672         * domain.c (mono_init): initialize mono_defaults.monitor_class
31674 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31676         * reflection.c (method_encode_code): Add a spicy exception to help
31677         future compiler authors.
31679 2003-04-21  Martin Baulig  <martin@ximian.com>
31681         * icall.c
31682         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31683         Make this work with relative pathnames; g_filename_to_uri() needs
31684         an absolute filename.
31686 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31688         * icall.c: Track name changes in Object and ValueType.
31690 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31692         * metadata.c (mono_type_stack_size): size should be a multiple of
31693         sizeof (gpointer)
31695 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31697         * gc.c:
31698         (internal_domain_finalize): moved into mono_domain_finalize. No need
31699         to create another thread because the finalizers will be run in the
31700         finalizer thread.
31701         
31702         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31703         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31704         to be run (MS does this too).
31706 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31708         * object.c (mono_class_compute_gc_descriptor): Update comment.
31710         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31712         * image.h: Add synchronized wrapper cache.
31714         * image.c (do_mono_image_open): Initialize cache.
31716         * reflection.c (create_dynamic_mono_image): Initialize cache.
31718 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31720         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31721         ves_icall_System_Buffer_ByteLengthInternal.
31723 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31725         * reflection.c: setup klass->nested_in earlier. Allow
31726         a dash in the assembly name.
31728 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31730         * metadata.c (mono_type_to_unmanaged): dont access
31731         type->data.klass for MONO_TYPE_OBJECT
31732         (mono_type_to_unmanaged): consider System.Delegate class
31734 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31736         * class.c: just setup supertypes in the proper place instead of
31737         initializing the full element class for arrays.
31739 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31741         * class.c: ensure the element class of arrays is initialized.
31742         Setup the supertype info for array classes, too.
31744 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31746         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31748 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31750         * Makefile.am: re-added -m option when running cygpath. This way,
31751         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31752         separator.
31753         * mono-config.c: same codepath for locating mono config file for WIN32
31754         and the rest.
31755         * assembly.c: if mono_assembly_setrootdir is called, don't override
31756         the value set.
31758 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31760         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
31761         MONO_ASSEMBLIES variable.
31763 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
31765         * icall.c: added Assembly::GetNamespaces() icall.
31767 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31769         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
31771 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
31773         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
31774         * object.c: fixed bug in the construction of vtable for proxies
31776 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
31778         * object.c (mono_array_new): Mark mono_array_new as an icall.
31780 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31782         * class.c: fixed test for public method when overriding interfaces.
31783         Closes bug #40970.
31785 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31787         * appdomain.h, domain.c: added mono_domain_foreach() to
31788         be able to access the currently loaded appdomains.
31789         * object.c: make string interning work across sppdomains.
31790         Mark some functions for use as icalls.
31792 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
31794         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
31796         * reflection.h reflection.c: Allocate long living data using 
31797         GC_MALLOC_ATOMIC so the collector does not need to scan it.
31799         * reflection.c: Double the allocation size in streams instead of
31800         increasing it, to prevent unneccesary copying on large assemblies.
31801         
31802         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
31803         creation if the assembly does not have the Run flag set.
31805 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
31807         * class.h: avoid the C++ keywords in header files (Jerome Laban
31808         spotted and fixed this).
31810 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31812         * object.c:
31813         (mono_unhandled_exception): fill in the arguments for the
31814         UnhandledException event. Only trigger that event for the default
31815         domain (as MS does).
31817 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
31819         * object.c: Improve typed allocation stuff based on suggestions from
31820         Paolo. Also turn it on if the GC library supports it.
31822 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31824         * object.c object.h class.h: Added experimental typed allocation
31825         facility using the interfaces in gc_gcj.h.
31827         * os/gc_wrapper.h: Added new include files.
31828         
31829 2003-04-03  Martin Baulig  <martin@ximian.com>
31831         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
31832         which is not yet enabled by default.
31834         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
31835         functions.
31836         (mono_gc_lock, mono_gc_unlock): New static functions.
31838         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
31839         functions; stop/start the world for the garbage collector.  This
31840         is using the windows API; we need to complete the SuspendThread()/
31841         ResumeThread() implementation in the io-layer to make this work on Unix.
31842         (mono_gc_push_all_stacks): New public function; tells the garbage
31843         collector about the stack pointers from all managed threads.
31845 2003-04-03  Martin Baulig  <martin@ximian.com>
31847         * object.h (MonoThread): Added `gpointer stack_ptr'.
31849         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
31851 2003-04-03  Martin Baulig  <martin@ximian.com>
31853         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
31855 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31857         * reflection.c (typebuilder_setup_fields): Initialize field.first and
31858         field.last.
31860 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
31862         * loader.c (mono_lookup_internal_call): Report the corlib that is
31863         out of sync.
31865 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
31867         * icall.c (ves_icall_type_GetTypeCode): fixed check for
31868         System.DBNull (it's class not valuetype).
31870 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31872         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
31873         if the array method was already assigned a token (fixes bug#40646).
31875 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
31877         * reflection.c (mono_reflection_get_type): Attempt type resolve even
31878         if no assembly is given.
31880 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
31882         * metadata.h: Added the new tables.
31884         * row-indexes.h: Added definitions for new tables.
31886         * metadata.c: Add schemas for new tables, and add support for
31887         computing the sizes of them.
31889         * class.c: Update for handling the new type cases.
31891 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
31893         * metadata.h (MONO_TYPE_IS_VOID): new macro
31895 2003-03-31  Martin Baulig  <martin@ximian.com>
31897         * threads.h (MonoThreadCallbacks): Added `thread_created'.
31899         * threads.c (mono_thread_new_init): Call `thread_created' in the
31900         mono_thread_callbacks.
31902 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
31904         * loader.h: added marshalbyrefobject_class to mono_defaults
31905         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
31906         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
31907           generation of output parameters.
31908           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31909         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31910           contextbound and the target object belongs to the context of the caller.
31911         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31912         * object.c: Implemented support for interfaces and abstract classes
31913           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31914           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31916 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31918         * class.h class.c (mono_class_is_subclass_of): New function.
31919         
31920         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
31921         routines for most common case (calls from ArrayList::ToArray).
31923         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
31924         routine so programs which call Environment::Exit() can be profiled.
31926         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
31927         Added MONO_ARCH_SAVE_REGS.
31929         * icall.c (ves_icall_type_is_subtype_of): Use new function.
31931 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
31933         * blob.h: Add a couple of new MonoType types definitions.
31935         * tabledefs.h: Add a couple of new call convs.
31937 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
31939         * reflection.h (MonoReflectionDynamicAssembly): track changes in
31940         the layout of the class.
31942         * reflection.c (alloc_table): double the size on overflow to avoid
31943         unnecessary copying.
31945         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
31946         avoid filling out metadata tables and blobs. Also set mb->ilgen to
31947         null so it can be garbage collected.
31948         
31949 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
31951         * reflection.c (mono_reflection_get_type): Return the resolved type
31952         only if it is in the assembly we searched.
31954         * reflection.c (ensure_runtime_vtable): Initialize method slots.
31956         * class.c (mono_class_setup_vtable): Set the slot of the overriding
31957         method.
31959 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31961         * appdomain.c:
31962         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
31963         the right one is 'file:///blah', but MS allows it.
31964         * assembly.c:
31965         (mono_assembly_open): allow 'file://blah'
31967         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
31969 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
31971         * socket-io.c: fixes bug #40310.
31973 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
31975         * reflection.c (mono_reflection_parse_type): handle deeply nested
31976         types correctly.
31978         * reflection.c (mono_image_create_token): Use unique token values
31979         since they will be put into a hash table.
31981         * class.c (mono_class_setup_vtable): If a method occurs in more than
31982         one place in the vtable, and it gets overriden, then change the
31983         other occurances too.
31985         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31986         object as return type.
31988 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31990         * icall.c: Deleted "ToString" implementation for double and float
31991         because they are full implemented in managed code.
31993 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31995         * reflection.c, reflection.h: implemented and exported functions
31996         to retrieve info about custom attributes.
31998 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32000         * appdomain.c: moved Uri handling to assembly.c
32001         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32002         work when using a file Uri in *nix and windows.
32004         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32005         GetReferencedAssemblies.
32007 2003-03-18  Dick Porter  <dick@ximian.com>
32009         * icall.c: Rename a couple of internal calls
32011         * threads.c: Set the thread state to Stopped when a thread exits.
32012         Fixes bug 39377.
32014 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32016         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32017         New icall.
32019         * object.c (mono_class_vtable): fix warning.
32021 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32023         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32025         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32026         memory.
32027         (method_encode_clauses): Create exception info structures in the right
32028         order.
32029         (mono_reflection_setup_internal_class): Initialize supertypes field.
32031         * class.c object.c: Handle interfaces which implement other interfaces 
32032         correctly.
32034         * class.h class.c: Move the supertypes array initialization code into 
32035         a separate function so it can be used for dynamic types too. Also call
32036         it earlier, in mono_class_init(), since it can be used before the
32037         type is initialized.
32039 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32041         * Makefile.am:
32042         * assembly.c:
32043         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32045         * appdomain.c:
32046         * appdomain.h:
32047         * marshal.c:
32048         * object.c: remove warnings.
32050 2003-03-13  Martin Baulig  <martin@ximian.com>
32052         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32053         (MonoDebugLexicalBlockEntry): New types.
32055         * debug-mono-symfile.c
32056         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32058 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32060         * process.c: ret can be any non-zero value accroding to MS doc.
32062 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32064         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32065         fixing a warning for a miss-used prototype, would have cause
32066         random memory corruption.
32068 2003-03-07  Martin Baulig  <martin@ximian.com>
32070         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32071         getting really annoying ....
32073 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32075         * reflection.c (fixup_method): added support for array methods.
32077 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32079         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32080         (pointed out by Michael Adams).
32082 2003-03-04  Dick Porter  <dick@ximian.com>
32084         * icall.c: Temporarily reverted the Double and Single ToString()
32085         change, because it broke nunit.
32087 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32089         * object.h, threads.h: make include files compatible with C++
32090         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32092 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32094         * icall.c: Erased ToString helper functions for Double and Single.
32095         Now, that implementations ar all in managed code (Double and Single
32096         Formatters).
32098 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32100         * appdomain.c: Added method for initializing the default context of
32101         a domain. Added internal call for getting the default context.
32102         * appdomain.h: Added context variable in MonoDomain struct.
32103         * domain.c: mono_domain_set also sets the default context of the domain
32104         * icall.c: Mapped internal method InternalGetDefaultContext.
32105         * object.c: mono_object_get_virtual_method returns always a remoting
32106         wrapper if the object is a transparent proxy.
32107         mono_runtime_invoke_array: when creating an object by calling the
32108         constructor, if the created object is a proxy, then the constructor should
32109         be called using the a remoting wrapper.
32111 2003-03-03  Dick Porter  <dick@ximian.com>
32113         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32114         variable so it compiles on solaris.  Problem spotted by
32115         Christopher Taylor <ct@cs.clemson.edu>
32117 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32119         * appdomain.c:
32120         (get_info_from_assembly_name): don't leak value.
32122         * icall.c:
32123         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32124         result.
32126 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32128         * assembly.c: export mono_image_load_references ().
32129         * class.c: handle function pointers. mono_class_from_name() now
32130         supports nested type names directly.
32132 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32134         * reflection.h reflection.c: Encode already created dynamic methods 
32135         and fields correctly as a DEF instead of a REF.
32137         * reflection.c: Get rid of the force_ref argument to 
32138         mono_image_typedef_or_ref since it was wrong in the first place.
32140         * string-icalls.c: add error checking to string constructors according
32141         to the MSDN docs.
32143         * reflection.c: Emit types in the order their TypeBuilders were 
32144         created. Previously, a new table index was assigned to each type before
32145         the tables were emitted. This was wrong because the signature blob
32146         might already refer to a type by its original table index.
32148 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32150         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32151         change.
32152         
32153 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32155         * Makefile.am: make assemblies dir have \ instead of / on windows.
32157 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32159         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32160         iterate over the NESTEDCLASS table using a linear search since the
32161         table is not guaranteed to be sorted by the secondary key.
32163         * class.c (mono_class_create_from_typedef): fixed up call to
32164         mono_metadata_nesting_typedef.
32165         
32166 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32168         * marshal.c (mono_string_to_byvalstr): clear the memory as
32169         suggested by Jerome Laban <jlaban@wanadoo.fr>
32171 2003-02-26  Dick Porter  <dick@ximian.com>
32173         * process.c: Cope with padding in .rsrc blocks
32175 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32177         * metadata.h: reverted the filter_len change, it breaks reflection
32178         
32179 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32181         * metadata.h: added a new field to store the filter_len
32182         
32184 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32186         * reflection.c: handle custom attributes for types and members
32187         created with Reflection.Emit (bug#38422).
32189 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32191         * reflection.c: define RTSpecialName automatically for constructors for
32192         compatibility with MS.NET.
32194         * reflection.c (mono_reflection_create_runtime_class): initialize
32195         nested_in field of dynamically created classes.
32197 2003-02-22  Martin Baulig  <martin@ximian.com>
32199         * debug-mono-symfile.h: Incremented version number.
32201 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32203         * object.h icall.c process.c: fix warnings.
32205 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32207         * appdomain.h appdomain.c:
32208         (mono_domain_try_type_resolve): split the 
32209         name_or_tb argument into a name and a tb argument.
32210         (mono_domain_has_type_resolve): new function to check whenever the
32211         application has registered a TypeResolve event handler.
32212         
32213         * icall.c reflection.h reflection.c: move the type resolve logic into
32214         mono_reflection_get_type () so it will be invoked when 
32215         Assembly::GetType () is called.
32217         * reflection.c:
32218         (mono_reflection_get_type): renamed to get_type_internal.
32219         (mono_reflection_get_type): fixed type name generation so it works 
32220         for nested types too.
32221         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32222         costly type name generation if there is no resolve event handler.
32224 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32226         * class.c, image.c: load exported types from file references.
32228 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32230         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32231           used to cache the managed methods used to create proxies and make 
32232           remote invocation of methods.
32233         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32234           to be remotely created.
32235         * object.c: Modified the method mono_class_vtable(). It now initializes 
32236           the remote flag of the vtable. Modified mono_object_new_specific(), 
32237           so now it checks the remote flag.
32238         * icall.c: Added a couple of internal methods, one for enabling instance 
32239           creation interception for a type, and one for creating objects bypassing
32240           the remote check.
32242 2003-02-18  Martin Baulig  <martin@ximian.com>
32244         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32245         New interncall to get a method's metadata token.
32247         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32248         New interncall for the debugger.
32250 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32252         * class.c (mono_class_setup_vtable): allocate supertype array
32254 2003-02-18  Martin Baulig  <martin@ximian.com>
32256         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32258 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32260         * reflection.c:
32261         (assembly_name_to_aname): jump over unknown properties (i've found
32262         something like: 'type, assembly, version=xxx, custom=null, public...',
32263         so now will ignore custom=null and still get the rest of the values).
32265 2003-02-17  Dick Porter  <dick@ximian.com>
32267         * threads.c: Have Thread.Start() wait for a semaphore to signal
32268         that the thread has set up all its local data.  This fixes bug
32269         34323, where Abort() raced the new thread's TLS data.
32271         Also removes the handle_store() call from start_wrapper, because
32272         threads are now always created suspended and there is no longer a
32273         race between the parent and child threads to store the info.
32275 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32277         * image.c: explain the #- heap issue in a message, hopefully
32278         avoiding FAQs on mono-list.
32280 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32282         * icall.c:
32283         (GetEntryAssembly): if the domain has not invoked
32284         AppDomain.ExecuteAssembly yet, return the assembly of the default
32285         AppDomain.
32287 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32289         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32291 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32293         * metadata.c, reflection.c: simple speedup to type hash
32294         and equals code.
32296 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32298         * image.c, image.h, class.c, assembly.c: move module loading
32299         to MonoImage. When loading metadata, consider alignemnet from
32300         the start of metadata, not from the metadata address in memory.
32302 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32304         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32305         AssemblyBuilder objects. Factored out custom attribute creation into
32306         a separate function.
32307         (create_custom_attr): new function to create custom attributes.
32309 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32311         * Makefile.am: Got tired of typing the full pathname to pedump.
32312         Until there is another option, am installing this.
32314 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32316         * class.c (class_compute_field_layout): always set field->parent 
32317         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32319 2003-02-11  Dick Porter  <dick@ximian.com>
32321         * threads-types.h:
32322         * monitor.c: Rewrote Monitor, making lock much faster and
32323         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32324         creates them as needed.
32326         * exception.c: Added SynchronizationLockException
32328         * threads.c: Deleted old Monitor implementation.  The new one is
32329         in a new file.
32331 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32333         * class.c: handled TypedReference type code. Set the correct size for
32334         class data. Setup interface_offsets for interface classes, too.
32336 2003-02-09  Martin Baulig  <martin@ximian.com>
32338         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32340 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32342         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32343         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32344         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32345         * verify.c: check for code that runs after the end of the method.
32347 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32349         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32350         "System.Math::Round2".
32351         * sysmath.h: Added Floor, Round and Round2 definitions.
32352         * sysmath.c: Modified certain functions that were not 100% compliant
32353         with MS.NET (math precision) and added the implementation of Floor,
32354         Round and Round2.
32356 2003-02-07  Martin Baulig  <martin@ximian.com>
32358         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32360 2003-02-07  Martin Baulig  <martin@ximian.com>
32362         * debug-mono-symfile.c: Reflected latest symwriter changes.
32363         (mono_debug_create_mono_symbol_file): Removed.
32364         (mono_debug_open_mono_symbol_file): Take an argument which
32365         specifies whether to create a dynamic symbol file.
32367 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32369         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32371 2003-02-05  Martin Baulig  <martin@ximian.com>
32373         * reflection.c (mono_image_build_metadata): Make this public,
32374         protect it against being called multiple times, don't create
32375         resources and don't build the compressed metadata here.
32376         (mono_image_create_pefile): Do this here.
32378         * icall.c
32379         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32381 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32383         * socket-io.c: fixed bug #36322.
32385 2003-02-06  Piers Haken <piersh@friskit.com>
32387         * appdomain.[ch]:
32388         * class.h:
32389         * debug-mono-symfile.c:
32390         * icall.c:
32391         * loader.c:
32392         * mono-config.c:
32393         * monosn.c:
32394         * reflection.c:
32395         * socket-io.c: warning cleanups
32397 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32399         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32400         function. works like remoting invoke, but does a check for the Proxy first.
32402 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32404         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32406 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32408         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32409         array of pointers.
32410         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32411         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32413         * object.c (mono_store_remote_field_new): used by the new jit
32414         instead of mono_store_remote_field
32415         (mono_load_remote_field_new): used by the new jit
32416         instead of mono_load_remote_field
32418 2003-02-05  Patrik Torstensson
32420         * appdomain.c: changed unload to take the domain id instead
32421         of domain
32422         
32423         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32426 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32428         * appdomain.c: don't look for assemblies in ApplicationBase if
32429         PrivateBinPathProbe is set.
32431 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32433         * object.c: make the first argument in main_args contain the absolute
32434         path to the assembly. Fixes bug #37511.
32436 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32438         * icall.c: get correct UTC offset for countries not using daylight
32439         time saving. Fixes bug #30030.
32441 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32443         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32444         and 1 are the family).
32446 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32448         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32450         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32452 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32454         * reflection.c: added support for SignatureHelper tokens, which is
32455         needed by the Calli opcode.
32457         * reflection.h: track changes to SignatureHelper class.
32459         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32461 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32463         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32465 2003-02-03  Patrik Torstensson
32466         * appdomain.[c|h], domain.c : 
32467          - Added support for getting a domain via domain id
32468          - Support for setting and getting domain from System.AppDomain 
32469            (used in cross appdomain channel)
32470          - Added support for get/set for a MonoAppContext on a thread 
32471            (Context class in System.Runtime.Remoting.Contexts),
32472          - Removed hack in Get/SetData and ExecuteAssembly.
32473         
32474         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32475         the managed world to get control when a proxy is created.
32477         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32478         
32479 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32481         * icall.c
32482         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32483         Populate the codebase field as well.
32485 2003-02-02  Martin Baulig  <martin@ximian.com>
32487         * debug-mono-symfile.c
32488         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32489         (mono_debug_symfile_add_method): Allow interncalls.
32491 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32493         * icall.c: throw parse exception if strtod fails or the string is empty.
32495 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32497         * marshal.c: handle object type separately from defined
32498         class types.
32500 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32502         * marshal.c: handle NATIVE_LPSTR for strings when it's
32503         explicitly specified.
32505 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32507         * reflection.c, reflection.h, icall.c: setup the reflection
32508         handle cache for ModuleBuilders and AssemblyBuilders.
32510 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32512         * reflection.c (reflection_methodbuilder_to_mono_method): set
32513         pinvoke flag
32515 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32517         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32519 2003-01-29  Dick Porter  <dick@ximian.com>
32521         * threads.c: No need for the fake_thread kludge now that Thread
32522         doesn't run a class constructor
32523         
32524 2003-01-29  Dick Porter  <dick@ximian.com>
32526         * threads.c: Use g_direct_hash instead of the rather bogus
32527         g_int_hash
32529 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32531         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32532         (fix pinvoke12.exe)
32533         (mono_marshal_get_struct_to_ptr): generate valid IL code
32534         (mono_marshal_get_ptr_to_struct): generate valid IL code
32535         (*): correctly set sig->pinvoke, we need to memdup the signature
32536         to do that
32538 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32540         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32541         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32543 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32545         * profiler.c: provide more callers information.
32547 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32549         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32551         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32553         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32555 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32557         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32558         exception instead of going into an infinite loop on dates which it 
32559         can't yet handle.
32561         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32562         out-of-range exception if needed.
32564         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32565         an implementation for an interface method and to override an inherited
32566         method at the same time. 
32567         Imagine a scenario when a virtual method is used to override a
32568         virtual abstract method in a parent class, and this same method 
32569         provides an implementation for an method inherited from an interface. 
32570         In this case, the interface resolution code will set im->slot, which 
32571         means that the virtual method override pass will skip this method 
32572         which means a pointer to the abstract method inherited from the parent
32573         will remain in the vtable of this non-abstract class.
32575         * class.c: (mono_class_setup_vtable): continue search for a real 
32576         method if only an abstract method is found.     
32578 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32580         * reflection.c: add size to encoding for ByValStr and ByValArray
32581         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32583 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32585         * class.c (mono_class_setup_vtable): pass the override info as an
32586         argument.
32588         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32589         correctly.
32590         
32591         * reflection.c (ensure_runtime_vtable); add support for method 
32592         overrides.
32593         
32594 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32596         * reflection.c (resolution_scope_from_image): Hack to work to work with
32597         dynamic assemblies.
32599         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32600         added a 'force_ref' argument to force this function to allways return 
32601         a TypeRef. This is needed by mono_image_get_memberref_token ().
32602         
32603 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32605         * reflection.c (mono_image_get_type_info): interfaces really don't have
32606         a parent.
32608         * reflection.c (mono_image_basic_init): fill out missing fields of
32609         image structure.
32611         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32612         dynamic assemblies. This is required so dynamic assemblies show up in
32613         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32614         Type::GetType() etc. This is consistent with MS behaviour.
32616         * image.c image.h reflection.c: add newly created classes to the name 
32617         cache so mono_class_get () will find them.      
32619 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32621         First part of changes to get IKVM.NET running under mono.
32622         
32623         * appdomain.h, appdomain.c: added new function 
32624         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32625         This function will call AppDomain::DoTypeResolve to do the actual work.
32627         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32628         moved existing code dealing with dynamic tokens to a new function 
32629         called mono_reflection_lookup_dynamic_token (). This function will 
32630         raise TypeResolve events when appropriate. Since reflection.c is not 
32631         part of libmetadata, a new hook function called 
32632         mono_lookup_dynamic_token() is added to class.c which will call this.
32634         * assembly.h assembly.c: make the invoke_load_hook function public,
32635         so it can be called for dynamic assemblies.
32637         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32639         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32640         type isn't found.
32642         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32643         MonoGHashTable, since it contains pointers to objects which the GC 
32644         needs to track.
32646         * assembly.c (search_loaded): remove unused variable.
32647         
32648 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32650         * object.c: fixed issue exposed by gcc-generated IL programs
32651         that use RVA data for pointers.
32653 2003-01-25  Martin Baulig  <martin@ximian.com>
32655         * threads.c (start_wrapper): Moved the initialization of
32656         `start_func' above the mono_new_thread_init() call to which we
32657         pass it as argument.
32659 2003-01-24  Martin Baulig  <martin@ximian.com>
32661         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32662         the MonoThread pointer.
32664 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32666         * icall.c: Rename `PowImpl' to Pow.
32668 2003-01-23  Dick Porter  <dick@ximian.com>
32670         * threads.c (start_wrapper): Create a Thread object if needed, so
32671         the Main() thread can do the class initialisation in a subthread
32672         that has been set up to allow managed code execution.
32674         Pass the thread ID instead of the MonoThread pointer to the thread
32675         start and attach callbacks.  This change is required, because the
32676         jit thread start callback must be called _before_ the Thread
32677         object can be created.
32678         
32679         (mono_thread_init): Removed much object creation code that is no
32680         longer needed.  No managed code is called from here now.
32682         * object.c (mono_runtime_exec_managed_code): Create a subthread
32683         for Main, and call back to the runtime to use it.
32684         Set the exit code when Main exits.
32686         * gc.c: Make sure domain finalisation happens in a subthread.
32687         Re-enable threaded GC, fixing bug 31333 (again).
32689         * environment.c: System.Environment internall calls (so far just
32690         ExitCode is here, the others are still in icall.c)
32692         * appdomain.c (mono_runtime_cleanup): All threads running managed
32693         code should have finished before mono_runtime_cleanup() is
32694         reached, so no need to clean up threads.
32696 2003-01-22  Martin Baulig  <martin@ximian.com>
32698         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32699         `gpointer func' arguments.      
32700         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32701         but added `MonoThread *thread' argument.
32702         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32704         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32705         and pass it to the mono_thread_start_cb callback.
32706         (mono_install_thread_callbacks): New public function to install a
32707         set of callbacks which are set by the debugger.
32708         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32710 2003-01-22  Martin Baulig  <martin@ximian.com>
32712         * Makefile.am: Install debug-mono-symfile.h.
32714 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32716         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32718 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32720         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32721         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32722         (mono_array_class_get): correctly set access levels of arrays
32724 2003-01-20      Patrik Torstensson
32725         * image.h (MonoAssemblyName): changed major, minor, build, revision
32726         from signed to unsigned.
32728 2003-01-20  sean kasun <skasun@azstarnet.com>
32730         * reflection.c (load_cattr_value): Now this handles
32731         MONO_TYPE_SZARRAY.  Fixes bug #35629
32733 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32735         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32736         integer value
32738 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32740         * decimal.c: fixed bug #26056.
32742 2003-01-17  Martin Baulig  <martin@ximian.com>
32744         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32746 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32748         * exception.[ch]:
32749         (mono_get_exception_type_initialization): new function.
32751         * object.c: throw a TypeInitializationException when an exception is
32752         thrown invoking the class constructor.
32754 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32756         * reflection.c: fixed attribute reading.
32758 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32760         * icall.c:
32761         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
32762         provided, look for the type in the calling assembly and then in
32763         mscorlib; if the assembly name is provided, only try that one.
32765 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
32767         * object.c: register the vtable before there is a chance it's
32768         queried again recursively.
32770 2003-01-13  Duncan Mak  <duncan@ximian.com>
32772         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
32773         gc-internal.h. 
32774         
32775 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
32777         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
32779 2003-01-11  Martin Baulig  <martin@ximian.com>
32781         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
32782         this to 20 for the release.
32784 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
32786         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
32788         * loader.c (mono_method_get_marshal_info): bug fix
32790         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
32791         structures with explicit layout
32793 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32795         * profiler.c: made the output more readable (and sorted). 
32796         Added caller information for the allocation profiler.
32798 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
32800         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
32802 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32804         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
32805         to get value types.
32806         
32807 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
32809         * object.c, profiler.h, profiler.c, profiler-private.h:
32810         Added object allocation profiler.
32812 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
32814         * reflection.h, reflection.c: handle global methods.
32815         Compress blob entries.
32817 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
32819         * marshal.c: fix compilation.
32821 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
32823         * loader.c (mono_method_get_marshal_info): impl.
32825         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
32827 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32829         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
32830         for reference types.
32832 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
32834         * loader.c: fixed off by one error in loaded parameter names.
32836 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
32838         * marshal.c (mono_marshal_get_icall_wrapper): like
32839         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
32840         instead of a MonoMethod.
32842 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32844         * decimal.c: fixed bug #36537.
32846 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
32848         * marshal.c: throw a missing method exception if a
32849         P/Invoke method is not found.
32851 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32853         * icall.c: allow a null this for constructors.
32855 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
32857         * icall.c: raise the proper exceptions if the arguments to the
32858         internal Invoke are incorrect.
32860 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
32862         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
32864 2003-01-03  Martin Baulig  <martin@ximian.com>
32866         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32868 2002-12-31  Martin Baulig  <martin@ximian.com>
32870         * debug-mono-symfile.c: Completely rewrote the type section.
32871         Instead of using individual malloc()ed fields, we use one big
32872         continuous memory area and offsets into this area.
32873         See the comments in the source code for details.
32875 2002-12-30  Martin Baulig  <martin@ximian.com>
32877         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
32879 2002-12-30  Martin Baulig  <martin@ximian.com>
32881         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
32882         line number table in this data blob instead of using an external
32883         pointer.
32885 2002-12-28  Martin Baulig  <martin@ximian.com>
32887         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32889 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
32891         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
32892         as a boxed return type.
32894 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
32896         * appdomain.c
32897         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
32898         g_build_filename to properly get separators on the filename created.
32900         * object.h: Small change, introduce MonoMarshalByRefObject to
32901         track the layout of that structure in the C# universe as we make
32902         changes there.
32904 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
32906         * object.c: removed assert to allow static fields on interfaces.
32907         * loader.c: a TypeSpec may be used for any type, not just arrays.
32909 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32911         * class.c, class.h: added mono_class_array_element_size ().
32912         Ignore static methods in interfaces.
32914 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32916         * threads.c: fixed the build under cygwin.
32918 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32920         * reflection.c: handle nullref constants. Allocate keys for
32921         reflection handles with the GC.
32923 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32925         * threads.c, threads.h: added mono_thread_get_abort_signal()
32926         to get a suitable signal for thread abort.
32928 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32930         * metadata.c: fix handling of ExportedType table.
32932 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32934         * icall.c: added WriteWindowsDebugString internal call.
32936 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32938         * reflection.h: added fields to match C# implementation.
32940 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32942         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
32944 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
32946         * gc.h, gc-internal.h: Rename header for GC internal calls to
32947         gc-internal.h from gc.h as to not clash with Boehm GC having its
32948         header installed as <gc.h> in outside include paths.
32949         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
32950         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
32952 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32954         * icall.c: assign minor, build and revision in FillName.
32956 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
32958         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
32959         Added support for running code generated by Reflection.Emit.
32961 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32963         * appdomain.c: check for NULL argument in LoadFrom.
32965 2002-12-10  Dick Porter  <dick@ximian.com>
32967         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
32969 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32971         * appdomain.c: fix buglet when building exe file name.  Handle full
32972         assembly name (needed after latest changes to AssemblyName).
32973         * image.c:
32974         (mono_image_close): free some hashtables.
32976 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
32978         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
32979         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
32980         on some systems (redhat 7.3) 
32982 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
32984         * threads.c: delete the critical section of a sync block,
32985         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
32987 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
32989         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
32991 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32993         * appdomain.[ch]: handle the assembly preload event to try loading the
32994         assemblies using the paths we have in the current domain.
32996         * assembly.[ch]: created an assembly preload hook that is called to try
32997         loading the assembly by other means that the ones provided here.
32999         * domain.c: initialize the domain search path.
33001         From now on, assemblies (TODO: except corlib and System) are loaded
33002         according to these rules when using mono_assembly_load ():
33004                 1. It tries to load the assembly from the ApplicationBase
33005                 of the current domain appending .dll and .exe (TODO: have to
33006                 try loading from name/name.dll and name/name.exe).
33008                 2. It tries the search path specified in PrivateBinPath for the
33009                 current domain (if any).
33011                 3. Previous behavior.
33013 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33015         * icall.c: implemented GetInterfaceMap() related icall.
33016         * domain.c, loader.h: load MethodInfo in mono_defaults.
33018 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33020         * gc.c: disable the finalizer thread for now, untill all the issues
33021         with it are resolved.
33023 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33025         * string-icalls.c: handle embedded nulls in string ctor when the
33026         length is specified.
33028 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33030         * class.c: look for explicit interface implementation in parent
33031         classes, too.
33033 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33035         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33037 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33039         * gc.c: protect handles with a critical section.
33041 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33043         * icall.c:
33044         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33045         parameters. If no assembly specified, try getting the type from all
33046         the assemblies in the current domain, else, load the assembly and get
33047         the type from it.
33049 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33051         * marshal.c: applied patch from Aleksey Demakov that fixes
33052         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33054 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33056         * icall.c: fixed get_location.
33058 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33060         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33061         declarations to make it work with older gcc. 
33063         * loader.c (mono_get_method): set signature->pinvoke for native calls
33065 2002-11-20  Dick Porter  <dick@ximian.com>
33067         * threads.c (mono_thread_init): Set the main thread's handle
33069 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33071         * gc.c: allow compilation without GC support. Changed to match the
33072         mono coding style.
33074 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33076         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33078 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33080         * reflection.c: set a public key token on the core assemblies.
33082 2002-11-18  Dick Porter  <dick@ximian.com>
33084         * threads.c: Split out some thread initialisation so that other
33085         files can set the start callback function.
33087         * gc.c: Run finalisers in a separate thread, to avoid stack
33088         overflow.  Fixes bug 31333.
33090         * appdomain.c: Set up GC finalisation thread.
33092         * reflection.c: 
33093         * object.c: 
33094         * domain.c: Use gc.h macros for GC_malloc
33095         
33096 2002-11-15  Dick Porter  <dick@ximian.com>
33098         * threadpool.c: 
33099         * threads.c:
33100         * appdomain.c: Removed mono_runtime_init_with_attach(),
33101         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33102         merging the extra parameter with the existing function.  Removed
33103         unneeded code in mono_thread_attach().
33105 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33107         * image.c (mono_image_loaded_by_guid): a method to get loaded
33108         images by guid. 
33109         (load_metadata_ptrs): we store the guid as string.
33111 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33113         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33115         * metadata.c (mono_guid_to_string): imported method form Zoltan
33116         Varga (slightly modified)
33118         * assembly.c (mono_assembly_open): load precompiled code
33120         * loader.h (MonoMethod): we store the method token for use in the
33121         aot compiler. 
33123 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33125         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33126         the hook function called when an assembly is loaded.
33127         
33128         * domain.c: Modified file.
33129         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33131         Fixes bug #33196.
33133 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33135         * reflection.c: Map PEFileKind to the value expected by the WinNT
33136         image loader. 
33138 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33140         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33141         Read until the buffer is filled completely.
33143 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33145         * icall.c: implemented MonoType.InternalGetEvent ().
33147 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33149         * appdomain.c: implemented InitAppDomainSetup. Delayed
33150         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33151         the entry_assembly.
33153         * assembly.c: base_dir is now an absolute path ending with
33154         G_DIR_SEPARATOR.
33156         * icall.c: modified get_location according to the above changes.
33158         * object.c: init AppDomain.SetupInformation for the default domain after
33159         we have the entry assembly.
33161         * domain.c: when unloading a domain, setup = NULL.
33163 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33165         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33167 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33169         * object.h, object.c: introduced mono_object_get_virtual_method ()
33170         to lookup the method invoked on an object when a callvirt is done on
33171         a method.
33172         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33174 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33176         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33177         current domain when loaded an assembly and failed to load it.
33179         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33181 2002-10-31  Dick Porter  <dick@ximian.com>
33183         * icall.c: 
33184         * file-io.h: 
33185         * file-io.c: Return the error status in a parameter, as the
33186         GetLastError() value has long since been blown away if we try and
33187         look it up in a subsequent internal call invocation.  Delete the
33188         GetLastError() internal call, because it's useless.
33190 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33192         * class.[ch]: added cast_class to fix bug 29517
33194 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33196         * marshal.c: create valid IL code in the filter clause:
33197         the new JIT is less forgiving:-)
33199 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33201         * icall.c: removed get_property internal call.
33203 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33205         * appdomain.h domain.c: Added an ID to appdomains.
33206         
33207         * threads.c threads.h icall.c: Implement icall
33208         Thread:GetDomainID(), and remove unused icall 
33209         CurrentThreadDomain_internal.
33211 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33213         * icall.c: Don't recurse through the base types in GetConstructor.
33214         Fixes bug #32063. 
33216 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33218         * mempool.h, mempool.c: added mono_mempool_empty() and
33219         mono_mempool_stats().
33221 2002-10-23  Dick Porter  <dick@ximian.com>
33223         * file-io.c: 
33224         * file-io.h: 
33225         * icall.c: Added MonoIO.GetFileType internal call
33227 2002-10-17  Dick Porter  <dick@ximian.com>
33229         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33230         delegate semaphore before waiting for all threads to finish,
33231         because new threads can also call async delegates.  Fixes bug
33232         32004.
33234         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33235         of 3 seconds, in case another async job is queued.  (This part is
33236         needed because the bug fix reintroduced the 3s exit lag.)  This
33237         makes the mono_runtime_shutdown flag superfluous.
33239 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33241         * reflection.c: include ehader size in method section headers.
33242         Really check for suplicated modules entries.
33244 2002-10-17  Martin Baulig  <martin@gnome.org>
33246         * debug-mono-symfile.c: Added back support for locals.
33248 2002-10-14  Martin Baulig  <martin@gnome.org>
33250         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33251         MONO_TYPE_VOID.
33253 2002-10-14  Martin Baulig  <martin@gnome.org>
33255         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33256         mono_class_get() instead of looking in the class cache. 
33258 2002-10-13  Martin Baulig  <martin@gnome.org>
33260         * debug-mono-symfile.c: Set version number to 28, include the
33261         signature in method names.
33263 2002-10-13  Martin Baulig  <martin@gnome.org>
33265         * debug-mono-symfile.h: Set version number to 27.
33267 2002-10-11  Martin Baulig  <martin@gnome.org>
33269         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33271 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33273         * metadata.c, metadata.h: added helper function to allocate signatures.
33275 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33277         * icall.c: added internal call to get the location of machine.config.
33279 2002-10-08  Martin Baulig  <martin@gnome.org>
33281         * debug-mono-symfile.c: Ignore classes with a pending init for the
33282         moment.
33284 2002-10-03  Dick Porter  <dick@ximian.com>
33286         * threads.c: Freebsd pthread_t is a pointer
33288 2002-10-03  Dick Porter  <dick@ximian.com>
33290         * socket-io.c: Implemented GetHostName_internal
33292 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33294         * mono-config.c:
33295         (mono_config_parse_file): don't leak the text.
33297 2002-10-02  Martin Baulig  <martin@gnome.org>
33299         * debug-mono-symfile.c: Added support for methods.
33301 2002-10-01  Martin Baulig  <martin@gnome.org>
33303         * debug-mono-symfile.c: Don't emit methods and line numbers for
33304         the dynamic symbol file, just write the type table.  We can easily
33305         have an external helper program which creates a symbol file for an
33306         IL file.        
33308 2002-10-01  Dick Porter  <dick@ximian.com>
33310         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33311         Only add the handle to the cleanup array when we're about to
33312         launch the thread.  Bug 31425 deadlocked when the test was run on
33313         mono under w32.
33315 2002-10-01  Martin Baulig  <martin@gnome.org>
33317         * debug-mono-symfile.c: Added support for properties.
33319 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33321         * reflection.c: unaligned store fix from Mark Crichton
33322         <crichton@gimp.org>.
33324 2002-09-27  Martin Baulig  <martin@gnome.org>
33326         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33327         New interncall.
33329 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33331         * assembly.h, assembly.c: use a sane API to hook into the assembly
33332         loading process instead of a useless special-purpouse hack
33333         (ngen needs a hook, too, for example).
33335 2002-09-27  Dick Porter  <dick@ximian.com>
33337         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33338         io-layer can set up some process handle info.  Not needed on w32,
33339         but doesn't hurt either.
33341         * process.c: Pass the program name in the second parameter to
33342         CreateProcess, so the path is searched.  Include the working
33343         directory. Implemented process name, process enumeration, and some
33344         process detail internal calls.
33345         
33346         * icall.c: Added internal calls for process lookup, and some
33347         process details
33349 2002-09-26  Martin Baulig  <martin@gnome.org>
33351         * assembly.c (mono_install_open_assembly_hook): New global
33352         function to install a function to be invoked each time a new
33353         assembly is loaded.
33354         (mono_assembly_open): Run this callback function if set.
33356         * debug-mono-symfile.c: Put back line numbers for the dynamic
33357         symbol file and also record the .il file as source file.  This
33358         allows us to install the temporary symbol file as `file.dbg' just
33359         like a compiler-generated one.
33361 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33363         * Corrected typo in gc.c (BOHEM vs BOEHM).
33365 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33367         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33368         GetProperties. Also avoid calling g_slist_length in GetProperties and
33369         GetMethods.
33371 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33373         * reflection.c: avoid unaligned stores (bug spotted by
33374         Mark Crichton  <crichton@gimp.org>).
33376 2002-09-25  Martin Baulig  <martin@gnome.org>
33378         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33379         instead of guint64 for addresses and added prologue/epilogue info.
33381 2002-09-25  Martin Baulig  <martin@gnome.org>
33383         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33384         store line number info.  For the dynamic symbol file, we only need
33385         to provide the JIT generated dynamic line number info for the dynamic
33386         symbol file.
33388 2002-09-25  Martin Baulig  <martin@gnome.org>
33390         * debug-mono-symfile.h: Incremented version number.
33392 2002-09-24  Martin Baulig  <martin@gnome.org>
33394         * class.c (mono_debugger_class_init_func): New global function
33395         pointer variable.
33396         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33397         call it.
33399         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33400         function.  This is called via the mono_debugger_class_init_func
33401         hook to add all types to the dynamic type table.
33402         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33403         from its metadata token.
33405         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33406         New interncall for the debugger.
33408 2002-09-24  Nick Drochak <ndrochak@gol.com>
33410         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33411         before using it in case it is null.
33412         
33413 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33415         * metadata.c: allow custom modifiers in local var signatures
33416         (bug spotted by Zoltan Varga).
33418 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33420         * class.c: deal with the <Module> class that may have a NULL vtable.
33421         Eliminate warnings.
33423 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33425         * image.c, image.h: more strong name helpers.
33426         * monosn.c: more work: convert pem keys to cryptoapi format.
33428 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33430         * string-icalls.c: speedup IndexOf.
33432 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33434         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33436 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33438         * icall.c: cleanup: use mono_object_domain ().
33440 2002-09-23  Martin Baulig  <martin@gnome.org>
33442         * debug-mono-symfile.c: Improved type support.
33444 2002-09-22  Martin Baulig  <martin@gnome.org>
33446         * debug-mono-symfile.c: Added support for reference types and strings.
33448 2002-09-22  Martin Baulig  <martin@gnome.org>
33450         * debug-mono-symfile.c: Started to work on the type table.
33452 2002-09-21  Martin Baulig  <martin@gnome.org>
33454         * debug-mono-symfile.c: Largely reworked the symbol table format.
33455         The symbol table is now incrementally updated each time a new
33456         method is added.  We're now also using our own magic and version
33457         so that you don't need to recompile all your classes if the
33458         dynamic table changes.
33459         (mono_debug_update_mono_symbol_file): Removed.
33460         (mono_debug_symfile_add_method): New function to add a method.
33462 2002-09-21  Martin Baulig  <martin@gnome.org>
33464         * icall.c
33465         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33466         New interncall.
33468         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33469         New interncall to get a method from its metadata token.
33471 2002-09-21  Martin Baulig  <martin@gnome.org>
33473         * debug-mono-symfile.c: Create type table.
33475 2002-09-20  Martin Baulig  <martin@gnome.org>
33477         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33479 2002-09-20  Martin Baulig  <martin@gnome.org>
33481         * debug-mono-symfile.c: Provide information about params and locals.
33483 2002-09-20  Martin Baulig  <martin@gnome.org>
33485         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33486         New interncall.
33488         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33489         interncall to get a method from its metadata token.
33491 2002-09-20  Martin Baulig  <martin@gnome.org>
33493         * debug-mono-symfile.c: Added a few checks for method->header
33494         being non-NULL.  This should never happen, but for the moment
33495         let's use a g_warning() rather than a g_assert().
33497 2002-09-19  Mark Crichton  <crichton@gimp.org>
33499         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33500         even if support for it isn't present.  Added an #ifdef to fix this.
33502         * socket-io.c: Added checks back for Solaris support.
33504 2002-09-19  Martin Baulig  <martin@gnome.org>
33506         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33507         changes in the symbol file format.
33509 2002-09-18  Martin Baulig  <martin@gnome.org>
33511         * debug-mono-symfile.c: Set version number to 21.
33513 2002-09-18  Dick Porter  <dick@ximian.com>
33515         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33516         on netbsd.  Fixes bug 30051.
33518 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33520         * reflection.c:
33521         (set_version_from_string): little fix.
33523 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33525         * monosn.c, Makefile.am: added strong name utility.
33526         * reflection.h, reflection.c: implemented delayed signing,
33527         locale, version and hash id assembly attributes.
33529 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33531         * loader.c, metadata.c: load param attributes in signatures.
33533 2002-09-16  Martin Baulig  <martin@gnome.org>
33535         * debug-mono-symfile.c: Added string table with all method names.
33537 2002-09-14  Martin Baulig  <martin@gnome.org>
33539         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33540         fast method lookup.
33542 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33544         * reflection.c: record the public key token of referenced assemblies.
33546 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33548         * image.c, image.h: added functions to get the strong name and the
33549         public key of an assembly.
33550         * pedump.c: use them.
33552 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33554         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33556 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33558         * marshal.c (mono_marshal_get_managed_wrapper): Added
33559         MONO_TYPE_BOOLEAN 
33561 2002-09-11  Martin Baulig  <martin@gnome.org>
33563         * gc.c: Call GC_unregister_disappearing_link() on all links when
33564         finalizing them, this is necessary to aviod a crash in boehm's
33565         finalize handler.
33567 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33569         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33570         nick@chemlab.org.
33572 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33574         * icall.c: implemented MonoType::Module.
33575         * reflection.c, reflection.h: mono_module_get_object () from
33576         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33578 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33580         * icall.c: ignore overridden methods in GetMethods ().
33581         Fix for FieldInfo::SetValue().
33582         * object.c: handle float/double in runtime invoke.
33584 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33586         * object.c: allow a constructor to be called again on an object.
33588 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33590         * class.h, class.c: move field layout code to it's own function and
33591         export it. Get an interface id earlier. Move fields in MonoClass
33592         so they are more cache friendly and align the bitfields.
33593         * loader.c: temporary handle get_param_names() for a runtime method.
33594         * reflection.c, reflection.h: more code to handle runtime creation of
33595         types.
33597 2002-09-09  Martin Baulig  <martin@gnome.org>
33599         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33600         signature with the pinvoke field being set for the actual call.
33602 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33604         * icall.c: removed some unused icalls. Start of map of glib charsets
33605         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33607 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33609         * debug-helpers.c: break infinite loop (found and fixed by
33610         Holger Arnold <harnold@gmx.de>).
33612 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33614         * icall.c: target may be null in create_delegate.
33616 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33618         * marshal.c: handle a boolean return type.
33620 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33622         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33624 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33626         * gc.c: fix weakreferences.
33628 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33630         * icall.c: added icall to get default codepage.
33632 2002-09-03  Dick Porter  <dick@ximian.com>
33634         * threads.h: 
33635         * threads.c: Use MonoThread instead of MonoObject where
33636         apropriate.
33638         Store running thread objects in a hash table, so that we have all
33639         the info to hand when waiting for them to finish
33640         (means we don't need OpenThread() any more, so mingw builds should
33641         be fully functional again.)
33643         * verify.c:
33644         * object.h: Added thread ID to MonoThread
33646 2002-09-03  Martin Baulig  <martin@gnome.org>
33648         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33650 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33652         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33654 2002-09-03  Martin Baulig  <martin@gnome.org>
33656         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33657         argument to store the end address of the disassembled instruction.
33659         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33660         here from debug-symfile.h.
33661         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33662         JIT into this struct.
33663         (MonoSymbolFile): Added `char *image_file' field.
33664         (MonoDebugGetMethodFunc): Removed.
33665         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33666         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33667         (mono_debug_find_method): New method.
33669         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33670         create a full symbol file.
33671         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33672         and static symbol files.
33673         (mono_debug_find_method): The symbol file keeps an internal method hash,
33674         call this to get a MonoDebugMethodInfo from a MonoMethod.
33676         * debug-symfile.[ch]: Removed.
33678 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33680         * image.c (do_mono_image_open): Remove linker version check.
33682 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33684         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33685         wrappers for instance methods.
33686         
33687 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33689         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33691 2002-08-28  Dick Porter  <dick@ximian.com>
33693         * Makefile.am: Export HOST_CC for w32 builds
33695 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33697         * file-io.c process.c: MonoString are null terminated, no
33698         need for mono_string_to_utf16() anymore.
33700 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33702         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33704 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33706         * icall.c, reflection.h: speedup System.MonoType.
33708 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33710         * reflection.c: allow null as the value of a string argument in
33711         custom attributes constructors.
33713 2002-08-27  Martin Baulig  <martin@gnome.org>
33715         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33716         `trampoline_address' field.
33718 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33720         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33721         check (fixes bug #29486) 
33723 2002-08-27  Martin Baulig  <martin@gnome.org>
33725         * debug-mono-symfile.c: Changed the file format in a way that allows us
33726         open it read-only and to use a specially malloced area for all the
33727         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33728         debugging IL code and there is no MCS generated symbol file for it.
33730 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33732         * object.c: added a define for a good string and array
33733         creation speedup (not enabled by default because we need to deal with
33734         the synch stuff).
33736 2002-08-26  Martin Baulig  <martin@gnome.org>
33738         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33739         function to create a dynamic symbol file.  This is used by the
33740         debugger to create a symbol file for IL code on-the-fly.
33742 2002-08-26  Martin Baulig  <martin@gnome.org>
33744         * loader.c (mono_lookup_pinvoke_call): Include the error message
33745         from g_module_error() in the error message.
33747 2002-08-24  Martin Baulig  <martin@gnome.org>
33749         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33750         function to update the symbol file.  The symbol file is mmap()ed
33751         writable, but private.  This allows us to install the symbol file
33752         together with the assembly.
33754 2002-08-24  Martin Baulig  <martin@gnome.org>
33756         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
33757         but they can read the new symbol file format which mcs is now creating.
33759         * debug-symfile.c (mono_debug_find_source_location): Moved to
33760         debug-mono-symfile.c; this is now operating on the new symbol file.
33762 2002-08-23  Martin Baulig  <martin@gnome.org>
33764         * debug-helpers.c (mono_method_desc_from_method): New function to get
33765         a MonoMethodDesc from a MonoMethod.
33767 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33769         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
33770         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
33772 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33774         * string-icalls.[ch]: make helper methods static.
33776 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33778         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
33779         types to it and to SetValueInternal.
33781         * object.c: Moved handle_enum label to its proper place. This was the
33782         f... bug! ;-)
33784         This time i compiled mcs and gtk-sharp and they both work.
33786 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33788         * icall.c: reverted partially my previous patch until 
33789         object.c:set_value handles enums correcly.
33791 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33793         * icall.c:
33794         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
33795         (ves_icall_System_Environment_get_MachineName): removed warning when
33796         compiling under cygwin.
33798 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33800         * object.c: fixed field_get_value() for reference types.
33802 2002-08-22  Dick Porter  <dick@ximian.com>
33804         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
33805         Don't free a buffer while it's still needed.  Patch from Jonathan
33806         Liger <Jonathan.liger@wanadoo.fr>
33808 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
33810         * icall.c (ves_icall_System_Environment_get_Platform): Add new
33811         internal call.
33813 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
33815         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
33816         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
33818         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
33819         we call unmanaged code which throws exceptions.
33821 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33823         * appdomain.h: added per-domain entry_assembly.
33824         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
33825         arguments.
33826         * icall.c: Assembly::GetEntryAssembly icall.
33827         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
33828         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
33830 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33832         * appdomain.h, gc.c: added mono_domain_finalize ().
33834 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33836         * object.c:
33837         (mono_print_unhandled_exception): changed g_warning by g_printerr
33838         because g_log has a 1024 characters limit (yeah, i got a big stack
33839         trace). Don't print exception name, that should be in ToString 
33840         returned string.
33842 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33844         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
33845         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
33847 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33849         * object.c:
33850         (mono_print_unhandled_exception): after previous commit, i realized
33851         that MS calls ToString on the exception. I changed this function to
33852         do that. This way we get stack_trace for free.
33854 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33856         * object.c:
33857         (mono_print_unhandled_exception): invoke Message property instead of
33858         getting 'message' field from Exception. Don't allocate memory for
33859         'trace' and 'message' if not needed.
33861 2002-08-18  Dick Porter  <dick@ximian.com>
33863         * unicode.c: Fix asserts to match Encoder.cs checks
33865 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33867         * marshal.c: fix unaligned store issue and a few wrong
33868         opcode argument types.
33870 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33872         * icall.c: added GetUninitializedObjectInternal internal call.
33874 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
33876         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
33877         to the right domain.
33879 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
33881         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
33883         * class.c (class_compute_field_layout): set blittable to false for Strings
33885         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
33887 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33889         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
33890         first chunk of code to create types at runtime. Code to
33891         handle ReflectedType/DeclaringType. Make reflection handles
33892         domain specific.
33894 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33896         * class.c: set correct name in arrays.
33898 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
33900         * appdomain.c (mono_domain_transfer_object): make it work with
33901         valuetypes. bug fixes.
33903 2002-08-12  Dick Porter  <dick@ximian.com>
33905         * object.h: Rename some parameters to avoid c++ keywords (Patch
33906         from Joseph Wenninger <kde@jowenn.at>)
33908 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33910         * icall.c: added icall to implement Assembly.GetFile*.
33912 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33914         * reflection.h, reflection.c: code to embed managed resources.
33916 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33918         * class.c: move all the type size stuff into
33919         class_compute_field_layout().
33921 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33923         * class.c: ensure enums have always the correct instance size.
33924         * unicode.c: remove wrong assert.
33926 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33928         * assembly.c: fix mem corruption issue.
33929         * image.h, image.c: added mono_image_get_resource () to access
33930         managed resources.
33931         * icall.c: implemented Assembly.EntryPoint property and some
33932         Managed Resources related internalcalls.
33935 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33937         * image.c, image.h: impemented mono_image_get_entry_point ().
33938         * appdomain.c: use mono_image_get_entry_point.
33940 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33942         * reflection.c: support the object type argument when loading
33943         custom attributes.
33945 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
33947         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
33948         String as return type.
33950 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
33952         * reflection.c: fix encoding of named args for custom attrs to match
33953         the ms implementation. Read them back when instantiating custom
33954         attributes.
33956 2002-08-02  Radek Doulik  <rodo@ximian.com>
33958         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
33959         by Dietmar as quick fix
33960         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
33961         16 as stack size, used on more places as quick fix before Dietmar
33962         will fix it properly
33964 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33966         * object.h, object.c: added accessors for fields and properties.
33968 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33970         * class.c, class.h: made mono_class_get_field_from_name ()
33971         loop on parent types.
33972         Added mono_class_get_property_from_name ().
33974 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33976         * class.c, class.h: move the code to setup the type vtable in its own
33977         function so that it can be reused also for types created at runtime.
33978         Eliminate the "class" identifier from the header file.
33979         * reflection.c: setup the vtable for enums so that we can create
33980         objects for use in SetConstant ().
33982 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
33984         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
33985         instead of the delegate itself as this pointer (bug #28383)
33987 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
33989         * marshal.c (mono_marshal_get_managed_wrapper): added return type
33990         conversions.
33992 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33994         * loader.c: don't set the pinvoke bit on icalls.
33996 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
33998         * debug-helpers.c (mono_method_full_name): only print a number to
33999         indicate wrapper type (so that the output is more readable in traces).
34001 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34003         * class.c (mono_class_init): include method override patch from Paolo
34005 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34007         * icall.c: fixed GetTypeCode().
34009 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34011         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34012         use real delegate invoke function to make it work with multicast
34013         delegates (fix bug# 28291).
34015 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34017         * object.c: load constant strings.
34019 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34021         * reflection.c: no magic numbers.
34022         * tabledefs.h: security action enum.
34024 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34026         * assembly.c: fix possible memory corruption.
34028 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34030         * reflection.h, reflection.c: added support for linking resources.
34031         * verify.c: check we have an updated corlib.
34033 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34035         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34036         string arrays.
34037         (mono_marshal_string_array): null terminate unmanaged string arrays.
34038         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34040 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34042         * icall.c: Type.GetType () can now return also types from the
34043         calling assembly.
34045 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34047         * loader.h, loader.c: stack walking support.
34048         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34049         GetCallingAssembly.
34051 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34053         * marshal.c: added optimisations for blittable types 
34055         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34056         (mono_class_setup_mono_type): set blittable attribute for single
34057         and double.
34059         * marshal.c (mono_string_utf8_to_builder): impl.
34060         (mono_string_builder_to_utf8): impl.
34061         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34063 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34065         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34066         (mono_marshal_get_managed_wrapper): impl. byref types
34068 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34070         * icall.c:
34071         (search_method): don't display debug message. 
34073 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34075         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34077 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34079         * appdomain.c: set the missing filename when throwing exception.
34081 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34083         * metadata.c (mono_type_size): code cleanup
34084         (mono_type_stack_size): removed some test code
34086 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34088         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34089         mono_get_exception_file_not_found now.
34091         * exception.c (mono_exception_from_name_two_strings): New version
34092         that will call a constructor with two string arguments. 
34093         (mono_get_exception_file_not_found): New helper routine, used to
34094         report file-not-found errors.
34096 2002-07-20  Dick Porter  <dick@ximian.com>
34098         * process.h:
34099         * process.c: Pass file handles to CreateProcess
34100         
34101         * icall.c:
34102         * file-io.h:
34103         * file-io.c: Implemented CreatePipe
34105 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34107         * metadata.c (mono_get_param_info): set alignment for value types
34109 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34111         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34112         Constify mono_domain_assembly_open().
34113         * loader.c: handle null namespace in icalls.
34115 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34117         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34118         (emit_str_to_ptr_conv): marshal object as structs
34120         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34122         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34124 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34126         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34127         (mono_marshal_get_native_wrapper): we an now return value types
34129 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34131         * verify.c: more checks implemented.
34133 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34135         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34136         (fix bug #27695)
34137         (mono_marshal_get_native_wrapper): allow byref arguments
34138         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34139         impl. PtrToStringXXX methods
34140         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34141         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34142         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34143         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34144         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34146 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34148         * reflection.c: fix buglet in parsing an assembly name.
34150 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34152         * marshal.c (emit_ptr_to_str_conv): first impl.
34154 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34156         * object.c, class.h: cache the vtable in the class as suggested by
34157         vargaz@freemail.hu (Zoltan Varga).
34159 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34161         * class.h, loader.c: added mono_field_from_token().
34162         * verify.c: first cut of type checking code.
34164 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34166         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34168 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34170         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34171         (fix bug #27782)
34172         (mono_marshal_get_remoting_invoke): impl.
34173         (mono_delegate_begin_invoke): impl.
34174         (mono_mb_emit_save_args): impl.
34175         (mono_delegate_end_invoke): impl.
34176         (mono_marshal_get_delegate_begin_invoke):
34177         (mono_marshal_get_delegate_end_invoke):
34178         (mono_marshal_get_delegate_invoke): generate a special name for
34179         those methods (including the signature) and associate them whith
34180         the delegate class. 
34182 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34184         * reflection.[ch]: 
34185         (mono_reflection_type_from_name): now it has a MonoImage parameter
34186         which is used as the default image to search the type in. If the image
34187         is NULL or getting the type from it fails, it defaults to corlib.
34189         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34190         new parameter.
34192 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34194         * reflection.c: update the parameter table index.
34196 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34198         * domain.c: don't include the mark byte in the string hash.
34200 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34202         * icall.cs: icall for Type.GetTypeCode ().
34203         * verify: a couple of fixes and disabled local initialization checks.
34205 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34207         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34209         * debug-helpers.c (mono_method_full_name): print the type of the
34210         runtime wrapper
34212         * metadata.c (mono_signature_hash): a hash function for signatures
34213         (mono_signature_hash): better hash algorithm
34215         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34217         * debug-helpers.c (mono_method_full_name): this can now generate
34218         method names with signatures
34220         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34221         method dont have this pointers.
34223 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34225         * reflection.c: fixup typebuilder tokens.
34226         * image.c: fix buglet.
34227         * marshal.h: remove whitespace.
34228         * metadata.h, metadata.c: reinstate code that was removed.
34229         * verify.c: handle catch directives and fix another couple of bugs.
34231 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34233         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34234         (mono_marshal_get_native_wrapper): make it comp. with the old code
34235         (mono_marshal_get_native_wrapper): support boolean
34236         (mono_marshal_get_managed_wrapper): support more types
34238 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34240         * class.c (class_compute_field_layout): compute class->blittable attribute.
34242 2002-07-09  Dick Porter  <dick@ximian.com>
34244         * threads.c: Make the thread cleaning up cope with threads that
34245         call ExitThread()
34247 2002-07-08  Radek Doulik  <rodo@ximian.com>
34249         * reflection.c (method_encode_code): use non-translated values to
34250         compute finally_start, this fixes exception handling on ppc, yay!
34252         * decimal.h (struct signscale): fix endianess
34254 2002-07-07  Radek Doulik  <rodo@ximian.com>
34256         * reflection.c: swap box_val and not val
34258 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34260         * reflection.c, reflection.h: handle full assembly info in type name.
34261         Handle Type arguments when loading custom attributes.
34262         * icall.c: updated to use new mono_reflection_type_from_name () method.
34264 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34266         * loader.c:
34267         (method_from_memberref): also print assembly name when method not found.
34269 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34271         * icall.c:
34272         (ves_icall_TypeGetProperties): fixed bug #27473. 
34274 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34276         * reflection.c: display image name and token when cannot find the
34277         .ctor for an attribute.
34279 2002-07-05  Martin Baulig  <martin@gnome.org>
34281         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34283 2002-07-04  Dick Porter  <dick@ximian.com>
34285         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34286         compile on mingw.  This will cause mingw builds to not wait for
34287         subthreads to terminate after the main thread does.  I've lodged a
34288         bug with the mingw developers for them to wrap OpenThread().
34290 2002-07-03  Dick Porter  <dick@ximian.com>
34292         * threads.c: Store thread IDs instead of handles, because
34293         GetCurrentThread() returns a pseudohandle and therefore stores
34294         useless values.  mono_thread_cleanup() continues checking the
34295         array of threads until it is empty, to cope with subthreads
34296         spawning new threads after the main thread has finished.
34298         * profiler.h:
34299         * profiler.c:
34300         * profiler-private.h: Pass the thread ID to thread profiler
34301         functions, instead of a handle
34303 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34305         * verify.c: fixes to make it more usable.
34306         * pedump.c: added --verify code to verify IL code in an assembly.
34308 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34310         * reflection.c: turn errors into warnings to allow compiling corlib.
34312 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34314         * reflection.c: add special cases to compile corlib.
34316 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34318         * reflection.c: handle properties with only a set method.
34320 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34322         * opcodes.h: add enum with opcodes in opval order.
34324 2002-07-01  Dick Porter  <dick@ximian.com>
34325         
34326         * object.h:
34327         * object.c (mono_runtime_run_main): Removed unneeded argument
34329 2002-06-28  Martin Baulig  <martin@gnome.org>
34331         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34333 2002-06-27  Dick Porter  <dick@ximian.com>
34335         * threads.c: Store the handle in both the parent thread and in the
34336         subthread, to minimise the time between starting a new thread and
34337         storing its ID.
34339 2002-06-26  Dick Porter  <dick@ximian.com>
34341         * appdomain.c (mono_runtime_cleanup): Close the socket library
34342         after all the threads have finished, not before
34344 2002-06-26  Martin Baulig  <martin@gnome.org>
34346         * debug-symfile.c (mono_debug_find_source_location): Added
34347         `guint32 *line_number' argument.  If it's not NULL, store the line number
34348         there and return the file name without the line number.
34350 2002-06-25  Dick Porter  <dick@ximian.com>
34352         * icall.c:
34353         * process.h:
34354         * process.c: Process forking and other support functions
34356 2002-06-25  Dick Porter  <dick@ximian.com>
34358         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34359         things dont happen when the image is closed.
34360         (mono_image_lookup_resource): Walk the resource section looking
34361         for a particular entry
34363         * cil-coff.h: PE resource section decoding
34365 2002-06-25  Dick Porter  <dick@ximian.com>
34366         
34367         * assembly.h:
34368         * assembly.c: 
34369         (mono_assembly_foreach): Accessor functions to walk the list of
34370         loaded assemblies
34371         (mono_assembly_set_main):
34372         (mono_assembly_get_main): Process methods need to know which
34373         assembly is the "main" one
34375         * object.c (mono_runtime_run_main): Record the main assembly
34377         * debug-helpers.c: Fix typo
34379 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34381         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34382         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34384 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34386         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34388 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34390         * image.c (do_mono_image_open): Initialize reference count,
34391         otherwise we leak the MonoImage.
34393 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34395         * reflection.c: small tweak to handle self-hosting.
34397 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34399         * reflection.c: fix type name parse code.
34401 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34403         * reflection.c: break out of the loop.
34404         * image.c: special case corlib.
34406 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34408         * reflection.c: add all the custom attrs at the end to ensure the
34409         ctors have been properly initialized when the attributes are defined
34410         in the current assembly.
34412 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34414         * reflection.c: handle correctly multiple-nested types.
34416 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34418         * row-indexes.h: fix typos.
34419         * reflection.c: adjust for typos and fix method_def_or_ref
34420         encoding in MethodImpl table.
34422 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34424         * reflection.c: fix entry point patching (thanks Serge!).
34426 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34428         * verify.c: add check for System.Exception
34430 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34432         * image.c, class.c: minifix for code just c&p'ed.
34433         * reflection.c: warning fix.
34434         * object.h, loader.h, domain.c: load also StringBuilder.
34436 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34438         * marshal.h, marshal.c: some support code to handle complex marshaling.
34440 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34442         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34443         Better signatures with vtable error dump.
34445 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34447         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34449 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34451         * icall.c (ves_icall_Type_GetField): impl.
34453 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34455         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34456         to retrieve a marshal description blob for a field or param.
34458 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34460         * reflection.h, reflection.c: change order of nested type emission
34461         to avoid table corruption. The NestedTypes table is sorted.
34462         * icall.c: change order of GetConstructor results to workaround mcs bug.
34464 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34466         * reflection.h, reflection.c: handle field and param marshal
34467         information.
34469 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34471         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34473 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34475         * reflection.c: fix call convention.
34477 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34479         * reflection.h, reflection.c: mono_image_get_memberref_token()
34480         takes a type instead of a class, now. Added
34481         mono_image_get_array_token() to create tokens for the special
34482         multi-dim array methods.
34484 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34486         * assembly.c: handle modules (no assembly table). Split
34487         loading references in its own function.
34488         * class.c: handle moduleref resolution scope.
34489         * image.c, image.h: cache module name in image.
34491 2002-06-07  Martin Baulig  <martin@gnome.org>
34493         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34494         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34496 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34498         * icall.c: more signature fixes that used uint instead of int.
34500 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34502         * reflection.c: fixed signature of field refs.
34504 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34506         * class.c, reflection.c: handle typerefs of nested types
34507         (both on read and when writing files).
34509 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34511         * icall.c: fix method signatures that tried to workaround the previous
34512         typo, d'oh!
34514 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34516         * debug-helpers.c: fix typo.
34518 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34520         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34521         rewrote the PE/COFF writing code (our programs are understood by the
34522         ms runtime, now).
34524 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34526         * gc.c, gc.h, icall.c: weakreference support.
34528 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34530         * Makefile.am, mono-config.c: use $(sysconfdir).
34532 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34534         * icall.c: changed default precision of Double.ToString() to 15.
34535         Fixed memory leak. Unified with Single.ToString.
34537 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34539         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34541 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34543         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34544         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34545         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34546         and myself.
34548 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34550         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34552 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34554         * reflection.c, socket-io.c: more compilation fixes.
34556 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34558         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34559         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34560         unicode.c: warning and compiler compatibility fixes.
34562 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34564         * class.h, metadata.c: fixed warnings/compilation errors.
34566 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34568         * Makefile.am, mono-config.c, mono-config.h: configuration file
34569         support routines.
34570         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34571         config file. Export methods to insert and lookup mappings.
34573 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34575         * reflection.c: handle types and boxed objects in custom attr
34576         constructors.
34578 2002-05-30  Martin Baulig  <martin@gnome.org>
34580         * debug-symfile.c
34581         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34583 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34585         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34586         to lookup the implmap row for a P/Invoke method.
34587         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34588         P/Invoke method from the runtime on an as needed basis.
34590 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34592         * metadata.c (mono_metadata_parse_signature): impl.
34594 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34596         * class.c: handle .pack directive.
34598 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34600         * object.c: initialize static fields with RVA data.
34602 2002-05-25  Martin Baulig  <martin@gnome.org>
34604         * debug-symfile.c
34605         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34607 2002-05-24  Martin Baulig  <martin@gnome.org>
34609         * debug-symfile.c
34610         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34611         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34612         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34614 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34616         * object.c: special case string ctros in invoke.
34617         * gc.c: silly whitespace changes.
34619 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34621         * threadpool.[ch]: impl. a threadpool that can
34622         be used by mint and mono.
34624 2002-05-22  Martin Baulig  <martin@gnome.org>
34626         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34627         The first argument is now a `MonoReflectionModuleBuilder *', the return
34628         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34629         `methods' field to get the method builder.  The `token' argument is the
34630         unfixed token.
34632         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34633         invalid characters instead of g_assert_not_reached()ing.  This seems
34634         to be the behaviour of mscorlib.
34636 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34638         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34639         Hestilow to fix bug #25104
34641 2002-05-21  Martin Baulig  <martin@gnome.org>
34643         * debug-symfile.c (mono_debug_find_source_location): New function.
34644         Looks up an IL offset in the line number table and returns the source
34645         location as a string.
34647 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34649         * icall.c:
34650         (mono_double_ToStringImpl): changed %f by %g until we have something
34651         better.
34653 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34655         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34656         parameters first in C#.
34658 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34660         * icall.c, reflection.h: added icall to get info about an event.
34662 2002-05-20  Radek Doulik  <rodo@ximian.com>
34664         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34665         endian
34666         (mono_value_box): don't use memcpy for small sizes on
34667         architectures with unaligned access
34669 2002-05-20  Martin Baulig  <martin@gnome.org>
34671         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34672         if `tb->parent == NULL'.
34673         (mono_reflection_create_internal_class): New function.  This is
34674         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34675         for enum types.
34677         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34678         New interncall.
34680 2002-05-19  Martin Baulig  <martin@gnome.org>
34682         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34683         argument to get the length, don't default to the array length.
34685 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34687         * assembly.c (mono_assembly_setrootdir): New function used to
34688         override the MONO_ASSEMBLIES directory.
34690 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34692         * icall.c: ValueType_GetHashCode() initialize local var.
34694 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34696         * reflection.c: sort custom attributes table.
34698 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34700         * reflection.c: support named args in custom attributes (write support).
34702 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34704         * reflection.c: fix finally position calculation.
34706 2002-05-15  Radek Doulik  <rodo@ximian.com>
34708         * reflection.c: fixed endianess at many places
34710         * icall.c (ves_icall_InitializeArray): comment out debug msg
34712 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34714         * object.c (mono_unhandled_exception): new function to handle
34715         unhandled exceptions.
34716         (mono_unhandled_exception): call the UnhandledException event.
34717         (mono_runtime_delegate_invoke): impl.
34719 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34721         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34722         returns the RVA, not the direct pointer to the data. Handle the case
34723         when the class size is fixed.
34725 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34727         * reflection.c: fix some endianess issues.
34729 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34731         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34733         * threads.c (mono_thread_init): added a callback which is invoked
34734         at thread start.
34736 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34737         
34738         * icall.c: make GetHashCode return non-negative values.
34740 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34742         * object.c, icall.c, gc.c: revert to address-based hashcode.
34744 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34746         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34748 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34750         * icall.c, class.c: special case <Module>.
34752 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34754         * icall.c: fix bug in GetNow().
34756 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
34758         * object.c (mono_runtime_class_init): make sure that we call all
34759         static class constructors.
34761 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34763         * reflection.c: sort methodsemantics table.
34765 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34767         * reflection.h, reflection.c: honour init locals setting.
34769 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
34771         * icall.c: copied Double ToStringImpl for Single ToStringImpl
34773 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34775         * reflection.c: support ContructorBuilders in attribute blob creation.
34777 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34779         * reflection.c: some changes to build a binary that can be run
34780         directly in windows.
34782 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34784         * loader.c: print a big message when an icall can't be found.
34786 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34788         * string-icalls.c: fix bug 24248.
34790 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34792         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
34793         icall.c, reflection.h: separate assembly loading by pathname and by
34794         assembly name. Use the MONO_PATH env var to search for assemblies.
34796 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34798         * assembly.c, image.h: add some support for assemblies
34799         with multiple modules.
34800         * class.c, class.h: export mono_class_from_typeref().
34801         * loader.c: remove duplicated code and use mono_class_from_typeref(),
34802         instead.
34804 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34806         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
34807         documentation says (the ECMA one is correct).
34809 2002-05-02  Dick Porter  <dick@ximian.com>
34811         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
34812         Don't name the synchronisation mutex.
34814 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
34816         * rand.c
34817         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
34818         Make the prototypes match.
34819         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
34820         Same.
34822         * icall.c
34823         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
34824         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
34825         all systems have tm.tm_zone, so use strftime() with %Z to print
34826         the timezone abreviation into a temp string.
34828         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
34829         rather than mono_array_addr() on a MonoString on Big Endian
34830         machines.
34832 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
34834         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
34835         fix bug 24041
34837 2002-04-30  Dick Porter  <dick@ximian.com>
34839         * socket-io.c: Cope with SOCKET being an integer rather than a
34840         pointer now.
34842         * threads.c: Added Thread_free_internal, to deal with thread
34843         handle cleanup.  Moved calls to handle_store() and handle_remove()
34844         to start_wrapper(), so each can only be called once.  Allocate
34845         synchronisation blocks with GC_malloc(), and use GC finalisation
34846         to close the handles.
34848         * icall.c: added System.Threading.Thread::Thread_free_internal
34850 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34852         * icall.c: support Environment.Exit, CommandLineArgs().
34854 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34856         * object.c, object.h: added mono_runtime_run_main () and
34857         mono_runtime_get_main_args () for use in System.Environment.
34859 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34861         * gc.c: fix thinko, enable actual finalization since the jit is now
34862         fixed.
34864 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34866         * gc.c, object.c: take into account that an object may be offset wrt the address
34867         returned by GC_malloc().
34869 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34871         * image.c: handle files without entries in the assembly table (modules).
34873 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
34875         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
34876         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
34877         allowed to be null when it's System.Object class setup.
34879 2002-04-27  Martin Baulig  <martin@gnome.org>
34881         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
34882         if `tb->parent == NULL' rather than crashing.
34884 2002-04-28  Nick Drochak  <ndrochak@gol.com>
34886         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
34887         calling acos() where asin() should have been called.
34889 2002-04-26  Martin Baulig  <martin@gnome.org>
34891         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
34892         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
34893         there's a subdirectory called `System', but we don't want to read that
34894         subdirectory as an assembly.
34896 2002-04-25  Martin Baulig  <martin@gnome.org>
34898         * debug-symfile.c: Reflect latest MonoString changes.
34900 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34902         * rand.c, rand.h: instance method icalls need to have an explicit
34903         this pointer as first argument in the C implementation.
34905 2002-04-25  Nick Drochak <ndrochak@gol.com>
34907         * icall.c: Fix typo in map for GetNonZeroBytes
34909 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34911         * string-icalls.c : String does now passes unit tests without any 
34912         errors, the following changes has been made:
34913         
34914         Implemented replace methods.
34915         Renaming of methods to (try) follow the standard.
34916         Fixed compare ordinal
34917         Made all memory allocated directly to function instead of via icall function.
34918         Small performance fix in is_in_array function
34919                         
34920  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
34922         c (mono_string_Internal_ctor_charp_int_int):
34923         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
34924         sindex < 0, throw ArgumentOutOfRangeException instead of
34925         ArgumentNullException.
34927         Added new check for length == 0, however
34928         I need to make it return String.Empty from the C code.
34929         
34930         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
34931         that calculate the length for us here.
34932         
34933         (mono_string_Internal_ctor_sbytep_int_int): Replaced
34934         mono_string_new_utf16 with mono_string_new, since value is utf8.
34936 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34938         * object.c: register the object for finalization if needed.
34939         Allocate one more char in the string for the terminating 0 char.
34941 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34943         * class.c, class.h, image.c: check if a type implemenst a destructor.
34944         Use the proper key for array class lookups.
34945         * icall.c: register the icalls in the System.GC class.
34946         * gc.c, gc.h: GC-related functions and icalls.
34948 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34950         * icall.c:
34951         * socket-io.c:
34952         * unicode.c: free some strings gotten from mono_string_to_utf8 and
34953         changed a couple of free () by g_free ().
34955         * decimal.c: one-liner in the comments for decimal2string ().
34957 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34959         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
34961 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34963         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
34964         * object.c (mono_runtime_invoke_array) : handle null in params
34966 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34968         * string-icalls.c: fixed bug in split (one off bug)
34970 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34972         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
34973         * icalls.c: added String::Equals as internal method
34975 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34977         * threads.c: fixed bug in the double interlocked functions
34979 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
34981         * threads.c: implemented all of the new interlocked icalls.
34982         * string-icalls.c: fix a bug in insert.
34983         * icalls.c: added the icalls for interlocked, removed old string functions.
34984         
34985 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34987         * loader.c: fix off-by-one error when reading argument names.
34989 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34991         * profiler.c: win32 counter implementation (untested).
34992         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
34993         (the latter needs testing and more complete impl. from win32 folks).
34995 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
34997         * object.c: mono_array_new_full workaround mono_array_class_get
34998         problem.
35000 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35002         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35003         * object.h (mono_string_chars): Changed casting type.
35005 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35007         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35008                            method signatures to use gunichar2 instead of gint16.
35010 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35012         * object.h, object.c: domain-specific versions of mono_object_new and
35013         mono_array_new.
35015 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35017         * object.c: changed String layout
35019         * string-icalls.c (mono_string_Internal_ctor_chara): added
35020         internal string constructors.
35022 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35024         * threads.c: pass 'this' to the thread start routine.
35026 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35028         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35029         InternalCompareStr don't call twice mono_string_cmp_char for the last
35030         character. Improved performance in mono_string_cmp_char.
35032 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35034         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35035         code into its own library: libmonoruntime.
35037 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35039         * object.h, object.c: changed array format so that szarrays do not
35040         require a bounds structure.
35041         * icall.c, appdomain.c: support for new szarray format.
35043 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35045         * metadata.c: compare also the retuns type when comparing signatures:
35046         we didn't do this as an optimization since really overloaded methods
35047         must differ also in the arguments, but this doesn't work with
35048         low-level IL code (or when using explicit conversion operators: see
35049         bug#23498 for an example).
35051 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35053         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35055 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35057         * icall.c: make MonoType::GetElementType its own icall.
35059 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35061         * icall.c: remove MonoMethod_get_Name().
35062         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35063         object.
35065 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35067         * string-icalls.c: optimized a few methods.
35069 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35071         * icall.c: added all new string internal calls
35072         * string-icalls.c: added, new string internal call implementation.
35073         * object.c: added mono_string_new_size for allocating a string a size
35075 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35077         * object.c (mono_object_isinst): use the same code as in the
35078         optimized x86 version.
35080 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35082         * profiler.c: TSC-based timer code (faster and more accurate).
35083         Not hooked up in configure, yet (set USE_X86TSC to 1).
35085 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35087         * profiler.c, profiler.h: track time spent compiling methods.
35088         * threads.c: track thread creation/destruction.
35090 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35092         * profiler.c, profiler.h, profiler-private.h: profiling interface
35093         and sample implementation. Moved here so that it can be used also by
35094         the jit.
35096 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35098         * reflection.c, reflection.h: keep types and other handles separate in
35099         the hash tables for referred tokens. Add guid for modules.
35101 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35103         * assembly.c: fix bugs found with valgrind.
35104         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35106 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35108         * threads: added icall support for getting current domain for
35109                    the thread.
35111 2002-04-13  Martin Baulig  <martin@gnome.org>
35113         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35114         (MonoDebugVarInfo): Added `index' field for register based addresses.
35115         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35116         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35117         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35118         `MonoDebugVarInfo *this_var'.
35120         * debug-symfile.c (relocate_variable): New static function to write
35121         a location description for a local variable or method parameter.
35123 2002-04-12  Martin Baulig  <martin@gnome.org>
35125         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35126         stack offset and begin/end scope address of a local variable.
35127         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35128         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35129         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35131         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35132         Added new relocation types for start/end scope of a local variable.
35134 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35136         * object.h: add mono_object_domain() macro.
35137         * reflection.c: handle typespecs.
35138         * icall.c: MonoMethod::get_Name() implementation.
35140 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35142         * icall.c: String::GetHashCode() icall implementation.
35144 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35146         * icall.c: String::IndexOfAny icall.
35147         * object.c, object.h: make array->max_length more useful.
35148         Intrduced mono_object_class() and mono_string_length() macros.
35150 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35152         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35153         instead of g_unichar_isdigit.
35155 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35157         * icall.c: Implement a simple Double.ToString().
35159 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35161         * appdomain.h: only io-layer.h is supposed to be included.
35162         * icall.c: explicitly import environ. Fix warning.
35164 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35166         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35167                 return true even if it's not Daylight Savings time.
35168                 Only return false for the case where the function isn't
35169                 implemented for a plaform (read Windows).
35171 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35173         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35174         data with a mutex.
35176 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35178         * mempool.c (mono_mempool_alloc): only use g_malloc when
35179         absolutely necessary.
35181 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35183         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35185         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35186         (mono_class_proxy_vtable): use domain mempool
35188 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35190         * appdomain.h, appdomain.c: split initialization that requires the
35191         execution engine support into mono_runtime_init().
35193 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35195         * class.c (mono_class_init): don't include vtable inside MonoClass
35196         to save some memory, gather some statistics.
35197         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35199 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35201         * icall.c: internalcall implementation for ValueType.Equals().
35203 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35205         * object.c (mono_message_init): moved 
35206         (mono_runtime_exec_main): new arch. independent impl.
35207         (mono_runtime_invoke_array): new method - like
35208         mono_runtime_invoke, but you can pass an array of objects.
35209         (mono_remoting_invoke): new arch. independent impl.
35210         (mono_message_invoke): new arch. independent impl.
35211         (mono_runtime_class_init): new arch. independent impl.
35212         (mono_runtime_object_init): new arch. independent impl.
35214 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35216         * metadata.c, object.c, reflection.c: documented the exported
35217         functions.
35219 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35221         * icall.c: simpler code to pass the assembly builder data to corlib.
35222         Implement GetNestedTypes() internalcall.
35224 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35226         * class.c: warn if a type can't be loaded.
35228 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35230         * image.h: typedef MonoImageOpenStatus
35231         * types.h: removed unused file
35232         
35233 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35235         * icall.c: Enum_ToObject accepts enum value arguments.
35237 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35239         * class.c: move initialization of properties, events and nested
35240         classes, so that they happen for interfaces, too.
35242 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35244         * icall.c: cleanup some ugly casts in Array_SetValue*.
35246 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35248         * icall.c: the values array fro enums is of the correct type, now.
35249         Implement (correctly) getFullName instead of assQualifiedName for
35250         MonoType.
35251         * reflection.h, reflection.c: added mono_type_get_name ().
35253 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35255         * assembly.c, image.h: for each MonoImage, record from wich assembly
35256         it was loaded.
35257         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35258         Make Type.Assembly work.
35260 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35262         * debug-symfile.h: use char* instead of gpointer to avoid
35263         unnecessary casts.
35265         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35267         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35268         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35270 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35272         * icall.c (mono_message_init): impl. (code cleanup)
35273         (ves_icall_InternalExecute): impl. FieldGetter
35275         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35276         defined we call all (non-static)methods through the vtable. 
35278 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35280         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35281         finalizer even though the memory is still referenced (and the chunk of
35282         memory is not freed).
35284 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35286         * assembly.c: fix brokeness.
35288 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35290         * class.c: kill some warnings. Check explicit interface method
35291         implementation also without considering the namespace.
35292         Load also literal strings in static class data.
35294 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35296         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35297         (default_assembly_name_resolver): Make the resolver take the
35298         "base" directory where the assembly was originally defined, so we
35299         can load DLLs that are in the same directory as the assembly that
35300         is being referenced.
35302 2002-03-28  Dick Porter  <dick@ximian.com>
35304         * file-io.h: 
35305         * file-io.c:
35306         * socket-io.c: 
35307         * unicode.h: 
35308         * unicode.c: Warning cleanups
35310 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35312         * object.h, reflection.h: use the correct type instead of MonoObject.
35314 2002-03-28  Martin Baulig  <martin@gnome.org>
35316         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35317         (mono_debug_update_symbol_file): Initialize classes if necessary.
35319 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35321         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35322         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35324 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35326         * assembly.h: fix function prototype.
35327         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35328         * mono-endian.h: use const cast.
35330 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35332         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35334 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35336         * loader.c: don't assert when a typeref can't be loaded, give
35337         a chance to the runtime to trow an exception instead.
35338         * loader.h: fix warning.
35340 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35342         * class.c (mono_class_proxy_vtable): added proxy support
35344 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35346         * icall.c: removed last of PAL calls, added System.Environment
35347         * file-io.h, file-io.c: MonoIO implementation
35348         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35350 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35352         * appdomain.c: do not use the byte marker in ldstr table lookup.
35353         * debug-helpers.c: allow two ':' to separate class and method name.
35354         * object.c: allocate arrays bounds with the GC, too.
35355         * verify: add a few more checks.
35357 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35359         * reflection.c: output also literal strings. Allocate parameter data
35360         with GC_malloc() (thanks, Martin, for catching this!).
35362 2002-03-26  Martin Baulig  <martin@gnome.org>
35364         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35365         include the `this' offset in the `param_offsets'.
35367 2002-03-25  Martin Baulig  <martin@gnome.org>
35369         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35370         mono_debug_get_class() function to get the classes. Added new
35371         relocation types for arrays and strings.
35372         (mono_debug_get_class): New static function to search in all
35373         referenced assemblies for a metadata token.
35375         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35377 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35379         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35380         hold gc-allocated objects. Make the string heap a stream like the
35381         others. Removed duplicated code when writing stream info.
35382         Added asserts to catch possible buffer overflows. Set the sorted map
35383         for tables that need sorting. Added some documentation.
35385 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35387         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35388         for interned strings and vtables.
35390 2002-03-24  Martin Baulig  <martin@gnome.org>
35392         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35393         it in the array since it was created with g_slist_prepend().
35395 2002-03-24  Martin Baulig  <martin@gnome.org>
35397         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35398         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35399         (mono_debug_method_from_token): Renamed to
35400         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35401         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35403         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35404         relocation types.
35406         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35408 2002-03-24  Martin Baulig  <martin@gnome.org>
35410         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35411         (mono_debug_method_from_token): New func.
35413         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35414         New interncall, calls mono_debug_local_type_from_signature().
35415         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35416         calls mono_debug_method_from_token().
35418 2002-03-23  Martin Baulig  <martin@gnome.org>
35420         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35421         specifies the number of bytes to be converted, not the array size.
35422         Return the number of chars, not the number of bytes.
35423         (ves_icall_iconv_get_chars): The `byteCount' argument
35424         specifies the number of bytes to be converted, not the array size.
35426 2002-03-23  Martin Baulig  <martin@gnome.org>
35428         * reflection.h (MonoReflectionSigHelper): New type.
35430         * reflection.c (mono_reflection_sighelper_get_signature_local),
35431         (mono_reflection_sighelper_get_signature_local): New functions.
35433         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35434         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35435         interncalls.
35437 2002-03-23  Martin Baulig  <martin@gnome.org>
35439         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35440         is_writeable is set.
35441         (mono_raw_buffer_update): New function to write the modified map
35442         back to disk.
35444         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35446         * debug-symfile.c (mono_debug_update_symbol_file): Call
35447         mono_raw_buffer_update() when done writing.
35449 2002-03-23  Martin Baulig  <martin@gnome.org>
35451         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35453         * debug-symfile.c: Added support for arguments and local variables.
35455 2002-03-23  Dick Porter  <dick@ximian.com>
35457         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35458         protected by ifdefs, hence breaking the w32 build.
35460 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35462         * object.c: implement is_interned() the right way.
35464 2002-03-21  Martin Baulig  <martin@gnome.org>
35466         * debug-symfile.[ch]: New files to handle debugging information
35467         files. There's also support to dynamically update these symbol
35468         files to include machine dependent information.
35470 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35472         * threads.c (mono_thread_create): new function to create thread
35473         from C
35475 2002-03-20  Martin Baulig  <martin@gnome.org>
35477         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35478         method is a constructor.
35479         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35480         points to ves_icall_InternalInvoke().
35482 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35484         * file-io.c: Flush shouldn't throw exceptions.
35486 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35488         * file-io.c: FileStream flush support; FileSetLength now
35489         restores file pointer.
35491 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35493         * class.c: set image for pointer classes.
35495 2002/03/19  Nick Drochak <ndrochak@gol.com>
35497         * sysmath.c: Forgot one.
35499 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35501         * sysmath.c: Avoid redefining existing names.
35503 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35505         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35506         handled by runtime as icall rather than dllimport from libm.so
35507         * file-io.c, file-io.h: fixed handle argument type.
35509 2002-03-18  Dick Porter  <dick@ximian.com>
35511         * reflection.c (mono_image_get_type_info): rename interface to
35512         iface, because of "#define interface struct" on windows.
35514 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35516         * class.c, class.h: rename and export mono_ptr_class_get().
35517         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35518         * reflection.c, reflection.h, icall.c: better/saner type name
35519         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35520         method signatures.
35522 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35524         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35526         * icall.c (ves_icall_InternalInvoke): impl.
35528 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35530         * reflection.c: output the interface map table, too.
35532 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35534         * class.c (class_compute_field_layout): separate computation of 
35535         static field layout
35537 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35539         * icall.c: added System.Buffer support.
35540         * file-io.c: moved file icalls from PAL to FileStream.
35542 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35544         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35546 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35548         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35550 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35552         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35554 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35556         * debug-helpers.{c,h}: moved here from monograph some useful functions
35557         to locate a method by name/signature in a class or image. Included
35558         also a small and flexible IL disassembler.
35560 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35562         * reflection.c: fixup tokens in methods with small header size, too.
35564 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35566         * object.c (mono_string_to_utf8): remove assert(!error), instead
35567         print a warning. 
35569 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35571         * icall.c: update to the new mono_Array_class_get interface.
35573 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35575         * appdomain.c, object.c: Boehm-GC enable.
35576         * icall.c: make get_data_chunk() support split data requests.
35577         Ensure a class is initialized in more cases. Return only the first
35578         property found in GetProperties() or the compiler gets confused. 
35579         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35580         * reflection.h, reflection.c: add fixup mechanism for field and method
35581         tokens. Initialize assembly->typeref in a single place. Output
35582         properties after events. Support custom attributes for events, too.
35583         Typo fix for paramter custom attrs.
35585 2002-03-07  Martin Baulig  <martin@gnome.org>
35587         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35589 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35591         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35593 2002-03-06  Martin Baulig  <martin@gnome.org>
35595         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35596         non-zero lower bounds. See testcases #F10-#F13.
35598 2002-03-05  Martin Baulig  <martin@gnome.org>
35600         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35602         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35603         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35604         here.
35605         (ves_icall_System_Array_SetValue): Likewise.
35606         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35607         as argument and does the actual work. This function is used when copying a
35608         multi-dimensional array.
35609         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35610         now do all the widening conversions of value types.
35611         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35613 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35615         * class.c: remove some magic numbers and use the smbolic names,
35616         instead. Added init_events() to load event info at class init time.
35617         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35618         and mono_metadata_methods_from_event().
35619         * reflection.h, reflection.c: added support for writing out the evnets
35620         related information.
35622 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35624         * reflection.h, icall.c: use a different method (GetInterfaces)
35625         to gather interface info and add isbyref, isprimitive and
35626         ispointer to the ves_icall_get_type_info() return value.
35628 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35630         * class.h: stared adding support for events.
35631         * icall.c: split find_members implementation. Added debug icall to get
35632         the address of an object.
35633         * reflection.c: handle TypeBuilders in mono_type_get_object().
35635 2002-03-01  Martin Baulig  <martin@gnome.org>
35637         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35638         ArgumentOutOfRangeException(), not an ArgumentException().
35639         (ves_icall_System_Array_GetLowerBound): Likewise.
35640         (ves_icall_System_Array_GetValue): Improved argument checking.
35641         (ves_icall_System_Array_SetValue): Improved argument checking.
35643 2002-03-01  Martin Baulig  <martin@gnome.org>
35645         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35646         called with invalid arguments rather than just dying with g_assert().
35647         (ves_icall_System_Array_SetValue): Likewise.
35648         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35649         raise a NotImplementedException instead.
35650         (ves_icall_System_Array_GetLength): Added argument checking.
35651         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35653 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35655         * object.h (mono_assert): new macros mono_assert and
35656         mono_assert_not_reached
35658 2002-02-28  Martin Baulig  <martin@gnome.org>
35660         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35661         and "System::String::IsInterned" to "System::String::_IsInterned".
35663 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35665         * icall.c: remove hacks for typebuilder. Added icall to create a
35666         modified type from a tybebuilder.
35667         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35668         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35669         to create a backing MonoClass for a TypeBuilder.
35671 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35673         * class.c, class.h: more refactoring of class init.
35674         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35676 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35678         * marshal.c, marshal.h: start of marshaling interface.
35680 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35682         * icall.c: fix order in assembly qualified name icall.
35684 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35686         * class.c: do not free str, since we store it in the hash table.
35687         * reflection.h: add label field to MonoILExceptionInfo.
35688         * reflection.c: handle references to more than one assembly. Handle
35689         case when there isn't a module created in the assembly.
35691 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35693         * class.c: Fix typo. Start refactoring of class init code.
35695 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35697         * appdomain.c: exit with 1 on error.
35698         * class.c: we already have the name in MonoClassField.
35699         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35700         MonoStreamHeader instead of an offset of image->raw_metadata.
35702 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35704         * appdomain.c (mono_init): Be even more descriptive about the error.
35706 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35708         * appdomain.c: give the user an informative message when corlib can't
35709         be loaded.
35711 2002-02-26  Martin Baulig  <martin@gnome.org>
35713         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35714         New icall to get the time zone data.
35716 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35718         * reflection.c: set virtual and raw size of section correctly.
35719         * threads.c: transfer domain information to newly created threads.
35721 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35723         * class.c: when instancing a class in a domain, load the default
35724         vaules for static fields from the constant table. Fix System.Enum to
35725         not be an enum.
35726         * icall.c: implement Object::GetType() internalcall. Implemented
35727         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35728         Fixed checking of binding flags in find_members().
35729         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35730         * reflection.c: handle enumerations when writing to the constant
35731         table. Use a different object cache for types.
35734 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35736         * object.c (mono_object_isinst): fix for arrays
35738         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35740 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35742         * object.c: don't use mprotect ()  and fix intern pool hash table
35743         lookup for big endian systems.
35745 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35747         * icall.c: change type_is_subtype_of () signature.
35749 2002-02-21  Mark Crichton  <crichton@gimp.org>
35751         * rand.c, rand.h: Added random number generator for
35752         System.Security.Cryptography classes.
35754         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35756         * icall.c: Added System.Security.Cryptography calls.
35758 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
35760         * class.c, icall.c, metadata.c: better support for pointer types.
35761         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
35762         * reflection.c: Add support for getting custom attrs for properties
35763         and simplify some code.
35765 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35767         * icall.c: change getToken () and add custom attribute GetBlob()helper
35768         method.
35769         * reflection.h: add custom attrs array to the reflection builder structures.
35770         * reflection.c: encode and emit custom attributes for all the relevant
35771         reflection objects. Cache fieldref and methodref tokens. Change
35772         mono_image_create_token() interface to take a MonoDynamicAssembly.
35773         More complete custom attributes decoder. Load custom attributes for
35774         Assembly, Field, Method and Constructor objects, too. Make the
35775         returned array an Attribute[] one, not object[]. Added
35776         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
35777         custom attribute constructor.
35779 2002-02-20  Dick Porter  <dick@ximian.com>
35781         * icall.c:
35782         * rawbuffer.c:
35783         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
35784         problem code out for now).
35786 2002-02-19  Radek Doulik  <rodo@ximian.com>
35788         * object.c (mono_ldstr): use hash table to avoid multiple swapping
35790 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
35792         * icall.c: register the GetCustomAttributes method.
35793         * object.c, object.h: add mono_string_new_len ().
35794         * reflection.h, reflection.c: added mono_runtime_invoke(),
35795         mono_install_runtime_invoke(). Added
35796         mono_reflection_get_custom_attrs () to load custom attributes and
35797         create the attribute objects.
35799 2002-02-19  Dick Porter  <dick@ximian.com>
35800         * threads-dummy-types.c:
35801         * threads-dummy-types.h:
35802         * threads-dummy.c:
35803         * threads-dummy.h:
35804         * threads-pthread-types.c:
35805         * threads-pthread-types.h:
35806         * threads-pthread.c:
35807         * threads-pthread.h:  Deleted obsolete files
35809 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
35811         * class.c (mono_class_vtable): runtime init the class when we
35812         allocate static class data.
35814         * icall.c (ves_icall_System_Array_SetValue): check for null values.
35816         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
35817         and String - but we will need generic marshalling support in the
35818         future. 
35819         (mono_init): set the domain name in a ms compatible way
35821         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
35822         String[].
35824 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
35826         * object.c (mono_array_clone): use alloca() instead of g_malloc  
35827         for sizes
35829         * appdomain.c (mono_domain_unload): impl.
35831 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35833         * appdomain.c, object.c: fix intern pool implementation.
35834         * class.c: fix alignment code.
35836 2002-02-16  Radek Doulik  <rodo@ximian.com>
35838         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
35839         and s2 > s1, just copy lower bytes to be compatible with little
35840         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
35841         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
35843         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
35844         force big_endian to be 1 for big endian machines 
35845         (ves_icall_iconv_new_decoder): ditto
35847 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
35849         * socket-io.c (convert_sockopt_level_and_name): If the system
35850         doesn't define SOL_IP or SOL_TCP, get them by hand using
35851         getprotobyname() and caching the values (because this could be a
35852         slow operation).
35853         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
35854         Use the appropriate struct when the system does support it. Ie,
35855         not all systems have struct ip_mreqn so use struct ip_mreq when
35856         appropriate.
35858 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
35860         * reflection.c: handle finally clauses.
35862 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
35864         * socket-io.c: use g_snprintf() instead of snprintf.
35866 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35868         * reflection.c (mono_param_get_objects): Cast second argument to
35869         mono_method_get_param_names to a const char** to silence the
35870         compiler warning.
35872         * appdomain.c (mono_domain_assembly_open): Put parens around the
35873         truth statement in the for-loop.
35875         * unicode.c (iconv_convert): Got rid of a compiler warning about
35876         int i being unused when the system has a new iconv.
35877         (iconv_get_length): Same.
35879         * image.c (load_class_names): Cast the second argument to
35880         g_hash_table_insert() to char* to hush compiler warnings about the
35881         arg being a const.
35882         (mono_image_open): Same here.
35884         * socket-io.c: Don't conditionally include sys/filio.h or
35885         sys/sockio.h here anymore since we now get them from
35886         io-layer/io-layer.h
35887         (inet_pton): If the system doesn't support inet_aton, implement
35888         using inet_addr and also #define INADDR_NONE if it isn't defined
35889         by the system.
35891 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
35893         * metadata.c, metadata.h: added function to get packing and size info
35894         of a typedef.
35895         * reflection.h, reflection.c: handle field RVA data. Save info about
35896         the table layout if needed. Assign typedef indexes to all the types
35897         before dumping the info about them to avoid forward reference problems.
35899 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
35901         * socket-io.c (convert_sockopt_level_and_name): ifdef
35902         SO_ACCEPTCONN because it is not defined on my system (old debian)
35904 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35906         * opcode.c: use stddef.h to get NULL.
35908 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35910         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35911         for FIONBIO, FIONREAD and SIOCATMARK.
35912         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35913         define INADDR_NONE and besides, inet_addr() is deprecated and
35914         should not be used. Use inet_pton() instead - it also has the
35915         added bonus that it can easily handle IPv6 addresses as well.
35916         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35918 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35920         * decimal.c: remove _MSC_VER conditional.
35922 2002-02-13  Dick Porter  <dick@ximian.com>
35924         * socket-io.c: 
35925         * icall.c: Internal calls for Blocking, Select, Shutdown,
35926         GetSocketOption and SetSocketOption
35928 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35930         * assembly.cs: better resolver: use it instead of some kludgy
35931         code.
35933 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
35935         * reflection.c: the best way to speed-up the compiler is to avoid
35936         infinite loops.
35938 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
35940         * class.c (mono_class_vtable): changed the object layout
35941         (obj->vtable->class). 
35942         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
35944 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35946         * assembly.c: look for assemblies in the assembly dir, too.
35948 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35950         * class.c: fix thinko in mono_class_from_type().
35952 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35954         * exception.h, exception.c: added TypeLoadException.
35955         * object.h, object.c: added mono_array_clone ().
35956         * icall.c: handle throwOnError in AssemblyGetType().
35957         Added Array.Clone().
35958         * opcode.h, opcode.c: use a single value for the opcode val.
35959         Compile fix for non-gcc compilers.
35961 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
35963         * opcodes.c, opcodes.h: export interesting info about opcodes.
35965 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
35967         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
35968         icalls. 
35970         * class.c (class_compute_field_layout): set element_class for enums
35971         (mono_class_create_from_typedef): set element_class for normal classes
35973         * icall.c (ves_icall_System_Enum_get_value): impl.
35975         * class.c (mono_class_create_from_typedef): do not set valuetype
35976         flag for System.ValueType and System.Enum
35978 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
35980         * unicode.c (iconv_convert): fix big endian problem.
35982 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35984         * class.c: add asserts if we are ever going to scribble over memory.
35985         * socket-io.c: not all systems have AF_IRDA defined.
35987 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
35989         * class.c (class_compute_field_layout): do not consider static
35990         fields to compute alignment
35992 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
35994         * appdomain.c (mono_appdomain_get): impl.
35995         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
35997 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35999         * icall.c: ignore "file://" prefix when loading an assembly.
36001 2002-01-23  Dick Porter  <dick@ximian.com>
36003         * socket-io.c:
36004         * icall.c:
36005         * Makefile.am: Added socket support
36007 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36009         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36010         code back.  This should return the assemblies that are loaded by
36011         the runtime on behalf of an application domain. 
36013         The current implementation is still broken, it just returns every
36014         assembly loaded, but until we get real applications domain this
36015         will do.
36017 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36019         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36020         AppDomain object.
36022 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36024         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36025         the mono_class_from_name lookup.
36026         (ves_icall_get_parameter_info): ditto.
36027         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36028         method.
36029         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36031 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36033         * class.c: load also nested classes on class init.
36034         System.ValueType instance methods gets passed boxed
36035         values, unless methods in derived classed that get a pointer to the
36036         data.
36037         * icall.c: use better name parsing code in GetType().
36038         * image.c, image.h: add mono_image_loaded ().
36039         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36040         * reflection.c, reflection.h: added mono_reflection_parse_type().
36042 2002-01-22  Veronica De Santis <veron78@interfree.it>
36044         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36045         * threads.c : Added the implementation of internal calls for events
36046         * threads.h : Added prototypes of internal calls for events
36047         
36048 2002-01-21  Radek Doulik  <rodo@ximian.com>
36050         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36052 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36054         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36055         (mono_class_value_size): use min_align
36057 2002-01-20  Dick Porter  <dick@ximian.com>
36059         * threads.h:
36060         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36061         so it compiles on w32.
36063 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36065         * metadata.c (mono_type_stack_size): impl.
36067         * class.c (mono_class_get_field): impl. memberref token
36069 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36071         * icall.h : Added the internal calls mapping for CreateMutex_internal
36072                     and ReleaseMutex_internal.
36073         * threads.h : Added the prototype of mutexes internal calls.
36074         * threads.c : Added the implementations of mutexes internal calls.
36076 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36078         * metaparse.h: removed unused file.
36079         * reflection.c, reflection.h: added stream_data_align () function 
36080         to align data in streams and keep stream aligned. Add support for
36081         exception support in method headers.
36083 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36085         * unicode.c: make iconv_convert () return the number of bytess written
36086         in the output buffer.
36088 2002-01-15  Dick Porter  <dick@ximian.com>
36089         * threads.c: Make the runtime's idea of infinite timeouts coincide
36090         with the class library's
36092         Fix a particularly egregious bug in mono_thread_cleanup(). That
36093         code was so utterly bogus it must have been written on a Monday.
36095 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36097         * reflection.h: add subtypes field to TypeBuilder.
36098         * reflection.c: encode constants for literal fields.
36099         Handle subtypes. Fix user string token (and add a zero byte)
36100         at the end.
36101         
36102 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36104         * class.c (mono_class_init): bug fix: assign slot numbers for
36105         abstract methods.
36107 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36109         * reflection.c: don't try to output a code RVA for abstract methods.
36110         Small fixes for method header format. Output parameter info to the
36111         ParamDef table. Save method overriding info to MethodImpl table.
36112         Fix property support. Allow typedef.extends to be a type in the
36113         building assembly.
36114         * verify.c: fix off-by-one error.
36116 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36118         * class.c: fix mono_class_from_mono_type () for szarray types.
36119         Remove unused cache check in mono_class_from_type_spec().
36120         * icall.c: *type_from_name () functions handle simple arrays and byref.
36121         * reflection.c: handle byref and szarray types. Handle methods without
36122         body (gets P/Invoke compilation working). Handle types and fields in
36123         get_token ().
36124         * reflection.h: add rank to MonoTypeInfo.
36126 2002-01-10  Dick Porter  <dick@ximian.com>
36128         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36129         internal calls
36131 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36133         * icall.c: initialize class in type_from_handle ().
36134         Loop also in parent classes for get_method ().
36135         * reflection.c: properly encode class and valuetype types.
36136         Start on encoding TypeBuilder types. Handle fieldrefs.
36137         Use correct length when registering a user string.
36138         Handle ConstructorBuilder and MonoMethod in get_token ().
36139         Make mono_type_get_object () aware of cached types.
36140         * object.c: back out change to mono_string_new ().
36142 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36143         * object.c: mono_string_new should return a NULL when the string 
36144         passed in is NULL -- not try to deference it.
36145         
36146 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36148         * icall.c: hack to make IsSubType work for TypeBuilders.
36149         * reflection.c: emit constructors before methods.
36150         Retrieve param names in mono_param_get_objects().
36152 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36154         * Makefile.am: fix list of headers and sources so automake 1.5
36155         doesn't complain. Removed \# at end of list.
36157 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36159         * reflection.c: get token for a method ref. Set return type of
36160         constructor to void.
36161         * loader.c: debug message.
36162         * class.c: typo fix.
36164 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36166         * icall.c: fix array init with rank > 1. FindMembers
36167         loops in parent class as well.
36168         * image.c: do not insert nested types in name cache.
36169         * reflection.c: warning fix.
36170         * reflection.h: add override method (for interface impl).
36172 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36174         * metadata.c: fix customattr decoding.
36176 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36178         * rawbuffer.cs: Added native Win32 implementation, avoids using
36179         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36181 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36183         * class.c: make the low-level routines handle the cache.
36185 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36187         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36189 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36191         * class.c: fix mono_array_element_size() for objects.
36192         * class.h, class.c: add properties to MonoClass and load them
36193         at init time.
36194         * icall.c: check with isinst() when assigning a value to an array
36195         instead of requiring the classes to match exactly.
36196         Implemented icall for System.Type::GetType().
36197         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36198         enums. Handle bindingflags when looking for methods and fields.
36199         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36200         and mono_metadata_methods_from_property().
36201         * reflection.h, reflection.c: added structures for propreties,
36202         parameters and enums. Implemented mono_property_get_object() and
36203         mono_param_get_objects().
36205 2001-12-18  Dick Porter  <dick@ximian.com>
36207         * file-io.c: Use mono_string_to_utf16() instead of
36208         mono_string_chars()
36210         * object.c: Added mono_string_to_utf16(), which copies the non
36211         NULL-terminated MonoString into a new double-null-terminated
36212         buffer.
36214 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36216         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36218 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36220         * file-io.c: raise exceptions if handle is invalid.
36222 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36224         * assembly.c: yet another check for mscorlib.
36225         * class.c, class.h: load nesting info for classes.
36226         * icall.c: many new functions to support the Reflection classes.
36227         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36228         * reflection.h, reflection.c: mono_image_create_token(),
36229         mono_assembly_get_object(), mono_type_get_object(),
36230         mono_method_get_object(), mono_field_get_object(): methods to return
36231         objects that parallel the C representation of assemblies, types,
36232         methods, fields.
36234 2001-12-11  Dick Porter  <dick@ximian.com>
36236         * icall.c:
36237         * file-io.c: Internal calls for file IO.
36239 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36241         * tabledefs.h: missing FileAttributes.
36242         * verify.h, verify.c: use is_valid_string () to simplify and check for
36243         valid strings more correctly. Fix warnings and speeling.
36244         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36245         Check code: branches, maxstack, method calls.
36247 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36249         * object.c (mono_object_allocate): removed static, so that the jit
36250         can allocate value types.
36252         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36254 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36256         * class.c: init enum types right away and register the
36257         token->MonoClass map in mono_class_create_from_typedef ().
36258         * verify.h, verify.c: first cut of the verifier.
36259         * pedump.c: add --verify switch to verify metadata tables.
36260         * tabledefs.h: add some missing enums.
36262 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36264         * class.c (mono_install_runtime_class_init): impl.
36265         (mono_class_init): renamed mono_class_metadata_init to
36266         mono_class_init, also removed the metadata_inited flag
36268         * object.c (mono_object_isinst): use faster algorithm
36270 2001-11-30  Radek Doulik  <rodo@ximian.com>
36272         * mono-endian.h: reverted last change
36273         added function prototypes
36275         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36276         add mono-endian.c back
36278         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36279         for unaligned access, I've mistaked it with endianess. I am
36280         sorry.
36281         (mono_read16): fix reverted endianess
36282         (mono_read64): ditto
36283         (mono_read32): ditto
36285 2001-11-30  Dick Porter  <dick@ximian.com>
36287         * exception.c: Implement mono_exception_from_name()
36289 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36291         * metadata.h, metadata.c: remove params_size and locals_size and their
36292         calculation from the metadata code: they are only usefult to the
36293         interp.
36295 2001-11-29  Radek Doulik  <rodo@ximian.com>
36297         * object.c (mono_ldstr): swap bytes here, it's probably not the
36298         best place, but works for me now, I'll redo it once I know mono
36299         better, also note that I add PROT_WRITE and don't reset back, also
36300         note that it's only affects big endians, so x86 should be OK
36302         * mono-endian.h (read16): use just glib macros for both endians
36304         * mono-endian.c: removed as glib macros are used in in
36305         mono-endian.h so we don't need to care about endianess for read
36306         macros as glib does that for us already
36308 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36310         * class.h, class.h: take minimum alignment into consideration so
36311         that the fields of a class remain aligned also when in an array.
36313 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36315         * loader.h, loader.c: add mono_method_get_param_names().
36316         * class.c: 0-init class fields.
36318 2001-11-26  Dick Porter  <dick@ximian.com>
36320         * icall.c:
36321         * threads-types.h:
36322         * threads.c: New file that handles System.Threading on all platforms
36324         * object.c: 
36325         * object.h: Remove the synchronisation struct from MonoObject,
36326         replace it with a pointer that gets initialised on demand
36328         * Makefile.am: Replace all the system-specific threading code with
36329         a single file that uses the new wrapper library
36331 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36333         * class.c, class.h: add mono_install_trampoline() so that the runtime
36334         can register a function to create a trampoline: removes the ugly
36335         requirement that a runtime needed to export arch_create_jit_trampoline.
36336         * object.h, object.c: added mono_install_handler() so that the runtime
36337         can install an handler for exceptions generated in C code (with
36338         mono_raise_exception()). Added C struct for System.Delegate.
36339         * pedump.c: removed arch_create_jit_trampoline.
36340         * reflection.c: some cleanups to allow registering user strings and
36341         later getting a token for methodrefs and fieldrefs before the assembly
36342         is built.
36343         * row-indexes.h: updates and fixes from the new ECMA specs.
36345 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36347         * class.h, class.c: add enum_basetype field to MonoClass.
36348         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36349         to get index in the constant table reated to a field, param or
36350         property.
36351         * reflection.h, reflection.c: handle constructors. Set public-key and
36352         version number of the built assembly to 0.
36353         * row-indexes.h: update from new ECMA spec.
36355 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36357         * class.h, class.c: add a max_interface_id to MonoClass.
36358         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36359         since it's used to do that. Added mono_type_type_from_obj().
36360         Make GetType() return NULL instead of segfaulting if the type was not
36361         found. Handle simple arrays in assQualifiedName.
36362         * object.h: add a struct to represent an Exception.
36363         * reflection.c: output call convention in method signature.
36364         Add code to support P/Invoke methods and fixed offsets for fields.
36366 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36368         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36369         the value.
36370         * icall.c: use mono_array_addr instead of array->vector: fixes the
36371         reflection image writing.
36372         * reflection.c: init call convention byte to 0 in method signature.
36373         Encode the property signature. Don't output property-related methods
36374         twice. Really process the properties for a type (don't cast a field to
36375         a property, my mom always told me that).
36376         Fix 64 bit issues in pointer alignment in a different and more
36377         readable way.
36379 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36381         * loader.h: Removed type class from MonoDefaults, added monotype
36383         * loader.c: Loaded MonoType, removed loading of Type
36385         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36386         and fills in System.Type._impl with a RuntimeTypeHandle rather
36387         than the actual MonoClass *
36389         (ves_icall_type_from_handle): change from type_class to
36390         monotype_class
36392         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36393         implemented
36395         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36396         implemented
36398         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36400         (ves_icall_System_Reflection_Assembly_GetType): implemented
36402         (ves_icall_System_MonoType_assQualifiedName): implemented
36404         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36406 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36408         * assembly.c (mono_assembly_open): Implement a cache for the
36409         assemblies. 
36411         (mono_assembly_close): only destroy the assembly when the last
36412         reference is gone.
36413         
36414 2001-11-09  Dick Porter  <dick@ximian.com>
36416         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36418 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36420         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36422 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36424         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36425         from Martin Weindel.
36426         * object.h: add mono_string_chars ().
36428 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36430         * reflection.c (build_compressed_metadata): Eliminates warnings
36431         and uses 64-bit clean code.
36433         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36434         (mono_type_equal): Change signature to eliminate warnings.
36436 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36438         * icall.c, loader.c: remove the internalcall array constructors.
36439         Changes to match the new MonoArray structure.
36440         * object.h, object.c: an array object doesn't allocate an extra
36441         vector. Add mono_array_new_full () to create jagged arrays easily.
36443 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36445         * metadata.h, metadata.c: add mono_metadata_field_info () to
36446         retreive all the info about a field from vairous tables.
36447         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36448         * class.h, class.c: augment MonoClassField with more info.
36449         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36450         policy and load a field's RVA if needed.
36452 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36454         * class.c (mono_class_metadata_init): create a trampoline for all
36455         virtual functions instead of actually compiling them.
36457 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36459         * class.h, class.c: include name in MonoClassField.
36460         * class.c: fix fundamental type of System.Object and System.String.
36461         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36462         tokens in ldtoken.
36463         * icall.c: remove internalcalls for the Reflection stuff that is now
36464         done in C# code.
36465         * loader.c: mono_field_from_memberref () implementation.
36466         * mono-endian.c: thinko (s/struct/union/g).
36467         * object.c, object.h: make the mono_string_* prototypes actually use
36468         MonoString instead of MonoObject.
36469         * reflection.c, reflection.h: updates for changes in the reflection
36470         code in corlib: we use C structures that map to the actual C# classes.
36471         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36472         fat method header if needed and use the info from the ILGenerator for
36473         methods. Handle fields in types. Misc fixes.
36475 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36477         * class.c (mono_class_metadata_init): bug fix: always allocate
36478         space for static class data
36480 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36482         * class.c (mono_compute_relative_numbering): use relative
36483         numbering to support fast runtime type checks.
36485 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36487         * class.c (mono_class_create_from_typeref): added debugging output
36488         to print class name when MonoDummy is returned instead of real class
36490 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36492         * class.c (mono_class_metadata_init): interface offset table now
36493         contains pointers into the vtable - this is more efficient for the jit
36495 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36497         * class.c (mono_class_metadata_init): use a temporary vtable (the
36498         old algorithm only worked for the interpreter, but not for the jit)
36500 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36502         * loader.c (method_from_memberref): use mono_class_get to get the
36503         class of an array instead of using System.Array directly.
36504         (mono_get_method): also add MEMBERREF methods to the method cache
36505         which usefull for arrays.
36507 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36509         * pedump.c (arch_compile_method): added to compute vtable entry
36511         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36512         number of interfaces.
36513         
36514         * class.h: merged MonoArrayClass into MonoClass
36516         * class.c (mono_class_create_from_typedef): compute the vtable size and
36517         allocate space to include the vtable inside MonoClass
36518         (mono_class_metadata_init): initialize the vtable
36520 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36522         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36523         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36524         * image.c: endian fixes by Laurent Rioux.
36525         * object.h, object.c: rename MonoStringObject to MonoString and
36526         MonoArrayObject to MonoArray. Change some function names to conform to
36527         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36528         guint16* as first argument, so don't use char*.
36529         Provide macros to do the interesting things on arrays in a portable way.
36530         * threads-pthread.c: updates for the API changes and #include <sched.h>
36531         (required for sched_yield()).
36532         * icall.c: updates for the API changes above.
36533         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36534         platforms that need them.
36536 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36538         * class.c: set the correct type for all the fundamental
36539         type when loading the class.
36541 2001-10-05  Dick Porter  <dick@ximian.com>
36543         * threads-pthread.c (pthread_mutex_timedlock): Simple
36544         compatibility version for C libraries that lack this call.
36546 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36548         * class.c: MonoTypes stored in MonoClass are stored as
36549         fundamental MonoTypes when the class represents a
36550         fundamental type (System.Int32, ...).
36551         The TypeHandle return by ldtoken is a MonoType*.
36552         * icall.c: ves_icall_get_data_chunk () write out all the
36553         PE/COFF stuff. Implement ves_icall_define_method (),
36554         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36555         * image.c: properly skip unknown streams.
36556         * loader.h, loader.c: add type_class to mono_defaults.
36557         * metadata.c, metadata.h: export compute_size () as
36558         mono_metadata_compute_size () with a better interface.
36559         Typo and C&P fixes.
36560         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36561         * reflection.c, reflection.h: many cleanups, fixes, output method
36562         signatures and headers, typedef and typeref info, compress the metadata
36563         tables, output all the heap streams, cli header etc.
36564         * row-indexes.h: typo fixes.
36566 2001-10-04  Dick Porter  <dick@ximian.com>
36568         * object.h: Add a synchronisation mutex struct to MonoObject
36570         * object.c (mono_new_object): Initialise the object
36571         synchronisation mutexes
36573         * icall.c: System.Threading.Monitor internal calls
36574         
36575         * threads-pthread.h:
36576         * threads-pthread.c: System.Threading.Monitor internal calls
36578         * threads-types.h: New file, includes the system-specific thread
36579         structures
36580         
36581         * threads-pthread-types.h:
36582         * threads-pthread-types.c: New files, handle pthread-specific
36583         synchronisation types
36585         * threads-dummy-types.h: 
36586         * threads-dummy-types.c: New files of dummy support for
36587         thread-specific types
36589         * metadata.c:
36590         * image.c:
36591         * pedump.c: include mono-endian.h not endian.h
36592         
36593         * Makefile.am: More threads files.
36594         Name mono-endian.h not endian.h
36596 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36598         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36599         stuff and implement a few more bits.
36600         * icall.c: a field needs to be dereferenced twice. Do not use the same
36601         name for two variables in the same scope.
36602         * image.c, image.h: cleanups.
36604 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36606         * class.c (mono_class_metadata_init): bug fix: compute the right size
36608 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36610         * icall.c: implemented some of the Reflection internalcalls.
36611         * image.c, image.h: start writing out the PE/COFF image.
36612         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36613         that does the reverse than decode_blob_size ().
36614         * object.c: use mono_metadata_encode_value (). Move here
36615         temporary implementation of mono_string_to_utf8 ().
36616         * rawbuffer.c: make malloc_map static.
36618 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36620         * metadata.c: fix type comparison for arrays.
36621         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36622         Added a couple of new classes to monodefaults.
36623         * icall.c: added a couple of Reflection-related internalcalls.
36624         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36625         Added a byval_arg MonoType to MonoClass.
36627 2001-09-28  Dick Porter  <dick@ximian.com>
36629         * icall.c:
36630         * threads-pthread.h: 
36631         * threads-pthread.c: Implemented internal calls for
36632         LocalDataStoreSlot operations.  Applied mutexes around all shared
36633         data.  Reworked the thread creation and Start() operations to
36634         avoid a race condition.
36635         
36636         * threads-dummy.h:
36637         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36639 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36641         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36643 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36645         * class.c, loader.c: warn and return NULL instead of erroring out.
36646         * icall.c: added System.AppDomain::getCurDomain().
36647         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36649 2001-09-25  Dick Porter  <dick@ximian.com>
36651         * threads-pthread.h:
36652         * threads-pthread.c: Implemented timed thread joining and added
36653         System.Threading.Thread::Join_internal internal call
36655         * icall.c: Added System.Threading.Thread::Join_internal internal call
36657         * threads-dummy.h:
36658         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36660 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36662         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36663         mono_string_intern () to implement the semantics of the ldstr opcode
36664         and the interning of System.Strings.
36665         * icall.c: provide hooks to make String::IsIntern and String::Intern
36666         internalcalls.
36668 2001-09-23  Dick Porter  <dick@ximian.com>
36670         * threads-dummy.c: 
36671         * threads-dummy.h: New files of dummy threading routines
36673         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36674         support code based on system specifics
36676         Rename PTHREAD_LIBS to THREAD_LIBS
36677         
36678 2001-09-23  Dick Porter  <dick@ximian.com>
36680         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36681         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36682         internal calls.
36683         (mono_thread_init): Set up a Thread object instance to return when
36684         the main thread calls Thread.CurrentThread
36685         (mono_thread_cleanup): Wait for all subthreads to exit
36687         * icall.c: New internal calls for System.Threading.Thread::Sleep
36688         (including Schedule) and CurrentThread
36690         * threads.h: New file, to insulate thread-specific stuff from the
36691         rest of the code
36693 2001-09-21  Dick Porter  <dick@ximian.com>
36695         * threads-pthread.h: 
36696         * threads-pthread.c: New file, for handling pthreads-style
36697         threading support.  Start() now starts a new thread and executes
36698         the ThreadStart delegate instance.
36700         * icall.c: Added the internalcall for
36701         System.Threading.Thread::Start_internal
36703         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36705 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36707         * loader.c: work around the different signatures for delegates
36708         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36710 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36712         * class.h, class.c: add mono_class_get_field_from_name ().
36713         * *: Fix C comments and other ANSI C issues.
36715 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36717         * endian.h, assembly.c: fix some endianness issues.
36719 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36721         * loader.h, load.c: add delegate_class to mono_defaults.
36722         Handle runtime provided methods in mono_get_method ().
36724 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36726         * loader.c (mono_get_method): use pinvoke for internal call
36728         * icall.c: use pinvoke for internal call
36730         * loader.c (method_from_memberref): set the method name
36732 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36734         * metadata.c: help the compiler generate better code for
36735         mono_class_from_mono_type ().
36737 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36739         * class.c (mono_class_metadata_init): delayed computing of the
36740         class size to mono_class_metadata_init ()
36742 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36744         * class.c, class.h: add an interfaces member to MonoClass.
36745         * image.c, image.h: add assembly_name field to MonoImage
36746         from the assembly table.
36747         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36749 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36751         * class.c: Handle Array in mono_class_from_mono_type ().
36752         * metadata.c, pedump.c: some endian fixes.
36754 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36756         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
36757         * metadata.c: fix small problem introduced with the latest commit.
36759 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
36761         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
36762         We don't need a MonoMetadata pointer anymore to compare signatures in
36763         mono_metadata_signature_equal (), update callers.
36764         Reduced memory usage an number of allocations for MonoMethodHeader and
36765         MonoMethodSignature.
36767 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
36769         * metadata.c: added compare for szarray.
36771 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
36773         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
36774         and add a couple more types to it and mono_defaults. Give an hint on
36775         classes that need implementing in our corlib and are referenced
36776         in mscorlib.
36778 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
36780         * class.h, class.c: keep track if a class is also an Enum.
36781         * loader.c: Implement a couple more types for use in libffi
36782         marshalling. Gives better diagnostics when failing to dlopen
36783         a library. Set method->klass for P/Invoke methods, too.
36785 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
36787         * class.c, class.h: add a MonoType this_arg to MonoClass that
36788         represents a pointer to an object of the class' type that
36789         can be used by the interpreter and later the type cache.
36790         Add best guess alignment info for valuetype objects.
36792 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
36794         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
36795         into MonoType: one less level of indirection and allocation and
36796         simplifies quite a bit of code. Added cache for MonoTypes that are
36797         used frequently, so that we don't need to allocate them all the time.
36799 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
36801         * class.c (mono_class_create_from_typedef): System.Enum is also a
36802         value type, although it does not derive from System.ValueType
36803         (maybe a bug in the ms compiler?)
36805         * metadata.c (mono_type_size): return the right size for value types
36807         * loader.c (mono_get_method): only initialize method header if not abstract
36809         * class.c (mono_class_from_mono_type): use mono_default values. 
36811 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
36813         * *: use MonoClass pointers instead of <type_tokens>
36814         
36815         * class.h: new flag: metadata_inited.
36817         * class.c (mono_class_metadata_init): impl.
36818         (mono_class_instance_size): impl.
36819         (mono_class_data_size): impl.
36821 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36823         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
36824         MonoClass now has the name and name_space fields. 
36825         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
36826         mono_get_method () takes and optional MonoClass as argument.
36827         Removed mono_typedef_from_name() and added mono_class_token_from_name()
36828         instead that takes advantage of a map from class names to typedef
36829         tokens in MonoImage.
36831 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
36833         * metadata.c: zero is not a valid alignment boundary.
36834         Merge MONO_TYPE_VOID in default decoding code.
36836 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
36838         * image.h: merged MonoMetadata into MonoImage
36840         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
36841         identify the type of elements.
36843 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
36845         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
36846         * cil-coff.h: split MonoMSDOSHeader and add size info.
36847         * image.c: add some consistency checks.
36848         * metadata.c: fix row size computation: one programmer
36849         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
36850         add explanation for the locator routine.
36851         Fix decoding of size in method header.
36852         
36853 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
36855         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
36856         (g_concat_dir_and_file): Bring g_concat_dir_and_file
36857         function from gnome-libs.  This uses the right path separator
36858         based on the OS, and also works around a bug in some systems where
36859         a double slash is not allowed. 
36860         (default_assembly_name_resolver): Use g_concat_dir_and_file
36861         (mono_assembly_open): ditto.
36863 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
36865         * metadata.c (mono_metadata_signature_equal): impl.
36867         * *: void is now a realy MonoType (instead of using NULL)
36868         
36869         * metadata.c (do_mono_metadata_parse_type): use
36870         mono_metadata_parse_type to parse void value.
36872 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
36874         * metadata.c, metadata.h: in the signature and method header store
36875         only the space required for holding the loca vars and incoming arguments.
36877 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
36879         * metadata.c (do_mono_metadata_parse_type): treat void like any
36880         other type (instead of assigning NULL);
36882 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
36884         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
36886 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
36888         * image.c (do_mono_image_open): added a cache for arrays.
36890 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36892         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
36893         decode a single column from a row in a metadata table and changes
36894         to take advantage of it in the typedef locator (gives a nice speed up).
36895         Store offset info for function params.
36897 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
36899         * image.h (MONO_IMAGE_IS_CORLIB): removed 
36901 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
36903         * assembly.c: how could mono_assembly_close () had ever worked?
36904         * metadata.c, metadata.h: provide offset info for local vars.
36905         Implement mono_type_size () to take care of alignment as well
36906         as size (it was mono_field_type_size in cli/class.c before).
36908 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36910         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36912         * assembly.h (CORLIB_NAME): set to corlib.dll
36914         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36916 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36918         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
36919         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
36920         tokentype.h: massive namespace cleanup.
36922 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36924         * metadata.h, metadata.c: decode exception clauses when parsing method header.
36926 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
36928         * metadata.c (mono_metadata_free_type): added check for type !=
36929         NULL (void) before calling mono_metadata_free_type()
36931 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
36933         * metadata.h, row_indexes.h: added header with enumerations to use
36934         to index in the columns from tables in metadata and to decode coded
36935         tokens: we should start using this instead of embedding magic numbers
36936         all over the code.
36938 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
36940         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
36941         Move metadata_t info from cli_image_info_t to MonoImage, where
36942         it's easily accessible. Changed all the uses accordingly.
36943         Added the method and class caches to MonoImage.
36944         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
36945         and mono_metadata_decode_value () signature to be more consistent
36946         with the other parse functions (and simplify code). Taken advantage
36947         of zero-length array allocation with GCC. Removed reduntant (and
36948         wrong) MonoFieldType struct and use MonoParam instead. Changed
36949         mono_metadata_parse_field_type () to use common code for parsing.
36950         Added mono_metadata_typedef_from_field () and
36951         mono_metadata_typedef_from_method () to lookup a typedef index from a
36952         field or method token.
36953         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
36955 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
36957         * metadata.c (mono_metadata_parse_field_type): Implement. 
36958         (do_mono_metadata_parse_type): Split engine from
36959         mono_metadata_parse_type, so that we can create smaller structures
36960         for things that just have one pointer to the MonoType (look at
36961         the MonoFieldType)
36963 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
36965         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
36966         as Jan Gray found out, it is incorrect. 
36968 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
36970         * assembly.c: Implement asssembly loading.  This loads an image
36971         and loads all the referenced assemblies.  Come to think of it, we
36972         could always do lazy loading of the assemblies. 
36974         * image.c (mono_image_open): Keep loaded images in a hashtable.
36976         * image.h (MonoImage): Add reference count.
36978 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
36980         * assembly.c (mono_assembly_open): Keep track of the file name in
36981         case the assembly has no ASSEMBLY table.
36983         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
36984         from get.c here.
36986 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
36988         * metadata.c, metadata.h: decode local vars in method header
36989         parse function. Change callers accordingly.
36991 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
36993         * metadata.h, cil-coff.h: protect against multiple inclusion.
36994         Added some new structures to hold information decoded from metadata:
36995         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
36996         and relevant decoding/free functions.
36997         * metadata.c: implement decoding functions. Add warning for out of bounds
36998         index in mono_metadata_locate(). Implement mono_get_method () to retreive
36999         all the info about a method signature and invocation. Remove check on
37000         uninitialized local var in parse_mh() and fix memory leak.
37002 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37004         * metadata.h: More macros.
37006         * tokentype.h: New file.
37008 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37010         * assembly.c: added a consistency check and initialize
37011         some structures with g_new0().
37012         * metadata.c: fixed a couple more bugs in table size computation
37013         and add other checks for out-of bound access to metadata.
37015 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37017         * metatada.c: fix bugs computing table sizes. Spew a
37018         warning when index in string heap is out of bounds.
37020 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37022         * metadata.h: Add a couple of macros to manipulate tokens. 
37024 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37026         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37027         cli_section_tables).
37029 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37031         * metadata.c (mono_metadata_user_string): New function, provides
37032         access to the UserString heap. 
37034 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37036         * metadata.c: Add inline documentation.
37038 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37040         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37041         files. 
37043 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37045         * typeattr.h: New file, TypeAttribute flags. 
37047 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37049         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37050         mono_assembly_ensure_section): Section loading code.
37051         (load_section_tables): Load the sections.
37053         * mono/metadata/metadata.c (mono_metadata_locate_token,
37054         mono_metadata_locate): Functions to locate the information
37055         definition given a token or a table and an index.
37056         (mono_metadata_compute_table_bases): New.
37057         (compute_size): New function to compute the sizes of the various
37058         tables.
37060         * mono/metadata/metadata.h: Finish listing the different index
37061         types. 
37063         * mono/metadata/pedump.c: Improve to dump new information.
37065 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37067         * mono/metadata/metadata.c: Entered all the tables matching
37068         Beta2. 
37070         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2